diff --git a/.gitignore b/.gitignore index 61a95c74..89f54cb8 100644 --- a/.gitignore +++ b/.gitignore @@ -57,6 +57,8 @@ Makefile *.sztd.* *.szonn *.szonn.* +*.sztf +*.sztf.* # Python cache and virtual environments __pycache__/ diff --git a/CMakeLists.txt b/CMakeLists.txt index eb2a6b53..02a66ffa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,8 @@ add_library(neighborly_core src/OnlineSurrogate/OnlineSurrogate.h src/TrainingArchive/TrainingArchive.cpp src/TrainingArchive/TrainingArchive.h + src/TransformerRanker/TransformerRanker.cpp + src/TransformerRanker/TransformerRanker.h src/NeighborlyCore/plane.h src/NeighborlyCore/precise_geometry.h src/NeighborlyCore/util.cpp @@ -61,6 +63,7 @@ target_include_directories(neighborly_core "${CMAKE_CURRENT_SOURCE_DIR}/src/SearchArchive" "${CMAKE_CURRENT_SOURCE_DIR}/src/OnlineSurrogate" "${CMAKE_CURRENT_SOURCE_DIR}/src/TrainingArchive" + "${CMAKE_CURRENT_SOURCE_DIR}/src/TransformerRanker" "${CMAKE_CURRENT_SOURCE_DIR}/projects/Szilassi" "${EIGEN_ROOT}" ) @@ -81,6 +84,14 @@ endif() add_executable(verify_cpp projects/VerifyCpp/verify_cpp.cpp) target_link_libraries(verify_cpp PRIVATE neighborly_core) +add_executable(transformer_training_export + projects/TransformerTrainingExport/transformer_training_export.cpp +) +target_link_libraries(transformer_training_export PRIVATE neighborly_core) +if(MSVC) + target_compile_options(transformer_training_export PRIVATE /utf-8) +endif() + add_executable(polyhedron_gui WIN32 projects/PolyhedronGui/launcher_gui.cpp) if(MSVC) target_compile_definitions(polyhedron_gui PRIVATE UNICODE _UNICODE NOMINMAX) @@ -101,4 +112,15 @@ if(BUILD_TESTING) set_tests_properties(training_archive_selftest PROPERTIES WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" ) + add_executable(transformer_ranker_selftest + tests/TransformerRankerSelfTest/TransformerRankerSelfTest.cpp + ) + target_link_libraries(transformer_ranker_selftest PRIVATE neighborly_core) + if(MSVC) + target_compile_options(transformer_ranker_selftest PRIVATE /utf-8) + endif() + add_test(NAME transformer_ranker_selftest COMMAND transformer_ranker_selftest) + set_tests_properties(transformer_ranker_selftest PROPERTIES + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + ) endif() diff --git a/README.md b/README.md index 68add091..89e48e1c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ [видео CodeParade](https://youtu.be/5dd8_N_nKRI). Текущая версия существенно расширяет исходную реализацию: добавлены CUDA FP32-поиск, CPU/DD-верификация, продолжаемые checkpoint, многотопологический планировщик, MAP-Elites/CEM, -нейросетевая подсказка и локальный долговременный ML-датасет. +online-MLP, общий Set Transformer ranker и локальный долговременный ML-датасет. ## Критерии результата @@ -53,6 +53,11 @@ double-double (`WideReal`, примерно 31 десятичный знак). в FP32 и проверяется заново. - Нейросеть является только источником предложений. Она не может заменить точную CPU/DD-проверку или отключить базовую долю независимого поиска. +- Общий для 59 топологий Set Transformer ранжирует только управляемую часть + injected-пула. Из 64 seed-кандидатов 48 по-прежнему формируются MAP-Elites, + CEM и независимым поиском, 4 управляемых seed остаются контрольными без + ранжирования, и только 12 выбираются трансформером. Повреждённая, + несовместимая или неутверждённая модель автоматически отключается. Штраф вырождения намеренно мягкий. По умолчанию полностью учитывается худший из барьеров определителя, короткого ребра, малого угла поворота и чрезмерного размера; @@ -67,13 +72,18 @@ double-double (`WideReal`, примерно 31 десятичный знак). - `projects/Szilassi` — основной CLI-поиск; - `projects/PolyhedronGui` — Windows GUI для штатного CUDA-поиска; - `projects/VerifyCpp` — отдельная проверка OBJ-кандидатов; +- `projects/TransformerTrainingExport` — потоковый read-only экспорт размеченных + trajectory из immutable `.sztd` для обучения; - `src/NeighborlyCore` — геометрия, точные предикаты и общие типы; - `src/CudaSearch` — FP32 CUDA backend и диагностический CPU stub; - `src/Checkpoint` — CRC-защищённые поколения checkpoint; - `src/SearchArchive` — mergeable MAP-Elites delta-файлы; - `src/OnlineSurrogate` — локальная online residual-MLP модель; - `src/TrainingArchive` — локальный долговременный ML-датасет и crash recovery; +- `src/TransformerRanker` — нативный FP32 inference общей transformer-модели; - `tests/TrainingArchiveSelfTest` — тест формата, CRC, WAL, восстановления и лимита; +- `tests/TransformerRankerSelfTest` — тест features, формата модели, CRC и fallback; +- `tools/train_transformer.py` — CUDA/PyTorch-обучение и публикация модели; - `data` — описание топологий и входные модели; - `results/topologies` и `results/showcases` — сохранённые исследовательские модели; - `results/search` — продолжаемое геометрическое состояние поиска; @@ -93,6 +103,10 @@ CMake; проекты Visual Studio можно собирать по отдел и Blackwell `sm_120`; - Eigen 3.4.0 уже находится в `external/eigen-3.4.0`. +Для самого поиска Python не нужен. Для переобучения трансформера дополнительно +нужны Python 3.12, NumPy и CUDA-сборка PyTorch. Эти зависимости устанавливаются +в локальную `.venv` и не входят в штатный exe. + Без CUDA проект собирает диагностический stub. Запуск с `--cuda` в такой сборке завершается с понятной ошибкой и не переключается на CPU незаметно. @@ -112,6 +126,8 @@ ctest --test-dir build/vs2026 -C Release --output-on-failure - `polyhedron_gui.exe` — GUI; - `verify_cpp.exe` — проверка OBJ; - `training_archive_selftest.exe` — regression/self-test локального ML-архива. +- `transformer_training_export.exe` — потоковый экспорт trajectory; +- `transformer_ranker_selftest.exe` — regression/self-test transformer runtime. Для сборки без CUDA используется отдельный каталог: @@ -128,7 +144,9 @@ cmake --build build/cpu --config Release msbuild projects\Szilassi\Szilassi.vcxproj /m /p:Configuration=Release /p:Platform=x64 msbuild projects\PolyhedronGui\PolyhedronGui.vcxproj /m /p:Configuration=Release /p:Platform=x64 msbuild projects\VerifyCpp\VerifyCpp.vcxproj /m /p:Configuration=Release /p:Platform=x64 +msbuild projects\TransformerTrainingExport\TransformerTrainingExport.vcxproj /m /p:Configuration=Release /p:Platform=x64 msbuild tests\TrainingArchiveSelfTest\TrainingArchiveSelfTest.vcxproj /m /p:Configuration=Release /p:Platform=x64 +msbuild tests\TransformerRankerSelfTest\TransformerRankerSelfTest.vcxproj /m /p:Configuration=Release /p:Platform=x64 ``` Вывод этих проектов находится в `build/msbuild/bin/x64/Release`. @@ -207,9 +225,11 @@ leaderboard восстанавливается при следующем зап - `results/search/runs//training` — `.sztd` shards и активный WAL; - `results/search/topology_N/neural` — online-модель `.szonn` и служебные receipts; +- `results/search/neural/transformer` — immutable поколения `.sztf`, активная + `current.sztf` и отчёты обучения; - временные варианты этих файлов и marker достижения лимита. -`.gitignore` исключает каталоги `training`, `neural`, все `.sztd/.szonn` и их +`.gitignore` исключает каталоги `training`, `neural`, все `.sztd/.szonn/.sztf` и их временные варианты. Не используйте `git add -f` для этих путей. Schema v3 сохраняет пригодные для последующего обучения факты: каждый успешный и @@ -221,8 +241,8 @@ WAL имеет CRC и durable commit boundary. После сбоя питани отбрасывается, а подтверждённые записи сохраняются. Завершённые shards immutable. Общий локальный лимит ML-кэша равен ровно `200000000000` байт (200 GB, не GiB). -В расчёт входят существующие neural-файлы, резерв 59 финальных моделей и временный -файл атомарной замены. При достижении лимита: +В расчёт входят существующие neural-файлы, резерв 59 online-моделей, transformer +generation/current и временные файлы атомарной замены. При достижении лимита: - новые обучающие записи больше не создаются; - online-обучение замораживается; @@ -232,6 +252,60 @@ WAL имеет CRC и durable commit boundary. После сбоя питани Лимит рассчитан для одного поискового процесса в одном checkout. +## Обучение трансформера + +Transformer обучается на GPU, но штатный поиск выполняет его маленький FP32 +inference на CPU, не отнимая CUDA-ресурсы у геометрических цепочек. Основные labels +берутся только из `InjectedTrajectory`: `SeedProposal` без результата считается +неизвестным, а не неудачным исходом. + +Тренер сначала фиксирует список завершённых `.sztd`, проверяет их CRC штатным C++ +reader и создаёт временный бинарный snapshot. Активный WAL и shards, появившиеся +после начала обучения, в этот snapshot не входят и попадут в следующее +переобучение. Поэтому накопление архива можно продолжать; временный snapshot после +успеха или ошибки удаляется, если не указан `--keep-snapshot`. + +Первичная настройка локального окружения: + +```powershell +python -m venv .venv +.\.venv\Scripts\python.exe -m pip install numpy +.\.venv\Scripts\python.exe -m pip install torch==2.13.0 ` + --index-url https://download.pytorch.org/whl/cu130 +``` + +Обучение на текущих четырёх независимых seed-run: + +```powershell +.\scripts\TrainTransformer.bat +``` + +Скрипт проверяет `torch.cuda.is_available()` и пропускает Python-окружения с +CPU-only PyTorch. Если CUDA-Python не находится автоматически, его можно указать +без изменения файлов проекта: + +```powershell +$env:SZILASSI_PYTHON = "C:\path\to\python.exe" +.\scripts\TrainTransformer.bat +``` + +Train/validation/test делятся целыми run UUID, а не случайными соседними +записями. Модель публикуется только после проверки AP, Brier и top-decile uplift +на отдельных запусках. Затем deployment-ensemble заново обучается на всех четырёх +run и атомарно публикуется как `results/search/neural/transformer/current.sztf`. +Предыдущие `model_.sztf` не переписываются, а идентификатор загруженного +поколения сохраняется в `run.tsv` и algorithm fingerprint обучающих записей. + +При будущем переобучении на всём накопившемся архиве, включая новые run: + +```powershell +.\scripts\TrainTransformer.bat --deployment-all-runs +``` + +После публикации достаточно снова нажать `Запустить поиск`. Сбор `.sztd`, online-MLP, +MAP-Elites/CEM, CUDA-поиск и CPU/DD-проверка продолжают работать независимо от +наличия transformer-модели. + ## Работа на нескольких компьютерах Для параллельного исследования задавайте непересекающиеся диапазоны топологий. @@ -255,6 +329,8 @@ git rm -r --cached --ignore-unmatch -- ` ":(glob)results/search/**/*.sztd.*" ` ":(glob)results/search/**/*.szonn" ` ":(glob)results/search/**/*.szonn.*" ` + ":(glob)results/search/**/*.sztf" ` + ":(glob)results/search/**/*.sztf.*" ` ":(glob)results/search/**/TRAINING_DATA_LIMIT_REACHED_REWRITE_REQUIRED.tsv" ``` @@ -277,6 +353,10 @@ git ls-files -ci --exclude-standard -- results/search detection, частичные WAL, recovery после сбоя, immutable publication и точную границу 200 GB. +`TransformerRankerSelfTest` проверяет byte-exact размер модели, единую нормализацию +features, batch inference, CRC, отклонение повреждённой модели и сохранение +последней валидной модели при неудачной загрузке. + Запуск через CTest: ```powershell diff --git a/projects/Szilassi/Szilassi.vcxproj b/projects/Szilassi/Szilassi.vcxproj index a263b7ce..925c3157 100644 --- a/projects/Szilassi/Szilassi.vcxproj +++ b/projects/Szilassi/Szilassi.vcxproj @@ -99,7 +99,7 @@ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true /utf-8 %(AdditionalOptions) - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) stdcpp17 @@ -117,7 +117,7 @@ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true /utf-8 %(AdditionalOptions) - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) Speed AdvancedVectorExtensions2 false @@ -139,7 +139,7 @@ _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true /utf-8 %(AdditionalOptions) - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) stdcpp17 @@ -157,7 +157,7 @@ NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true /utf-8 %(AdditionalOptions) - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) Speed AdvancedVectorExtensions2 false @@ -179,6 +179,7 @@ + @@ -199,6 +200,7 @@ + diff --git a/projects/Szilassi/Szilassi.vcxproj.filters b/projects/Szilassi/Szilassi.vcxproj.filters index 52bfccb8..db154545 100644 --- a/projects/Szilassi/Szilassi.vcxproj.filters +++ b/projects/Szilassi/Szilassi.vcxproj.filters @@ -33,6 +33,9 @@ Source Files + + Source Files + Source Files @@ -59,6 +62,9 @@ Header Files + + Header Files + Header Files diff --git a/projects/Szilassi/main.cpp b/projects/Szilassi/main.cpp index 680ef478..8301ec41 100644 --- a/projects/Szilassi/main.cpp +++ b/projects/Szilassi/main.cpp @@ -6,6 +6,7 @@ #include "SearchArchive.h" #include "OnlineSurrogate.h" #include "TrainingArchive.h" +#include "TransformerRanker.h" #include "cuda_search.h" #include #include @@ -57,6 +58,7 @@ constexpr std::uint32_t MIN_COMPATIBLE_ARCHIVE_OBJECTIVE_VERSION = 3; constexpr int CUDA_SESSION_CACHE_LIMIT = NUM_TOPOLOGIES; constexpr std::uint64_t TRAINING_CACHE_LIMIT_BYTES = 200000000000ULL; constexpr std::uint64_t NEURAL_MODEL_BUDGET_PER_TOPOLOGY = 4ULL * 1024ULL * 1024ULL; +constexpr std::uint64_t TRANSFORMER_MODEL_BUDGET = 8ULL * 1024ULL * 1024ULL; constexpr std::uint32_t TRAINING_ARCHIVE_SCHEMA_VERSION = 3; struct StudyOptions { @@ -2238,6 +2240,8 @@ struct GlobalMetrics { double g_global_degeneracy_weight = 0.01; std::string g_search_device_id = "CPU"; +bool g_transformer_active = false; +std::string g_transformer_model_id = "none"; std::uint64_t topology_fingerprint() { std::uint64_t hash = 1469598103934665603ULL; @@ -2343,6 +2347,10 @@ struct GlobalTopologyState { std::uint64_t neural_samples_added = 0; std::uint64_t neural_training_steps = 0; std::uint64_t neural_seed_count = 0; + std::uint64_t transformer_candidates_scored = 0; + std::uint64_t transformer_candidates_selected = 0; + std::uint64_t transformer_control_seeds = 0; + std::uint64_t transformer_invalid_predictions = 0; std::uint64_t training_verified_records = 0; std::uint64_t training_fp32_records = 0; std::uint64_t training_seed_records = 0; @@ -2897,7 +2905,8 @@ szilassi::training::CommonContext make_training_context( context.topology_fingerprint = topology_fingerprint(); context.algorithm_fingerprint = training_hash_text( options.use_cuda - ? "hybrid-quality-diversity-neural-v3-cuda-fp32" + ? "hybrid-quality-diversity-neural-v3-transformer-v1-cuda-fp32:" + + g_transformer_model_id : "cpu-parallel-simulated-annealing-double"); static const std::uint64_t build_fingerprint = training_hash_text( std::string(__DATE__) + " " + __TIME__); @@ -3036,14 +3045,44 @@ std::filesystem::path neural_model_relative_path(int topology) { "_s" + std::to_string(GLOBAL_NEURAL_SCHEMA_VERSION) + ".szonn"); } +std::filesystem::path transformer_model_relative_path() { + return std::filesystem::path("neural") / "transformer" / "current.sztf"; +} + +std::string transformer_digest_hex( + const std::array& digest +) { + static constexpr char digits[] = "0123456789abcdef"; + std::string result; + result.reserve(digest.size() * 2); + for (const std::uint8_t value : digest) { + result.push_back(digits[value >> 4]); + result.push_back(digits[value & 0x0fU]); + } + return result; +} + +std::string transformer_model_id( + const szilassi::transformer::Metadata& metadata +) { + std::ostringstream out; + out << transformer_digest_hex(metadata.training_digest) + << "-s" << metadata.training_seed + << "-p" << std::hex << std::setw(8) << std::setfill('0') + << metadata.payload_crc32; + return out.str(); +} + bool scan_neural_cache_bytes( const std::filesystem::path& root, std::uint64_t& bytes, std::array& final_snapshot_bytes, + std::uint64_t& transformer_snapshot_bytes, std::string& error ) { bytes = 0; final_snapshot_bytes.fill(0); + transformer_snapshot_bytes = 0; std::error_code exists_error; const bool exists = std::filesystem::exists(root, exists_error); if (exists_error) { @@ -3088,6 +3127,9 @@ bool scan_neural_cache_bytes( break; } } + if (relative == transformer_model_relative_path()) { + transformer_snapshot_bytes = size; + } } iterator.increment(iterator_error); } @@ -4328,6 +4370,9 @@ struct HybridSeedPool { std::vector injected_metrics; std::vector behavior_predictions; std::vector neural_guided; + // 0 = ordinary/MLP-only, 1 = selected by transformer rank, 2 = + // score-independent control retained beside transformer-ranked seeds. + std::vector transformer_selection_mode; std::vector plane_actions; std::vector move_actions; std::vector scale_actions; @@ -4340,6 +4385,10 @@ struct HybridSeedPool { move_sampling_probabilities; std::vector> scale_sampling_probabilities; + std::uint64_t transformer_candidates_scored = 0; + std::uint64_t transformer_candidates_selected = 0; + std::uint64_t transformer_control_seeds = 0; + std::uint64_t transformer_invalid_predictions = 0; }; NeuralInput make_neural_input( @@ -4466,7 +4515,9 @@ void apply_neural_repair_move( HybridSeedPool make_hybrid_seed_pool( GlobalTopologyState& topology_state, std::uint64_t seed, - int maximum_states + int maximum_states, + const szilassi::transformer::TransformerRanker* transformer_ranker = nullptr, + const szilassi::transformer::SearchBudget& transformer_budget = {} ) { HybridSeedPool pool; if (maximum_states <= 0) { @@ -4479,6 +4530,7 @@ HybridSeedPool make_hybrid_seed_pool( pool.injected_metrics.reserve(static_cast(maximum_states)); pool.behavior_predictions.reserve(static_cast(maximum_states)); pool.neural_guided.reserve(static_cast(maximum_states)); + pool.transformer_selection_mode.reserve(static_cast(maximum_states)); pool.plane_actions.reserve(static_cast(maximum_states)); pool.move_actions.reserve(static_cast(maximum_states)); pool.scale_actions.reserve(static_cast(maximum_states)); @@ -4489,7 +4541,9 @@ HybridSeedPool make_hybrid_seed_pool( pool.move_sampling_probabilities.reserve(static_cast(maximum_states)); pool.scale_sampling_probabilities.reserve(static_cast(maximum_states)); - auto append = [&](const VectorXd& injected_x, + auto append_to = [&](HybridSeedPool& destination, + int destination_limit, + const VectorXd& injected_x, const GlobalMetrics& injected_metrics, const VectorXd& training_x, const NeuralInput& training_input, @@ -4507,8 +4561,9 @@ HybridSeedPool make_hybrid_seed_pool( const std::array& move_sampling_probabilities, const std::array& - scale_sampling_probabilities) { - if (static_cast(pool.states.size()) >= maximum_states || + scale_sampling_probabilities, + std::uint8_t transformer_selection_mode) { + if (static_cast(destination.states.size()) >= destination_limit || injected_x.size() != GLOBAL_PLANE_VALUE_COUNT || training_x.size() != GLOBAL_PLANE_VALUE_COUNT || !injected_x.allFinite() || !std::isfinite(injected_metrics.energy) || @@ -4523,22 +4578,23 @@ HybridSeedPool make_hybrid_seed_pool( training_value.values[static_cast(component)] = static_cast(training_x[component]); } - pool.states.push_back(value); - pool.training_states.push_back(training_value); - pool.inputs.push_back(training_input); - pool.metrics.push_back(training_metrics); - pool.injected_metrics.push_back(injected_metrics); - pool.behavior_predictions.push_back(behavior_prediction); - pool.neural_guided.push_back(guided ? 1u : 0u); - pool.plane_actions.push_back(plane_action); - pool.move_actions.push_back(move_action); - pool.scale_actions.push_back(scale_action); - pool.plane_propensities.push_back(static_cast(plane_propensity)); - pool.move_propensities.push_back(static_cast(move_propensity)); - pool.scale_propensities.push_back(static_cast(scale_propensity)); - pool.plane_sampling_probabilities.push_back(plane_sampling_probabilities); - pool.move_sampling_probabilities.push_back(move_sampling_probabilities); - pool.scale_sampling_probabilities.push_back(scale_sampling_probabilities); + destination.states.push_back(value); + destination.training_states.push_back(training_value); + destination.inputs.push_back(training_input); + destination.metrics.push_back(training_metrics); + destination.injected_metrics.push_back(injected_metrics); + destination.behavior_predictions.push_back(behavior_prediction); + destination.neural_guided.push_back(guided ? 1u : 0u); + destination.transformer_selection_mode.push_back(transformer_selection_mode); + destination.plane_actions.push_back(plane_action); + destination.move_actions.push_back(move_action); + destination.scale_actions.push_back(scale_action); + destination.plane_propensities.push_back(static_cast(plane_propensity)); + destination.move_propensities.push_back(static_cast(move_propensity)); + destination.scale_propensities.push_back(static_cast(scale_propensity)); + destination.plane_sampling_probabilities.push_back(plane_sampling_probabilities); + destination.move_sampling_probabilities.push_back(move_sampling_probabilities); + destination.scale_sampling_probabilities.push_back(scale_sampling_probabilities); }; // Base seeds do not sample an action. A zero distribution records that @@ -4565,7 +4621,9 @@ HybridSeedPool make_hybrid_seed_pool( x[component] = static_cast(value.values[static_cast(component)]); } const GlobalMetrics metrics = evaluate_global_state(x, true, scratch); - append( + append_to( + pool, + maximum_states, x, metrics, x, @@ -4581,7 +4639,8 @@ HybridSeedPool make_hybrid_seed_pool( 1.0, no_plane_sampling_distribution, no_move_sampling_distribution, - no_scale_sampling_distribution); + no_scale_sampling_distribution, + 0); } if (guided_target == 0) { @@ -4593,6 +4652,9 @@ HybridSeedPool make_hybrid_seed_pool( GlobalMetrics metrics; NeuralInput input{}; NeuralPrediction prediction{}; + NeuralPrediction control_prediction{}; + bool learned_prediction = false; + bool control_learned_prediction = false; double acquisition = 0.0; }; std::vector anchors; @@ -4619,27 +4681,117 @@ HybridSeedPool make_hybrid_seed_pool( 0.0}); } - const bool model_ready = topology_state.neural != nullptr && + const bool online_model_ready = topology_state.neural != nullptr && topology_state.neural->replay_size() >= 128; + const bool transformer_ready = transformer_ranker != nullptr && + transformer_ranker->ready(); + auto default_prediction = []() { + NeuralPrediction prediction; + prediction.plane_probabilities.fill( + 1.0f / static_cast(cuda_search::kPlaneCount)); + prediction.move_probabilities.fill( + 1.0f / static_cast(szilassi::surrogate::kMoveCount)); + prediction.scale_probabilities = {{0.25f, 0.55f, 0.20f}}; + // This is a valid neutral policy/value fallback, not a failed model + // inference. Keeping it finite also prevents transformer value heads + // trained on injected proposals from leaking into anchor telemetry. + prediction.finite = true; + return prediction; + }; + auto transformer_as_neural = [](const szilassi::transformer::Prediction& source) { + NeuralPrediction result; + result.improvement_logit = source.improvement_logit; + result.improvement_probability = source.improvement_probability; + result.expected_defect_gain = source.expected_defect_gain; + result.uncertainty = source.improvement_probability_variance; + result.plane_probabilities = source.plane_probabilities; + result.move_probabilities = source.move_probabilities; + result.scale_probabilities = source.scale_probabilities; + result.finite = source.finite; + return result; + }; + auto blend_predictions = [](const NeuralPrediction& local, + const NeuralPrediction& global) { + if (!global.finite) return local; + if (!local.finite) return global; + NeuralPrediction blended; + constexpr float global_weight = 0.65f; + constexpr float local_weight = 1.0f - global_weight; + // Transformer value heads are trained on injected proposals. Anchor + // inference is used only for its policy heads; keep the local online + // value estimate instead of evaluating the global value head OOD. + blended.improvement_logit = local.improvement_logit; + blended.improvement_probability = local.improvement_probability; + blended.expected_defect_gain = local.expected_defect_gain; + blended.uncertainty = local.uncertainty; + for (std::size_t i = 0; i < blended.plane_probabilities.size(); ++i) { + blended.plane_probabilities[i] = + local_weight * local.plane_probabilities[i] + + global_weight * global.plane_probabilities[i]; + } + for (std::size_t i = 0; i < blended.move_probabilities.size(); ++i) { + blended.move_probabilities[i] = + local_weight * local.move_probabilities[i] + + global_weight * global.move_probabilities[i]; + } + for (std::size_t i = 0; i < blended.scale_probabilities.size(); ++i) { + blended.scale_probabilities[i] = + local_weight * local.scale_probabilities[i] + + global_weight * global.scale_probabilities[i]; + } + blended.finite = true; + return blended; + }; + auto make_transformer_features = [&](const VectorXd& x, + const GlobalMetrics& metrics, + bool guided, + szilassi::transformer::Features& features) { + szilassi::transformer::FeatureInput input; + input.state = training_plane_state(x); + input.metrics = training_metrics(metrics); + input.budget = transformer_budget; + input.topology = static_cast(topology_state.topology); + input.guided_context = guided; + return szilassi::transformer::make_features(input, features, nullptr); + }; + std::uint64_t transformer_anchor_invalid_predictions = 0; for (Anchor& anchor : anchors) { - if (model_ready) { + if (online_model_ready) { anchor.prediction = topology_state.neural->predict(anchor.input); } if (!anchor.prediction.finite) { - anchor.prediction.plane_probabilities.fill( - 1.0f / static_cast(cuda_search::kPlaneCount)); - anchor.prediction.move_probabilities.fill( - 1.0f / static_cast(szilassi::surrogate::kMoveCount)); - anchor.prediction.scale_probabilities = {{0.25f, 0.55f, 0.20f}}; + anchor.prediction = default_prediction(); } + anchor.control_prediction = anchor.prediction; + anchor.control_learned_prediction = online_model_ready && + anchor.prediction.finite; const double uncertainty = std::sqrt(std::max( 0.0, static_cast(anchor.prediction.uncertainty))); - anchor.acquisition = model_ready + anchor.acquisition = online_model_ready ? static_cast(anchor.prediction.expected_defect_gain) + 0.75 * uncertainty + 0.10 * static_cast(anchor.prediction.improvement_probability) : 0.0; + if (transformer_ready) { + szilassi::transformer::Features features; + if (make_transformer_features(anchor.x, anchor.metrics, true, features)) { + const NeuralPrediction global_prediction = transformer_as_neural( + transformer_ranker->predict(features)); + if (global_prediction.finite) { + anchor.prediction = blend_predictions( + anchor.prediction, + global_prediction); + anchor.learned_prediction = true; + } else { + ++transformer_anchor_invalid_predictions; + } + } else { + ++transformer_anchor_invalid_predictions; + } + } + anchor.learned_prediction = anchor.learned_prediction || + (online_model_ready && anchor.prediction.finite); } std::stable_sort(anchors.begin(), anchors.end(), [](const Anchor& left, const Anchor& right) { if (left.acquisition != right.acquisition) { @@ -4650,9 +4802,18 @@ HybridSeedPool make_hybrid_seed_pool( RNG rng(static_cast(seed)); std::normal_distribution normal(0.0, 1.0); + HybridSeedPool proposals; + proposals.transformer_invalid_predictions = + transformer_anchor_invalid_predictions; + const int proposal_target = transformer_ready + ? std::max(guided_target, guided_target * 4) + : guided_target; + const int control_target = transformer_ready + ? std::min(4, guided_target) + : 0; int attempts = 0; - while (std::count(pool.neural_guided.begin(), pool.neural_guided.end(), 1u) < guided_target && - attempts < guided_target * 12) { + while (static_cast(proposals.states.size()) < proposal_target && + attempts < proposal_target * 16) { ++attempts; std::size_t anchor_index = 0; if (attempts % 4 == 0) { @@ -4663,6 +4824,14 @@ HybridSeedPool make_hybrid_seed_pool( std::min(8, anchors.size()); } const Anchor& anchor = anchors[anchor_index]; + const bool score_independent_control = + static_cast(proposals.states.size()) < control_target; + const NeuralPrediction& action_prediction = score_independent_control + ? anchor.control_prediction + : anchor.prediction; + const bool learned_action_prediction = score_independent_control + ? anchor.control_learned_prediction + : anchor.learned_prediction; std::array plane_bias{}; const std::uint16_t failure_mask = static_cast( anchor.metrics.crossing_face_mask | anchor.metrics.intersection_face_mask); @@ -4681,23 +4850,23 @@ HybridSeedPool make_hybrid_seed_pool( std::array scale_sampling_probabilities{}; const int plane = sample_neural_action( - anchor.prediction.plane_probabilities, - model_ready ? 0.25 : 0.65, + action_prediction.plane_probabilities, + learned_action_prediction ? 0.25 : 0.65, rng, &plane_propensity, &plane_bias, &plane_sampling_probabilities); const int move = sample_neural_action( - anchor.prediction.move_probabilities, - model_ready ? 0.25 : 0.65, + action_prediction.move_probabilities, + learned_action_prediction ? 0.25 : 0.65, rng, &move_propensity, static_cast*>(nullptr), &move_sampling_probabilities); const int scale = sample_neural_action( - anchor.prediction.scale_probabilities, - model_ready ? 0.25 : 0.50, + action_prediction.scale_probabilities, + learned_action_prediction ? 0.25 : 0.50, rng, &scale_propensity, static_cast= proposals.states.size()) return; + VectorXd injected_x(GLOBAL_PLANE_VALUE_COUNT); + VectorXd training_x(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + injected_x[component] = static_cast( + proposals.states[index].values[static_cast(component)]); + training_x[component] = static_cast( + proposals.training_states[index].values[static_cast(component)]); + } + append_to( + pool, + maximum_states, + injected_x, + proposals.injected_metrics[index], + training_x, + proposals.inputs[index], + proposals.metrics[index], + proposals.behavior_predictions[index], + true, + proposals.plane_actions[index], + proposals.move_actions[index], + proposals.scale_actions[index], + proposals.plane_propensities[index], + proposals.move_propensities[index], + proposals.scale_propensities[index], + proposals.plane_sampling_probabilities[index], + proposals.move_sampling_probabilities[index], + proposals.scale_sampling_probabilities[index], + selection_mode); + }; + + if (!transformer_ready || proposals.states.size() <= + static_cast(guided_target)) { + for (std::size_t index = 0; + index < proposals.states.size() && + index < static_cast(guided_target); + ++index) { + copy_proposal(index, 0); + } + return pool; + } + + const std::size_t controls = std::min( + static_cast(control_target), + proposals.states.size()); + for (std::size_t index = 0; index < controls; ++index) { + copy_proposal(index, 2); + ++pool.transformer_control_seeds; + } + + struct RankedProposal { + std::size_t index = 0; + double acquisition = -std::numeric_limits::infinity(); + }; + std::vector rank_features; + std::vector rank_indices; + rank_features.reserve(proposals.states.size() - controls); + rank_indices.reserve(proposals.states.size() - controls); + for (std::size_t index = controls; index < proposals.states.size(); ++index) { + VectorXd candidate(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + candidate[component] = static_cast( + proposals.states[index].values[static_cast(component)]); + } + szilassi::transformer::Features features; + if (make_transformer_features( + candidate, + proposals.injected_metrics[index], + true, + features)) { + rank_features.push_back(features); + rank_indices.push_back(index); + } else { + ++pool.transformer_invalid_predictions; + } + } + const std::vector rank_predictions = + transformer_ranker->predict_batch(rank_features); + std::vector ranked; + ranked.reserve(rank_predictions.size()); + for (std::size_t item = 0; + item < rank_predictions.size() && item < rank_indices.size(); + ++item) { + const szilassi::transformer::Prediction& prediction = rank_predictions[item]; + if (!prediction.finite) { + ++pool.transformer_invalid_predictions; + continue; + } + ++pool.transformer_candidates_scored; + const double probability = std::clamp( + static_cast(prediction.improvement_probability), + 0.0, + 1.0); + const double expected_gain = std::clamp( + static_cast(prediction.expected_defect_gain), + -8.0, + 8.0); + const double uncertainty = std::sqrt(std::max( + 0.0, + static_cast(prediction.improvement_probability_variance))); + ranked.push_back(RankedProposal{ + rank_indices[item], + probability * (1.0 + std::max(0.0, expected_gain)) + + 0.15 * uncertainty}); + } + std::stable_sort(ranked.begin(), ranked.end(), [](const auto& left, const auto& right) { + if (left.acquisition != right.acquisition) { + return left.acquisition > right.acquisition; + } + return left.index < right.index; + }); + const std::size_t ranked_target = static_cast(guided_target) - controls; + std::unordered_set selected_indices; + std::size_t filled_ranked_slots = 0; + for (std::size_t item = 0; + item < ranked.size() && item < ranked_target; + ++item) { + copy_proposal(ranked[item].index, 1); + selected_indices.insert(ranked[item].index); + ++filled_ranked_slots; + ++pool.transformer_candidates_selected; + } + for (std::size_t index = controls; + filled_ranked_slots < ranked_target && + index < proposals.states.size(); + ++index) { + if (selected_indices.insert(index).second) { + copy_proposal(index, 0); + ++filled_ranked_slots; + } } return pool; } @@ -4738,6 +5043,7 @@ bool complete_hybrid_seed(const HybridSeedPool& pool, std::size_t index) { index < pool.injected_metrics.size() && index < pool.behavior_predictions.size() && index < pool.neural_guided.size() && + index < pool.transformer_selection_mode.size() && index < pool.plane_actions.size() && index < pool.move_actions.size() && index < pool.scale_actions.size() && @@ -4833,6 +5139,11 @@ std::uint64_t archive_hybrid_seed_pool( if (pool.neural_guided[index] != 0) { record.flags |= szilassi::training::SeedProposalNeuralGuided; } + if (pool.transformer_selection_mode[index] == 1) { + record.flags |= szilassi::training::SeedProposalTransformerRanked; + } else if (pool.transformer_selection_mode[index] == 2) { + record.flags |= szilassi::training::SeedProposalTransformerControl; + } if (!append_training_record(archive, record)) { if (archive->fatal_error || !archive->writer->collection_enabled()) { break; @@ -5687,7 +5998,7 @@ bool write_run_manifest( << "cuda_session_cache\t" << effective_cuda_session_cache << "\n" << "algorithm\t" << (options.use_cuda - ? "hybrid-quality-diversity-neural-v3" + ? "hybrid-quality-diversity-neural-v3-transformer-ranker-v1" : "cpu-parallel-simulated-annealing") << "\n" << "control_baseline_min_fraction\t0.25\n" << "strategy_weights\tadaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6\n" @@ -5715,6 +6026,11 @@ bool write_run_manifest( ? "per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%" : "disabled") << "\n" << "neural_safety\tbaseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative\n" + << "transformer_enabled\t" << (g_transformer_active ? 1 : 0) << "\n" + << "transformer_model_id\t" << g_transformer_model_id << "\n" + << "transformer\tglobal-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker\n" + << "transformer_scope\tguided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64\n" + << "transformer_failure_mode\tmissing-invalid-nonfinite:fallback-to-online-mlp\n" << "training_archive_schema\t" << TRAINING_ARCHIVE_SCHEMA_VERSION << "\n" << "training_archive_format\t" << szilassi::training::kTrainingShardFormatVersion << "\n" << "training_archive_layout\trun-uuid/immutable-64MiB-crc-shards-plus-durable-wal\n" @@ -5900,7 +6216,8 @@ bool run_global_topology_round_cuda( int round_seed, int effective_chain_count, cuda_search::BatchSession& session, - TrainingArchiveSession* training_archive + TrainingArchiveSession* training_archive, + const szilassi::transformer::TransformerRanker* transformer_ranker ) { const auto round_started_at = std::chrono::steady_clock::now(); state.last_round = {}; @@ -5951,6 +6268,7 @@ bool run_global_topology_round_cuda( initial_pool_for_archive.injected_metrics.push_back(state.best); initial_pool_for_archive.behavior_predictions.emplace_back(); initial_pool_for_archive.neural_guided.push_back(0); + initial_pool_for_archive.transformer_selection_mode.push_back(0); initial_pool_for_archive.plane_actions.push_back(-1); initial_pool_for_archive.move_actions.push_back(-1); initial_pool_for_archive.scale_actions.push_back(-1); @@ -6001,17 +6319,37 @@ bool run_global_topology_round_cuda( std::max(0.002, options.step * (depth ? 0.025 : 0.05))); run_config.injected_state_jitter = static_cast( std::max(0.002, options.step * (depth ? 0.018 : 0.04))); + const int estimated_injected_chains = std::max( + 1, + (effective_chain_count * std::max(0, strategy_weights[4]) + 15) / 16); + const int estimated_chains_per_seed = std::max( + 1, + (estimated_injected_chains + 63) / 64); HybridSeedPool injected_pool = make_hybrid_seed_pool( state, static_cast(static_cast(round_seed)) + static_cast(batch + 1) * 0x9e3779b97f4a7c15ULL, - 64); + 64, + transformer_ranker, + szilassi::transformer::SearchBudget{ + static_cast(std::max(0, options.cuda_iterations)), + static_cast(estimated_chains_per_seed), + static_cast(estimated_chains_per_seed), + 64U}); run_config.injected_states = injected_pool.states; state.last_round.neural_seed_count += static_cast( std::count( injected_pool.neural_guided.begin(), injected_pool.neural_guided.end(), static_cast(1))); + state.last_round.transformer_candidates_scored += + injected_pool.transformer_candidates_scored; + state.last_round.transformer_candidates_selected += + injected_pool.transformer_candidates_selected; + state.last_round.transformer_control_seeds += + injected_pool.transformer_control_seeds; + state.last_round.transformer_invalid_predictions += + injected_pool.transformer_invalid_predictions; if (batch == 0 && (previous_has_state || session_was_initialized)) { run_config.fresh_numerator = depth ? 1 : 7; run_config.fresh_denominator = depth ? 4 : 8; @@ -6433,6 +6771,7 @@ bool run_global_topology_round_cuda( seed_index >= injected_pool.injected_metrics.size() || seed_index >= injected_pool.behavior_predictions.size() || seed_index >= injected_pool.neural_guided.size() || + seed_index >= injected_pool.transformer_selection_mode.size() || seed_index >= injected_pool.plane_actions.size() || seed_index >= injected_pool.move_actions.size() || seed_index >= injected_pool.scale_actions.size() || @@ -6488,7 +6827,9 @@ bool run_global_topology_round_cuda( record.replica_count = rollout.replica_count; // Best CPU-verified descendant among all chains assigned to // this proposal in the batch. - record.selection_rule = 1; + record.selection_rule = 1U | + (static_cast( + injected_pool.transformer_selection_mode[seed_index]) << 8U); record.plane_action = injected_pool.plane_actions[seed_index]; record.move_action = injected_pool.move_actions[seed_index]; record.scale_action = injected_pool.scale_actions[seed_index]; @@ -6508,6 +6849,11 @@ bool run_global_topology_round_cuda( if (injected_pool.neural_guided[seed_index] != 0) { record.flags |= szilassi::training::TrajectoryNeuralGuided; } + if (injected_pool.transformer_selection_mode[seed_index] == 1) { + record.flags |= szilassi::training::TrajectoryTransformerRanked; + } else if (injected_pool.transformer_selection_mode[seed_index] == 2) { + record.flags |= szilassi::training::TrajectoryTransformerControl; + } if (injected_pool.behavior_predictions[seed_index].finite) { record.flags |= szilassi::training::TrajectoryPredictionSupplied; } @@ -6784,7 +7130,8 @@ bool run_global_topology_round( int round_seed, int effective_cuda_chains, cuda_search::BatchSession* cuda_session, - TrainingArchiveSession* training_archive + TrainingArchiveSession* training_archive, + const szilassi::transformer::TransformerRanker* transformer_ranker ) { if (options.use_cuda) { if (cuda_session == nullptr) { @@ -6798,7 +7145,8 @@ bool run_global_topology_round( round_seed, effective_cuda_chains, *cuda_session, - training_archive); + training_archive, + transformer_ranker); } const auto round_started_at = std::chrono::steady_clock::now(); state.last_round = {}; @@ -7008,6 +7356,8 @@ int global_search_all(const LocalRepairOptions& options) { } const std::filesystem::path root(options.global_dir); std::filesystem::create_directories(root); + g_transformer_active = false; + g_transformer_model_id = "none"; const szilassi::checkpoint::RunIdentity run_identity = szilassi::checkpoint::make_run_identity(); g_global_degeneracy_weight = options.degeneracy_weight; @@ -7042,6 +7392,35 @@ int global_search_all(const LocalRepairOptions& options) { << std::endl; } + szilassi::transformer::TransformerRanker transformer_ranker; + if (options.use_cuda) { + const std::filesystem::path model_path = + root / transformer_model_relative_path(); + if (std::filesystem::exists(model_path)) { + std::string transformer_error; + if (transformer_ranker.load(model_path, &transformer_error) && + transformer_ranker.ready()) { + const szilassi::transformer::Metadata metadata = + transformer_ranker.metadata(); + g_transformer_active = true; + g_transformer_model_id = transformer_model_id(metadata); + std::cout << "Transformer ranker: " << g_transformer_model_id + << ", validation AP " << metadata.validation.average_precision + << ", top-k gain " << metadata.validation.top_k_gain + << std::endl; + } else { + std::cerr << "Ignoring invalid transformer ranker: " + << transformer_error + << "; online MLP and ordinary search remain active." + << std::endl; + } + } else { + std::cout << "Transformer ranker: no approved model yet; " + "online MLP and ordinary search remain active." + << std::endl; + } + } + const unsigned int hardware_threads = std::thread::hardware_concurrency(); const int worker_count = std::max( 1, @@ -7093,11 +7472,13 @@ int global_search_all(const LocalRepairOptions& options) { std::uint64_t existing_neural_bytes = 0; std::array existing_final_neural_snapshot_bytes{}; + std::uint64_t existing_transformer_snapshot_bytes = 0; std::string training_setup_error; if (!scan_neural_cache_bytes( root, existing_neural_bytes, existing_final_neural_snapshot_bytes, + existing_transformer_snapshot_bytes, training_setup_error)) { std::cerr << "Cannot account existing neural cache: " << training_setup_error << std::endl; @@ -7119,6 +7500,17 @@ int global_search_all(const LocalRepairOptions& options) { watcher.join(); return 2; } + const std::uint64_t maximum_transformer_snapshot = + szilassi::transformer::maximum_model_bytes(); + if (maximum_transformer_snapshot > TRANSFORMER_MODEL_BUDGET) { + std::cerr << "Configured transformer snapshot no longer fits its exact cache budget; " + << "revise the program before collecting more training data." + << std::endl; + stop_requested.store(true, std::memory_order_relaxed); + watcher_done.store(true, std::memory_order_relaxed); + watcher.join(); + return 2; + } // Count every byte that is already present, then reserve the missing // capacity of each canonical final-model slot independently. Taking the // maximum of aggregate existing/reserved bytes would undercount orphan or @@ -7142,6 +7534,19 @@ int global_search_all(const LocalRepairOptions& options) { } accounted_neural_files += missing_slot_bytes; } + if (existing_transformer_snapshot_bytes < TRANSFORMER_MODEL_BUDGET) { + const std::uint64_t missing_transformer_slot = + TRANSFORMER_MODEL_BUDGET - existing_transformer_snapshot_bytes; + if (missing_transformer_slot > + std::numeric_limits::max() - accounted_neural_files) { + std::cerr << "Transformer cache byte-count overflow." << std::endl; + stop_requested.store(true, std::memory_order_relaxed); + watcher_done.store(true, std::memory_order_relaxed); + watcher.join(); + return 2; + } + accounted_neural_files += missing_transformer_slot; + } if (maximum_neural_snapshot > std::numeric_limits::max() - accounted_neural_files) { std::cerr << "Neural cache byte-count overflow." << std::endl; @@ -7152,8 +7557,24 @@ int global_search_all(const LocalRepairOptions& options) { } // Atomic save temporarily keeps the previous final snapshot and one full // replacement. Existing orphan/foreign files remain separately accounted. + // Transformer publication retains the current file while creating one + // immutable generation and one atomic replacement temporary. + const std::uint64_t transformer_publication_reserve = + maximum_transformer_snapshot * 2ULL; + if (maximum_neural_snapshot > + std::numeric_limits::max() - accounted_neural_files || + transformer_publication_reserve > + std::numeric_limits::max() - + (accounted_neural_files + maximum_neural_snapshot)) { + std::cerr << "Neural cache byte-count overflow." << std::endl; + stop_requested.store(true, std::memory_order_relaxed); + watcher_done.store(true, std::memory_order_relaxed); + watcher.join(); + return 2; + } const std::uint64_t neural_model_reserve = - accounted_neural_files + maximum_neural_snapshot; + accounted_neural_files + maximum_neural_snapshot + + transformer_publication_reserve; szilassi::training::RecoveryReport training_recovery; const std::uint64_t training_archive_allocation = neural_model_reserve < TRAINING_CACHE_LIMIT_BYTES @@ -7279,6 +7700,7 @@ int global_search_all(const LocalRepairOptions& options) { << "\trex_attempts\trex_accepts\tspsa_attempted\tspsa_accepted" << "\tbest_crossing_loss\tbest_intersection_loss" << "\tneural_replay\tneural_positive\tneural_samples\tneural_train_steps\tneural_seeds" + << "\ttransformer_scored\ttransformer_selected\ttransformer_controls\ttransformer_invalid" << "\ttraining_verified\ttraining_fp32\ttraining_seeds" << "\ttraining_rollouts\ttraining_refinements" << "\ttraining_cache_accounted_bytes\ttraining_wal_bytes" @@ -7331,6 +7753,9 @@ int global_search_all(const LocalRepairOptions& options) { << std::endl; if (options.use_cuda) { std::cout << "Guidance : smooth-I repair + per-topology online neural ensemble" + << (g_transformer_active + ? " + global transformer ranker" + : " + transformer fallback inactive") << std::endl; } std::cout << "Training data: CPU-verified states, sampled chain bests and injected trajectories, " @@ -7533,7 +7958,8 @@ int global_search_all(const LocalRepairOptions& options) { round_seed, effective_cuda_chains, cuda_session, - &training_archive); + &training_archive, + g_transformer_active ? &transformer_ranker : nullptr); if (training_archive.fatal_error) { fatal_search_error = true; stop_requested.store(true, std::memory_order_relaxed); @@ -7584,6 +8010,16 @@ int global_search_all(const LocalRepairOptions& options) { << (state.neural != nullptr ? ", neural replay " + std::to_string(state.neural->replay_size()) : std::string{}) + << (g_transformer_active + ? ", transformer " + + std::to_string( + state.last_round.transformer_candidates_selected) + + "/" + std::to_string( + state.last_round.transformer_candidates_scored) + + " + " + std::to_string( + state.last_round.transformer_control_seeds) + + " control" + : std::string{}) << ", bandit " << std::fixed << std::setprecision(3) << selection_score << ", elapsed " << std::fixed << std::setprecision(1) @@ -7624,6 +8060,10 @@ int global_search_all(const LocalRepairOptions& options) { << state.last_round.neural_samples_added << "\t" << state.last_round.neural_training_steps << "\t" << state.last_round.neural_seed_count << "\t" + << state.last_round.transformer_candidates_scored << "\t" + << state.last_round.transformer_candidates_selected << "\t" + << state.last_round.transformer_control_seeds << "\t" + << state.last_round.transformer_invalid_predictions << "\t" << state.last_round.training_verified_records << "\t" << state.last_round.training_fp32_records << "\t" << state.last_round.training_seed_records << "\t" diff --git a/projects/TransformerTrainingExport/TransformerTrainingExport.vcxproj b/projects/TransformerTrainingExport/TransformerTrainingExport.vcxproj new file mode 100644 index 00000000..9930ddcf --- /dev/null +++ b/projects/TransformerTrainingExport/TransformerTrainingExport.vcxproj @@ -0,0 +1,86 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 18.0 + Win32Proj + {D92AA5A6-F198-44F0-B8C1-0EB2FAE167D9} + TransformerTrainingExport + 10.0.26100.0 + + + + Application + true + v145 + Unicode + + + Application + false + v145 + true + Unicode + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\')) + $(RepositoryRoot)build\msbuild\bin\$(Platform)\$(Configuration)\ + $(RepositoryRoot)build\msbuild\obj\$(ProjectName)\$(Platform)\$(Configuration)\ + $(RepositoryRoot) + + + + stdcpp17 + Level4 + true + true + true + UNICODE;_UNICODE;NOMINMAX;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) + $(RepositoryRoot)src\TrainingArchive;$(RepositoryRoot)src\TransformerRanker;$(RepositoryRoot)external\eigen-3.4.0;%(AdditionalIncludeDirectories) + /utf-8 /permissive- %(AdditionalOptions) + + + Console + true + + + + + true + true + + + true + true + + + + + + + + + + + + + diff --git a/projects/TransformerTrainingExport/transformer_training_export.cpp b/projects/TransformerTrainingExport/transformer_training_export.cpp new file mode 100644 index 00000000..8a1c1a63 --- /dev/null +++ b/projects/TransformerTrainingExport/transformer_training_export.cpp @@ -0,0 +1,683 @@ +#include "../../src/TrainingArchive/TrainingArchive.h" +#include "../../src/TransformerRanker/TransformerRanker.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#include +#include +#include +#endif + +namespace { + +namespace training = szilassi::training; +namespace transformer = szilassi::transformer; + +constexpr std::array kExportMagic{{'S', 'Z', 'T', 'X', 'P', '0', '0', '1'}}; +constexpr std::uint32_t kExportVersion = 1; +constexpr std::size_t kFaceCount = 12; +constexpr std::size_t kFaceFeatureCount = 16; +constexpr std::size_t kGlobalFeatureCount = 24; +constexpr std::size_t kFeatureFloatCount = + kFaceCount * kFaceFeatureCount + kGlobalFeatureCount; + +// Stable packed little-endian record layout (there is no native-struct padding): +// 0 u8[16] canonical UUID bytes +// 16 u64 record_sequence +// 24 u32 topology +// 28 f32[216] proposal features (12x16 face, then 24 global) +// 892 f32[216] anchor features (12x16 face, then 24 global) +// 1756 i32 crossing_gain = anchor.C - result.C +// 1760 i32 intersection_gain = anchor.I - result.I +// 1764 i32 total_defect_gain +// 1768 u8 defect_improved (total_defect_gain > 0) +// 1769 u8 objective_better (TrajectoryImproved) +// 1770 u8 defect_count_tie (total_defect_gain == 0) +// 1771 u8 entered_archive +// 1772 i32[3] plane, move, scale actions (-1 means absent) +// 1784 f32[3] actual plane, move, scale propensities +// 1796 u32 replica_count / assigned chains +// 1800 u64 rollout_iterations +// 1808 u32 InjectedTrajectory flags +// 1812 u32 anchor Metrics flags +// 1816 u32 injected/proposal Metrics flags +// 1820 u32 result Metrics flags (contains MetricDdVerified when applicable) +constexpr std::uint32_t kExportRecordSize = 1824; + +using FeatureFaceArray = + decltype(std::declval().face); +using FeatureFaceRow = typename FeatureFaceArray::value_type; +using FeatureGlobalArray = + decltype(std::declval().global); +static_assert(std::tuple_size::value == kFaceCount, + "Transformer face count changed; bump the export format"); +static_assert(std::tuple_size::value == kFaceFeatureCount, + "Transformer face feature count changed; bump the export format"); +static_assert(std::tuple_size::value == kGlobalFeatureCount, + "Transformer global feature count changed; bump the export format"); + +struct Options { + std::filesystem::path root; + std::set included_runs; + bool root_supplied = false; +}; + +struct ShardSnapshot { + std::filesystem::path path; + std::string run_name; + training::RunId expected_run_id{}; + std::optional filename_index; + std::uint64_t size = 0; +}; + +void print_usage() { + std::cerr + << "Usage: TransformerTrainingExport --root " + "[--include-run ]...\n" + << "Writes SZTXP001 version-1 packed little-endian records to stdout.\n"; +} + +int hexadecimal_digit(char value) { + if (value >= '0' && value <= '9') return value - '0'; + if (value >= 'a' && value <= 'f') return 10 + value - 'a'; + if (value >= 'A' && value <= 'F') return 10 + value - 'A'; + return -1; +} + +bool parse_canonical_uuid( + const std::string& text, + std::string& normalized, + training::RunId& run_id +) { + constexpr std::array kHyphens{{8, 13, 18, 23}}; + if (text.size() != 36) return false; + for (std::size_t position : kHyphens) { + if (text[position] != '-') return false; + } + normalized.clear(); + normalized.reserve(text.size()); + std::array hexadecimal{}; + std::size_t digit_count = 0; + for (std::size_t index = 0; index < text.size(); ++index) { + if (std::find(kHyphens.begin(), kHyphens.end(), index) != kHyphens.end()) { + normalized.push_back('-'); + continue; + } + const int digit = hexadecimal_digit(text[index]); + if (digit < 0 || digit_count >= hexadecimal.size()) return false; + const char lower = static_cast(std::tolower( + static_cast(text[index]))); + hexadecimal[digit_count++] = lower; + normalized.push_back(lower); + } + if (digit_count != hexadecimal.size()) return false; + for (std::size_t index = 0; index < run_id.bytes.size(); ++index) { + const int high = hexadecimal_digit(hexadecimal[index * 2]); + const int low = hexadecimal_digit(hexadecimal[index * 2 + 1]); + run_id.bytes[index] = static_cast((high << 4) | low); + } + return true; +} + +bool parse_options(int argc, char* argv[], Options& options) { + for (int index = 1; index < argc; ++index) { + const std::string argument = argv[index]; + if (argument == "--help" || argument == "-h") { + print_usage(); + return false; + } + if (argument == "--root") { + if (++index >= argc || options.root_supplied) { + std::cerr << "--root requires exactly one path\n"; + return false; + } + options.root = std::filesystem::path(argv[index]); + options.root_supplied = true; + continue; + } + if (argument == "--include-run") { + if (++index >= argc) { + std::cerr << "--include-run requires a canonical UUID\n"; + return false; + } + std::string normalized; + training::RunId ignored; + if (!parse_canonical_uuid(argv[index], normalized, ignored)) { + std::cerr << "Invalid run UUID: " << argv[index] << '\n'; + return false; + } + options.included_runs.insert(std::move(normalized)); + continue; + } + std::cerr << "Unknown argument: " << argument << '\n'; + return false; + } + if (!options.root_supplied || options.root.empty()) { + std::cerr << "--root is required\n"; + return false; + } + return true; +} + +std::optional parse_shard_filename( + const std::filesystem::path& path +) { + const std::string filename = path.filename().string(); + constexpr const char* kPrefix = "shard_"; + constexpr const char* kSuffix = ".sztd"; + constexpr std::size_t kPrefixSize = 6; + constexpr std::size_t kSuffixSize = 5; + if (filename.size() <= kPrefixSize + kSuffixSize || + filename.compare(0, kPrefixSize, kPrefix) != 0 || + filename.compare(filename.size() - kSuffixSize, kSuffixSize, kSuffix) != 0) { + return std::nullopt; + } + const std::string digits = filename.substr( + kPrefixSize, + filename.size() - kPrefixSize - kSuffixSize); + std::uint64_t value = 0; + for (char digit : digits) { + if (digit < '0' || digit > '9' || + value > (std::numeric_limits::max() - 9U) / 10U) { + return std::nullopt; + } + value = value * 10U + static_cast(digit - '0'); + } + return value; +} + +bool snapshot_shards( + const Options& options, + std::vector& shards, + std::string& error +) { + std::error_code path_error; + const std::filesystem::path absolute_root = + std::filesystem::absolute(options.root, path_error); + if (path_error) { + error = "Cannot resolve archive root: " + path_error.message(); + return false; + } + const std::filesystem::path runs_root = absolute_root / "runs"; + if (!std::filesystem::is_directory(runs_root, path_error) || path_error) { + error = "Archive runs directory does not exist: " + runs_root.string(); + return false; + } + + struct RunDirectory { + std::filesystem::path path; + std::string normalized_name; + training::RunId run_id{}; + }; + std::vector runs; + std::set found_requested_runs; + std::filesystem::directory_iterator iterator(runs_root, path_error); + const std::filesystem::directory_iterator end; + if (path_error) { + error = "Cannot enumerate archive runs: " + path_error.message(); + return false; + } + while (iterator != end) { + std::error_code type_error; + const bool is_directory = iterator->is_directory(type_error); + if (type_error) { + error = "Cannot inspect run directory entry: " + type_error.message(); + return false; + } + if (is_directory) { + std::string normalized; + training::RunId run_id; + const std::string name = iterator->path().filename().string(); + if (parse_canonical_uuid(name, normalized, run_id) && + (options.included_runs.empty() || + options.included_runs.count(normalized) != 0)) { + runs.push_back({iterator->path(), normalized, run_id}); + found_requested_runs.insert(normalized); + } + } + iterator.increment(path_error); + if (path_error) { + error = "Cannot continue enumerating archive runs: " + path_error.message(); + return false; + } + } + for (const std::string& requested : options.included_runs) { + if (found_requested_runs.count(requested) == 0) { + error = "Requested run does not exist below the archive root: " + requested; + return false; + } + } + std::sort(runs.begin(), runs.end(), [](const RunDirectory& left, const RunDirectory& right) { + return left.normalized_name < right.normalized_name; + }); + + for (const RunDirectory& run : runs) { + const std::filesystem::path training_directory = run.path / "training"; + std::error_code exists_error; + const bool has_training = + std::filesystem::is_directory(training_directory, exists_error); + if (exists_error) { + error = "Cannot inspect training directory for run " + + run.normalized_name + ": " + exists_error.message(); + return false; + } + if (!has_training) { + if (!options.included_runs.empty()) { + error = "Requested run has no training directory: " + run.normalized_name; + return false; + } + continue; + } + std::filesystem::directory_iterator shard_iterator( + training_directory, + exists_error); + if (exists_error) { + error = "Cannot enumerate training directory for run " + + run.normalized_name + ": " + exists_error.message(); + return false; + } + while (shard_iterator != end) { + std::error_code file_error; + const bool regular = shard_iterator->is_regular_file(file_error); + if (file_error) { + error = "Cannot inspect training file: " + file_error.message(); + return false; + } + const std::filesystem::path path = shard_iterator->path(); + if (regular && path.extension() == ".sztd") { + const std::uint64_t size = shard_iterator->file_size(file_error); + if (file_error) { + error = "Cannot size training shard: " + file_error.message(); + return false; + } + shards.push_back({ + path, + run.normalized_name, + run.run_id, + parse_shard_filename(path), + size}); + } + shard_iterator.increment(exists_error); + if (exists_error) { + error = "Cannot continue enumerating training shards: " + + exists_error.message(); + return false; + } + } + } + + std::sort(shards.begin(), shards.end(), [](const ShardSnapshot& left, + const ShardSnapshot& right) { + if (left.run_name != right.run_name) return left.run_name < right.run_name; + if (left.filename_index.has_value() != right.filename_index.has_value()) { + return left.filename_index.has_value(); + } + if (left.filename_index && right.filename_index && + *left.filename_index != *right.filename_index) { + return *left.filename_index < *right.filename_index; + } + return left.path.filename().string() < right.path.filename().string(); + }); + if (shards.empty()) { + error = "No sealed .sztd shards matched the requested runs"; + return false; + } + return true; +} + +class PackedRecord { +public: + void bytes(const std::uint8_t* values, std::size_t count) { + if (!room(count)) return; + std::memcpy(data_.data() + size_, values, count); + size_ += count; + } + + void u8(std::uint8_t value) { + if (!room(1)) return; + data_[size_++] = value; + } + + void u32(std::uint32_t value) { + if (!room(4)) return; + for (std::size_t byte = 0; byte < 4; ++byte) { + data_[size_++] = static_cast(value >> (byte * 8)); + } + } + + void i32(std::int32_t value) { + std::uint32_t bits = 0; + std::memcpy(&bits, &value, sizeof(bits)); + u32(bits); + } + + void u64(std::uint64_t value) { + if (!room(8)) return; + for (std::size_t byte = 0; byte < 8; ++byte) { + data_[size_++] = static_cast(value >> (byte * 8)); + } + } + + void f32(float value) { + std::uint32_t bits = 0; + static_assert(sizeof(bits) == sizeof(value), "Unexpected float width"); + std::memcpy(&bits, &value, sizeof(bits)); + u32(bits); + } + + const std::uint8_t* data() const { return data_.data(); } + std::size_t size() const { return size_; } + bool overflowed() const { return overflowed_; } + +private: + bool room(std::size_t count) { + if (count > data_.size() - size_) { + overflowed_ = true; + return false; + } + return true; + } + + std::array data_{}; + std::size_t size_ = 0; + bool overflowed_ = false; +}; + +bool append_features( + PackedRecord& packed, + const transformer::Features& features, + std::uint32_t topology, + std::string& error +) { + if (features.topology != topology) { + error = "Transformer feature topology does not match the archive record"; + return false; + } + for (const auto& face : features.face) { + for (float value : face) { + if (!std::isfinite(value)) { + error = "Transformer face feature is not finite"; + return false; + } + packed.f32(value); + } + } + for (float value : features.global) { + if (!std::isfinite(value)) { + error = "Transformer global feature is not finite"; + return false; + } + packed.f32(value); + } + return true; +} + +bool checked_i32(std::int64_t value, std::int32_t& result) { + if (value < std::numeric_limits::min() || + value > std::numeric_limits::max()) { + return false; + } + result = static_cast(value); + return true; +} + +bool encode_trajectory( + const training::InjectedTrajectory& trajectory, + const training::RunId& expected_run_id, + PackedRecord& packed, + std::string& error +) { + if (trajectory.context.run_id.bytes != expected_run_id.bytes) { + error = "Training record run UUID does not match its parent run directory"; + return false; + } + + const transformer::SearchBudget budget{ + trajectory.rollout_iterations, + trajectory.replica_count, + trajectory.replica_count, + trajectory.pool_size}; + const bool guided = + (trajectory.flags & training::TrajectoryNeuralGuided) != 0; + const transformer::FeatureInput proposal_input{ + trajectory.injected_state, + trajectory.injected_metrics, + budget, + trajectory.context.topology, + guided}; + const transformer::FeatureInput anchor_input{ + trajectory.anchor_state, + trajectory.anchor_metrics, + budget, + trajectory.context.topology, + guided}; + transformer::Features proposal_features; + transformer::Features anchor_features; + std::string feature_error; + if (!transformer::make_features( + proposal_input, + proposal_features, + &feature_error)) { + error = "Cannot build proposal features: " + feature_error; + return false; + } + if (!transformer::make_features( + anchor_input, + anchor_features, + &feature_error)) { + error = "Cannot build anchor features: " + feature_error; + return false; + } + + const std::int64_t crossing_gain_wide = + static_cast(trajectory.anchor_metrics.crossings) - + static_cast(trajectory.result_metrics.crossings); + const std::int64_t intersection_gain_wide = + static_cast(trajectory.anchor_metrics.intersections) - + static_cast(trajectory.result_metrics.intersections); + const std::int64_t defect_gain_wide = + crossing_gain_wide + intersection_gain_wide; + std::int32_t crossing_gain = 0; + std::int32_t intersection_gain = 0; + std::int32_t defect_gain = 0; + if (!checked_i32(crossing_gain_wide, crossing_gain) || + !checked_i32(intersection_gain_wide, intersection_gain) || + !checked_i32(defect_gain_wide, defect_gain)) { + error = "Trajectory label does not fit the export format"; + return false; + } + + packed.bytes(trajectory.context.run_id.bytes.data(), + trajectory.context.run_id.bytes.size()); + packed.u64(trajectory.context.record_sequence); + packed.u32(trajectory.context.topology); + if (!append_features( + packed, + proposal_features, + trajectory.context.topology, + error) || + !append_features( + packed, + anchor_features, + trajectory.context.topology, + error)) { + return false; + } + packed.i32(crossing_gain); + packed.i32(intersection_gain); + packed.i32(defect_gain); + packed.u8(defect_gain > 0 ? 1U : 0U); + packed.u8((trajectory.flags & training::TrajectoryImproved) != 0 ? 1U : 0U); + packed.u8(defect_gain == 0 ? 1U : 0U); + packed.u8((trajectory.flags & training::TrajectoryEnteredArchive) != 0 ? 1U : 0U); + packed.i32(trajectory.plane_action); + packed.i32(trajectory.move_action); + packed.i32(trajectory.scale_action); + packed.f32(trajectory.plane_propensity); + packed.f32(trajectory.move_propensity); + packed.f32(trajectory.scale_propensity); + packed.u32(trajectory.replica_count); + packed.u64(trajectory.rollout_iterations); + packed.u32(trajectory.flags); + packed.u32(trajectory.anchor_metrics.flags); + packed.u32(trajectory.injected_metrics.flags); + packed.u32(trajectory.result_metrics.flags); + if (packed.overflowed() || packed.size() != kExportRecordSize) { + error = "Internal export record-size mismatch"; + return false; + } + return true; +} + +bool write_u32(std::ostream& output, std::uint32_t value) { + std::array bytes{}; + for (std::size_t index = 0; index < bytes.size(); ++index) { + bytes[index] = static_cast( + static_cast(value >> (index * 8))); + } + output.write(bytes.data(), static_cast(bytes.size())); + return static_cast(output); +} + +bool write_header(std::ostream& output) { + output.write(kExportMagic.data(), static_cast(kExportMagic.size())); + return static_cast(output) && + write_u32(output, kExportVersion) && + write_u32(output, kExportRecordSize); +} + +void lower_windows_priority() { +#ifdef _WIN32 + if (SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS) == 0) { + std::cerr << "Warning: cannot set below-normal process priority (Windows error " + << GetLastError() << ")\n"; + } +#endif +} + +bool enable_binary_stdout() { +#ifdef _WIN32 + return _setmode(_fileno(stdout), _O_BINARY) != -1; +#else + return true; +#endif +} + +} // namespace + +int main(int argc, char* argv[]) { + Options options; + if (!parse_options(argc, argv, options)) { + return 2; + } + lower_windows_priority(); + if (!enable_binary_stdout()) { + std::cerr << "Cannot switch stdout to binary mode\n"; + return 3; + } + + std::vector shards; + std::string error; + if (!snapshot_shards(options, shards, error)) { + std::cerr << "Cannot snapshot training shards: " << error << '\n'; + return 4; + } + std::uint64_t snapshot_bytes = 0; + for (const ShardSnapshot& shard : shards) { + if (shard.size > std::numeric_limits::max() - snapshot_bytes) { + std::cerr << "Training shard snapshot byte count overflow\n"; + return 4; + } + snapshot_bytes += shard.size; + } + std::cerr << "Training export snapshot: " << shards.size() + << " sealed shards, " << snapshot_bytes << " bytes"; + if (!options.included_runs.empty()) { + std::cerr << ", " << options.included_runs.size() << " selected run(s)"; + } + std::cerr << '\n'; + + std::ios::sync_with_stdio(false); + if (!write_header(std::cout)) { + std::cerr << "Cannot write training export header to stdout\n"; + return 5; + } + + std::uint64_t exported_records = 0; + for (std::size_t shard_ordinal = 0; shard_ordinal < shards.size(); ++shard_ordinal) { + const ShardSnapshot& snapshot = shards[shard_ordinal]; + bool output_failed = false; + std::string record_error; + training::StreamCallbacks callbacks; + callbacks.injected_trajectory = [&](const training::InjectedTrajectory& trajectory) { + PackedRecord packed; + if (!encode_trajectory( + trajectory, + snapshot.expected_run_id, + packed, + record_error)) { + return false; + } + std::cout.write( + reinterpret_cast(packed.data()), + static_cast(packed.size())); + if (!std::cout) { + output_failed = true; + return false; + } + ++exported_records; + return true; + }; + training::ShardInfo info; + std::string shard_error; + if (!training::stream_read_shard( + snapshot.path, + callbacks, + &info, + &shard_error)) { + if (output_failed) { + std::cerr << "stdout failed while exporting " + << snapshot.path.string() << '\n'; + return 5; + } + std::cerr << "Cannot export " << snapshot.path.string() << ": " + << (record_error.empty() ? shard_error : record_error) << '\n'; + return 6; + } + if (snapshot.filename_index && info.shard_index != *snapshot.filename_index) { + std::cerr << "Shard header index does not match filename: " + << snapshot.path.string() << '\n'; + return 6; + } + if ((shard_ordinal + 1U) % 16U == 0U || + shard_ordinal + 1U == shards.size()) { + std::cerr << "Validated " << (shard_ordinal + 1U) << '/' + << shards.size() << " shards; exported " + << exported_records << " trajectories\n"; + } + } + std::cout.flush(); + if (!std::cout) { + std::cerr << "Cannot finish writing the training export stream\n"; + return 5; + } + std::cerr << "Training export complete: " << exported_records + << " fixed records, record_size=" << kExportRecordSize << '\n'; + return 0; +} diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/metrics.tsv b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/metrics.tsv new file mode 100644 index 00000000..db9cd863 --- /dev/null +++ b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/metrics.tsv @@ -0,0 +1,408 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783878782303980000 DEPTH 43 1 0.62348542587702926 0 2 11 2 11 0 0 835 53 2591 23803906 209280 1480.4595336914062 8.6115999999999993 2469.8202999999999 40320 20882 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2591 1920 128 384 1 11348341948 4662024 1 0 5 1 2 2 6 7618560 1474560 2949120 2705007 8985600 198 171 158 171 1893 9 2 5 1 36 0 0 0 0 0 +2 1783878784467118500 DEPTH 43 1 0.61380985317164116 0 2 11 2 11 0 0 837 36 2589 23742624 147840 1302.7329559326172 8.6377000000000006 2161.2862 40320 15008 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11352841636 9161712 1 0 5 1 2 2 6 7372800 1474560 2949120 2950925 8985600 187 175 165 346 1716 0 1 1 0 34 0 0 0 0 0 +3 1783878786619805400 DEPTH 43 1 0.61417401289287477 0 2 11 2 11 0 0 839 44 2595 23742570 147840 1288.4408416748047 8.6143999999999998 2151.2764000000002 47040 18548 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11357347444 13667520 1 0 4 2 2 2 6 7127040 1720320 2949120 2950874 8985600 195 175 169 543 1513 0 0 1 2 41 0 0 0 0 0 +4 1783878788830222200 DEPTH 43 1 0.61449589168523411 0 2 11 2 11 0 0 843 24 2595 23742698 147840 1293.9502410888672 8.6465999999999994 2208.5844000000002 80640 21855 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11361853252 18173328 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 184 184 198 826 1203 0 0 0 0 24 0 0 0 0 0 +5 1783878789220690400 REFRESH 43 0 0.61472606416707642 0 2 11 2 11 0 0 844 20 422 3988948 56640 227.83078002929688 1.4386000000000001 388.70679999999999 13440 8138 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11362591916 18911992 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 33 26 41 124 198 3 0 2 3 12 0 0 0 0 0 +6 1783878791412050000 DEPTH 43 1 0.61483653692798534 0 2 11 2 11 0 0 845 43 2584 23742623 147840 1324.7293395996094 8.5982000000000003 2189.3458000000001 80640 40415 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11367086504 23406580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 171 156 174 322 1761 0 0 1 1 41 0 0 0 0 0 +7 1783878793593982000 DEPTH 43 1 0.61481351150575647 0 2 11 2 11 0 0 847 22 2585 23727807 132480 1318.3313903808594 8.6113 2180.0158000000001 107520 46371 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11371582112 27902188 1 0 4 3 2 2 5 5898240 3932160 2949120 2951029 7987200 164 156 188 590 1487 0 1 0 0 21 0 0 0 0 0 +8 1783878795758580700 DEPTH 43 1 0.61465258708349124 0 2 11 2 11 0 0 847 22 2613 23720755 125760 1321.0654754638672 8.6795999999999989 2163.1878999999999 120960 41417 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2613 1920 0 384 1 11376106280 32426356 1 0 4 3 2 2 5 5898240 4423680 2949120 2950975 7488000 163 156 188 1413 693 0 0 0 0 22 0 0 0 0 0 +9 1783878797936971200 DEPTH 43 1 0.61435552741369981 0 2 11 2 11 0 0 847 34 2622 23705482 110400 1315.7295684814453 8.6105999999999998 2177.1043 120960 30503 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11380639628 36959704 1 0 4 3 3 2 4 5898240 4423680 3932160 2951008 6489600 163 155 197 1511 596 0 0 0 4 30 0 0 0 0 0 +10 1783878798298749000 REFRESH 43 0 0.61392805552847884 0 2 11 2 11 0 0 847 11 425 3987991 55680 229.04115295410156 1.4313 360.18360000000001 20160 12118 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11381381352 37701428 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 30 25 39 246 85 0 0 1 2 8 0 0 0 0 0 +11 1783878800494713800 DEPTH 43 1 0.6133783376548172 0 2 11 2 11 0 0 849 28 2605 23698571 103680 1338.7051849365234 8.5991 2194.6106 120960 59957 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 11385897360 42217436 1 0 4 3 3 2 4 5898240 4423680 4423680 2950963 5990400 168 150 229 1339 719 0 0 0 0 28 0 0 0 0 0 +12 1783878802685897200 DEPTH 43 1 0.61271593712317007 0 2 11 2 11 0 0 851 24 2622 23687538 92160 1336.0076751708984 8.6174999999999997 2189.9306000000001 120960 49037 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11390430708 46750784 1 0 4 3 3 3 3 5898240 4423680 4423680 3688683 5241600 177 150 260 1498 537 0 0 0 1 23 0 0 0 0 0 +13 1783878804961759400 DEPTH 43 1 0.61195109319157881 0 2 11 2 11 0 0 851 32 2621 23677624 81600 1390.3780059814453 8.6474000000000011 2274.1918000000001 120960 38961 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11394963036 51283112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 180 150 263 1513 515 2 0 1 0 29 0 0 0 0 0 +14 1783878807254708200 DEPTH 43 1 0.61109422693463689 0 2 11 2 11 0 0 851 37 2621 23677369 81600 1401.6645050048828 8.8420000000000005 2291.6201000000001 120960 28124 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11399495364 55815440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426344 4492800 173 150 253 1552 493 1 0 0 3 33 0 0 0 0 0 +15 1783878807630521600 REFRESH 43 0 0.6101556071142944 0 2 11 2 11 0 0 852 8 429 3987631 55200 231.59910583496094 2.0969000000000002 374.36810000000003 20160 12312 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 11400241168 56561244 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 71 25 102 156 75 1 0 1 0 6 0 0 0 0 0 +16 1783878809999674900 DEPTH 43 1 0.60714512939514831 0 2 11 1 11 1 0 897 109 2530 23676804 81600 1337.8355102539062 8.6052 2367.5823 120960 59674 1 0 0.01321162306883184 0.70350935863804531 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 11404680676 61000752 1 0 6 3 2 2 3 8355840 4423680 3194880 3196924 4492800 196 150 313 377 1494 10 0 0 1 98 1 0 0 0 4 +17 1783878812513400100 DEPTH 43 1 0.70627217609360193 0 1 11 1 11 1 0 917 89 2546 23676500 81600 1327.8107452392578 8.6380999999999997 2436.3764000000001 120960 48576 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11409136504 65456580 1 0 6 3 2 2 3 8847360 4423680 2949120 2950905 4492800 156 150 182 174 1884 4 0 1 0 84 0 0 0 0 1 +18 1783878816055499800 DEPTH 43 1 0.6953465550401261 0 1 11 1 11 0 0 926 85 2551 23676611 81600 1331.3250579833984 8.6232000000000006 3540.7311 120960 40454 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11413597512 2808700 1 0 6 3 2 2 3 8847360 4423680 2949120 2950964 4492800 156 150 192 174 1879 5 0 0 0 80 0 0 0 0 0 +19 1783878818467780600 DEPTH 43 1 0.68533426730668279 0 1 11 1 11 1 0 943 94 2555 23676834 81600 1319.3555603027344 8.5946999999999996 2410.8159999999998 120960 30392 1 0 0.03023503934461445 0.40160674742793606 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11418062520 7273708 1 0 6 3 2 2 3 8847360 4423680 2949120 2951049 4492800 156 150 185 208 1856 16 0 0 0 78 0 0 0 0 2 +20 1783878818855859300 REFRESH 43 0 0.67638530217159232 0 1 11 1 11 0 0 963 29 415 3987507 55200 230.21875 1.4352 386.2552 20160 12187 0 0 0.03023503934461445 0.40160674742793606 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11418794044 8005232 1 0 6 3 2 2 3 1474560 737280 491520 491663 748800 25 25 25 203 137 0 0 0 4 25 0 0 0 0 0 +21 1783878821335072700 DEPTH 43 1 0.66796164775491507 0 1 11 1 11 1 0 984 84 2538 23676765 81600 1341.5609588623047 8.6268999999999991 2477.9007999999999 120960 61706 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11423241712 12452900 1 0 5 3 2 3 3 8355840 4423680 2949120 3442784 4492800 150 150 150 162 1926 0 0 0 0 84 0 0 0 0 2 +22 1783878823772235200 DEPTH 43 1 0.66025411891300489 0 1 11 1 11 0 0 1018 107 2550 23687374 92160 1323.6142120361328 8.6853000000000016 2435.5944 120960 47032 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11427701620 16912808 1 0 4 3 3 3 3 6881280 4423680 3440640 3688621 5241600 150 150 150 398 1702 0 3 3 4 97 0 0 0 0 0 +23 1783878826238920500 DEPTH 43 1 0.65314845097629992 0 1 11 1 11 1 0 1040 93 2551 23685040 89280 1331.3658752441406 8.5866000000000007 2465.0585000000001 120960 40153 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11432162548 21373736 1 0 4 3 3 3 3 5898240 4423680 3932160 4426428 4992000 150 150 150 584 1517 0 1 5 4 83 0 0 0 0 2 +24 1783878828706153800 DEPTH 43 1 0.6466230419227037 0 1 11 1 11 0 0 1052 74 2557 23684234 88320 1323.931640625 8.5961999999999996 2465.8586 120960 33570 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11436629596 25840784 1 0 4 3 3 3 3 5898240 4423680 3932160 4426559 4992000 150 150 150 709 1398 0 1 7 2 64 0 0 0 0 0 +25 1783878829110657000 REFRESH 43 0 0.64059779308859 0 1 11 1 11 0 0 1064 37 418 3987585 55200 228.2373046875 1.4602999999999999 402.74759999999998 20160 12293 0 0 0.026904236575297922 0.38557621408633436 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11437364180 26575368 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 197 146 0 0 0 16 21 0 0 0 0 0 +26 1783878831574652800 DEPTH 43 1 0.63503832131669324 0 1 11 1 11 1 0 1084 76 2550 23677275 81600 1322.060791015625 8.601700000000001 2462.1134000000002 120960 59903 1 0 0.023513122486761771 0.37543211103372959 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11441824088 31035276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 806 1294 0 0 1 0 75 0 0 0 0 1 +27 1783878834061931000 DEPTH 43 1 0.62991590927652485 0 1 11 1 11 1 0 1091 56 2560 23689014 93120 1334.8157501220703 8.5919999999999987 2485.7959000000001 120960 48809 1 0 0.023513206095578918 0.37042460049529408 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11446294196 35505384 1 0 4 3 2 3 4 5898240 4423680 3686400 4426478 5241600 150 150 150 775 1335 0 0 0 0 56 0 0 0 0 2 +28 1783878836540678700 DEPTH 43 1 0.62516828349881448 0 1 11 1 11 1 0 1102 49 2566 23680412 84480 1309.5743103027344 8.633799999999999 2477.1259 120960 38799 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 11450770424 39981612 1 0 4 3 3 3 3 5898240 4423680 4177920 4426382 4742400 150 150 150 934 1182 1 0 1 0 47 0 0 0 0 1 +29 1783878839023722200 DEPTH 43 1 0.62076668377676203 0 1 11 1 11 0 0 1117 52 2572 23680248 84480 1318.4993286132812 8.7275999999999989 2481.5369999999998 120960 26810 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 11455252772 44463960 1 0 4 3 3 3 3 5898240 4423680 4177920 4426392 4742400 150 150 152 1036 1084 0 0 2 0 50 0 0 0 0 0 +30 1783878839415723700 REFRESH 43 0 0.61667270592261625 0 1 11 1 11 0 0 1135 39 421 3987600 55200 231.46188354492188 1.4390000000000001 390.42880000000002 20160 12371 0 0 0.023489798491358991 0.37137792366689748 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11455990416 45201604 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 28 195 148 0 0 0 21 18 0 0 0 0 0 +31 1783878841912138800 DEPTH 43 1 0.61286573147711199 0 1 11 1 11 0 0 1149 50 2558 23677484 81600 1377.2533569335938 8.6547999999999998 2495.1329000000001 120960 58924 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11460458484 49669672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 152 641 1465 0 0 0 0 50 0 0 0 0 0 +32 1783878844542874400 DEPTH 43 1 0.60931972010495827 0 1 11 1 11 1 0 1161 63 2568 23677413 81600 1408.5519866943359 9.6678999999999995 2542.0735 120960 48114 1 0 0.023489775560579393 0.37113068697740526 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11464936752 54147940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 836 1282 0 0 0 1 62 0 0 0 0 1 +33 1783878847126095300 DEPTH 43 1 0.60601155447608401 0 1 11 1 11 1 0 1169 47 2567 23681410 85440 1389.868408203125 8.6465999999999994 2581.4036999999998 120960 37908 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11469414000 58625188 1 0 4 3 2 3 4 5898240 4423680 4177920 4426455 4742400 150 150 151 877 1239 0 0 0 0 47 0 0 0 0 2 +34 1783878849741066700 DEPTH 43 1 0.60303953049728976 0 1 11 1 11 0 0 1176 73 2570 23680521 84480 1375.9540100097656 9.2362000000000002 2612.8915000000002 120960 26367 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11473894308 63105496 1 0 4 3 3 3 3 5898240 4423680 4177920 4426419 4742400 150 150 155 888 1227 0 0 1 1 71 0 0 0 0 0 +35 1783878850152445000 REFRESH 43 0 0.60013215782030138 0 1 11 1 11 0 0 1182 28 420 3987621 55200 231.04409790039062 1.4334 409.66739999999999 20160 12477 0 0 0.00036655077805125216 0.62206274473982437 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11474630932 63842120 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 199 142 0 0 0 8 20 0 0 0 0 0 +36 1783878853779694200 DEPTH 43 1 0.59740569238359242 0 1 11 1 11 1 0 1193 58 2558 23677497 81600 1349.0964660644531 8.6234000000000002 3625.8074000000001 120960 59109 1 0 0.0063723423564975195 0.62842458707157101 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11479099080 1201552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 162 721 1375 0 0 3 0 55 0 0 0 0 1 +37 1783878856260546300 DEPTH 43 1 0.59488626866957528 0 1 11 1 11 1 0 1202 58 2571 23681382 85440 1315.9413757324219 8.6296999999999997 2479.1417999999999 120960 48003 1 0 0.0010562019082033984 0.57581095940555616 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 11483580408 5682880 1 0 4 3 2 3 4 5898240 4423680 4177920 4426433 4742400 150 150 161 696 1414 0 0 1 0 57 0 0 0 0 2 +38 1783878858759938300 DEPTH 43 1 0.59250594788971689 0 1 11 1 11 1 0 1215 63 2558 23699678 103680 1331.0854644775391 8.6417999999999999 2497.9535000000001 120960 38903 1 0 0.0074959312965014934 0.63901230229659434 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11488048476 10150948 1 0 4 3 2 3 4 5898240 4423680 2949120 4426520 5990400 150 150 163 572 1523 2 0 0 0 61 0 0 0 0 3 +39 1783878861203100300 DEPTH 43 1 0.59033187555163846 0 1 11 1 11 1 0 1237 68 2558 23699680 103680 1327.2821960449219 8.6090999999999998 2441.8099999999999 120960 26813 1 0 0.0089534794104050661 0.5660456004506329 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11492516544 14619016 1 0 4 3 2 3 4 5898240 4423680 2949120 4426437 5990400 150 150 161 697 1400 2 0 0 0 66 0 0 0 0 1 +40 1783878861590329800 REFRESH 43 0 0.58826651649895734 0 1 11 1 11 0 0 1257 52 415 3988088 55680 228.71040344238281 1.4329000000000001 385.7167 20160 12352 0 0 0.0089534794104050661 0.5660456004506329 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11493248068 15350540 1 0 4 3 2 3 4 983040 737280 491520 737505 998400 25 25 25 100 240 1 0 0 7 44 0 0 0 0 0 +41 1783878864041975800 DEPTH 43 1 0.58621055235424269 0 1 11 1 11 1 0 1274 68 2552 23699660 103680 1322.3570404052734 8.6202000000000005 2450.2959999999998 120960 59344 1 0 0.0089534655716098747 0.5897130624482595 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 11497710016 19812488 1 0 4 3 2 3 4 5898240 4423680 2949120 4426423 5990400 150 150 150 360 1742 0 0 0 0 68 0 0 0 0 1 +42 1783878866523814300 DEPTH 43 1 0.58426507665283745 0 1 11 1 11 1 0 1278 52 2544 23699648 103680 1377.9814605712891 8.616299999999999 2480.3948 120960 48921 1 0 0.0089535026001445021 0.59017937691416078 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11502163804 24266276 1 0 4 3 2 3 4 5898240 4423680 2949120 4426467 5990400 150 150 150 427 1667 1 0 0 0 51 0 0 0 0 1 +43 1783878869084819200 DEPTH 43 1 0.58241785547291958 0 1 11 1 11 1 0 1286 45 2560 23692026 96000 1401.7167816162109 8.6343999999999994 2559.5794000000001 120960 39248 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11506633912 28736384 1 0 4 3 3 3 3 5898240 4423680 3440640 4426425 5491200 150 150 150 645 1465 1 0 0 0 44 0 0 0 0 1 +44 1783878871649421700 DEPTH 43 1 0.58066886803152529 0 1 11 1 11 0 0 1292 43 2544 23691993 96000 1413.4425506591797 8.6527999999999992 2563.2750999999998 120960 26854 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11511087700 33190172 1 0 4 3 3 3 3 5898240 4423680 3440640 4426432 5491200 150 150 150 699 1395 0 0 2 0 41 0 0 0 0 0 +45 1783878872057388200 REFRESH 43 0 0.57899568038245031 0 1 11 1 11 1 0 1296 23 414 3987611 55200 241.56364440917969 1.4332 406.23590000000002 20160 12666 0 0 0.0070406733235316406 0.55110175138820661 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11511818204 33920676 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 26 178 160 0 0 0 10 13 0 0 0 0 1 +46 1783878874625899600 DEPTH 43 1 0.57742386219135433 0 1 11 1 11 1 0 1315 71 2521 23699680 103680 1356.5278472900391 8.6898999999999997 2483.8800999999999 120960 61350 1 0 0.0040811110137337027 0.54912215547857646 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11516248532 38351004 1 0 4 3 2 3 4 5898240 4423680 2949120 4426484 5990400 150 150 150 200 1871 0 1 0 1 69 0 0 0 0 1 +47 1783878877111370300 DEPTH 43 1 0.57590995596749028 0 1 11 1 11 1 0 1319 50 2549 23684398 88320 1358.8695068359375 8.6112000000000002 2484.1062999999999 120960 50536 1 0 0.0040811121666749104 0.54439612102319435 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11520707420 42809892 1 0 4 3 3 3 3 5898240 4423680 3932160 4426433 4992000 150 150 156 642 1451 0 0 0 0 50 0 0 0 0 1 +48 1783878879656324800 DEPTH 43 1 0.57445162430901886 0 1 11 1 11 1 0 1329 57 2546 23699684 103680 1349.3145599365234 8.6504999999999992 2543.5996 120960 40535 1 0 0.00070350750975902169 0.53719728041054415 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11525163248 47265720 1 0 4 3 2 3 4 5898240 4423680 2949120 4426413 5990400 150 150 156 650 1440 0 0 0 1 56 0 0 0 0 2 +49 1783878882136385900 DEPTH 43 1 0.57307165416311157 0 1 11 1 11 1 0 1334 51 2554 23699714 103680 1358.6380767822266 8.6060999999999996 2478.6790999999998 120960 27986 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11529627236 51729708 1 0 4 3 2 3 4 5898240 4423680 2949120 4426412 5990400 150 150 156 835 1263 0 0 0 0 51 0 0 0 0 2 +50 1783878882530701500 REFRESH 43 0 0.57173959456635748 0 1 11 1 11 0 0 1347 32 408 3988170 55680 235.3438720703125 1.4710000000000001 392.8272 20160 13033 0 0 0.00071730002828579312 0.53446775439727545 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11530351620 52454092 1 0 4 3 2 3 4 983040 737280 491520 737548 998400 25 25 25 127 206 0 0 0 6 26 0 0 0 0 0 +51 1783878885100768300 DEPTH 43 1 0.57044517535789352 0 1 11 1 11 0 0 1360 49 2521 23699771 103680 1379.3546142578125 8.6146000000000011 2568.7017999999998 120960 63051 1 1 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11534781948 56884420 1 0 4 3 2 3 4 5898240 4423680 2949120 4426500 5990400 150 150 150 350 1721 0 0 0 0 48 0 0 0 0 0 +52 1783878887609475700 DEPTH 43 1 0.56919986592266758 0 1 11 1 11 0 0 1368 37 2541 23684531 88320 1347.6855926513672 9.1583000000000006 2507.3627000000001 120960 51882 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11539232676 61335148 1 0 4 3 3 3 3 5898240 4423680 3932160 4426533 4992000 150 150 150 772 1319 0 0 0 0 37 0 0 0 0 0 +53 1783878890130544000 DEPTH 43 1 0.56800017047694695 0 1 11 1 11 0 0 1376 48 2557 23677891 81600 1339.5006408691406 8.6416000000000004 2519.6552999999999 120960 41408 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11543699724 65802196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1230 877 0 0 0 2 46 0 0 0 0 0 +54 1783878893758156600 DEPTH 43 1 0.56684290265271986 0 1 11 1 11 1 0 1388 61 2536 23685460 89280 1338.7409515380859 8.595699999999999 3626.1768000000002 120960 28610 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11548145432 3139084 1 0 4 3 2 3 4 5898240 4423680 3932160 4426423 4992000 150 150 150 1275 811 1 0 0 0 60 0 0 0 0 2 +55 1783878894168770900 REFRESH 43 0 0.56575305064473902 0 1 11 1 11 0 0 1393 17 419 3988154 55680 234.89228820800781 1.4306000000000001 408.98809999999997 20160 13425 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11548881036 3874688 1 0 4 3 2 3 4 983040 737280 491520 737518 998400 25 25 25 226 118 0 0 0 3 14 0 0 0 0 0 +56 1783878896715756900 DEPTH 43 1 0.56466938262906785 0 1 11 1 11 0 0 1400 53 2549 23680737 84480 1367.2284393310547 8.6456 2545.634 120960 64167 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11553339924 8333576 1 0 4 3 3 3 3 5898240 4423680 4177920 4426449 4742400 150 150 150 1126 973 0 0 1 0 52 0 0 0 0 0 +57 1783878899211454100 DEPTH 43 1 0.56362043790210348 0 1 11 1 11 0 0 1407 62 2539 23677868 81600 1341.2075500488281 8.8908000000000005 2494.2145 120960 53440 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 11557788612 12782264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1319 770 2 0 0 0 60 0 0 0 0 0 +58 1783878901691015200 DEPTH 43 1 0.56260397253613403 0 1 11 1 11 0 0 1413 57 2546 23677922 81600 1330.0951232910156 8.6436000000000011 2478.0371 120960 42418 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11562244440 17238092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 150 1447 649 3 0 4 2 48 0 0 0 0 0 +59 1783878904175765400 DEPTH 43 1 0.56161793357624357 0 1 11 1 11 0 0 1415 52 2524 23678026 81600 1337.3798370361328 9.1855999999999991 2482.7772 120960 29352 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11566677828 21671480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1440 634 0 0 0 0 52 0 0 0 0 0 +60 1783878904684071000 REFRESH 43 0 0.5606604411360594 0 1 11 1 11 0 0 1417 14 416 3987647 55200 250.5166015625 1.4337 425.89949999999999 20160 13487 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11567410372 22404024 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 25 259 82 0 0 0 0 14 0 0 0 0 0 +61 1783878907217671400 DEPTH 43 1 0.55972977223580278 0 1 11 1 11 0 0 1424 50 2506 23677724 81600 1375.9705657958984 8.6801999999999992 2531.9376999999999 120960 64965 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11571825400 26819052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 150 1364 692 0 0 0 0 50 0 0 0 0 0 +62 1783878909701053000 DEPTH 43 1 0.55882434621012367 0 1 11 1 11 0 0 1426 38 2509 23677917 81600 1393.4848022460938 8.5987000000000009 2481.8234000000002 120960 53791 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11576243488 31237140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1482 577 0 0 0 0 38 0 0 0 0 0 +63 1783878912157339400 DEPTH 43 1 0.55794271153046904 0 1 11 1 11 0 0 1429 49 2504 23677931 81600 1344.1957397460938 8.6807999999999996 2454.8607999999999 120960 42943 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 11580656476 35650128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1466 588 0 0 3 0 46 0 0 0 0 0 +64 1783878914613911500 DEPTH 43 1 0.55708353390225662 0 1 11 1 11 0 0 1434 48 2509 23678003 81600 1311.110595703125 8.5789000000000009 2455.2453 120960 29454 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11585074564 40068216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1491 568 0 0 3 0 45 0 0 0 0 0 +65 1783878915017747000 REFRESH 43 0 0.55624558551107728 0 1 11 1 11 0 0 1437 15 414 3987689 55200 230.11943054199219 1.4309000000000001 402.39909999999998 20160 13336 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11585805068 40798720 1 0 4 3 3 3 3 983040 737280 737280 737481 748800 25 25 25 263 76 0 0 0 0 15 0 0 0 0 0 +66 1783878917453658300 DEPTH 43 1 0.55542773530470202 0 1 11 1 11 0 0 1439 40 2498 23678079 81600 1328.8131256103516 8.8466000000000005 2434.5601999999999 120960 64845 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2498 1920 0 384 1 11590211936 45205588 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1449 599 0 0 1 0 39 0 0 0 0 0 +67 1783878919925527300 DEPTH 43 1 0.5546289402089537 0 1 11 1 11 0 0 1444 49 2511 23677908 81600 1324.1722869873047 8.6414000000000009 2470.5293999999999 120960 53766 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 11594632064 49625716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1496 565 0 0 1 0 48 0 0 0 0 0 +68 1783878922383191300 DEPTH 43 1 0.55384823718565412 0 1 11 1 11 1 0 1446 44 2523 23678041 81600 1366.2546844482422 8.6036000000000001 2456.0155 120960 43420 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 11599064432 54058084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1514 559 0 0 0 0 44 0 0 0 0 2 +69 1783878924810756000 DEPTH 43 1 0.553098641645135 0 1 11 1 11 0 0 1447 52 2524 23678146 81600 1316.39501953125 8.6318999999999999 2426.2345 120960 29493 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11603497820 58491472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 150 1518 556 0 0 0 0 52 0 0 0 0 0 +70 1783878925230393200 REFRESH 43 0 0.55235012800848438 0 1 11 1 11 0 0 1449 8 415 3987742 55200 235.14828491210938 1.4317 418.18549999999999 20160 13418 0 0 0.00029692792149424023 0.48659870226076979 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11604229344 59222996 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 260 80 0 0 0 0 8 0 0 0 0 0 +71 1783878927717286900 DEPTH 43 1 0.54961736813318296 0 1 11 1 11 1 0 1452 35 2489 23678110 81600 1355.6285552978516 8.6184999999999992 2485.0454 120960 65156 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 11608627032 63620684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 1451 588 0 0 0 1 34 0 0 0 0 1 +72 1783878931324399800 DEPTH 43 1 0.54910256969701143 0 1 11 1 11 0 0 1458 41 2506 23678209 81600 1353.5274505615234 8.6722000000000001 3605.6086 120960 54661 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11613042140 927172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 150 1498 558 0 0 0 0 41 0 0 0 0 0 +73 1783878933755002200 DEPTH 43 1 0.54857890977651036 0 1 11 1 11 1 0 1463 42 2501 23677991 81600 1319.1773223876953 8.9969999999999999 2429.3008 120960 43315 1 0 0.0005193975339547051 0.43317359090119911 4096 2048 384 12 96 360 72 24 0 2501 1920 0 384 1 11617452068 5337100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1493 558 0 0 0 0 42 0 0 0 0 1 +74 1783878936280851000 DEPTH 43 1 0.54805721529321982 0 1 11 1 11 1 0 1469 36 2494 23693424 96960 1312.5498809814453 8.5892999999999997 2451.8928000000001 120960 29842 1 0 0.0041288744677333844 0.43285221904509885 4096 2048 384 12 96 360 72 24 0 2494 1920 0 384 1 11621854856 9739888 1 0 4 3 2 3 4 5898240 4423680 3440640 4426503 5491200 150 150 150 1469 575 0 0 0 0 36 0 0 0 0 3 +75 1783878936676789300 REFRESH 43 0 0.54754219441037111 0 1 11 1 11 1 0 1474 20 414 3988153 55680 228.490234375 1.4459 394.32080000000002 20160 13598 0 0 0.0025413004395503985 0.42294455127780806 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11622585360 10470392 1 0 4 3 2 3 4 983040 737280 491520 737514 998400 25 25 25 264 75 0 0 0 5 15 0 0 0 0 2 +76 1783878939150536400 DEPTH 43 1 0.5470281054508046 0 1 11 1 11 0 0 1479 34 2470 23706384 110400 1339.0623626708984 8.6274999999999995 2472.3517000000002 120960 65871 1 0 0.0025413004395503985 0.42294455127780806 4096 2048 384 12 96 360 72 24 0 2470 1920 0 384 1 11626963668 14848700 1 0 4 3 2 3 4 5898240 4423680 2949120 3934682 6489600 150 150 150 849 1171 0 0 0 0 34 0 0 0 0 0 +77 1783878941615250700 DEPTH 43 1 0.54649018677433703 0 1 11 1 11 1 0 1482 40 2493 23699816 103680 1359.2770538330078 8.8026999999999997 2462.9962999999998 120960 55192 1 0 0.0011463520571648299 0.38931510915441858 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 11631365436 19250468 1 0 4 3 2 3 4 5898240 4423680 2949120 4426317 5990400 150 150 150 1307 736 0 0 0 0 40 0 0 0 0 1 +78 1783878944147762300 DEPTH 43 1 0.5460235910913428 0 1 11 1 10 1 0 1490 57 2510 23700133 103680 1380.7924041748047 8.6821999999999999 2530.9598000000001 120960 43898 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 11635784544 23669576 1 0 4 3 2 3 4 5898240 4423680 2949120 4426537 5990400 150 150 150 1428 632 0 0 0 1 56 0 0 0 0 2 +79 1783878946587354000 DEPTH 43 1 0.64547978206387979 0 1 10 1 10 0 0 1496 43 2554 23743103 147840 1330.8672027587891 8.6517999999999997 2438.2779999999998 80640 22450 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11640248532 28133564 1 0 4 2 2 2 6 5898240 2949120 2949120 2950900 8985600 150 150 150 1384 720 0 0 0 0 43 0 0 0 0 0 +80 1783878946986835000 REFRESH 43 0 0.63493825125345649 0 1 10 1 10 0 0 1507 28 410 3988981 56640 229.58285522460938 1.4335 398.13630000000001 13440 8019 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11640974956 28859988 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 167 168 0 0 0 6 22 0 0 0 0 0 +81 1783878949509790300 DEPTH 43 1 0.62539946171575811 0 1 10 1 10 0 0 1520 62 2537 23742888 147840 1366.5238952636719 9.3079000000000001 2520.9079999999999 80640 39923 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11645421604 33306636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 592 1495 0 0 0 0 62 0 0 0 0 0 +82 1783878952019597500 DEPTH 43 1 0.61676381486740295 0 1 10 1 10 0 0 1524 42 2545 23742919 147840 1339.1177673339844 8.7262000000000004 2508.2460999999998 80640 32065 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 11649876412 37761444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950910 8985600 150 150 150 717 1378 0 0 0 0 42 0 0 0 0 0 +83 1783878954479808000 DEPTH 43 1 0.60894165711734449 0 1 10 1 10 0 0 1527 30 2547 23743064 147840 1345.1274261474609 8.5828999999999986 2459.0079000000001 80640 25858 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11654333260 42218292 1 0 4 2 2 2 6 5898240 2949120 2949120 2950969 8985600 150 150 150 845 1252 0 0 0 0 30 0 0 0 0 0 +84 1783878956811526900 DEPTH 43 1 0.60185228581743844 0 1 10 1 10 0 0 1530 38 2559 23743179 147840 1290.3475494384766 8.6285999999999987 2330.4162999999999 80640 18658 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11658802348 46687380 1 0 4 2 2 2 6 5898240 2949120 2949120 2951001 8985600 150 150 150 1003 1106 0 0 0 0 38 0 0 0 0 0 +85 1783878957181852100 REFRESH 43 0 0.59542305460103306 0 1 10 1 10 0 0 1532 17 416 3989074 56640 223.34873962402344 1.4483999999999999 368.98599999999999 13440 8384 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11659534892 47419924 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 188 153 0 0 0 3 14 0 0 0 0 0 +86 1783878959552900700 DEPTH 43 1 0.58958856817151917 0 1 10 1 10 0 0 1539 41 2551 23727704 132480 1278.8613128662109 8.5978999999999992 2369.7037 107520 52796 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11663995820 51880852 1 0 4 3 2 2 5 5898240 3932160 2949120 2950969 7987200 150 150 153 983 1115 0 0 0 1 40 0 0 0 0 0 +87 1783878961963747700 DEPTH 43 1 0.58428995759654501 0 1 10 1 10 0 0 1551 46 2556 23717211 121920 1317.6381683349609 8.6981999999999999 2409.5257000000001 120960 45817 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11668461848 56346880 1 0 4 3 2 3 4 5898240 4423680 2949120 3196912 7238400 150 150 151 1450 655 0 0 0 0 46 0 0 0 0 0 +88 1783878964276680000 DEPTH 43 1 0.57947422805800208 0 1 10 1 10 0 0 1557 40 2551 23699780 103680 1266.5642242431641 8.6010000000000009 2311.6774999999998 120960 38080 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11672922776 60807808 1 0 4 3 2 3 4 5898240 4423680 2949120 4426445 5990400 150 150 150 1496 605 0 1 0 1 38 0 0 0 0 0 +89 1783878966648408600 DEPTH 43 1 0.57509367181284032 0 1 10 1 10 0 0 1558 41 2555 23692204 96000 1260.3525238037109 8.587299999999999 2294.0799000000002 120960 27356 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11677387784 65272816 1 0 4 3 3 3 3 5898240 4423680 3440640 4426491 5491200 150 150 151 1515 589 0 1 0 2 38 0 0 0 0 0 +90 1783878967035679800 REFRESH 43 0 0.57110533984423739 0 1 10 1 10 0 0 1559 15 416 3987630 55200 224.47308349609375 1.4319 385.93119999999999 20160 12206 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11678120328 66005360 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 30 256 80 0 0 1 1 13 0 0 0 0 0 +91 1783878970445765900 DEPTH 43 1 0.56747056633466975 0 1 10 1 10 0 0 1562 42 2527 23677547 81600 1288.6702117919922 8.6029999999999998 3408.7613999999999 120960 59871 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 11682556856 3333904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426383 4492800 150 150 178 1310 739 2 0 1 0 39 0 0 0 0 0 +92 1783878972776542200 DEPTH 43 1 0.56415454067924109 0 1 10 1 10 0 0 1564 29 2526 23677667 81600 1283.7108917236328 8.7163000000000004 2329.5792000000001 120960 48690 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 11686992284 7769332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 189 1406 631 0 0 0 0 29 0 0 0 0 0 +93 1783878975082125200 DEPTH 43 1 0.56112592228577318 0 1 10 1 10 0 0 1567 37 2542 23677757 81600 1278.3144378662109 8.6022999999999996 2304.3733000000002 120960 38907 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 11691444032 12221080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426548 4492800 150 150 200 1436 606 0 1 0 0 36 0 0 0 0 0 +94 1783878977381206600 DEPTH 43 1 0.55835649388348085 0 1 10 1 10 0 0 1569 31 2540 23677709 81600 1274.9003143310547 8.5883000000000003 2297.8177000000001 120960 27230 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 11695893740 16670788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 150 150 202 1421 617 0 1 0 0 30 0 0 0 0 0 +95 1783878977780025000 REFRESH 43 0 0.55582084948985078 0 1 10 1 10 0 0 1569 6 418 3987664 55200 223.30470275878906 1.4301999999999999 397.55380000000002 20160 11942 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11696628324 17405372 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 42 252 74 0 0 0 0 6 0 0 0 0 0 +96 1783878980117467700 DEPTH 43 1 0.54949611357035999 0 1 10 1 10 0 0 1572 37 2536 23677921 81600 1291.4363098144531 8.5772999999999993 2336.2873 120960 56577 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11701073952 21851000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 210 1409 617 2 0 0 0 35 0 0 0 0 0 +97 1783878982457876400 DEPTH 43 1 0.54776168827218119 0 1 10 1 10 0 0 1577 35 2547 23677826 81600 1281.2757415771484 8.5829000000000004 2339.1522 120960 45996 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11705530800 26307848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 221 1439 587 0 0 0 0 35 0 0 0 0 0 +98 1783878984800360600 DEPTH 43 1 0.54615902592489318 0 1 10 1 10 0 0 1588 51 2541 23677816 81600 1278.6626434326172 8.5764999999999993 2341.1949 120960 36897 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11709981528 30758576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 223 1461 557 2 0 2 0 47 0 0 0 0 0 +99 1783878987109025400 DEPTH 43 1 0.54467542428188587 0 1 10 1 10 0 0 1597 44 2537 23677903 81600 1277.0729370117188 8.5906000000000002 2307.4677000000001 120960 25615 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11714428176 35205224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 240 1459 538 0 0 0 0 44 0 0 0 0 0 +100 1783878987505891900 REFRESH 43 0 0.54329944222877125 0 1 10 1 10 0 0 1598 11 424 3987690 55200 223.80032348632812 1.4345000000000001 395.52280000000002 20160 12214 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11715168880 35945928 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 53 240 81 0 0 0 0 11 0 0 0 0 0 +101 1783878989843333200 DEPTH 43 1 0.54202077391245473 0 1 10 1 10 0 0 1600 40 2546 23677922 81600 1291.0236663818359 8.6164000000000005 2336.2503999999999 120960 57741 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11719624708 40401756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 278 1390 578 0 0 0 0 40 0 0 0 0 0 +102 1783878992164427000 DEPTH 43 1 0.5408301354491446 0 1 10 1 10 0 0 1606 27 2544 23678087 81600 1284.4475555419922 8.5729000000000006 2319.9254000000001 120960 47588 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11724078496 44855544 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 276 1397 571 2 0 0 0 25 0 0 0 0 0 +103 1783878994491264800 DEPTH 43 1 0.53971916295373268 0 1 10 1 10 0 0 1611 31 2547 23677920 81600 1279.0053863525391 8.8504000000000005 2325.6325000000002 120960 37474 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11728535344 49312392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 264 1430 553 0 0 2 0 29 0 0 0 0 0 +104 1783878996878256000 DEPTH 43 1 0.53868032075871963 0 1 10 1 10 0 0 1613 43 2536 23677962 81600 1275.8804473876953 8.5842000000000009 2312.6104999999998 120960 25675 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11732980972 53758020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 255 1451 530 2 0 0 0 41 0 0 0 0 0 +105 1783878997274952500 REFRESH 43 0 0.53770681880402882 0 1 10 1 10 0 0 1614 10 421 3987673 55200 224.611328125 1.4266000000000001 395.49860000000001 20160 12289 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11733718616 54495664 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 58 233 80 1 0 0 0 9 0 0 0 0 0 +106 1783878999614508200 DEPTH 43 1 0.53679253828090467 0 1 10 1 10 0 0 1615 33 2538 23678016 81600 1292.322021484375 8.5855999999999995 2338.2993000000001 120960 59271 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11738166284 58943332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 298 1396 544 0 0 0 0 33 0 0 0 0 0 +107 1783879001935658500 DEPTH 43 1 0.53593196470475624 0 1 10 1 10 1 0 1622 42 2538 23677944 81600 1282.4883117675781 8.5855000000000015 2319.8773999999999 120960 47990 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11742613952 63391000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 150 150 278 1424 536 0 0 0 0 42 0 0 0 0 1 +108 1783879005325031100 DEPTH 43 1 0.53615881116732922 0 1 10 1 10 0 0 1630 41 2555 23678104 81600 1282.13525390625 8.5946999999999996 3388.1266000000001 120960 38447 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11747079040 747748 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 257 1472 526 2 0 0 0 39 0 0 0 0 0 +109 1783879007642279600 DEPTH 43 1 0.53528736179242398 0 1 10 1 10 0 0 1635 31 2555 23678078 81600 1275.2089233398438 8.5862999999999996 2315.9549999999999 120960 26373 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11751544048 5212756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 150 150 246 1477 532 2 0 0 0 29 0 0 0 0 0 +110 1783879008036380000 REFRESH 43 0 0.53446651577028059 0 1 10 1 10 0 0 1637 12 423 3987714 55200 224.28364562988281 1.4311 392.77749999999997 20160 12597 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11752283732 5952440 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 60 237 76 0 0 0 0 12 0 0 0 0 0 +111 1783879010373123400 DEPTH 43 1 0.53369159205267358 0 1 10 1 10 0 0 1642 28 2561 23678107 81600 1292.8543853759766 8.6811000000000007 2335.4641999999999 120960 60755 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11756754860 10423568 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 335 1391 535 0 0 1 0 27 0 0 0 0 0 +112 1783879012691385000 DEPTH 43 1 0.53295837103809807 0 1 10 1 10 0 0 1647 33 2567 23678103 81600 1286.2289886474609 8.5840000000000014 2316.9969999999998 120960 49471 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11761232108 14900816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 307 1420 540 0 0 0 3 30 0 0 0 0 0 +113 1783879015005445300 DEPTH 43 1 0.53226304859015228 0 1 10 1 10 0 0 1650 38 2554 23678089 81600 1279.2105255126953 8.5761999999999983 2312.4974999999999 120960 39741 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11765696096 19364804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 284 1456 514 1 0 0 2 35 0 0 0 0 0 +114 1783879017317244800 DEPTH 43 1 0.53160219464900793 0 1 10 1 10 0 0 1656 37 2561 23678156 81600 1279.0610046386719 8.5890000000000004 2310.3058999999998 120960 27313 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11770167224 23835932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 270 1481 510 1 1 0 0 35 0 0 0 0 0 +115 1783879017714254400 REFRESH 43 0 0.53097271597685192 0 1 10 1 10 0 0 1657 13 419 3987709 55200 224.81304931640625 1.4341999999999999 395.48140000000001 20160 13015 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11770902828 24571536 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 70 226 73 0 0 0 0 13 0 0 0 0 0 +116 1783879020098546700 DEPTH 43 1 0.53037182262407945 0 1 10 1 10 0 0 1665 32 2562 23678187 81600 1291.4985198974609 8.6755000000000013 2383.0088000000001 120960 62661 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 11775374976 29043684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 365 1383 514 0 0 0 0 32 0 0 0 0 0 +117 1783879022427209800 DEPTH 43 1 0.52979699774434197 0 1 10 1 10 0 0 1671 48 2557 23678194 81600 1285.3186492919922 8.5985999999999994 2327.3406 120960 52150 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11779842024 33510732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 317 1433 507 0 0 0 2 46 0 0 0 0 0 +118 1783879024757153700 DEPTH 43 1 0.52924597042372534 0 1 10 1 10 0 0 1673 33 2548 23678213 81600 1282.1678161621094 8.5968999999999998 2328.7822000000001 120960 41228 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 11784299892 37968600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 281 1467 500 1 0 0 0 32 0 0 0 0 0 +119 1783879027147919300 DEPTH 43 1 0.52871669122280862 0 1 10 1 10 0 0 1678 37 2555 23678222 81600 1279.6540374755859 8.5866000000000007 2317.7336 120960 28356 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11788764900 42433608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 265 1489 501 0 0 0 0 37 0 0 0 0 0 +120 1783879027546428400 REFRESH 43 0 0.52820731016046474 0 1 10 1 10 0 0 1680 14 420 3987773 55200 223.77369689941406 1.4319999999999999 397.2287 20160 13361 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11789501524 43170232 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 75 221 74 0 0 0 1 13 0 0 0 0 0 +121 1783879029879781000 DEPTH 43 1 0.52771615689537565 0 1 10 1 10 0 0 1685 33 2563 23678313 81600 1295.7983245849609 8.6021000000000001 2332.2035000000001 120960 64625 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11793974692 47643400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 150 150 384 1376 503 0 0 0 2 31 0 0 0 0 0 +122 1783879032192157800 DEPTH 43 1 0.52724172288563165 0 1 10 1 10 0 0 1690 38 2559 23678277 81600 1285.9655456542969 8.5766999999999989 2311.1577000000002 120960 53941 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11798443780 52112488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 309 1443 507 0 0 0 3 35 0 0 0 0 0 +123 1783879034501797600 DEPTH 43 1 0.52678264532873909 0 1 10 1 10 0 0 1697 28 2559 23678113 81600 1280.8976593017578 8.5754999999999999 2308.377 120960 42638 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11802912868 56581576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426323 4492800 150 150 279 1481 499 0 0 0 0 28 0 0 0 0 0 +124 1783879036804735000 DEPTH 43 1 0.52633769270412334 0 1 10 1 10 0 0 1700 37 2563 23678310 81600 1279.7805633544922 8.5898000000000003 2301.7202000000002 120960 29592 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11807386036 61054744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426475 4492800 150 150 266 1486 511 0 0 0 2 35 0 0 0 0 0 +125 1783879037199862700 REFRESH 43 0 0.52590575175800436 0 1 10 1 10 0 0 1701 9 421 3987735 55200 225.57490539550781 1.4259999999999999 393.98379999999997 20160 13292 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11808123680 61792388 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 77 220 74 0 0 0 1 8 0 0 0 0 0 +126 1783879039544778900 DEPTH 43 1 0.52448581578652109 0 1 10 1 10 0 0 1706 20 2576 23678251 81600 1294.6941528320312 8.6157000000000004 2343.6604000000002 120960 65786 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11812610108 66278816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 366 1411 499 0 0 0 1 19 0 0 0 0 0 +127 1783879042966406900 DEPTH 43 1 0.52417697408739727 0 1 10 1 10 0 0 1707 29 2570 23678365 81600 1287.4795227050781 8.5967000000000002 3420.2975000000001 120960 54464 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11817090496 3650564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426516 4492800 150 150 298 1477 495 0 0 0 0 29 0 0 0 0 0 +128 1783879045274817600 DEPTH 43 1 0.52386840246340116 0 1 10 1 10 0 0 1711 25 2577 23678330 81600 1283.753662109375 8.5963000000000012 2307.2606000000001 120960 42682 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 11821577944 8138012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 278 1487 512 0 0 0 3 22 0 0 0 0 0 +129 1783879047586164700 DEPTH 43 1 0.52356035467252426 0 1 10 1 10 0 0 1713 29 2569 23678291 81600 1277.8242645263672 8.5853999999999999 2310.1646999999998 120960 29255 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 11826057232 12617300 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 276 1491 502 0 0 0 2 27 0 0 0 0 0 +130 1783879047977397000 REFRESH 43 0 0.52325305473030925 0 1 10 1 10 0 0 1713 8 419 3987785 55200 225.185791015625 1.4301999999999999 389.96339999999998 20160 13501 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11826792836 13352904 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 75 221 73 0 0 0 1 7 0 0 0 0 0 +131 1783879050316157300 DEPTH 43 1 0.52094669997920595 0 1 10 1 10 0 0 1717 34 2568 23678223 81600 1296.8812866210938 8.5839999999999996 2337.5077000000001 120960 65752 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11831271104 17831172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 374 1390 504 1 0 0 2 31 0 0 0 0 0 +132 1783879052655695300 DEPTH 43 1 0.52084146384834762 0 1 10 1 10 0 0 1718 30 2557 23678378 81600 1284.7380676269531 8.6393000000000004 2338.3229999999999 120960 54819 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11835738152 22298220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 321 1431 505 0 0 0 0 30 0 0 0 0 0 +133 1783879054972730400 DEPTH 43 1 0.52071749833479264 0 1 10 1 10 0 0 1722 34 2567 23678282 81600 1281.986572265625 8.5961999999999996 2315.7979 120960 43886 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11840215400 26775468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 289 1462 516 0 0 0 0 34 0 0 0 0 0 +134 1783879057357186400 DEPTH 43 1 0.5205769362341709 0 1 10 1 10 0 0 1724 24 2575 23678211 81600 1279.6989440917969 8.5820000000000007 2311.5857999999998 120960 30146 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11844700808 31260876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 283 1497 495 0 0 0 0 24 0 0 0 0 0 +135 1783879057757523500 REFRESH 43 0 0.52042169314587683 0 1 10 1 10 0 0 1725 6 420 3987767 55200 224.51609802246094 1.4327000000000001 399.12979999999999 20160 13407 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11845437432 31997500 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 79 217 74 0 0 0 0 6 0 0 0 0 0 +136 1783879060068476200 DEPTH 43 1 0.51625348927543346 0 1 10 1 10 0 0 1729 34 2580 23678338 81600 1294.7351989746094 8.5744000000000007 2309.8386 120960 65614 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11849927940 36488008 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 387 1363 530 0 0 0 0 34 0 0 0 0 0 +137 1783879062384769500 DEPTH 43 1 0.51647386905438541 0 1 10 1 10 0 0 1734 46 2576 23678306 81600 1287.436279296875 8.5853000000000002 2315.0475000000001 120960 54467 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11854414368 40974436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 342 1416 518 0 0 0 1 45 0 0 0 0 0 +138 1783879064707258900 DEPTH 43 1 0.51664421879604194 0 1 10 1 10 0 0 1736 32 2567 23678280 81600 1281.9650421142578 8.5765999999999991 2321.2746999999999 120960 43930 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11858891616 45451684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 292 1462 513 0 0 0 0 32 0 0 0 0 0 +139 1783879066992505500 DEPTH 43 1 0.51676978258355444 0 1 10 1 10 0 0 1739 31 2556 23678407 81600 1279.4337310791016 8.5746000000000002 2284.1062999999999 120960 29588 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11863357644 49917712 1 0 4 3 3 3 3 5898240 4423680 4423680 4426527 4492800 150 150 280 1478 498 0 0 0 0 31 0 0 0 0 0 +140 1783879067389249900 REFRESH 43 0 0.51685527656716301 0 1 10 1 10 0 0 1739 10 420 3987751 55200 225.85856628417969 1.4322999999999999 395.42809999999997 20160 13451 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11864094268 50654336 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 80 214 76 0 0 0 0 10 0 0 0 0 0 +141 1783879069733451300 DEPTH 43 1 0.51690494182975988 0 1 10 1 10 0 0 1741 19 2580 23678277 81600 1296.1902770996094 8.5747999999999998 2342.8535000000002 120960 65530 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11868584776 55144844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 394 1385 501 0 0 0 0 19 0 0 0 0 0 +142 1783879072060354700 DEPTH 43 1 0.51692259196400037 0 1 10 1 10 0 0 1744 26 2573 23678388 81600 1286.4255981445312 8.5835000000000008 2325.7431000000001 120960 55158 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 11873068144 59628212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 341 1428 504 0 0 0 0 26 0 0 0 0 0 +143 1783879074395548400 DEPTH 43 1 0.51691165588986776 0 1 10 1 10 1 0 1749 23 2586 23678862 81600 1284.5660095214844 8.5694999999999997 2333.9141 120960 44245 1 0 0.0099482089504120911 0.66186994104773156 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11877564772 64124840 1 0 4 3 2 4 3 5898240 4423680 3440640 5410037 4492800 150 150 309 1471 506 0 0 0 3 20 0 0 0 3 1 +144 1783879077774159200 DEPTH 43 1 0.52244625793254706 0 1 10 1 10 1 0 1752 34 2598 23679242 81600 1283.8403778076172 8.6057000000000006 3377.3964000000001 120960 30372 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11882073720 1525360 1 0 4 3 2 4 3 5898240 4423680 2949120 5902008 4492800 150 150 203 1571 524 0 0 0 1 33 0 0 0 1 0 +145 1783879078167972500 REFRESH 43 0 0.5220454032671038 0 1 10 1 10 0 0 1753 11 422 3987778 55200 224.56524658203125 1.4277 392.62619999999998 20160 13482 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11882812384 2264024 1 0 4 3 2 4 3 983040 737280 491520 983345 748800 25 25 25 269 78 0 0 0 0 11 0 0 0 0 0 +146 1783879080489099300 DEPTH 43 1 0.52144305477780684 0 1 10 1 10 0 0 1754 25 2591 23678977 81600 1296.7731781005859 8.5739000000000001 2319.9061000000002 120960 65539 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 11887314112 6765752 1 0 4 3 2 4 3 5898240 4423680 2949120 5901992 4492800 150 150 150 1616 525 0 0 0 0 25 0 0 0 0 0 +147 1783879082789092300 DEPTH 43 1 0.5208749977467757 0 1 10 1 10 0 0 1758 20 2585 23677945 81600 1287.181396484375 8.7744 2298.6711 120960 54731 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11891809720 11261360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426398 4492800 150 150 150 1607 528 0 0 0 0 20 0 0 0 0 0 +148 1783879085073331400 DEPTH 43 1 0.52033801483610764 0 1 10 1 10 0 0 1759 29 2581 23678069 81600 1282.2661285400391 8.6158999999999999 2282.9056 120960 42794 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 11896301248 15752888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1618 513 0 0 0 0 29 0 0 0 0 0 +149 1783879087465538600 DEPTH 43 1 0.51982920750408401 0 1 10 1 10 0 0 1763 29 2582 23678187 81600 1280.7227478027344 8.595600000000001 2320.8051999999998 120960 29482 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 11900793796 20245436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1604 528 0 0 0 0 29 0 0 0 0 0 +150 1783879087848923600 REFRESH 43 0 0.51934596418275403 0 1 10 1 10 0 0 1763 5 420 3987705 55200 224.12185668945312 1.4277 382.01409999999998 20160 13534 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11901530420 20982060 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 271 74 0 0 0 0 5 0 0 0 0 0 +151 1783879090166961400 DEPTH 43 1 0.51388593163633201 0 1 10 1 10 1 0 1763 16 2586 23677978 81600 1293.5442199707031 8.5809999999999995 2316.8831 120960 65880 1 0 0.0026591728994746554 0.83339662802986914 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11906027048 25478688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 150 1608 528 0 0 0 0 16 0 0 0 0 1 +152 1783879092471483400 DEPTH 43 1 0.51398073205613959 0 1 10 1 10 1 0 1763 19 2586 23677999 81600 1287.1167907714844 8.5791000000000004 2303.386 120960 54960 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11910523676 29975316 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 150 1621 515 0 0 0 2 17 0 0 0 0 1 +153 1783879094772289700 DEPTH 43 1 0.51432724683510078 0 1 10 1 10 0 0 1766 23 2592 23678001 81600 1283.0167083740234 8.588099999999999 2299.567 120960 43902 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11915026424 34478064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 1630 512 0 0 0 0 23 0 0 0 0 0 +154 1783879097075022500 DEPTH 43 1 0.51429493690503558 0 1 10 1 10 0 0 1773 32 2598 23678065 81600 1280.8468322753906 8.5906000000000002 2301.4432000000002 120960 29983 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11919535292 38986932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1633 515 0 0 0 0 32 0 0 0 0 0 +155 1783879097460878600 REFRESH 43 0 0.51424152989352889 0 1 10 1 10 0 0 1773 10 416 3987746 55200 225.22572326660156 1.4313 384.53620000000001 20160 13552 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11920267836 39719476 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 269 72 0 0 0 0 10 0 0 0 0 0 +156 1783879099770141300 DEPTH 43 1 0.51416932534048565 0 1 10 1 10 0 0 1780 30 2584 23678115 81600 1293.7182312011719 8.5721999999999987 2308.1343999999999 120960 65872 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11924762424 44214064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1599 535 0 0 0 2 28 0 0 0 0 0 +157 1783879102069633200 DEPTH 43 1 0.51408039031419173 0 1 10 1 10 0 0 1784 42 2575 23678020 81600 1287.2396697998047 8.5804000000000009 2298.2501000000002 120960 54644 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11929247832 48699472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 150 1587 538 0 0 0 0 42 0 0 0 0 0 +158 1783879104365324700 DEPTH 43 1 0.51397658270539093 0 1 10 1 10 0 0 1791 37 2580 23678178 81600 1283.3392639160156 8.5983000000000001 2294.4661999999998 120960 43813 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11933738340 53189980 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 150 1600 530 0 0 0 2 35 0 0 0 0 0 +159 1783879106649500700 DEPTH 43 1 0.51385957219083234 0 1 10 1 10 0 0 1793 25 2565 23678056 81600 1282.3543548583984 8.5829000000000004 2282.9549000000002 120960 29883 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 11938213548 57665188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1569 546 0 0 0 0 25 0 0 0 0 0 +160 1783879107045220400 REFRESH 43 0 0.51373085909937588 0 1 10 1 10 0 0 1793 7 418 3987699 55200 224.90118408203125 1.4338 394.38549999999998 20160 13336 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11938948132 58399772 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 25 271 72 0 0 0 0 7 0 0 0 0 0 +161 1783879109362106900 DEPTH 43 1 0.51059179139042943 0 1 10 1 10 0 0 1793 25 2583 23678148 81600 1300.2751922607422 8.8521000000000001 2315.6293999999998 120960 65816 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 11943441700 62893340 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1604 529 0 0 0 0 25 0 0 0 0 0 +162 1783879112735664400 DEPTH 43 1 0.5107435799335156 0 1 10 1 10 0 0 1795 27 2587 23678214 81600 1287.9953765869141 8.5760000000000005 3372.4301 120960 54529 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11947939428 282348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1614 523 0 0 0 1 26 0 0 0 0 0 +163 1783879115032109200 DEPTH 43 1 0.5108573122588852 0 1 10 1 10 0 0 1797 26 2589 23678000 81600 1282.5765991210938 8.6156000000000006 2295.3150999999998 120960 43995 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11952439116 4782036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426326 4492800 150 150 150 1615 524 0 0 0 0 26 0 0 0 0 0 +164 1783879117334409600 DEPTH 43 1 0.51093696493209961 0 1 10 1 10 0 0 1804 24 2593 23678153 81600 1281.8074035644531 8.5792000000000002 2301.1439999999998 120960 30010 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11956942884 9285804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1623 520 0 0 0 0 24 0 0 0 0 0 +165 1783879117788007400 REFRESH 43 0 0.51098611469021382 0 1 10 1 10 0 0 1805 7 420 3987743 55200 224.66047668457031 1.4357 388.46260000000001 20160 13421 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11957679508 10022428 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 270 75 0 0 0 0 7 0 0 0 0 0 +166 1783879120077485600 DEPTH 43 1 0.50800797846342649 0 1 10 1 10 0 0 1810 30 2593 23678158 81600 1296.4751434326172 8.5709999999999997 2288.3400999999999 120960 65837 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11962183276 14526196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 150 1613 530 0 0 0 1 29 0 0 0 0 0 +167 1783879122382229800 DEPTH 43 1 0.50830544939367484 0 1 10 1 10 0 0 1817 26 2587 23678338 81600 1288.7427520751953 8.6280999999999999 2303.4177 120960 54870 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11966680924 19023844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426565 4492800 150 150 150 1603 534 0 0 2 0 24 0 0 0 0 0 +168 1783879124663016700 DEPTH 43 1 0.50855112925050561 0 1 10 1 10 0 0 1824 36 2585 23678170 81600 1283.5328979492188 8.5975000000000001 2279.3831 120960 43673 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11971176532 23519452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1610 525 0 0 2 0 34 0 0 0 0 0 +169 1783879126965481300 DEPTH 43 1 0.50875035760451914 0 1 10 1 10 0 0 1840 53 2587 23678150 81600 1284.3280639648438 8.7257999999999996 2301.2793000000001 120960 29828 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11975674180 28017100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1613 524 0 0 0 0 53 0 0 0 0 0 +170 1783879127349029400 REFRESH 43 0 0.50890793808265034 0 1 10 1 10 0 0 1842 9 416 3987718 55200 225.37216186523438 1.4333 382.38900000000001 20160 13453 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11976406724 28749644 1 0 4 3 3 3 3 983040 737280 737280 737477 748800 25 25 25 269 72 0 0 0 0 9 0 0 0 0 0 +171 1783879129626300300 DEPTH 43 1 0.50802819199712734 0 1 10 1 10 0 0 1854 69 2586 23678252 81600 1302.3700256347656 8.6089000000000002 2276.1248999999998 120960 65861 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11980903352 33246272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 150 150 150 1595 541 0 0 1 0 68 0 0 0 0 0 +172 1783879131935161800 DEPTH 43 1 0.50821500661076124 0 1 10 1 10 0 0 1859 48 2592 23678116 81600 1294.9841156005859 8.5691000000000006 2307.5468999999998 120960 54668 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11985406100 37749020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426366 4492800 150 150 150 1606 536 0 0 0 0 48 0 0 0 0 0 +173 1783879134258245600 DEPTH 43 1 0.50836187857495352 0 1 10 1 10 1 0 1863 40 2585 23678123 81600 1289.9467926025391 8.5893999999999995 2321.7431000000001 120960 43737 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11989901708 42244628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426358 4492800 150 150 150 1600 535 0 0 0 0 40 0 0 0 0 1 +174 1783879136547379100 DEPTH 43 1 0.5085079846743612 0 1 10 1 10 0 0 1868 38 2594 23678223 81600 1284.9921875 8.5762 2287.9584 120960 29991 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2594 1920 0 384 1 11994406496 46749416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 150 1603 541 0 0 0 0 38 0 0 0 0 0 +175 1783879136944101200 REFRESH 43 0 0.508583487240437 0 1 10 1 10 0 0 1868 7 420 3987719 55200 224.90419006347656 1.4263999999999999 395.1474 20160 13490 0 0 0.01017337260156595 0.63921982453475934 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11995143120 47486040 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 268 77 0 0 0 0 7 0 0 0 0 0 +176 1783879139276742900 DEPTH 43 1 0.50563062553481364 0 1 10 1 10 0 0 1870 30 2584 23678250 81600 1298.5336303710938 8.5860000000000003 2331.4895000000001 120960 66412 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11999637708 51980628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1606 528 0 0 0 0 30 0 0 0 0 0 +177 1783879141577975700 DEPTH 43 1 0.50595238148178412 0 1 10 1 10 0 0 1871 30 2598 23678249 81600 1290.9851684570312 8.6024000000000012 2300.0717 120960 54997 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 12004146576 56489496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1614 534 0 0 0 0 30 0 0 0 0 0 +178 1783879143907871000 DEPTH 43 1 0.50622143708282263 0 1 10 1 10 0 0 1875 25 2596 23678219 81600 1288.1296081542969 8.5731999999999999 2328.7283000000002 120960 44143 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12008653404 60996324 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 150 150 150 1621 525 0 0 0 0 25 0 0 0 0 0 +179 1783879146230281100 DEPTH 43 1 0.50644320443782498 0 1 10 1 10 1 0 1878 31 2592 23678218 81600 1284.2526702880859 8.5838000000000001 2321.1754000000001 120960 30252 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12013156152 65499072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1616 526 0 0 0 0 31 0 0 0 0 1 +180 1783879146627487100 REFRESH 43 0 0.50667308120150489 0 1 10 1 10 0 0 1879 8 420 3987751 55200 225.15199279785156 1.4313 396.01029999999997 20160 13530 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12013892776 66235696 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 271 74 0 0 0 0 8 0 0 0 0 0 +181 1783879150069543800 DEPTH 43 1 0.50480933830403274 0 1 10 1 10 0 0 1880 26 2597 23678222 81600 1302.3909759521484 8.6058000000000003 3371.4321 120960 65948 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12018400704 3635244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1625 522 0 0 0 0 26 0 0 0 0 0 +182 1783879152373885700 DEPTH 43 1 0.50511200327804284 0 1 10 1 10 0 0 1881 27 2595 23678264 81600 1294.7261505126953 8.5831 2303.1590000000001 120960 54821 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12022906512 8141052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1633 512 0 0 0 0 27 0 0 0 0 0 +183 1783879154683369300 DEPTH 43 1 0.50536457087334186 0 1 10 1 10 0 0 1882 21 2597 23678255 81600 1289.3040771484375 8.7744999999999997 2308.1945000000001 120960 44176 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12027414360 12648900 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1625 522 0 0 0 0 21 0 0 0 0 0 +184 1783879156980187900 DEPTH 43 1 0.50557218479909827 0 1 10 1 10 0 0 1884 17 2582 23678242 81600 1284.3522338867188 8.5775000000000006 2295.6734999999999 120960 29913 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 12031906908 17141448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1607 525 0 0 0 0 17 0 0 0 0 0 +185 1783879157389114000 REFRESH 43 0 0.50573947285336307 0 1 10 1 10 0 0 1886 9 421 3987739 55200 226.53543090820312 1.4321999999999999 407.57209999999998 20160 13613 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12032644552 17879092 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 271 75 0 0 0 0 9 0 0 0 0 0 +186 1783879159733613200 DEPTH 43 1 0.50487059853910865 0 1 10 1 10 0 0 1887 22 2588 23678308 81600 1301.1855316162109 8.5765999999999991 2343.1307000000002 120960 65740 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12037143220 22377760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1630 508 0 0 0 1 21 0 0 0 0 0 +187 1783879162051814400 DEPTH 43 1 0.50506930751814294 0 1 10 1 10 0 0 1889 32 2592 23678222 81600 1293.5034942626953 8.5829000000000004 2316.9160000000002 120960 55109 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12041645968 26880508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426382 4492800 150 150 150 1636 506 0 0 0 0 32 0 0 0 0 0 +188 1783879164380431500 DEPTH 43 1 0.50522896941912898 0 1 10 1 10 0 0 1892 33 2610 23678256 81600 1287.1558532714844 8.5835000000000008 2327.3526999999999 120960 43276 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2610 1920 0 384 1 12046167076 31401616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1642 518 0 0 0 0 33 0 0 0 0 0 +189 1783879166709365200 DEPTH 43 1 0.50535361546430835 0 1 10 1 10 0 0 1900 35 2611 23678291 81600 1285.6821594238281 8.5731000000000002 2327.8121000000001 120960 29499 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 12050689204 35923744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 1630 531 0 0 1 1 33 0 0 0 0 0 +190 1783879167105771400 REFRESH 43 0 0.50544687233307295 0 1 10 1 10 0 0 1901 8 424 3987789 55200 225.73977661132812 1.4308000000000001 395.12569999999999 20160 13470 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 12051429908 36664448 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 25 273 76 0 0 1 0 7 0 0 0 0 0 +191 1783879169452125300 DEPTH 43 1 0.50351200263871154 0 1 10 1 10 0 0 1906 39 2621 23678330 81600 1300.5915374755859 8.5874999999999986 2345.1626999999999 120960 65559 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 12055962236 41196776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1654 517 0 0 2 0 37 0 0 0 0 0 +192 1783879171775430900 DEPTH 43 1 0.50375194135702406 0 1 10 1 10 0 0 1910 33 2596 23678253 81600 1293.8874969482422 8.5804999999999989 2322.0214999999998 120960 54758 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12060469064 45703604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 150 1660 486 5 0 0 0 28 0 0 0 0 0 +193 1783879174081603900 DEPTH 43 1 0.50394932861163055 0 1 10 1 10 0 0 1916 39 2586 23678310 81600 1290.3617553710938 8.5878999999999994 2305.0158999999999 120960 43035 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12064965692 50200232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1629 507 0 0 0 0 39 0 0 0 0 0 +194 1783879176377659500 DEPTH 43 1 0.50410853918031384 0 1 10 1 10 1 0 1921 48 2571 23678313 81600 1289.2282867431641 8.5823 2294.7550000000001 120960 29746 1 0 0.018792301583039003 0.43459967789178922 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12069447020 54681560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1616 505 1 0 0 0 47 0 0 0 0 1 +195 1783879176773249800 REFRESH 43 0 0.50426902320528555 0 1 10 1 10 0 0 1926 16 416 3987788 55200 225.25337219238281 1.4246000000000001 394.43419999999998 20160 13492 0 0 0.018792301583039003 0.43459967789178922 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12070179564 55414104 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 270 71 0 0 0 0 16 0 0 0 0 0 +196 1783879179131070700 DEPTH 43 1 0.50435974205710976 0 1 10 1 10 1 0 1929 69 2504 23678213 81600 1301.6135711669922 8.5899000000000001 2356.6102999999998 120960 66128 1 0 0.01910576089822183 0.41606773921022733 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12074592552 59827092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426332 4492800 150 150 150 1450 604 2 0 0 1 66 0 0 0 0 2 +197 1783879181463664500 DEPTH 43 1 0.50447561213561443 0 1 10 1 9 1 0 1966 161 2504 23715247 119040 1293.2833404541016 8.6905999999999999 2254.9508000000001 107520 51658 1 0 0.009912286308801796 0.43127298951197091 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12079005540 64240080 1 0 4 2 2 2 6 5898240 3932160 2949120 3934638 6988800 150 150 150 873 1181 2 0 0 5 154 0 0 0 0 4 +198 1783879184764574500 DEPTH 43 1 0.60450961287061866 0 1 9 1 9 1 0 2011 156 2484 23743353 147840 1279.1397399902344 8.5727999999999991 3299.6089999999999 80640 27980 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2484 1920 0 384 1 12083398208 1525384 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 150 252 1782 0 0 0 0 156 0 0 0 0 2 +199 1783879186977105900 DEPTH 43 1 0.59678437594922196 0 1 9 1 9 0 0 2030 125 2489 23743382 147840 1274.2932891845703 8.5745000000000005 2211.3861999999999 80640 20890 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 12087795896 5923072 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 150 150 150 409 1630 0 0 0 0 125 0 0 0 0 0 +200 1783879187342982600 REFRESH 43 0 0.58755189416358955 0 1 9 1 9 0 0 2045 32 401 3989001 56640 222.44044494628906 1.4289000000000001 364.57979999999998 13440 8128 0 0 0.051954670644896256 0.45871553646269403 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 12088513140 6640316 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 27 25 25 29 295 0 0 0 0 32 0 0 0 0 0 +201 1783879189515047500 DEPTH 43 1 0.57922502436674761 0 1 9 1 9 0 0 2068 81 2503 23743131 147840 1283.9680023193359 8.581900000000001 2170.7238000000002 80640 40390 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2503 1920 0 384 1 12092925108 11052284 1 0 4 2 2 2 6 5898240 2949120 2949120 2951051 8985600 150 150 150 173 1880 0 0 0 0 81 0 0 0 0 0 +202 1783879191681358500 DEPTH 43 1 0.57171331503520306 0 1 9 1 9 0 0 2096 123 2487 23743177 147840 1279.2954864501953 8.5854000000000017 2165.1581000000001 80640 32697 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2487 1920 0 384 1 12097320756 15447932 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 181 1856 0 0 0 0 123 0 0 0 0 0 +203 1783879193840280100 DEPTH 43 1 0.56493535863658351 0 1 9 1 9 0 0 2140 178 2492 23743361 147840 1277.5353393554688 8.5947999999999993 2157.6990000000001 80640 26219 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2492 1920 0 384 1 12101721504 19848680 1 0 4 2 2 2 6 5898240 2949120 2949120 2951039 8985600 150 150 150 200 1842 4 0 0 0 174 0 0 0 0 0 +204 1783879196005297500 DEPTH 43 1 0.55881788724784631 0 1 9 1 9 1 0 2182 149 2488 23743038 147840 1269.7932586669922 8.6096000000000004 2163.7568999999999 80640 18201 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2488 1920 0 384 1 12106118172 24245348 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 150 150 150 216 1822 0 0 0 0 149 0 0 0 0 2 +205 1783879196358608800 REFRESH 43 0 0.55338001363533418 0 1 9 1 9 0 0 2196 35 400 3989011 56640 222.87667846679688 1.4278999999999999 352.01929999999999 13440 8465 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 12106834396 24961572 1 0 4 2 2 2 6 983040 491520 491520 491645 1497600 27 25 25 29 294 0 0 0 0 35 0 0 0 0 0 +206 1783879198624191800 DEPTH 43 1 0.54838377310650099 0 1 9 1 9 0 0 2226 139 2511 23731696 136320 1283.2879028320312 8.5914000000000001 2264.4198999999999 100800 50223 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 12111254524 29381700 1 0 4 3 2 2 5 5898240 3686400 2949120 2951042 8236800 150 150 150 436 1625 0 0 0 9 130 0 0 0 0 0 +207 1783879200936638900 DEPTH 43 1 0.54387016141614786 0 1 9 1 9 0 0 2235 79 2566 23721049 125760 1277.7173004150391 8.5964999999999989 2311.1963000000001 120960 46281 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12115730752 33857928 1 0 4 3 2 2 5 5898240 4423680 2949120 2951015 7488000 150 150 150 1372 744 1 0 0 20 58 0 0 0 0 0 +208 1783879203265190000 DEPTH 43 1 0.53979101864172563 0 1 9 1 9 0 0 2241 42 2602 23702657 106560 1273.7222747802734 8.6113 2327.3908000000001 120960 36935 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 12120243700 38370876 1 0 4 3 2 3 4 5898240 4423680 2949120 4180585 6240000 150 150 150 1608 544 0 0 0 4 38 0 0 0 0 0 +209 1783879205592509200 DEPTH 43 1 0.53610299979080522 0 1 9 1 9 0 0 2252 63 2589 23692147 96000 1270.4820861816406 8.5738000000000003 2326.1125000000002 120960 26242 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12124743388 42870564 1 0 4 3 3 3 3 5898240 4423680 3440640 4426379 5491200 150 150 152 1619 518 0 0 8 7 48 0 0 0 0 0 +210 1783879205959684200 REFRESH 43 0 0.5327670933235048 0 1 9 1 9 0 0 2275 60 412 3987659 55200 224.49562072753906 1.4289000000000001 366.0059 20160 12152 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12125471852 43599028 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 28 240 94 0 0 0 40 20 0 0 0 0 0 +211 1783879208210015900 DEPTH 43 1 0.52974818782238553 0 1 9 1 9 0 0 2303 97 2531 23677642 81600 1296.5684509277344 8.5813999999999986 2249.0668999999998 120960 59632 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12129912380 48039556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426405 4492800 150 150 168 1070 993 2 0 2 4 89 0 0 0 0 0 +212 1783879210481546700 DEPTH 43 1 0.52701468199507595 0 1 9 1 9 1 0 2321 96 2547 23681712 85440 1286.4523773193359 8.5915999999999997 2270.3926000000001 120960 48194 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12134369228 52496404 1 0 4 3 2 3 4 5898240 4423680 4177920 4426530 4742400 150 150 177 1025 1045 4 0 7 0 85 0 0 0 0 1 +213 1783879212867937200 DEPTH 43 1 0.52511813361071003 0 1 9 1 9 0 0 2335 73 2548 23677731 81600 1281.1149597167969 8.5853999999999999 2293.1298999999999 120960 39052 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12138827096 56954272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 191 1190 867 1 0 1 7 64 0 0 0 0 0 +214 1783879215166034900 DEPTH 43 1 0.52281494387068983 0 1 9 1 9 0 0 2342 65 2562 23677869 81600 1278.2879028320312 8.6199000000000012 2296.8654999999999 120960 27477 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 12143299244 61426420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 150 150 195 1491 576 0 0 6 1 58 0 0 0 0 0 +215 1783879215557221500 REFRESH 43 0 0.5207258726856332 0 1 9 1 9 0 0 2350 25 417 3987674 55200 224.68415832519531 1.4346000000000001 389.8777 20160 12202 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12144032808 62159984 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 41 255 71 0 0 3 12 10 0 0 0 0 0 +216 1783879217842583600 DEPTH 43 1 0.51882960308084414 0 1 9 1 9 0 0 2371 100 2556 23678085 81600 1297.3606262207031 8.5815000000000001 2284.2139999999999 120960 57319 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12148498836 66626012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 150 150 243 1037 976 0 0 4 1 95 0 0 0 0 0 +217 1783879221231407300 DEPTH 43 1 0.51710694883274677 0 1 9 1 9 0 0 2376 57 2557 23677731 81600 1285.9127655029297 8.5746000000000002 3387.5976999999998 120960 46082 1 1 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12152965964 3984848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 259 1170 828 1 0 3 1 51 0 0 0 0 0 +218 1783879223554414700 DEPTH 43 1 0.51554064140707767 0 1 9 1 9 0 0 2380 46 2544 23677904 81600 1285.0782012939453 8.5703999999999994 2321.7696000000001 120960 36440 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12157419752 8438636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 256 1260 728 0 0 4 0 42 0 0 0 0 0 +219 1783879225861087200 DEPTH 43 1 0.51411513820301735 0 1 9 1 9 0 0 2383 45 2551 23678036 81600 1279.7601623535156 8.6133000000000006 2305.2919999999999 120960 25562 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12161880680 12899564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426541 4492800 150 150 263 1380 608 0 0 2 0 43 0 0 0 0 0 +220 1783879226244304900 REFRESH 43 0 0.51281644997267395 0 1 9 1 9 0 0 2389 21 418 3987710 55200 224.5611572265625 1.4317 381.8854 20160 12238 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12162615264 13634148 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 55 235 78 0 0 2 8 11 0 0 0 0 0 +221 1783879228562792300 DEPTH 43 1 0.51163198549838795 0 1 9 1 9 0 0 2393 61 2556 23678058 81600 1297.5492095947266 8.6186000000000007 2317.2746999999999 120960 58160 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12167081292 18100176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 285 1130 841 0 0 4 0 57 0 0 0 0 0 +222 1783879230873606300 DEPTH 43 1 0.51055041180208105 0 1 9 1 9 0 0 2401 54 2545 23678155 81600 1286.7707672119141 8.7111999999999998 2309.4506999999999 120960 47257 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12171536100 22554984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 289 1167 789 0 0 5 3 46 0 0 0 0 0 +223 1783879233181319600 DEPTH 43 1 0.50956152833345048 0 1 9 1 9 0 0 2409 48 2544 23677898 81600 1285.5767974853516 8.5750999999999991 2306.5196999999998 120960 37520 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12175989888 27008772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 286 1296 662 0 0 3 0 45 0 0 0 0 0 +224 1783879235499703900 DEPTH 43 1 0.50865615373912765 0 1 9 1 9 1 0 2416 54 2547 23677942 81600 1282.0387878417969 8.5814000000000004 2317.2156 120960 25505 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12180446736 31465620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 288 1398 561 0 0 5 1 48 0 0 0 0 1 +225 1783879235885245600 REFRESH 43 0 0.50788597969769644 0 1 9 1 9 0 0 2417 18 414 3987672 55200 224.09625244140625 2.2663000000000002 384.2303 20160 12432 0 0 0.037346797275121628 0.2555694096638077 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12181177240 32196124 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 58 235 71 0 0 1 5 12 0 0 0 0 0 +226 1783879238195700200 DEPTH 43 1 0.50711766065607322 0 1 9 1 9 0 0 2419 59 2537 23678071 81600 1298.1566467285156 8.5826999999999991 2309.232 120960 58532 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12185623888 36642772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 301 1199 737 1 0 1 1 56 0 0 0 0 0 +227 1783879240536792100 DEPTH 43 1 0.50641105202190762 0 1 9 1 9 1 0 2424 58 2550 23678061 81600 1291.1419830322266 8.6036999999999999 2339.9128999999998 120960 47699 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12190083796 41102680 1 0 4 3 3 3 3 5898240 4423680 4423680 4426393 4492800 150 150 309 1338 603 0 0 5 1 52 0 0 0 0 1 +228 1783879242933249200 DEPTH 43 1 0.50592462296271568 0 1 9 1 9 0 0 2427 31 2551 23678185 81600 1286.7079315185547 8.5757000000000012 2314.7058999999999 120960 38490 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12194544724 45563608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 322 1397 532 0 0 0 0 31 0 0 0 0 0 +229 1783879245259606400 DEPTH 43 1 0.50530732735968098 0 1 9 1 9 0 0 2438 45 2565 23677972 81600 1283.8040771484375 8.5874000000000006 2325.0664999999999 120960 26096 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12199019932 50038816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426397 4492800 150 150 323 1447 495 0 0 3 1 41 0 0 0 0 0 +230 1783879245648136100 REFRESH 43 0 0.50473689048321335 0 1 9 1 9 0 0 2440 13 422 3987680 55200 225.08338928222656 1.4317 387.15199999999999 20160 12615 0 0 0.03004081750325693 0.17916452195622409 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12199758596 50777480 1 0 4 3 3 3 3 983040 737280 737280 737478 748800 25 25 71 228 73 0 0 1 5 7 0 0 0 0 0 +231 1783879247945735200 DEPTH 43 1 0.50420870844045262 0 1 9 1 9 0 0 2451 50 2540 23678102 81600 1297.7651672363281 8.6112000000000002 2296.3292000000001 120960 60718 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12204208304 55227188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 360 1188 692 0 0 5 0 45 0 0 0 0 0 +232 1783879250300351700 DEPTH 43 1 0.50371863695799812 0 1 9 1 9 0 0 2456 41 2541 23678186 81600 1290.6697540283203 8.6231000000000009 2353.1765999999998 120960 49394 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12208659032 59677916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 358 1343 540 0 0 1 1 39 0 0 0 0 0 +233 1783879252615813500 DEPTH 43 1 0.50326294543015582 0 1 9 1 9 0 0 2458 47 2549 23678185 81600 1285.4384002685547 8.581900000000001 2314.1682999999998 120960 39465 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12213117920 64136804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 363 1391 495 0 0 2 0 45 0 0 0 0 0 +234 1783879256011035100 DEPTH 43 1 0.50283827556218674 0 1 9 1 9 1 0 2460 38 2559 23678165 81600 1286.0990142822266 8.5731000000000002 3394.0383000000002 120960 27382 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12217587088 1497112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 359 1417 483 0 0 1 3 34 0 0 0 0 1 +235 1783879256394105300 REFRESH 43 0 0.50247342969050757 0 1 9 1 9 0 0 2463 19 414 3987755 55200 227.1856689453125 1.4244000000000001 381.7568 20160 13107 0 0 0.030060195524671131 0.15182181677363818 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12218317592 2227616 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 72 220 72 0 0 2 6 11 0 0 0 0 0 +236 1783879258720714600 DEPTH 43 1 0.50209885256347275 0 1 9 1 9 0 0 2471 50 2537 23678142 81600 1299.8547821044922 8.6158000000000001 2325.3026 120960 62936 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12222764240 6674264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 387 1190 660 0 0 4 3 43 0 0 0 0 0 +237 1783879261058038100 DEPTH 43 1 0.50174742035837638 0 1 9 1 9 1 0 2476 37 2557 23681936 85440 1290.9324035644531 8.5992999999999995 2336.1273000000001 120960 52140 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12227231288 11141312 1 0 4 3 3 3 3 5898240 4423680 4177920 4426406 4742400 150 150 377 1227 653 0 0 2 1 34 0 0 0 0 1 +238 1783879263390002300 DEPTH 43 1 0.50142557524274689 0 1 9 1 9 0 0 2480 40 2576 23678157 81600 1283.8522796630859 8.585799999999999 2330.7552000000001 120960 41946 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12231717716 15627740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 378 1373 525 0 0 2 3 35 0 0 0 0 0 +239 1783879265720494000 DEPTH 43 1 0.50111307488352008 0 1 9 1 9 0 0 2481 38 2576 23678269 81600 1282.4971008300781 8.5840999999999994 2329.1293000000001 120960 29501 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12236204144 20114168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 376 1438 462 0 0 0 7 31 0 0 0 0 0 +240 1783879266101976800 REFRESH 43 0 0.50081774006982616 0 1 9 1 9 0 0 2481 13 418 3987717 55200 225.29434204101562 1.4300999999999999 380.12529999999998 20160 13455 0 0 0.027277433786763575 0.15243551269901376 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12236938728 20848752 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 74 227 67 0 0 1 2 10 0 0 0 0 0 +241 1783879268403598500 DEPTH 43 1 0.50053792896721738 0 1 9 1 9 0 0 2484 59 2553 23678274 81600 1298.9603881835938 8.5790000000000006 2300.4466000000002 120960 64445 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12241401696 25311720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 410 1202 641 0 0 1 2 56 0 0 0 0 0 +242 1783879270734837900 DEPTH 43 1 0.50027216324939094 0 1 9 1 9 0 0 2487 54 2571 23678140 81600 1290.3277587890625 8.5815000000000001 2329.9877999999999 120960 53971 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12245883024 29793048 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 402 1326 543 0 0 3 2 49 0 0 0 0 0 +243 1783879273126286300 DEPTH 43 1 0.50001911175598179 0 1 9 1 9 1 0 2491 54 2567 23678264 81600 1288.0232849121094 8.6932000000000009 2316.2420000000002 120960 43492 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12250360272 34270296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 150 150 401 1383 483 0 0 4 0 50 0 0 0 0 1 +244 1783879275435013700 DEPTH 43 1 0.49978148840799963 0 1 9 1 9 0 0 2498 47 2583 23678247 81600 1286.3189239501953 8.6024999999999991 2307.5327000000002 120960 29916 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12254853840 38763864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 395 1405 483 0 0 4 0 43 0 0 0 0 0 +245 1783879275815344000 REFRESH 43 0 0.49954999721376381 0 1 9 1 9 0 0 2498 14 417 3987761 55200 226.14938354492188 1.4254 378.91109999999998 20160 13324 0 0 0.027277504371411413 0.15044339324434738 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12255587404 39497428 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 72 221 74 0 0 0 1 13 0 0 0 0 0 +246 1783879278142897700 DEPTH 43 1 0.49932800900974722 0 1 9 1 9 1 0 2511 54 2591 23678363 81600 1297.9138488769531 8.5897000000000006 2326.2483000000002 120960 64844 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 12260089132 43999156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 428 1040 823 0 0 0 0 54 0 0 0 0 1 +247 1783879280459699400 DEPTH 43 1 0.49911674233282111 0 1 9 1 9 0 0 2523 75 2593 23678301 81600 1291.2332153320312 8.5799000000000003 2315.4729000000002 120960 54066 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12264592900 48502924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 966 901 0 0 2 3 70 0 0 0 0 0 +248 1783879282756759400 DEPTH 43 1 0.49891099911668313 0 1 9 1 9 1 0 2530 70 2575 23685855 89280 1286.9365844726562 8.5824999999999996 2295.7285999999999 120960 43218 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12269078308 52988332 1 0 4 3 2 3 4 5898240 4423680 3932160 4426415 4992000 150 150 429 1011 835 0 0 2 0 68 0 0 0 0 1 +249 1783879285078392800 DEPTH 43 1 0.49871796506827282 0 1 9 1 9 0 0 2535 37 2593 23678298 81600 1284.9850158691406 8.5783999999999985 2320.4562999999998 120960 30292 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12273582076 57492100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 466 1149 678 0 0 0 3 34 0 0 0 0 0 +250 1783879285467780000 REFRESH 43 0 0.4985252972900569 0 1 9 1 9 0 0 2535 13 421 3987743 55200 225.78994750976562 1.4307000000000001 388.23899999999998 20160 13454 0 0 0.025974600216796432 0.1508554050604666 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12274319720 58229744 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 74 228 69 0 0 1 3 9 0 0 0 0 0 +251 1783879287804741100 DEPTH 43 1 0.49833859795384761 0 1 9 1 9 0 0 2542 55 2599 23678260 81600 1299.8440856933594 8.6016999999999992 2335.6176 120960 65716 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 12278829608 62739632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 1217 656 0 0 2 0 53 0 0 0 0 0 +252 1783879291185236000 DEPTH 43 1 0.49815733795825889 0 1 9 1 9 1 0 2554 64 2592 23682136 85440 1290.0074768066406 8.5908000000000015 3379.2154999999998 120960 54484 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12283332436 134448 1 0 4 3 3 3 3 5898240 4423680 4177920 4426398 4742400 150 150 459 1285 548 0 0 0 0 64 0 0 0 0 1 +253 1783879293512894700 DEPTH 43 1 0.49798309763318732 0 1 9 1 9 0 0 2570 60 2581 23678248 81600 1285.4394989013672 8.5839999999999996 2326.4243000000001 120960 44097 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12287823964 4625976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 465 1370 446 2 0 1 0 57 0 0 0 0 0 +254 1783879295843159200 DEPTH 43 1 0.49781112736753641 0 1 9 1 9 0 0 2581 51 2584 23678154 81600 1279.6570281982422 8.6878999999999991 2329.0708 120960 30239 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 12292318552 9120564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 456 1376 452 1 0 0 1 49 0 0 0 0 0 +255 1783879296231669100 REFRESH 43 0 0.49764332326491922 0 1 9 1 9 0 0 2583 18 416 3987750 55200 225.32710266113281 1.4330000000000001 387.20979999999997 20160 13476 0 0 0.025976297568135263 0.14906275451572254 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12293051096 9853108 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 76 225 65 0 0 1 1 16 0 0 0 0 0 +256 1783879298551788300 DEPTH 43 1 0.49747933414281531 0 1 9 1 9 0 0 2589 56 2564 23678384 81600 1300.1349029541016 8.5829999999999984 2318.8795 120960 65577 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12297525284 14327296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426529 4492800 150 150 455 1256 553 0 0 1 1 54 0 0 0 0 0 +257 1783879300861479000 DEPTH 43 1 0.49731884337713439 0 1 9 1 9 1 0 2593 40 2585 23685904 89280 1290.7561950683594 8.5858000000000008 2308.4766 120960 54651 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 12302020892 18822904 1 0 4 3 2 3 4 5898240 4423680 3932160 4426437 4992000 150 150 454 1292 539 0 0 0 0 40 0 0 0 0 2 +258 1783879303229119600 DEPTH 43 1 0.49735714878000409 0 1 9 1 9 0 0 2606 61 2586 23692718 96000 1284.9557800292969 9.0975999999999999 2292.8719000000001 120960 43511 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12306517520 23319532 1 0 4 3 3 3 3 5898240 4423680 3440640 4426562 5491200 150 150 549 889 848 0 0 0 5 56 0 0 0 0 0 +259 1783879305576196900 DEPTH 43 1 0.49718326785530603 0 1 9 1 9 0 0 2609 55 2618 23678143 81600 1283.2283935546875 8.5731000000000002 2345.8317999999999 120960 29451 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2618 1920 0 384 1 12311046788 27848800 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 570 1147 601 0 0 3 4 48 0 0 0 0 0 +260 1783879305956828800 REFRESH 43 0 0.49701406579729007 0 1 9 1 9 0 0 2625 35 421 3987749 55200 225.14994812011719 1.4288000000000001 379.36169999999998 20160 13608 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12311784432 28586444 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 122 162 87 0 0 7 11 17 0 0 0 0 0 +261 1783879308174594800 DEPTH 43 1 0.49684913742049147 0 1 9 1 9 0 0 2652 87 2551 23678146 81600 1297.9199676513672 8.6112000000000002 2216.6210000000001 120960 66312 1 1 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12316245360 33047372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 642 771 838 0 0 0 3 83 0 0 0 0 0 +262 1783879310401022100 DEPTH 43 1 0.4966881175309239 0 1 9 1 9 0 0 2663 71 2548 23678130 81600 1291.2209930419922 8.5766000000000009 2225.1943999999999 120960 55358 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12320703228 37505240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 860 785 0 0 0 3 68 0 0 0 0 0 +263 1783879312663660500 DEPTH 43 1 0.49653067693318292 0 1 9 1 9 0 0 2671 65 2542 23678123 81600 1286.7642517089844 8.5680999999999994 2261.2029000000002 120960 44339 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12325154976 41956988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 552 960 730 0 0 0 0 65 0 0 0 0 0 +264 1783879314940363600 DEPTH 43 1 0.49637651883674316 0 1 9 1 9 0 0 2681 53 2555 23678327 81600 1283.2747497558594 8.5906000000000002 2275.5001999999999 120960 30089 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12329619984 46421996 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 518 1005 732 0 0 0 1 52 0 0 0 0 0 +265 1783879315322017000 REFRESH 43 0 0.49622537562153213 0 1 9 1 9 0 0 2682 15 421 3987767 55200 225.54521179199219 1.4275 380.4203 20160 13715 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12330357628 47159640 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 119 181 71 0 0 0 5 10 0 0 0 0 0 +266 1783879317590372000 DEPTH 43 1 0.49607700592685466 0 1 9 1 9 0 0 2701 76 2553 23678152 81600 1297.7407989501953 8.6535999999999991 2267.1048999999998 120960 66361 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12334820596 51622608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426322 4492800 150 150 582 879 792 0 0 0 0 76 0 0 0 0 0 +267 1783879319883084500 DEPTH 43 1 0.49593119203133451 0 1 9 1 9 0 0 2712 51 2552 23678195 81600 1286.3338012695312 8.6542999999999992 2291.3928000000001 120960 55207 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12339282544 56084556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 520 917 815 0 0 0 1 50 0 0 0 0 0 +268 1783879322177757200 DEPTH 43 1 0.49578773749477323 0 1 9 1 9 0 0 2714 34 2559 23678195 81600 1285.3114624023438 8.5792999999999999 2293.48 120960 44051 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12343751632 60553644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 150 150 517 1069 673 0 0 0 0 34 0 0 0 0 0 +269 1783879324486424000 DEPTH 43 1 0.49564646503573612 0 1 9 1 9 0 0 2717 43 2554 23678234 81600 1283.6395568847656 8.6240000000000006 2307.5297 120960 30568 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12348215620 65017632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 517 1167 570 0 0 1 0 42 0 0 0 0 0 +270 1783879324858604300 REFRESH 43 0 0.49550721462129416 0 1 9 1 9 0 0 2719 14 420 3987730 55200 224.73933410644531 1.4313 370.92689999999999 20160 13602 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12348952244 65754256 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 119 180 71 0 0 2 3 9 0 0 0 0 0 +271 1783879328155923400 DEPTH 43 1 0.49536984174770782 0 1 9 1 9 0 0 2728 77 2561 23678368 81600 1299.562744140625 8.5849000000000011 3296.1628999999998 120960 65805 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12353423452 3116644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 562 873 826 0 0 1 0 76 0 0 0 0 0 +272 1783879330421365800 DEPTH 43 1 0.49523421589296029 0 1 9 1 9 0 0 2741 58 2580 23678259 81600 1290.6690673828125 8.5704999999999991 2264.2530000000002 120960 54930 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 12357913960 7607152 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 549 992 739 0 0 0 0 58 0 0 0 0 0 +273 1783879332729726200 DEPTH 43 1 0.49510021912395663 0 1 9 1 9 0 0 2751 50 2569 23678201 81600 1284.5444793701172 8.6921999999999997 2307.2201 120960 43663 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12362393248 12086440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 543 1038 688 0 0 2 0 48 0 0 0 0 0 +274 1783879335099145100 DEPTH 43 1 0.49496774484292339 0 1 9 1 9 0 0 2756 37 2568 23678260 81600 1286.3561096191406 8.6081000000000003 2292.6714999999999 120960 30172 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12366871516 16564708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 543 1123 602 0 0 0 0 37 0 0 0 0 0 +275 1783879335485005200 REFRESH 43 0 0.49483669665909052 0 1 9 1 9 0 0 2758 18 420 3987714 55200 225.71110534667969 1.4339 384.51900000000001 20160 13497 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12367608140 17301332 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 121 175 74 0 0 0 4 14 0 0 0 0 0 +276 1783879337759894500 DEPTH 43 1 0.49470698737312857 0 1 9 1 9 0 0 2767 53 2554 23678335 81600 1294.4888916015625 8.5945999999999998 2273.7208999999998 120960 65696 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12372072128 21765320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 150 150 555 797 902 0 0 1 0 52 0 0 0 0 0 +277 1783879340070401500 DEPTH 43 1 0.49457853806306679 0 1 9 1 9 0 0 2774 54 2570 23678448 81600 1289.0151672363281 8.5851000000000006 2309.3020000000001 120960 55076 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 12376552436 26245628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 551 941 778 0 0 0 0 54 0 0 0 0 0 +278 1783879342391626000 DEPTH 43 1 0.4944512772615462 0 1 9 1 9 0 0 2781 51 2568 23678306 81600 1284.7913055419922 8.5957000000000008 2320.0318000000002 120960 45143 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12381030704 30723896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 540 1122 606 0 0 0 0 51 0 0 0 0 0 +279 1783879344701409400 DEPTH 43 1 0.49432514021527396 0 1 9 1 9 0 0 2786 47 2563 23678257 81600 1282.7403259277344 8.5835999999999988 2308.4614000000001 120960 30292 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 12385503872 35197064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 533 1211 519 0 0 0 2 45 0 0 0 0 0 +280 1783879345079866700 REFRESH 43 0 0.49420006821846196 0 1 9 1 9 0 0 2791 16 420 3987777 55200 225.5032958984375 1.4335 376.9744 20160 13424 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12386240496 35933688 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 123 173 74 0 0 0 4 12 0 0 0 0 0 +281 1783879347380321900 DEPTH 43 1 0.49407600801285112 0 1 9 1 9 0 0 2797 60 2565 23678255 81600 1299.8233642578125 8.5783000000000005 2299.2235999999998 120960 65901 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12390715704 40408896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 591 999 675 0 0 0 0 60 0 0 0 0 0 +282 1783879349685736100 DEPTH 43 1 0.49395291124766461 0 1 9 1 9 0 0 2802 59 2568 23678214 81600 1290.2761077880859 8.5865000000000009 2304.2716 120960 55171 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12395193972 44887164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426371 4492800 150 150 571 1070 627 0 0 0 1 58 0 0 0 0 0 +283 1783879351992581800 DEPTH 43 1 0.49383073399349842 0 1 9 1 9 0 0 2807 53 2566 23678408 81600 1287.3214111328125 8.575899999999999 2305.6143000000002 120960 43819 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12399670200 49363392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 554 1135 577 0 0 0 1 52 0 0 0 0 0 +284 1783879354298025600 DEPTH 43 1 0.49370943630475633 0 1 9 1 9 1 0 2812 54 2573 23678335 81600 1283.8584136962891 8.8619000000000003 2304.2584000000002 120960 30366 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12404153568 53846760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 557 1200 516 0 0 0 1 53 0 0 0 0 1 +285 1783879354684877700 REFRESH 43 0 0.49360217258055294 0 1 9 1 9 0 0 2812 16 423 3987743 55200 224.91853332519531 1.4306000000000001 385.41289999999998 20160 13616 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 12404893252 54586444 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 125 177 71 0 0 2 1 13 0 0 0 0 0 +286 1783879356985985200 DEPTH 43 1 0.49348120911557991 0 1 9 1 9 0 0 2823 48 2574 23678256 81600 1300.8519439697266 8.5727000000000011 2299.9122000000002 120960 66361 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12409377640 59070832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 1081 590 0 0 1 5 42 0 0 0 0 0 +287 1783879359302034700 DEPTH 43 1 0.493361157443587 0 1 9 1 9 0 0 2825 36 2579 23678316 81600 1293.1573181152344 8.5838000000000001 2314.6305000000002 120960 55490 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12413867128 63560320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 567 1108 604 0 0 2 5 29 0 0 0 0 0 +288 1783879362693176200 DEPTH 43 1 0.49324197679868931 0 1 9 1 9 0 0 2830 41 2595 23678357 81600 1286.6734008789062 8.6277000000000008 3389.7507999999998 120960 44006 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12418373016 957772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 569 1190 536 0 0 2 1 38 0 0 0 0 0 +289 1783879365001897700 DEPTH 43 1 0.49312363010436461 0 1 9 1 9 0 0 2834 31 2578 23678363 81600 1286.3795166015625 8.5681999999999992 2307.5502000000001 120960 30073 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 12422861484 5446240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 563 1229 486 0 0 0 0 31 0 0 0 0 0 +290 1783879365466629500 REFRESH 43 0 0.49300608360871523 0 1 9 1 9 0 0 2834 12 420 3987760 55200 225.40287780761719 1.4234 385.61939999999998 20160 13714 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12423598108 6182864 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 126 176 68 0 0 1 1 10 0 0 0 0 0 +291 1783879367766003300 DEPTH 43 1 0.4928893065561446 0 1 9 1 9 0 0 2838 51 2575 23678326 81600 1297.6835784912109 8.5833999999999993 2298.2539999999999 120960 66336 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12428083516 10668272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 599 986 690 0 0 5 0 46 0 0 0 0 0 +292 1783879370087156500 DEPTH 43 1 0.49277327089180933 0 1 9 1 9 0 0 2840 38 2568 23678329 81600 1292.3975524902344 8.593 2320.0093000000002 120960 55172 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12432561784 15146540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 580 1106 582 0 0 2 2 34 0 0 0 0 0 +293 1783879372398226200 DEPTH 43 1 0.49265795099556803 0 1 9 1 9 0 0 2848 42 2572 23678332 81600 1287.6245727539062 8.6082000000000001 2309.7806999999998 120960 44417 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12437044132 19628888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 563 1175 534 0 0 0 0 42 0 0 0 0 0 +294 1783879374725029600 DEPTH 43 1 0.49254332344248103 0 1 9 1 9 0 0 2851 33 2573 23678329 81600 1284.5588531494141 8.5778000000000016 2325.6414 120960 30358 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12441527500 24112256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 562 1198 513 0 0 1 0 32 0 0 0 0 0 +295 1783879375100669100 REFRESH 43 0 0.49242936678720406 0 1 9 1 9 0 0 2854 9 421 3987744 55200 224.61541748046875 1.4322999999999999 374.40499999999997 20160 13496 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12442265144 24849900 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 126 174 71 0 0 1 0 8 0 0 0 0 0 +296 1783879377403451200 DEPTH 43 1 0.49131606136988965 0 1 9 1 9 0 0 2860 36 2550 23678429 81600 1300.5414276123047 8.5868000000000002 2301.5686000000001 120960 65958 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12446725052 29309808 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 602 1057 591 0 0 0 0 36 0 0 0 0 0 +297 1783879379700571800 DEPTH 43 1 0.4913033891414445 0 1 9 1 9 0 0 2864 34 2561 23678425 81600 1291.9184417724609 8.5831999999999997 2295.6264999999999 120960 54928 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12451196180 33780936 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 577 1164 520 0 0 0 0 34 0 0 0 0 0 +298 1783879381984688700 DEPTH 43 1 0.49128133350621006 0 1 9 1 9 0 0 2871 37 2583 23678372 81600 1288.1753387451172 8.6801999999999992 2282.9252000000001 120960 43871 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12455689748 38274504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 559 1232 492 0 0 0 0 37 0 0 0 0 0 +299 1783879384292575900 DEPTH 43 1 0.49125087918032301 0 1 9 1 9 0 0 2874 36 2604 23678384 81600 1285.7407531738281 8.5904000000000007 2306.6370999999999 120960 30622 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2604 1920 0 384 1 12460204736 42789492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 550 1235 519 0 0 0 0 36 0 0 0 0 0 +300 1783879384680744900 REFRESH 43 0 0.49121291206418966 0 1 9 1 9 0 0 2874 11 419 3987773 55200 224.59904479980469 1.4511000000000001 386.62290000000002 20160 13388 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12460940340 43525096 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 124 174 71 0 0 1 0 10 0 0 0 0 0 +301 1783879386981245300 DEPTH 43 1 0.49116822912766361 0 1 9 1 9 0 0 2878 34 2558 23678332 81600 1299.1649017333984 8.5779999999999994 2299.3213000000001 120960 65703 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12465408408 47993164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 614 1077 567 0 0 0 2 32 0 0 0 0 0 +302 1783879389301156100 DEPTH 43 1 0.49111754730665658 0 1 9 1 9 0 0 2883 37 2589 23678412 81600 1292.5334320068359 8.6077000000000012 2318.5468000000001 120960 55011 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12469908096 52492852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426396 4492800 150 150 589 1093 607 0 0 0 0 37 0 0 0 0 0 +303 1783879391598108700 DEPTH 43 1 0.49106151151004057 0 1 9 1 9 0 0 2887 33 2597 23678353 81600 1289.7640991210938 8.5787000000000013 2295.6581000000001 120960 43594 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12474415944 57000700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 590 1143 564 0 0 1 0 32 0 0 0 0 0 +304 1783879393910816100 DEPTH 43 1 0.49100070182581224 0 1 9 1 9 0 0 2890 29 2571 23678330 81600 1284.216796875 8.7731999999999992 2311.5077000000001 120960 29759 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12478897272 61482028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 588 1210 473 0 0 0 0 29 0 0 0 0 0 +305 1783879394288814200 REFRESH 43 0 0.49093564000659534 0 1 9 1 9 0 0 2891 9 419 3987778 55200 225.08460998535156 1.4334 376.69200000000001 20160 13572 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12479632876 62217632 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 128 173 68 0 0 0 0 9 0 0 0 0 0 +306 1783879396669161900 DEPTH 43 1 0.48986679530654642 0 1 9 1 9 0 0 2894 36 2575 23678383 81600 1300.8249206542969 8.5765999999999991 2301.2352000000001 120960 66030 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12484118284 66703040 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 616 1062 597 0 0 0 0 36 0 0 0 0 0 +307 1783879400029548200 DEPTH 43 1 0.48989458973452582 0 1 9 1 9 0 0 2897 32 2588 23678384 81600 1292.4856262207031 8.5784000000000002 3358.8049000000001 120960 55124 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12488617032 4092968 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 600 1138 550 0 0 2 1 29 0 0 0 0 0 +308 1783879402358185500 DEPTH 43 1 0.4899094027819072 0 1 9 1 9 0 0 2899 40 2574 23678472 81600 1285.7127990722656 8.5967999999999982 2327.3083999999999 120960 43487 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12493101420 8577356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 602 1183 489 0 0 0 0 40 0 0 0 0 0 +309 1783879404672509000 DEPTH 43 1 0.48991257567756252 0 1 9 1 9 0 0 2901 30 2579 23678469 81600 1287.5295867919922 8.5800999999999998 2313.1385 120960 29137 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12497590908 13066844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426537 4492800 150 150 588 1209 482 0 0 0 0 30 0 0 0 0 0 +310 1783879405055959200 REFRESH 43 0 0.48990531521730651 0 1 9 1 9 0 0 2903 17 422 3987792 55200 224.97587585449219 1.4418 382.04820000000001 20160 13535 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12498329572 13805508 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 126 178 68 0 0 4 1 12 0 0 0 0 0 +311 1783879407376369600 DEPTH 43 1 0.48988870721035377 0 1 9 1 9 0 0 2907 52 2590 23678011 81600 1299.9854736328125 8.5800000000000001 2319.1246999999998 134400 76924 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 12502830280 18306216 1 0 4 4 3 2 3 5898240 4915200 4423680 3934571 4492800 150 150 621 1057 612 0 0 0 7 45 0 0 0 0 0 +312 1783879409699091700 DEPTH 43 1 0.48986372858108984 0 1 9 1 9 0 0 2908 33 2579 23677305 81600 1292.3205108642578 8.6009000000000011 2321.5118000000002 161280 71118 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12507319768 22795704 1 0 4 4 3 2 3 5898240 5898240 4423680 2950968 4492800 150 150 612 1056 611 0 0 0 0 33 0 0 0 0 0 +313 1783879412028584300 DEPTH 43 1 0.48983125826062357 0 1 9 1 9 0 0 2910 21 2581 23677444 81600 1288.8810424804688 8.5961999999999996 2328.3640999999998 154560 61187 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12511811296 27287232 1 0 4 4 3 2 3 5898240 5652480 4423680 3196889 4492800 150 150 613 1137 531 0 0 0 0 21 0 0 0 0 0 +314 1783879414351561900 DEPTH 43 1 0.48979208698914517 0 1 9 1 9 0 0 2915 37 2597 23677366 81600 1282.5807342529297 8.5868000000000002 2321.8474000000001 161280 43370 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12516319144 31795080 1 0 4 4 3 2 3 5898240 5898240 4423680 2950971 4492800 150 150 610 1174 513 0 0 0 0 37 0 0 0 0 0 +315 1783879414728382100 REFRESH 43 0 0.48974692613800819 0 1 9 1 9 0 0 2930 39 414 3987607 55200 223.70918273925781 1.4349000000000001 375.43349999999998 26880 16550 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12517049648 32525584 1 0 4 4 3 2 3 983040 983040 737280 491693 748800 25 25 25 233 106 0 0 0 26 13 0 0 0 0 0 +316 1783879416990495800 DEPTH 43 1 0.48969641564956529 0 1 9 1 9 0 0 2946 75 2587 23677251 81600 1298.0868988037109 9.9070999999999998 2260.9297000000001 147840 93211 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 12521547296 37023232 1 0 4 4 3 2 3 5898240 5406720 4423680 3442783 4492800 150 150 150 1200 937 0 0 0 0 75 0 0 0 0 0 +317 1783879419284720800 DEPTH 43 1 0.48964113118298203 0 1 9 1 9 0 0 2949 39 2573 23677702 81600 1290.1380767822266 8.5845000000000002 2292.6196 134400 72534 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12526030664 41506600 1 0 4 3 3 3 3 5898240 4915200 4423680 3934668 4492800 150 150 150 1242 881 0 0 0 0 39 0 0 0 0 0 +318 1783879421593571700 DEPTH 43 1 0.48958159054543138 0 1 9 1 9 0 0 2951 38 2597 23677838 81600 1285.138427734375 8.5789000000000009 2307.6707000000001 120960 45766 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12530538512 46014448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1382 765 0 0 0 0 38 0 0 0 0 0 +319 1783879423900778800 DEPTH 43 1 0.48951825948013272 0 1 9 1 9 0 0 2957 43 2571 23677935 81600 1282.7955169677734 8.5842999999999989 2306.0250000000001 120960 32979 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12535019840 50495776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1447 674 0 0 0 1 42 0 0 0 0 0 +320 1783879424269059700 REFRESH 43 0 0.48945155687554986 0 1 9 1 9 0 0 2960 18 409 3987686 55200 224.09625244140625 1.4311 367.09050000000002 20160 12179 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12535745244 51221180 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 229 105 0 0 0 4 14 0 0 0 0 0 +321 1783879426510740700 DEPTH 43 1 0.48938185945363361 0 1 9 1 9 0 0 2978 63 2567 23677857 81600 1295.0448303222656 8.5841999999999992 2240.5462000000002 120960 60325 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12540222492 55698428 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 150 904 1213 0 0 0 0 63 0 0 0 0 0 +322 1783879428907432200 DEPTH 43 1 0.48930950598920497 0 1 9 1 9 0 0 2983 35 2569 23678002 81600 1288.1758728027344 8.9938000000000002 2318.3569000000002 120960 49464 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12544701780 60177716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 150 150 150 927 1192 0 0 0 0 35 0 0 0 0 0 +323 1783879431215626700 DEPTH 43 1 0.48923480110736567 0 1 9 1 9 1 0 2987 40 2579 23678227 81600 1288.02099609375 8.6052 2307.0097999999998 120960 39090 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12549191268 64667204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 150 150 150 1095 1034 0 0 0 1 39 0 0 0 0 1 +324 1783879434567634600 DEPTH 43 1 0.48916015625905906 0 1 9 1 9 0 0 2990 46 2572 23678031 81600 1283.2387847900391 8.6525999999999996 3350.8148999999999 120960 27272 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12553673696 2041196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426569 4492800 150 150 150 1359 763 0 0 0 2 44 0 0 0 0 0 +325 1783879434938793900 REFRESH 43 0 0.48908132880941002 0 1 9 1 9 0 0 2992 8 410 3987667 55200 224.83967590332031 1.4286000000000001 370.0068 20160 12763 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12554400120 2767620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 231 104 0 0 0 0 8 0 0 0 0 0 +326 1783879437159212700 DEPTH 43 1 0.4870009127964619 0 1 9 1 9 0 0 3007 80 2544 23677992 81600 1295.3518371582031 8.5845000000000002 2219.2242000000001 120960 61286 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12558853908 7221408 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 150 1127 967 0 0 0 0 80 0 0 0 0 0 +327 1783879439399972500 DEPTH 43 1 0.48711910503474237 0 1 9 1 9 0 0 3015 49 2555 23677967 81600 1289.0111694335938 8.5951000000000004 2239.5756000000001 120960 49933 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12563318916 11686416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 150 1246 859 0 0 0 0 49 0 0 0 0 0 +328 1783879441648417500 DEPTH 43 1 0.48721608239807329 0 1 9 1 9 0 0 3020 31 2536 23678165 81600 1288.9016265869141 8.5846999999999998 2247.1459 120960 40055 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12567764544 16132044 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1420 666 0 0 0 0 31 0 0 0 0 0 +329 1783879443936194600 DEPTH 43 1 0.48729400381614163 0 1 9 1 9 0 0 3023 32 2564 23678315 81600 1284.9633331298828 8.5861000000000001 2286.3629999999998 120960 26624 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12572238732 20606232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1502 612 0 0 0 0 32 0 0 0 0 0 +330 1783879444310817100 REFRESH 43 0 0.48735481207138165 0 1 9 1 9 0 0 3028 19 412 3987719 55200 225.97853088378906 1.4263999999999999 373.14460000000003 20160 13016 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12572967196 21334696 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 240 97 0 0 0 5 14 0 0 0 0 0 +331 1783879446545182500 DEPTH 43 1 0.48740025541613879 0 1 9 1 9 0 0 3060 112 2539 23678033 81600 1298.2763214111328 8.7144999999999992 2233.2161000000001 120960 61400 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12577415884 25783384 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1073 1016 0 0 0 0 112 0 0 0 0 0 +332 1783879448789455900 DEPTH 43 1 0.48743190702808675 0 1 9 1 9 0 0 3069 64 2520 23678037 81600 1287.1045227050781 8.5772999999999993 2243.0565000000001 120960 49851 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 12581845192 30212692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1151 919 2 0 0 0 62 0 0 0 0 0 +333 1783879451032467800 DEPTH 43 1 0.48745118252007302 0 1 9 1 9 0 0 3072 63 2538 23677978 81600 1287.6564636230469 8.5907999999999998 2241.5643 120960 39621 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12586292860 34660360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426386 4492800 150 150 150 1339 749 0 0 0 0 63 0 0 0 0 0 +334 1783879453318586200 DEPTH 43 1 0.48745935569895099 0 1 9 1 9 0 0 3079 48 2536 23678142 81600 1284.3647003173828 8.5787999999999993 2284.8917000000001 120960 28032 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12590738488 39105988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1429 657 0 0 0 0 48 0 0 0 0 0 +335 1783879453683943500 REFRESH 43 0 0.4874575727484996 0 1 9 1 9 0 0 3081 20 412 3987815 55200 224.62258911132812 1.4323999999999999 363.93340000000001 20160 12531 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12591466952 39834452 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 25 240 97 0 0 0 1 19 0 0 0 0 0 +336 1783879455923694000 DEPTH 43 1 0.48744686499402284 0 1 9 1 9 0 0 3113 91 2529 23678220 81600 1298.7698516845703 8.7070000000000007 2238.4479000000001 120960 60464 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12595905440 44272940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426380 4492800 150 150 150 1033 1046 0 0 0 0 91 0 0 0 0 0 +337 1783879458168717500 DEPTH 43 1 0.48742816039046144 0 1 9 1 9 0 0 3134 99 2535 23678124 81600 1288.887451171875 8.5907999999999998 2243.7736 120960 49981 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12600350048 48717548 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1247 838 1 0 0 0 98 0 0 0 0 0 +338 1783879460542331500 DEPTH 43 1 0.48740229386166567 0 1 9 1 9 0 0 3141 44 2540 23678138 81600 1283.7455291748047 8.5733999999999995 2297.1381000000001 120960 39612 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12604799756 53167256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 150 1222 868 0 0 0 1 43 0 0 0 0 0 +339 1783879462868612900 DEPTH 43 1 0.48737001660571377 0 1 9 1 9 0 0 3146 49 2541 23678129 81600 1282.2210540771484 8.6414000000000009 2324.9220999999998 120960 28189 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12609250484 57617984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1401 690 1 0 0 1 47 0 0 0 0 0 +340 1783879463236014400 REFRESH 43 0 0.48733200446967162 0 1 9 1 9 0 0 3149 18 408 3987712 55200 224.81817626953125 1.4328000000000001 366.20749999999998 20160 12536 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12609974868 58342368 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 237 96 1 0 0 2 15 0 0 0 0 0 +341 1783879465499502800 DEPTH 43 1 0.4872888654868508 0 1 9 1 9 0 0 3181 109 2545 23678375 81600 1301.3000640869141 8.5901999999999994 2262.3002999999999 120960 60641 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12614429676 62797176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 150 929 1166 1 0 0 1 107 0 0 0 0 0 +342 1783879468794244000 DEPTH 43 1 0.48724114666031371 0 1 9 1 9 0 0 3217 156 2539 23678338 81600 1290.7837066650391 8.5942000000000007 3293.6183999999998 120960 50085 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12618878444 137508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1046 1043 0 0 0 0 156 0 0 0 0 0 +343 1783879471042170900 DEPTH 43 1 0.48718934006800402 0 1 9 1 9 0 0 3234 91 2538 23678135 81600 1286.8863220214844 8.583400000000001 2246.75 120960 40251 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12623326112 4585176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 150 1180 908 0 0 0 0 91 0 0 0 0 0 +344 1783879473319140500 DEPTH 43 1 0.48713388835733745 0 1 9 1 9 0 0 3240 73 2557 23678070 81600 1283.09228515625 8.6011000000000006 2275.7705000000001 120960 28082 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12627793160 9052224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1207 900 0 0 0 0 73 0 0 0 0 0 +345 1783879473696152600 REFRESH 43 0 0.48707518969030988 0 1 9 1 9 0 0 3249 24 409 3987730 55200 224.82330322265625 1.4313 375.82530000000003 20160 13042 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12628518564 9777628 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 239 95 0 0 0 3 21 0 0 0 0 0 +346 1783879475956650700 DEPTH 43 1 0.48701360219406942 0 1 9 1 9 0 0 3263 73 2567 23678062 81600 1298.1165924072266 8.7106999999999992 2259.2447000000002 120960 63038 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12632995812 14254876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426336 4492800 150 150 150 1046 1071 0 0 0 0 73 0 0 0 0 0 +347 1783879478201593800 DEPTH 43 1 0.48694944796640749 0 1 9 1 9 0 0 3286 93 2548 23678275 81600 1289.7249450683594 8.7254000000000005 2243.7910000000002 120960 52005 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12637453680 18712744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426389 4492800 150 150 150 1092 1006 0 0 0 0 93 0 0 0 0 0 +348 1783879480454999600 DEPTH 43 1 0.48688301668067679 0 1 9 1 9 0 0 3294 64 2542 23678428 81600 1286.7594451904297 8.5823999999999998 2252.2773999999999 120960 40553 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12641905428 23164492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1193 899 0 0 0 0 64 0 0 0 0 0 +349 1783879482737778700 DEPTH 43 1 0.48681456883019464 0 1 9 1 9 0 0 3300 58 2557 23678311 81600 1283.6649932861328 8.5878999999999994 2281.5047 120960 27702 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12646372476 27631540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426534 4492800 150 150 150 1382 725 0 0 0 0 58 0 0 0 0 0 +350 1783879483110371900 REFRESH 43 0 0.48674433864818195 0 1 9 1 9 0 0 3308 24 409 3987729 55200 225.3516845703125 1.4271 371.2672 20160 13625 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12647097880 28356944 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 246 88 0 0 0 5 19 0 0 0 0 0 +351 1783879485390870800 DEPTH 43 1 0.48667253673568661 0 1 9 1 9 0 0 3339 86 2536 23678158 81600 1299.0668792724609 8.5767000000000007 2279.1779999999999 120960 65127 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12651543508 32802572 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 997 1089 0 0 0 0 86 0 0 0 0 0 +352 1783879487667166700 DEPTH 43 1 0.48659935242669139 0 1 9 1 9 0 0 3350 66 2549 23678206 81600 1291.9796752929688 8.5815999999999999 2275.0306999999998 120960 54134 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12656002396 37261460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1080 1019 0 0 0 0 66 0 0 0 0 0 +353 1783879489953084600 DEPTH 43 1 0.48652495591668909 0 1 9 1 9 0 0 3368 63 2544 23678279 81600 1288.7533111572266 8.5921000000000003 2284.7381 120960 43716 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12660456184 41715248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1234 860 0 0 0 0 63 0 0 0 0 0 +354 1783879492341095800 DEPTH 43 1 0.48644950017837885 0 1 9 1 9 0 0 3375 38 2536 23678527 81600 1285.7088928222656 8.5747 2302.0052999999998 120960 29371 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12664901812 46160876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 150 1241 845 0 0 0 0 38 0 0 0 0 0 +355 1783879492712988200 REFRESH 43 0 0.48637312268577071 0 1 9 1 9 0 0 3382 22 410 3987765 55200 224.64408874511719 1.4329000000000001 370.65679999999998 20160 13516 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12665628236 46887300 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 240 95 0 0 0 4 18 0 0 0 0 0 +356 1783879494978928100 DEPTH 43 1 0.48629594696585904 0 1 9 1 9 0 0 3392 46 2525 23678293 81600 1301.7158660888672 8.5701000000000001 2264.7651999999998 120960 65290 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 12670062644 51321708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1001 1074 0 0 0 0 46 0 0 0 0 0 +357 1783879497295953600 DEPTH 43 1 0.48621808399510746 0 1 9 1 9 0 0 3403 47 2527 23678300 81600 1291.3942413330078 8.581900000000001 2315.7955999999999 120960 54280 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12674499092 55758156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426543 4492800 150 150 150 1092 985 0 0 0 0 47 0 0 0 0 0 +358 1783879499630857300 DEPTH 43 1 0.4861396334562651 0 1 9 1 9 0 0 3406 44 2527 23678241 81600 1290.0444183349609 8.5921000000000003 2333.7572 120960 43469 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12678935540 60194604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 1141 936 5 0 0 0 39 0 0 0 0 0 +359 1783879501927871000 DEPTH 43 1 0.4860606848694804 0 1 9 1 9 0 0 3417 46 2535 23678247 81600 1285.3299102783203 8.5792000000000002 2295.8092999999999 120960 30050 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12683380148 64639212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 150 1281 804 2 0 0 0 44 0 0 0 0 0 +360 1783879502295886500 REFRESH 43 0 0.48598131861028387 0 1 9 1 9 0 0 3422 21 412 3987866 55200 225.94583129882812 1.4305000000000001 366.80489999999998 20160 13383 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12684108612 65367676 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 250 87 0 0 0 4 17 0 0 0 0 0 +361 1783879505674946200 DEPTH 43 1 0.48590160682575317 0 1 9 1 9 0 0 3436 87 2549 23678359 81600 1300.7170257568359 8.5991999999999997 3377.6167 120960 64979 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12688567580 2718660 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 980 1119 0 0 4 2 81 0 0 0 0 0 +362 1783879507998783400 DEPTH 43 1 0.48582161425904158 0 1 9 1 9 0 0 3444 48 2534 23678265 81600 1290.9680633544922 8.5949000000000009 2322.5369000000001 120960 54017 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12693011168 7162248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 150 1052 1032 0 0 0 2 46 0 0 0 0 0 +363 1783879510314049300 DEPTH 43 1 0.48574139899143498 0 1 9 1 9 0 0 3447 57 2540 23678188 81600 1289.4330749511719 8.5806000000000004 2314.0043999999998 120960 43344 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12697460876 11611956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 1179 911 0 0 2 0 55 0 0 0 0 0 +364 1783879512613905000 DEPTH 43 1 0.48566101311018384 0 1 9 1 9 0 0 3453 59 2547 23678217 81600 1285.7763977050781 8.7781000000000002 2298.5538999999999 120960 30010 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12701917724 16068804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1283 814 0 0 3 0 56 0 0 0 0 0 +365 1783879512983262000 REFRESH 43 0 0.4855805033095339 0 1 9 1 9 0 0 3459 24 416 3987717 55200 224.67481994628906 1.4371 368.22460000000001 20160 13106 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12702650268 16801348 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 244 97 0 0 0 3 21 0 0 0 0 0 +366 1783879515272353100 DEPTH 43 1 0.4854999114316349 0 1 9 1 9 0 0 3464 62 2531 23678488 81600 1300.6526794433594 8.6729000000000003 2287.8798999999999 120960 64420 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12707090796 21241876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 150 150 150 1030 1051 0 0 0 0 62 0 0 0 0 0 +367 1783879517585538200 DEPTH 43 1 0.48541927495334058 0 1 9 1 9 0 0 3469 48 2531 23678429 81600 1293.7256927490234 8.6324000000000005 2312.0526 120960 53703 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12711531324 25682404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1108 973 0 0 2 2 44 0 0 0 0 0 +368 1783879519903011600 DEPTH 43 1 0.48533862742431083 0 1 9 1 9 0 0 3472 54 2528 23678299 81600 1289.4071960449219 8.8907000000000007 2316.1509999999998 120960 43018 1 1 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 12715968792 30119872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1217 861 0 0 0 3 50 0 0 0 0 0 +369 1783879522203070500 DEPTH 43 1 0.48525799886128584 0 1 9 1 9 0 0 3479 41 2522 23678246 81600 1286.6715698242188 8.5858000000000008 2298.7687999999998 120960 29613 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12720400140 34551220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1347 725 0 0 0 0 41 0 0 0 0 0 +370 1783879522659567500 REFRESH 43 0 0.48517741610291554 0 1 9 1 9 0 0 3486 24 408 3987754 55200 226.01011657714844 1.4298 376.19600000000003 20160 13319 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12721124524 35275604 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 255 78 0 0 0 3 21 0 0 0 0 0 +371 1783879524925041400 DEPTH 43 1 0.48509690312908904 0 1 9 1 9 0 0 3499 49 2516 23678314 81600 1300.9786987304688 8.6442999999999994 2264.2350000000001 120960 65195 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 12725549752 39700832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 150 1102 964 0 0 0 0 49 0 0 0 0 0 +372 1783879527188354900 DEPTH 43 1 0.48501648134831399 0 1 9 1 9 0 0 3508 33 2522 23678397 81600 1291.1513824462891 8.5902999999999992 2262.0533 120960 54302 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12729981100 44132180 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1231 841 0 0 0 0 33 0 0 0 0 0 +373 1783879529490229000 DEPTH 43 1 0.48493616985634164 0 1 9 1 9 0 0 3518 50 2550 23678478 81600 1288.1069946289062 8.6097999999999999 2300.6158999999998 120960 43614 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12734441008 48592088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1262 838 0 0 0 1 49 0 0 0 0 0 +374 1783879531749067700 DEPTH 43 1 0.48485598566891258 0 1 9 1 9 0 0 3527 59 2558 23678328 81600 1285.5879364013672 8.5937999999999999 2257.4965999999999 120960 29573 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12738909076 53060156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1409 699 0 0 0 0 59 0 0 0 0 0 +375 1783879532116747500 REFRESH 43 0 0.48477594393121215 0 1 9 1 9 0 0 3533 18 412 3987732 55200 225.18476867675781 1.4282999999999999 366.35050000000001 20160 13578 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12739637540 53788620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 254 83 0 0 0 0 18 0 0 0 0 0 +376 1783879534360042200 DEPTH 43 1 0.48469605810636363 0 1 9 1 9 0 0 3551 81 2558 23678339 81600 1300.42041015625 8.6246000000000009 2242.1138999999998 120960 65964 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12744105608 58256688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1101 1007 0 0 0 1 80 0 0 0 0 0 +377 1783879536610721300 DEPTH 43 1 0.48461634014505683 0 1 9 1 9 0 0 3560 50 2572 23678292 81600 1293.9970397949219 8.5878999999999994 2249.5115999999998 120960 54655 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12748587956 62739036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1267 855 0 0 0 0 50 0 0 0 0 0 +378 1783879539956595300 DEPTH 43 1 0.48453680063819848 0 1 9 1 9 0 0 3566 57 2556 23678406 81600 1291.6877593994141 8.6423000000000005 3344.6601000000001 120960 43367 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12753054064 96868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1424 682 0 0 0 0 57 0 0 0 0 0 +379 1783879542256833800 DEPTH 43 1 0.48445744895428117 0 1 9 1 9 0 0 3571 42 2543 23678477 81600 1287.0133819580078 8.5827000000000009 2298.9731999999999 120960 29198 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12757506832 4549636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 150 1510 583 2 0 0 2 38 0 0 0 0 0 +380 1783879542634596800 REFRESH 43 0 0.48437829336300142 0 1 9 1 9 0 0 3579 19 414 3987767 55200 226.19442749023438 1.4315 376.60550000000001 20160 13716 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12758237336 5280140 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 244 95 0 0 0 3 16 0 0 0 0 0 +381 1783879544908028500 DEPTH 43 1 0.48429934114650008 0 1 9 1 9 0 0 3593 77 2558 23678438 81600 1302.2227783203125 8.5762 2272.2148999999999 120960 66172 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12762705404 9748208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 150 1082 1026 0 0 0 0 77 0 0 0 0 0 +382 1783879547190589700 DEPTH 43 1 0.48422059869946471 0 1 9 1 9 0 0 3599 48 2558 23678269 81600 1294.6760864257812 8.5745000000000005 2281.4007000000001 120960 55116 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12767173472 14216276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1286 822 0 0 0 1 47 0 0 0 0 0 +383 1783879549475239700 DEPTH 43 1 0.4841420716192063 0 1 9 1 9 0 0 3602 44 2547 23678367 81600 1288.8883209228516 8.833499999999999 2283.4816999999998 120960 44154 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12771630320 18673124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 150 1374 723 0 0 0 0 44 0 0 0 0 0 +384 1783879551758037400 DEPTH 43 1 0.48406376478671453 0 1 9 1 9 0 0 3603 42 2535 23678353 81600 1285.3122711181641 8.5762999999999998 2281.5216 120960 30515 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12776074928 23117732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 150 150 150 1411 674 0 0 0 1 41 0 0 0 0 0 +385 1783879552133403800 REFRESH 43 0 0.48398568243959328 0 1 9 1 9 0 0 3610 17 414 3987857 55200 226.29580688476562 1.4278 374.1472 20160 13494 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12776805432 23848236 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 241 98 0 0 0 1 16 0 0 0 0 0 +386 1783879554467454400 DEPTH 43 1 0.4839078282376883 0 1 9 1 9 0 0 3619 41 2536 23678468 81600 1302.8383331298828 8.5736999999999988 2260.0273999999999 120960 65590 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12781251060 28293864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1144 942 0 0 0 0 41 0 0 0 0 0 +387 1783879556732710100 DEPTH 43 1 0.48383020532213855 0 1 9 1 9 0 0 3628 45 2554 23678363 81600 1293.4066925048828 8.5886999999999993 2264.0889000000002 120960 54928 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12785715048 32757852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1360 744 0 0 0 1 44 0 0 0 0 0 +388 1783879559028334700 DEPTH 43 1 0.4837528163685087 0 1 9 1 9 0 0 3636 55 2551 23678392 81600 1290.8042449951172 8.6063999999999989 2294.2417 120960 43600 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12790175976 37218780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 150 1330 771 0 0 0 1 54 0 0 0 0 0 +389 1783879561362659300 DEPTH 43 1 0.4836756636345948 0 1 9 1 9 0 0 3640 45 2552 23678319 81600 1286.1257476806641 8.5876000000000001 2332.9947999999999 120960 30417 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12794637924 41680728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1396 706 0 0 0 0 45 0 0 0 0 0 +390 1783879561745304400 REFRESH 43 0 0.48359874900343625 0 1 9 1 9 0 0 3646 21 415 3987767 55200 225.24415588378906 1.4276 381.33269999999999 20160 13286 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 12795369448 42412252 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 25 242 98 0 0 0 6 15 0 0 0 0 0 +391 1783879564061137100 DEPTH 43 1 0.48352207402201353 0 1 9 1 9 0 0 3648 45 2543 23678486 81600 1301.3849334716797 8.6441999999999997 2314.6307000000002 120960 65177 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12799822216 46865020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 988 1105 0 0 0 1 44 0 0 0 0 0 +392 1783879566354771200 DEPTH 43 1 0.48344563993606299 0 1 9 1 9 0 0 3652 43 2540 23678420 81600 1293.7164916992188 8.5737000000000005 2292.4214999999999 120960 54339 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12804271924 51314728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1171 919 0 0 0 0 43 0 0 0 0 0 +393 1783879568648494300 DEPTH 43 1 0.48336944772139762 0 1 9 1 9 0 0 3653 21 2531 23678351 81600 1288.3742828369141 8.5997999999999983 2292.4312 120960 42953 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12808712452 55755256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1197 884 0 0 0 0 21 0 0 0 0 0 +394 1783879570948161300 DEPTH 43 1 0.48329349811208283 0 1 9 1 9 0 0 3655 39 2529 23678339 81600 1286.4846038818359 8.5649999999999995 2298.2959000000001 120960 29220 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12813150940 60193744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1200 879 0 0 0 0 39 0 0 0 0 0 +395 1783879571319392000 REFRESH 43 0 0.48321779162578266 0 1 9 1 9 0 0 3663 19 413 3987782 55200 226.02957153320312 1.4326000000000001 369.95679999999999 20160 13417 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12813880424 60923228 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 25 25 25 250 88 0 0 0 1 18 0 0 0 0 0 +396 1783879573611826400 DEPTH 43 1 0.48314232858655864 0 1 9 1 9 0 0 3674 44 2524 23678334 81600 1299.6495513916016 8.5877999999999997 2291.2132000000001 120960 66561 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 12818313812 65356616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 1004 1070 0 0 0 0 44 0 0 0 0 0 +397 1783879576988557000 DEPTH 43 1 0.48306710914537704 0 1 9 1 9 0 0 3677 52 2502 23678421 81600 1293.0571899414062 8.6791 3375.4337999999998 120960 55217 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 12822724840 2659500 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1071 981 0 0 0 1 51 0 0 0 0 0 +398 1783879579296915300 DEPTH 43 1 0.48299213329855301 0 1 9 1 9 0 0 3681 42 2513 23678504 81600 1289.5180816650391 8.572000000000001 2307.1199999999999 120960 43739 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 12827147008 7081668 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1173 890 0 0 0 0 42 0 0 0 0 0 +399 1783879581612898700 DEPTH 43 1 0.48291740090433882 0 1 9 1 9 0 0 3683 30 2514 23678440 81600 1288.8537445068359 8.6640000000000015 2314.7431000000001 120960 29718 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 12831570196 11504856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 150 1290 774 0 0 0 0 30 0 0 0 0 0 +400 1783879581980771100 REFRESH 43 0 0.48284291169784149 0 1 9 1 9 0 0 3688 15 416 3987806 55200 225.20729064941406 1.4258 366.63799999999998 20160 13527 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12832302740 12237400 1 0 4 3 3 3 3 983040 737280 737280 737541 748800 25 25 25 251 90 0 0 0 3 12 0 0 0 0 0 +401 1783879584282383600 DEPTH 43 1 0.48276866530443707 0 1 9 1 9 0 0 3696 57 2540 23678341 81600 1300.2257537841797 8.5856999999999992 2300.1037000000001 120960 66413 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12836752448 16687108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1096 994 0 0 0 0 57 0 0 0 0 0 +402 1783879586657285300 DEPTH 43 1 0.4826946612518323 0 1 9 1 9 0 0 3703 50 2540 23678309 81600 1291.6817779541016 8.7750000000000004 2295.9169999999999 120960 54607 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12841202156 21136816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1164 926 0 0 0 0 50 0 0 0 0 0 +403 1783879588939189900 DEPTH 43 1 0.48262089898090876 0 1 9 1 9 0 0 3710 47 2544 23678381 81600 1289.4652404785156 8.6042999999999985 2280.7516999999998 120960 44291 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12845655944 25590604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1374 720 0 0 0 0 47 0 0 0 0 0 +404 1783879591201723100 DEPTH 43 1 0.48254737785547142 0 1 9 1 9 0 0 3717 36 2534 23678502 81600 1285.4898223876953 8.5722999999999985 2261.2759000000001 120960 29831 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12850099532 30034192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1409 675 0 0 0 0 36 0 0 0 0 0 +405 1783879591579195300 REFRESH 43 0 0.48247409717101158 0 1 9 1 9 0 0 3721 17 413 3987757 55200 226.41561889648438 1.4297 376.08499999999998 20160 13530 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12850829016 30763676 1 0 4 3 3 3 3 983040 737280 737280 737483 748800 25 25 25 253 85 0 0 0 4 13 0 0 0 0 0 +406 1783879593794308200 DEPTH 43 1 0.48240105616258261 0 1 9 1 9 0 0 3727 53 2541 23678472 81600 1299.8338470458984 8.5823000000000018 2213.9598000000001 120960 66142 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12855279744 35214404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426533 4492800 150 150 150 1214 877 0 0 0 0 53 0 0 0 0 0 +407 1783879595279284200 DEPTH 43 1 0.48232825401187751 0 1 9 1 9 0 0 3729 27 1688 15789644 58560 868.87832641601562 5.7592999999999996 1483.6569 80640 37643 0 0 0.03710369420162668 0.24547566744898053 4096 2048 256 8 64 240 48 16 0 1688 1280 0 256 0 12858234400 38169060 1 0 4 3 3 3 3 3932160 2949120 2949120 2950934 2995200 100 100 100 905 483 0 0 0 1 26 0 0 0 0 0 diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/run.tsv b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/run.tsv new file mode 100644 index 00000000..fc038e34 --- /dev/null +++ b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/run.tsv @@ -0,0 +1,58 @@ +format szilassi-global-search-v5 +run_id 20e1402c-f882-4e28-bb4f-c015c2528150 +node_id LOOKICH +seed 1190500451 +topology_from 43 +topology_to 43 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 1 +algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +transformer_enabled 1 +transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83 +transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker +transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64 +transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 11343679868 +training_neural_model_reserve_bytes 265316868 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000001_27d6bd25.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000001_27d6bd25.szar new file mode 100644 index 00000000..90570e7b Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000001_27d6bd25.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000002_08d8ad79.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000002_08d8ad79.szar new file mode 100644 index 00000000..30c5ceae Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000002_08d8ad79.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000003_5ec5246b.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000003_5ec5246b.szar new file mode 100644 index 00000000..e9aaff9f Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000003_5ec5246b.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000004_d138ec70.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000004_d138ec70.szar new file mode 100644 index 00000000..77cfc45f Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000004_d138ec70.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000005_2671ce62.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000005_2671ce62.szar new file mode 100644 index 00000000..9039a02f Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000005_2671ce62.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000006_afc6a5d2.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000006_afc6a5d2.szar new file mode 100644 index 00000000..ef9bf9e1 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000006_afc6a5d2.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000007_21032174.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000007_21032174.szar new file mode 100644 index 00000000..d867e884 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000007_21032174.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000008_584b448a.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000008_584b448a.szar new file mode 100644 index 00000000..cf0766b9 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000008_584b448a.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000009_246005e2.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000009_246005e2.szar new file mode 100644 index 00000000..a0299505 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000009_246005e2.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000010_acf55815.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000010_acf55815.szar new file mode 100644 index 00000000..56297377 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000010_acf55815.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000011_e564482e.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000011_e564482e.szar new file mode 100644 index 00000000..1fffb067 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000011_e564482e.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000012_bdfbd1d6.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000012_bdfbd1d6.szar new file mode 100644 index 00000000..256ae797 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000012_bdfbd1d6.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000013_1fd48e4a.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000013_1fd48e4a.szar new file mode 100644 index 00000000..968b9fd6 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000013_1fd48e4a.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000014_e8daf700.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000014_e8daf700.szar new file mode 100644 index 00000000..4542b36b Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000014_e8daf700.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000015_1d912355.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000015_1d912355.szar new file mode 100644 index 00000000..80cb275c Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000015_1d912355.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000016_c69e0d38.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000016_c69e0d38.szar new file mode 100644 index 00000000..ea761ec6 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000016_c69e0d38.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000017_d1399401.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000017_d1399401.szar new file mode 100644 index 00000000..1a50601a Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000017_d1399401.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000018_951f21d5.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000018_951f21d5.szar new file mode 100644 index 00000000..0c68b7c1 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000018_951f21d5.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000019_9d9e203e.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000019_9d9e203e.szar new file mode 100644 index 00000000..8786c229 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000019_9d9e203e.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000020_f544d284.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000020_f544d284.szar new file mode 100644 index 00000000..91aadfdb Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000020_f544d284.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000021_302432fa.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000021_302432fa.szar new file mode 100644 index 00000000..8c8d81b3 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000021_302432fa.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000022_87a96f69.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000022_87a96f69.szar new file mode 100644 index 00000000..be44fb8a Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000022_87a96f69.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000023_a1aa763c.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000023_a1aa763c.szar new file mode 100644 index 00000000..b7a249d9 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000023_a1aa763c.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000024_0957877a.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000024_0957877a.szar new file mode 100644 index 00000000..452c99dc Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000024_0957877a.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000025_fd8f569e.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000025_fd8f569e.szar new file mode 100644 index 00000000..49deffa5 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000025_fd8f569e.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000026_90f78781.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000026_90f78781.szar new file mode 100644 index 00000000..aa5b28eb Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000026_90f78781.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000027_7bfbf6ff.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000027_7bfbf6ff.szar new file mode 100644 index 00000000..0b01dd72 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000027_7bfbf6ff.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000028_b2ed68e5.szar b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000028_b2ed68e5.szar new file mode 100644 index 00000000..acfca7b5 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/archive/delta_00000000000000000028_b2ed68e5.szar differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000001_61f4e4ae.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000001_61f4e4ae.szcp new file mode 100644 index 00000000..4186c687 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000001_61f4e4ae.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000002_c1c69d91.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000002_c1c69d91.szcp new file mode 100644 index 00000000..704603f2 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000002_c1c69d91.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000003_a30b6e32.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000003_a30b6e32.szcp new file mode 100644 index 00000000..8930598f Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000003_a30b6e32.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000004_62fc5db7.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000004_62fc5db7.szcp new file mode 100644 index 00000000..94ce220d Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000004_62fc5db7.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000005_202a357c.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000005_202a357c.szcp new file mode 100644 index 00000000..c474a5f4 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000005_202a357c.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000006_6fd588f5.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000006_6fd588f5.szcp new file mode 100644 index 00000000..ac6b0c96 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000006_6fd588f5.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000007_90aa56db.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000007_90aa56db.szcp new file mode 100644 index 00000000..8f882e3c Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000007_90aa56db.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000008_242fc470.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000008_242fc470.szcp new file mode 100644 index 00000000..7f8498c9 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000008_242fc470.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000009_529798a7.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000009_529798a7.szcp new file mode 100644 index 00000000..4c246b9c Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000009_529798a7.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000010_24ae4720.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000010_24ae4720.szcp new file mode 100644 index 00000000..d164b96c Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000010_24ae4720.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000011_f37c6726.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000011_f37c6726.szcp new file mode 100644 index 00000000..095b3e60 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000011_f37c6726.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000012_e2773cc1.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000012_e2773cc1.szcp new file mode 100644 index 00000000..bb595a07 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000012_e2773cc1.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000013_95aef3a6.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000013_95aef3a6.szcp new file mode 100644 index 00000000..40a81411 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000013_95aef3a6.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000014_516b8cd9.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000014_516b8cd9.szcp new file mode 100644 index 00000000..8a6ff812 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000014_516b8cd9.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000015_2893fe6f.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000015_2893fe6f.szcp new file mode 100644 index 00000000..466ad8cb Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000015_2893fe6f.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000016_33840fb4.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000016_33840fb4.szcp new file mode 100644 index 00000000..4a59fa57 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000016_33840fb4.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000017_c928759c.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000017_c928759c.szcp new file mode 100644 index 00000000..615912cc Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000017_c928759c.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000018_9c7f74fe.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000018_9c7f74fe.szcp new file mode 100644 index 00000000..99d941da Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000018_9c7f74fe.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000019_5175d188.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000019_5175d188.szcp new file mode 100644 index 00000000..8748d68d Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000019_5175d188.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000020_9ed76d17.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000020_9ed76d17.szcp new file mode 100644 index 00000000..b896c8f4 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000020_9ed76d17.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000021_57ba8b14.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000021_57ba8b14.szcp new file mode 100644 index 00000000..5d05dd52 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000021_57ba8b14.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000022_82cbdc56.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000022_82cbdc56.szcp new file mode 100644 index 00000000..8484f25c Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000022_82cbdc56.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000023_4a75e077.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000023_4a75e077.szcp new file mode 100644 index 00000000..46e21106 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000023_4a75e077.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000024_03aa9405.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000024_03aa9405.szcp new file mode 100644 index 00000000..53de2b0a Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000024_03aa9405.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000025_9bd28919.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000025_9bd28919.szcp new file mode 100644 index 00000000..f0b226b9 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000025_9bd28919.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000026_ddf828e2.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000026_ddf828e2.szcp new file mode 100644 index 00000000..48b621bd Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000026_ddf828e2.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000027_07dfdf04.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000027_07dfdf04.szcp new file mode 100644 index 00000000..46d054f5 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000027_07dfdf04.szcp differ diff --git a/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000028_4ec76b62.szcp b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000028_4ec76b62.szcp new file mode 100644 index 00000000..53316e41 Binary files /dev/null and b/results/search/runs/20e1402c-f882-4e28-bb4f-c015c2528150/topology_043/checkpoints/checkpoint_00000000000000000028_4ec76b62.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/metrics.tsv b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/metrics.tsv new file mode 100644 index 00000000..d4120494 --- /dev/null +++ b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/metrics.tsv @@ -0,0 +1,328 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783859482858331200 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 61 2558 23803978 209280 1495.4158172607422 8.6181000000000001 2624.5346 40320 21252 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2558 1920 128 384 1 5414886048 4628364 1 0 5 1 2 2 6 7618560 1474560 2949120 2705080 8985600 181 157 156 160 1904 19 6 10 4 22 0 0 0 0 0 +2 1783859485211546600 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 133 2532 23804020 209280 1272.595458984375 8.6524999999999999 2281.7804000000001 40320 20516 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2532 1920 128 384 1 5419487852 9230168 1 0 5 1 2 2 6 7618560 1474560 2949120 2705124 8985600 209 180 154 170 1819 31 10 19 15 58 0 0 0 0 0 +3 1783859487291810100 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 2353 41 2540 23803936 209280 1305.1730346679688 8.6021000000000001 2014.6561999999999 40320 20101 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2540 1920 128 384 1 5424097816 13840132 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 184 166 157 158 1875 6 2 2 1 30 0 0 0 0 0 +4 1783859489501317500 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 2380 66 2586 23803907 209280 1262.3831176757812 8.8483000000000001 2137.2909 40320 21091 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2586 1920 128 384 1 5428754700 18497016 1 0 5 1 2 2 6 7618560 1474560 2949120 2705010 8985600 158 154 156 151 1967 10 8 13 8 27 0 0 0 0 0 +5 1783859491726142500 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 2046 64 2588 23803972 209280 1263.9713134765625 8.8116000000000003 2159.6822999999999 40320 19639 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2588 1920 128 384 1 5433413624 23155940 1 0 5 1 2 2 6 7618560 1474560 2949120 2705076 8985600 171 163 153 159 1942 10 6 17 4 27 0 0 0 0 0 +6 1783859493904616200 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 0 0 2958 91 2566 23803971 209280 1300.1575927734375 8.6667000000000005 2110.1637000000001 40320 21353 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2566 1920 128 384 1 5438050108 27792424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705074 8985600 169 163 159 170 1905 17 3 8 11 52 0 0 0 0 0 +7 1783859496055538600 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 4096 138 2557 23803945 209280 1267.9272918701172 8.6363000000000003 2080.7467999999999 40320 20357 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2557 1920 128 384 1 5442677412 32419728 1 0 5 1 2 2 6 7618560 1474560 2949120 2705048 8985600 169 150 150 152 1936 19 12 24 15 68 0 0 0 0 0 +8 1783859498230173200 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4096 65 2534 23803875 209280 1288.1461334228516 8.9376999999999995 2113.5268999999998 40320 22315 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2534 1920 128 384 1 5447281256 37023572 1 0 5 1 2 2 6 7618560 1474560 2949120 2704978 8985600 193 162 154 161 1864 16 2 6 3 38 0 0 0 0 0 +9 1783859500414416300 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 0 0 3801 123 2569 23803930 209280 1262.4959411621094 8.6677 2117.8371000000002 40320 22461 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2569 1920 128 384 1 5451920800 41663116 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 176 150 151 160 1932 18 19 25 20 41 0 0 0 0 0 +10 1783859502524622100 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 0 0 2584 93 2547 23803950 209280 1264.3483581542969 8.6189 2047.2363 40320 21586 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2547 1920 128 384 1 5456537904 46280220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705053 8985600 156 150 151 160 1930 16 1 20 25 30 0 0 0 0 0 +11 1783859504462193000 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3144 83 2554 23803925 209280 1307.1319122314453 8.6824999999999992 1878.0409 40320 21855 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2554 1920 128 384 1 5461162148 50904464 1 0 5 1 2 2 6 7618560 1474560 2949120 2705031 8985600 213 155 157 162 1867 13 3 4 18 45 0 0 0 0 0 +12 1783859506625166800 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3316 106 2542 23803962 209280 1296.2375793457031 8.6776999999999997 2088.0246000000002 40320 20259 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2542 1920 128 384 1 5465774152 55516468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705065 8985600 180 167 176 161 1858 20 8 20 11 47 0 0 0 0 0 +13 1783859508798236600 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 2931 142 2579 23803914 209280 1269.3473205566406 8.7161000000000008 2099.1925999999999 40320 21769 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 128 384 1 5470423896 60166212 1 0 5 1 2 2 6 7618560 1474560 2949120 2705020 8985600 170 150 151 152 1956 25 12 30 15 60 0 0 0 0 0 +14 1783859511029502300 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 2151 87 2624 23803971 209280 1289.4443664550781 8.7358000000000011 2150.1129999999998 40320 20545 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2624 1920 128 384 1 5475119540 64861856 1 0 5 1 2 2 6 7618560 1474560 2949120 2705075 8985600 174 150 152 153 1995 13 4 11 6 53 0 0 0 0 0 +15 1783859514359102700 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 2112 81 2569 23803899 209280 1249.2555084228516 8.6443999999999992 3264.2584999999999 40320 21644 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2569 1920 128 384 1 5479759164 2393280 1 0 5 1 2 2 6 7618560 1474560 2949120 2705000 8985600 190 166 168 166 1879 6 11 19 8 37 0 0 0 0 0 +16 1783859516545279600 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 4096 118 2529 23803896 209280 1289.0676727294922 8.6239000000000008 2112.9456 40320 21376 1 0 0 0.22565469819514533 4096 2048 384 12 96 2529 1920 128 384 1 5484357908 6992024 1 0 5 1 2 2 6 7618560 1474560 2949120 2704998 8985600 195 172 153 155 1854 30 5 7 11 65 0 0 0 0 1 +17 1783859518751335000 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2659 69 2564 23803951 209280 1285.9791412353516 8.8445 2143.8800000000001 40320 21441 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 128 384 1 5488992352 11626468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 178 163 153 153 1917 14 6 10 5 34 0 0 0 0 0 +18 1783859520987516800 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2355 120 2566 23803920 209280 1266.7271118164062 8.6816000000000013 2150.1727999999998 40320 20920 1 0 0 0.7282841747625155 4096 2048 384 12 96 2566 1920 128 384 1 5493628836 16262952 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 189 160 161 151 1905 18 17 20 17 48 0 0 0 0 1 +19 1783859522890208600 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 0 0 1449 96 2524 23803868 209280 1271.9523773193359 9.9571000000000005 1837.0108 40320 21042 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2524 1920 128 384 1 5498222480 20856596 1 0 5 1 2 2 6 7618560 1474560 2949120 2704973 8985600 194 192 163 163 1812 16 4 3 9 64 0 0 0 0 0 +20 1783859525040565600 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 3397 145 2534 23803931 209280 1283.183349609375 8.6815999999999995 2068.7017999999998 40320 21260 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2534 1920 128 384 1 5502826324 25460440 1 0 5 1 2 2 6 7618560 1474560 2949120 2705036 8985600 198 177 164 162 1833 17 12 9 13 94 0 0 0 0 0 +21 1783859527246744800 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2085 71 2598 23803860 209280 1301.1816101074219 8.6685999999999996 2143.248 40320 19623 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2598 1920 128 384 1 5507495448 30129564 1 0 5 1 2 2 6 7618560 1474560 2949120 2704963 8985600 161 150 151 159 1977 6 16 14 11 24 0 0 0 0 0 +22 1783859529403483500 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 1178 49 2542 23803992 209280 1262.9637145996094 8.8901000000000003 2077.3618000000001 40320 20395 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2542 1920 128 384 1 5512107452 34741568 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 159 150 156 160 1917 7 8 13 3 18 0 0 0 0 0 +23 1783859531576029900 DEPTH 32 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 2877 111 2547 23803961 209280 1281.9139862060547 8.6373999999999995 2094.8515000000002 40320 21566 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2547 1920 128 384 1 5516724556 39358672 1 0 5 1 2 2 6 7618560 1474560 2949120 2705064 8985600 162 156 154 153 1922 18 12 27 14 40 0 0 0 0 0 +24 1783859533729822900 DEPTH 30 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 3369 108 2535 23803951 209280 1280.0040893554688 8.6679999999999993 2080.7575000000002 40320 20834 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2535 1920 128 384 1 5521329420 43963536 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 179 157 168 165 1866 18 9 25 4 52 0 0 0 0 0 +25 1783859535939031600 DEPTH 25 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 2269 76 2558 23803963 209280 1306.4998168945312 8.8238000000000003 2130.1007 40320 21144 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2558 1920 128 384 1 5525957744 48591860 1 0 5 1 2 2 6 7618560 1474560 2949120 2705066 8985600 174 152 150 159 1923 18 6 7 4 41 0 0 0 0 0 +26 1783859538100772900 DEPTH 39 1 0.79135914268268093 0.55451448040885853 1 9 1 9 0 0 1564 64 2582 23803940 209280 1259.9510955810547 8.7548000000000012 2092.6412 40320 23116 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2582 1920 128 384 1 5530610548 53244664 1 0 5 1 2 2 6 7618560 1474560 2949120 2705044 8985600 167 150 150 156 1959 7 2 4 6 45 0 0 0 0 0 +27 1783859540036224800 DEPTH 38 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 2029 93 2547 23803989 209280 1274.82861328125 8.7203000000000017 1874.7381 40320 20480 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2547 1920 128 384 1 5535227652 57861768 1 0 5 1 2 2 6 7618560 1474560 2949120 2705088 8985600 193 175 161 155 1863 11 8 26 4 44 0 0 0 0 0 +28 1783859542155409500 DEPTH 41 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 2132 102 2554 23803953 209280 1249.8995208740234 8.6153999999999993 2041.3098 40320 21276 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2554 1920 128 384 1 5539851896 62486012 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 159 168 150 171 1906 11 9 17 16 49 0 0 0 0 0 +29 1783859544350225800 DEPTH 21 1 0.79159956614562654 0.56218057921635434 0 10 0 10 0 0 2448 70 2551 23803893 209280 1271.9963226318359 8.6923999999999992 2126.2433999999998 40320 22586 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2551 1920 128 384 1 5544473080 67107196 1 0 5 1 2 2 6 7618560 1474560 2949120 2704999 8985600 183 157 156 156 1899 20 5 9 4 32 0 0 0 0 0 +30 1783859547427145200 DEPTH 12 1 0.786322219637407 0.63287904599659284 3 8 3 8 0 0 1430 100 2643 23803983 209280 1277.8661499023438 8.6981000000000002 2999.9007000000001 40320 19768 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2643 1920 128 384 1 5549188184 4713812 1 0 5 1 2 2 6 7618560 1474560 2949120 2705086 8985600 172 161 151 152 2007 28 5 6 4 57 0 0 0 0 0 +31 1783859549664817300 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 20 2563 23742721 147840 1264.9236450195312 8.6529999999999987 2167.6929 40320 14848 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5553661352 9186980 1 0 5 1 2 2 6 7372800 1474560 2949120 2951021 8985600 174 156 164 181 1888 2 1 6 0 11 0 0 0 0 0 +32 1783859551837044400 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 81 2534 23742649 147840 1276.0627136230469 8.9589999999999996 2104.529 40320 15313 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2534 1920 0 384 1 5558104940 13630568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 206 187 160 315 1666 4 17 21 1 38 0 0 0 0 0 +33 1783859554102899100 DEPTH 8 1 0.80845044101188535 0.26575809199318562 2 5 2 5 0 0 2355 36 2538 23742661 147840 1301.2572021484375 8.6571999999999996 2196.1028999999999 40320 16079 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2538 1920 0 384 1 5562552608 18078236 1 0 5 1 2 2 6 7372800 1474560 2949120 2950965 8985600 216 174 166 167 1815 1 0 1 0 34 0 0 0 0 0 +34 1783859556298837600 DEPTH 48 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 2395 47 2585 23742679 147840 1268.2065887451172 8.5968999999999998 2128.7918 40320 15453 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2585 1920 0 384 1 5567048216 22573844 1 0 5 1 2 2 6 7372800 1474560 2949120 2950984 8985600 168 158 160 168 1931 0 7 7 2 31 0 0 0 0 0 +35 1783859558497144600 DEPTH 20 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 2051 25 2591 23742623 147840 1262.0585174560547 8.601799999999999 2128.8753000000002 40320 14561 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2591 1920 0 384 1 5571549944 27075572 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 170 156 183 198 1884 0 0 0 0 25 0 0 0 0 0 +36 1783859560682680900 DEPTH 9 1 0.80867512980503709 0.27342419080068137 1 6 1 6 0 0 2980 78 2550 23742651 147840 1306.5482177734375 8.6560000000000006 2118.0875000000001 40320 16219 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2550 1920 0 384 1 5576009852 31535480 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 173 168 161 183 1865 8 7 13 14 36 0 0 0 0 0 +37 1783859562813822200 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 4096 84 2561 23742594 147840 1272.3138275146484 8.6225000000000005 2066.2374 40320 15248 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 5580480980 36006608 1 0 5 1 2 2 6 7372800 1474560 2949120 2950897 8985600 174 150 150 190 1897 8 17 7 6 46 0 0 0 0 0 +38 1783859564961364500 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 0 0 4096 43 2545 23742681 147840 1290.4775695800781 8.9346999999999994 2083.4537999999998 40320 16187 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2545 1920 0 384 1 5584935788 40461416 1 0 5 1 2 2 6 7372800 1474560 2949120 2950987 8985600 187 163 169 164 1862 6 0 6 2 29 0 0 0 0 0 +39 1783859567022960200 DEPTH 3 1 0.78703276669461864 0.64054514480408853 2 9 2 9 0 0 1095 52 2537 23803942 209280 1232.6533203125 8.7820999999999998 1994.4851000000001 40320 22603 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2537 1920 128 384 1 5589542692 45068320 1 0 5 1 2 2 6 7618560 1474560 2949120 2705047 8985600 190 164 150 176 1857 13 1 3 4 31 0 0 0 0 0 +40 1783859569126833700 DEPTH 50 1 0.7871108823943197 0.64054514480408853 2 9 2 9 0 0 1034 49 2597 23804027 209280 1264.6726989746094 8.6475000000000009 2044.136 40320 21815 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2597 1920 128 384 1 5594210796 49736424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705130 8985600 151 150 150 150 1996 11 4 6 3 25 0 0 0 0 0 +41 1783859571017917100 DEPTH 55 1 0.78718883379379867 0.64054514480408853 2 9 2 9 0 0 1068 53 2528 23803911 209280 1305.8864440917969 8.8234999999999992 1835.5429999999999 40320 21809 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2528 1920 128 384 1 5598808520 54334148 1 0 5 1 2 2 6 7618560 1474560 2949120 2705016 8985600 196 202 168 168 1794 11 0 2 1 39 0 0 0 0 0 +42 1783859573128031800 DEPTH 26 1 0.78726662156105365 0.64821124361158422 1 10 1 10 1 0 1792 80 2563 23803908 209280 1275.8805389404297 8.6456 2047.2760000000001 40320 20909 1 0 0.0018752441683851566 1.0565908685925454 4096 2048 384 12 96 2563 1920 128 384 1 5603441944 58967572 1 0 5 1 2 2 6 7618560 1474560 2949120 2705011 8985600 162 150 161 158 1932 13 5 13 10 39 0 0 0 0 1 +43 1783859575259037700 DEPTH 40 1 0.78734424636006617 0.64821124361158422 1 10 1 10 0 0 1668 111 2585 23803912 209280 1264.4229125976562 8.6616999999999997 2068.5812000000001 40320 22251 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2585 1920 128 384 1 5608097808 63623436 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 160 150 150 150 1975 13 12 7 14 65 0 0 0 0 0 +44 1783859578367942700 DEPTH 10 1 0.78742170885083307 0.64821124361158422 1 10 1 10 0 0 1118 75 2559 23803889 209280 1274.0997924804688 8.6402000000000001 3040.6541999999999 40320 20833 1 0 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 2559 1920 128 384 1 5612727232 1144432 1 0 5 1 2 2 6 7618560 1474560 2949120 2704995 8985600 199 156 161 164 1879 13 10 6 3 43 0 0 0 0 0 +45 1783859580538982400 DEPTH 14 1 0.78749900968939857 0.65587734241908002 0 11 0 11 0 0 1618 117 2540 23803898 209280 1317.3084106445312 8.8140999999999998 2100.5536000000002 40320 19953 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2540 1920 128 384 1 5617337196 5754396 1 0 5 1 2 2 6 7618560 1474560 2949120 2705001 8985600 188 180 166 177 1829 12 5 6 1 93 0 0 0 0 0 +46 1783859582476225800 DEPTH 23 1 0.78340948286121825 0.74190800681430991 1 11 1 11 1 0 3395 74 2533 23803971 209280 1305.2886962890625 8.6009000000000011 1870.6911 40320 20902 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 2533 1920 128 384 1 5621940020 10357220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705070 8985600 199 160 158 173 1843 11 3 7 11 42 0 0 0 0 1 +47 1783859584719746600 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 17 2563 23742682 147840 1260.0279388427734 8.6652000000000005 2180.9434000000001 47040 17856 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5626413188 14830388 1 0 4 2 2 2 6 7127040 1720320 2949120 2950986 8985600 210 156 176 264 1757 0 1 0 0 16 0 0 0 0 0 +48 1783859586957187100 DEPTH 17 1 0.80955979760523455 0.28109028960817717 0 7 0 7 0 0 3841 79 2567 23742690 147840 1264.2703399658203 8.8209 2153.183 40320 15584 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2567 1920 0 384 1 5630890436 19307636 1 0 5 1 2 2 6 7372800 1474560 2949120 2950993 8985600 169 150 156 165 1927 2 16 5 0 56 0 0 0 0 0 +49 1783859589136932600 DEPTH 53 1 0.79463686179767468 0.37478705281090291 0 8 0 8 1 0 4096 103 2520 23742677 147840 1287.9771270751953 8.6140000000000008 2102.8492000000001 40320 16268 1 0 0 0.2106332408498392 4096 2048 384 12 96 2520 1920 0 384 1 5635319744 23736944 1 0 5 1 2 2 6 7372800 1474560 2949120 2950981 8985600 199 159 156 156 1850 17 3 16 19 48 0 0 0 0 2 +50 1783859591323625700 DEPTH 11 1 0.79470530652385984 0.37478705281090291 0 8 0 8 1 0 2377 68 2561 23742681 147840 1270.2064514160156 8.6475000000000009 2120.6930000000002 40320 14997 1 0 0 0.7148495433218599 4096 2048 384 12 96 2561 1920 0 384 1 5639790872 28208072 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 182 156 167 180 1876 0 15 1 0 52 0 0 0 0 2 +51 1783859593434170300 DEPTH 31 1 0.79477752751742314 0.3594548551959113 2 6 2 6 0 0 2595 48 2548 23742742 147840 1274.2277374267578 8.5823 2039.6128000000001 40320 15758 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2548 1920 0 384 1 5644248740 32665940 1 0 5 1 2 2 6 7372800 1474560 2949120 2951044 8985600 166 165 177 194 1846 7 4 4 3 30 0 0 0 0 0 +52 1783859595383219400 DEPTH 16 1 0.79484980515242754 0.3594548551959113 2 6 2 6 0 0 3163 78 2545 23742609 147840 1306.5699310302734 8.8133999999999997 1887.4042999999999 40320 17343 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2545 1920 0 384 1 5648703548 37120748 1 0 5 1 2 2 6 7372800 1474560 2949120 2950915 8985600 208 150 165 165 1857 17 2 11 7 41 0 0 0 0 0 +53 1783859597582912900 DEPTH 33 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 3332 77 2546 23742650 147840 1322.2614898681641 8.7895000000000003 2125.3717999999999 40320 15731 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2546 1920 0 384 1 5653159376 41576576 1 0 5 1 2 2 6 7372800 1474560 2949120 2950956 8985600 188 162 166 186 1844 9 2 8 2 56 0 0 0 0 0 +54 1783859599918041400 DEPTH 1 1 0.79499391548470288 0.36712095400340705 1 7 1 7 0 0 2950 68 2566 23742577 147840 1337.0747833251953 9.3988000000000014 2255.5216999999998 40320 15271 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2566 1920 0 384 1 5657635604 46052804 1 0 5 1 2 2 6 7372800 1474560 2949120 2950881 8985600 183 150 162 179 1892 6 10 3 2 47 0 0 0 0 0 +55 1783859602207005000 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 22 2560 23742657 147840 1314.2323303222656 8.7874000000000017 2286.9185000000002 80640 20000 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2560 1920 0 384 1 5662105712 50522912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 208 160 181 328 1683 1 0 1 0 20 0 0 0 0 0 +56 1783859604404024700 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 52 2540 23742635 147840 1278.9362640380859 8.6928999999999998 2137.1958 47040 19082 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2540 1920 0 384 1 5666555420 54972620 1 0 4 2 2 2 6 7127040 1720320 2949120 2950941 8985600 257 188 178 531 1386 2 2 8 1 39 0 0 0 0 0 +57 1783859606645519300 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 2165 46 2621 23742624 147840 1290.0657501220703 8.7012 2181.1804000000002 40320 15182 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2621 1920 0 384 1 5671087748 59504948 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 179 150 166 212 1914 0 4 5 0 37 0 0 0 0 0 +58 1783859608811128700 DEPTH 52 1 0.79528037279558439 0.36712095400340705 1 7 1 7 0 0 2134 58 2566 23742631 147840 1269.1724395751953 8.7843999999999998 2095.4479999999999 40320 15348 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2566 1920 0 384 1 5675563976 63981176 1 0 5 1 2 2 6 7372800 1474560 2949120 2950936 8985600 252 174 182 181 1777 1 2 2 5 48 0 0 0 0 0 +59 1783859612282576100 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 0 0 2663 48 2564 23742666 147840 1312.9963684082031 9.1288 3409.0234 40320 15486 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 0 384 1 5680038244 1347112 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 170 159 160 176 1899 4 5 3 1 35 0 0 0 0 0 +60 1783859614234686900 DEPTH 49 1 0.78542272902120525 0.4454855195911413 3 6 3 6 0 0 1472 88 2538 23742596 147840 1343.4716186523438 8.6334 1888.8767 40320 15133 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2538 1920 0 384 1 5684485912 5794780 1 0 5 1 2 2 6 7372800 1474560 2949120 2950898 8985600 186 178 163 173 1838 9 3 5 8 63 0 0 0 0 0 +61 1783859616469119900 DEPTH 2 1 0.78549369102288524 0.45315161839863699 2 7 2 7 0 0 3433 121 2544 23742578 147840 1316.6808929443359 8.6409000000000002 2076.8883999999998 40320 15506 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2544 1920 0 384 1 5688939700 10248568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950883 8985600 187 178 182 181 1816 10 7 15 7 82 0 0 0 0 0 +62 1783859618682613000 DEPTH 45 1 0.78556450970216041 0.45315161839863699 2 7 2 7 0 0 2099 58 2580 23742640 147840 1288.7234954833984 8.8470000000000013 2142.3341999999998 40320 15739 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2580 1920 0 384 1 5693430208 14739076 1 0 5 1 2 2 6 7372800 1474560 2949120 2950943 8985600 200 150 156 170 1904 1 1 11 8 37 0 0 0 0 0 +63 1783859619066569700 REFRESH 8 0 0.79750035561632726 0.26575809199318562 2 5 2 5 0 0 2358 11 414 3988953 56640 239.66514587402344 1.4325000000000001 323.9511 6720 4723 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 414 320 0 64 0 5694160712 15469580 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 25 27 309 0 0 0 0 11 0 0 0 0 0 +64 1783859619480261900 REFRESH 26 0 0.74326971551611154 0.64821124361158422 1 10 1 10 0 0 1807 37 416 3988946 56640 227.80621337890625 1.4496 342.9744 6720 4977 0 0 0.0018752441683851566 1.0565908685925454 4096 2048 64 1 16 416 320 0 64 0 5694893256 16202124 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 28 25 29 30 304 7 0 1 2 27 0 0 0 0 0 +65 1783859619884478800 REFRESH 10 0 0.73327611138625293 0.64821124361158422 1 10 1 10 0 0 1130 35 421 3988953 56640 242.71769714355469 1.4439 340.55419999999998 6720 4992 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 421 320 0 64 0 5695630900 16939768 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 27 25 27 31 311 4 0 2 5 24 0 0 0 0 0 +66 1783859620222004800 REFRESH 33 0 0.66270170472030709 0.36712095400340705 1 7 1 7 0 0 3348 41 413 3988957 56640 236.44876098632812 1.8366 335.77120000000002 6720 4773 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 413 320 0 64 0 5696360384 17669252 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 43 29 290 1 0 3 0 37 0 0 0 0 0 +67 1783859620637723100 REFRESH 25 0 0.78591647273875642 0.4608177172061329 1 8 1 8 0 0 2281 36 413 3988966 56640 241.32199096679688 1.4414 348.91890000000001 6720 4938 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 413 320 0 64 0 5697089868 18398736 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 30 25 27 28 303 3 0 2 0 31 0 0 0 0 0 +68 1783859621039611800 REFRESH 4 0 0.78173376521204874 0.8356047700170357 1 12 1 12 0 0 276 12 418 4050322 118080 231.11091613769531 1.4772000000000001 331.39440000000002 6720 5064 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 128 64 0 5697984708 19293576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 26 25 25 25 317 3 0 0 1 8 0 0 0 0 0 +69 1783859621465496000 REFRESH 17 0 0.75790184767176583 0.28109028960817717 0 7 0 7 0 0 3863 54 418 3988952 56640 235.68486022949219 1.4887999999999999 360.8039 6720 4830 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 418 320 0 64 0 5698719292 20028160 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 29 25 32 34 298 7 0 3 7 37 0 0 0 0 0 +70 1783859621858677000 REFRESH 28 0 0.78188083525609686 0.8279386712095399 2 11 2 11 0 0 630 15 408 4050327 118080 221.77792358398438 1.4514 320.75979999999998 6720 4850 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 408 320 128 64 0 5699603932 20912800 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 31 28 25 26 298 4 0 0 0 11 0 0 0 0 0 +71 1783859622232847500 REFRESH 43 0 0.78195415116745248 0.8279386712095399 2 11 2 11 0 0 769 15 418 4050323 118080 221.29971313476562 1.4518 310.83999999999997 6720 5160 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 418 320 128 64 0 5700498772 21807640 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 26 25 25 25 317 2 1 0 1 11 0 0 0 0 0 +72 1783859622596741100 REFRESH 15 0 0.77930004902576655 0.91396933560476989 3 11 3 11 0 0 320 9 412 4050325 118080 221.88914489746094 1.4494 308.82909999999998 6720 5086 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 128 64 0 5701387492 22696360 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 31 25 27 25 304 0 0 0 0 9 0 0 0 0 0 +73 1783859623005383900 REFRESH 39 0 0.77919135654204763 0.55451448040885853 1 9 1 9 0 0 1569 11 425 3988947 56640 219.9234619140625 1.4316 340.28789999999998 6720 5019 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 5702129216 23438084 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 26 25 34 38 302 1 0 4 0 6 0 0 0 0 0 +74 1783859623409657500 REFRESH 54 0 0.78640335524342331 0.4608177172061329 1 8 1 8 0 0 1186 19 421 3988954 56640 219.86714172363281 1.4299999999999999 342.19049999999999 6720 4985 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 421 320 0 64 0 5702866860 24175728 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 31 25 37 38 290 4 0 2 2 11 0 0 0 0 0 +75 1783859623778931000 REFRESH 24 0 0.77724596710966298 1 4 11 4 11 0 0 491 17 408 4050343 118080 221.18070983886719 1.4497 312.42320000000001 6720 5039 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 408 320 128 64 0 5703751500 25060368 1 0 6 1 2 1 6 1474560 245760 491520 245862 1497600 28 27 25 25 303 2 0 0 0 15 0 0 0 0 0 +76 1783859624164542500 REFRESH 37 0 0.7823185619309535 0.8356047700170357 1 12 1 12 0 0 978 31 414 4050306 118080 219.88070678710938 1.4502999999999999 316.38639999999998 6720 5047 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 414 320 128 64 0 5704642260 25951128 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 30 25 25 26 308 2 0 0 1 28 0 0 0 0 0 +77 1783859624530049600 REFRESH 22 0 0.77966374145297768 0.91396933560476989 3 11 3 11 0 0 472 16 417 4050321 118080 221.62022399902344 1.4531000000000001 310.17309999999998 6720 4786 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 128 64 0 5705536080 26844948 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 26 25 314 1 0 0 0 15 0 0 0 0 0 +78 1783859624895949200 REFRESH 36 0 0.78246332439902178 0.82027257240204421 3 10 3 10 0 0 1194 27 410 4050299 118080 219.52716064453125 1.4573 308.14299999999997 6720 5044 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 410 320 128 64 0 5706422760 27731628 1 0 6 1 2 1 6 1474560 245760 491520 245818 1497600 31 28 25 26 300 1 0 0 0 26 0 0 0 0 0 +79 1783859625249850500 REFRESH 42 0 0.99252480497044648 0 0 4 0 4 0 0 4096 19 417 3988946 56640 220.16717529296875 1.4328000000000001 352.44819999999999 13440 8148 0 0 0 0.0063610145412278767 4096 2048 64 1 16 417 320 0 64 0 5707156324 28465192 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 52 29 36 51 249 1 1 4 1 12 0 0 0 0 0 +80 1783859625622313800 REFRESH 51 0 0.77988024816839929 0.91396933560476989 3 11 3 11 0 0 533 14 410 4050306 118080 219.74937438964844 1.4745999999999999 311.0643 6720 5072 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 410 320 128 64 0 5708043004 29351872 1 0 6 1 2 1 6 1474560 245760 491520 245824 1497600 30 25 25 26 304 1 0 0 0 13 0 0 0 0 0 +81 1783859626009019500 REFRESH 27 0 0.7799521355140947 0.93696763202725719 0 14 0 14 0 0 867 15 416 4050326 118080 220.88397216796875 1.4530000000000001 331.39429999999999 6720 4971 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 416 320 128 64 0 5708935804 30244672 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 28 25 25 25 313 0 0 0 0 15 0 0 0 0 0 +82 1783859626383104800 REFRESH 6 0 0.78002388296494174 0.91396933560476989 3 11 3 11 0 0 380 12 422 4050323 118080 219.56608581542969 1.4479 311.22070000000002 6720 5109 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 128 64 0 5709834724 31143592 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 28 25 25 27 317 4 0 0 0 8 0 0 0 0 0 +83 1783859626740903800 REFRESH 47 0 0.78282276377469551 0.8279386712095399 2 11 2 11 0 0 654 17 410 4050337 118080 220.45695495605469 1.4470000000000001 305.03129999999999 6720 5042 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 410 320 128 64 0 5710721404 32030272 1 0 6 1 2 1 6 1474560 245760 491520 245854 1497600 28 25 26 26 305 0 0 0 0 17 0 0 0 0 0 +84 1783859627119551700 REFRESH 18 0 0.7801669602850887 0.9293015332197615 1 13 1 13 0 0 440 12 414 4050317 118080 222.18547058105469 1.4520999999999999 322.16090000000003 6720 4792 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 414 320 128 64 0 5711612164 32921032 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 27 25 26 308 1 0 0 1 10 0 0 0 0 0 +85 1783859627558668700 REFRESH 11 0 0.78397236678580662 0.37478705281090291 0 8 0 8 0 0 2395 41 415 3988962 56640 219.85078430175781 1.4326000000000001 351.52809999999999 6720 4836 0 0 0 0.7148495433218599 4096 2048 64 1 16 415 320 0 64 0 5712343688 33652556 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 36 25 47 35 272 5 0 2 5 29 0 0 0 0 0 +86 1783859627999640200 REFRESH 13 0 0.79901386695510679 0.27342419080068137 1 6 1 6 0 0 4096 67 412 3988960 56640 220.10981750488281 1.4332 321.06689999999998 6720 4766 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 412 320 0 64 0 5713072152 34381020 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 29 25 42 31 285 5 0 6 9 47 0 0 0 0 0 +87 1783859628322987100 REFRESH 1 0 0.78407813935855719 0.36712095400340705 1 7 1 7 0 0 2989 69 415 3988949 56640 220.31564331054688 1.4311 322.14640000000003 6720 4843 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 415 320 0 64 0 5713803676 35112544 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 33 25 30 39 288 4 0 6 11 48 0 0 0 0 0 +88 1783859628662321400 REFRESH 46 0 0.78414228804030173 0.37478705281090291 0 8 0 8 0 0 2671 21 408 3988964 56640 221.34477233886719 1.4296 338.1388 6720 4865 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 408 320 0 64 0 5714528060 35836928 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 49 25 37 32 265 2 0 0 1 18 0 0 0 0 0 +89 1783859628971740300 REFRESH 2 0 0.77420631346094337 0.45315161839863699 2 7 2 7 0 0 3457 48 413 3988953 56640 220.18048095703125 1.4335 308.32499999999999 6720 4816 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5715257544 36566412 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 31 25 33 29 295 1 0 4 2 41 0 0 0 0 0 +90 1783859629341199400 REFRESH 35 0 0.78332016165219098 0.8279386712095399 2 11 2 11 0 0 1086 14 407 4050313 118080 221.0672607421875 1.4490000000000001 307.87959999999998 6720 5061 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 407 320 128 64 0 5716141164 37450032 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 30 25 25 26 301 1 0 0 0 13 0 0 0 0 0 +91 1783859629714726200 REFRESH 9 0 0.79933399634866442 0.27342419080068137 1 6 1 6 0 0 3019 64 411 3988955 56640 221.51577758789062 1.4452 310.97489999999999 6720 4827 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 411 320 0 64 0 5716868608 38177476 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 35 25 27 32 292 6 0 0 1 57 0 0 0 0 0 +92 1783859630139617500 REFRESH 58 0 0.78073377764887864 0.92163543441226559 2 12 2 12 0 0 522 17 408 4050330 118080 220.86041259765625 1.4531000000000001 309.02260000000001 6720 5079 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 408 320 128 64 0 5717753248 39062116 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 31 27 25 25 300 3 0 0 0 14 0 0 0 0 0 +93 1783859630496557600 REFRESH 41 0 0.78054887066422407 0.55451448040885853 1 9 1 9 0 0 2154 52 411 3988951 56640 218.935302734375 1.4339 302.41759999999999 6720 5046 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 411 320 0 64 0 5718480692 39789560 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 29 25 32 32 293 2 0 1 1 48 0 0 0 0 0 +94 1783859630850240300 REFRESH 55 0 0.7752582390019026 0.64054514480408853 2 9 2 9 0 0 1069 11 408 3988951 56640 222.129150390625 1.4374 299.04730000000001 6720 4993 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 5719205076 40513944 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 26 27 26 300 0 0 0 0 11 0 0 0 0 0 +95 1783859631176939800 REFRESH 52 0 0.78458790297808068 0.36712095400340705 1 7 1 7 0 0 2146 35 420 3988960 56640 219.36128234863281 1.4291 325.3537 6720 4729 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 420 320 0 64 0 5719941700 41250568 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 70 25 41 27 257 1 2 1 11 20 0 0 0 0 0 +96 1783859631540421400 REFRESH 16 0 0.78465107825710423 0.3594548551959113 2 6 2 6 0 0 3185 42 411 3988962 56640 222.10969543457031 1.4329000000000001 307.2706 6720 4808 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 411 320 0 64 0 5720669144 41978012 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 30 25 27 28 301 0 0 0 1 41 0 0 0 0 0 +97 1783859631908510400 REFRESH 0 0 0.78381093123625634 0.8279386712095399 2 11 2 11 0 0 868 17 415 4050310 118080 219.43807983398438 1.4583999999999999 308.38330000000002 6720 5056 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 415 320 128 64 0 5721560924 42869792 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 27 25 25 25 313 1 0 0 0 16 0 0 0 0 0 +98 1783859632302351500 REFRESH 48 0 0.79977707025536104 0.26575809199318562 2 5 2 5 0 0 2408 36 417 3988948 56640 220.23680114746094 1.4335 325.46269999999998 6720 4787 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 417 320 0 64 0 5722294488 43603356 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 39 29 294 5 1 3 3 24 0 0 0 0 0 +99 1783859632647453700 REFRESH 44 0 0.78483988784906478 0.36712095400340705 1 7 1 7 0 0 2195 57 422 3988949 56640 220.44773864746094 1.4389000000000001 343.75369999999998 6720 4792 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 422 320 0 64 0 5723033152 44342020 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 28 25 53 26 290 12 0 7 9 29 0 0 0 0 0 +100 1783859633035778300 REFRESH 30 0 0.78815466723825955 0.4608177172061329 1 8 1 8 0 0 3392 74 414 3988969 56640 220.3187255859375 1.4512 328.88479999999998 6720 5003 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 414 320 0 64 0 5723763656 45072524 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 35 31 294 0 0 4 4 66 0 0 0 0 0 +101 1783859633411258600 REFRESH 32 0 0.78822030306910262 0.4608177172061329 1 8 1 8 0 0 2901 55 411 3988970 56640 220.65766906738281 1.4343999999999999 306.26420000000002 6720 4952 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 411 320 0 64 0 5724491100 45799968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 30 25 26 28 302 1 0 2 1 51 0 0 0 0 0 +102 1783859633772904100 REFRESH 34 0 0.78415751668689226 0.8356047700170357 1 12 1 12 0 0 699 13 416 4050315 118080 220.07376098632812 1.4509000000000001 306.5829 6720 5088 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 416 320 128 64 0 5725383900 46692768 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 28 25 25 26 312 2 0 0 0 11 0 0 0 0 0 +103 1783859634154736600 REFRESH 50 0 0.77585120548092279 0.64054514480408853 2 9 2 9 0 0 1039 11 424 3988962 56640 219.35206604003906 1.4323999999999999 315.07260000000002 6720 4920 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5726124604 47433472 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 28 25 25 25 321 1 0 0 3 7 0 0 0 0 0 +104 1783859634524384400 REFRESH 3 0 0.77591647295457078 0.64054514480408853 2 9 2 9 0 0 1098 21 412 3988970 56640 218.71002197265625 1.4339 300.10480000000001 6720 5037 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 412 320 0 64 0 5726853068 48161936 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 28 25 33 27 299 0 0 0 2 19 0 0 0 0 0 +105 1783859634887376300 REFRESH 38 0 0.78133876138831027 0.55451448040885853 1 9 1 9 0 0 2049 40 414 3988959 56640 220.02482604980469 1.4340999999999999 299.3109 6720 4927 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 414 320 0 64 0 5727583572 48892440 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 26 27 26 309 0 0 0 0 40 0 0 0 0 0 +106 1783859635246974500 REFRESH 14 0 0.77604664265108769 0.65587734241908002 0 11 0 11 0 0 1621 21 416 3988949 56640 223.29344177246094 1.4326000000000001 302.70850000000002 6720 4938 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 416 320 0 64 0 5728316116 49624984 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 27 25 26 26 312 0 0 0 0 21 0 0 0 0 0 +107 1783859635620914900 REFRESH 5 0 0.78450086634377414 0.8279386712095399 2 11 2 11 0 0 849 15 414 4050323 118080 218.45811462402344 1.4545999999999999 309.10399999999998 6720 5114 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 414 320 128 64 0 5729206876 50515744 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 26 25 313 1 0 0 1 13 0 0 0 0 0 +108 1783859636015907000 REFRESH 40 0 0.77617632827064764 0.64821124361158422 1 10 1 10 0 0 1674 26 417 3988945 56640 219.23942565917969 1.4333 329.85160000000002 6720 4965 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 417 320 0 64 0 5729940440 51249308 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 26 26 315 3 1 0 5 17 0 0 0 0 0 +109 1783859636379920300 REFRESH 57 0 0.80046162451298009 0.27342419080068137 1 6 1 6 0 0 4096 25 405 3988951 56640 220.83174133300781 1.4406000000000001 307.89429999999999 6720 4809 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 405 320 0 64 0 5730661764 51970632 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 33 25 35 36 276 1 0 0 0 24 0 0 0 0 0 +110 1783859636741876100 REFRESH 49 0 0.77552316351529871 0.4454855195911413 3 6 3 6 0 0 1482 33 408 3988958 56640 219.66131591796875 1.4341999999999999 295.57089999999999 6720 4754 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 408 320 0 64 0 5731386148 52695016 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 31 26 28 31 292 1 0 0 0 32 0 0 0 0 0 +111 1783859637129664800 REFRESH 19 0 0.78477325534652587 0.8279386712095399 2 11 2 11 0 0 848 19 413 4050334 118080 219.9908447265625 1.4544999999999999 314.19799999999998 6720 5021 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 413 320 128 64 0 5732275888 53584756 1 0 6 1 2 1 6 1474560 245760 491520 245853 1497600 26 26 26 26 309 2 0 0 0 17 0 0 0 0 0 +112 1783859637508415400 REFRESH 12 0 0.77643426114692071 0.63287904599659284 3 8 3 8 0 0 1445 37 426 3988948 56640 220.68025207519531 1.4289000000000001 298.89760000000001 6720 4994 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5733018632 54327500 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 38 25 26 33 304 0 0 0 1 36 0 0 0 0 0 +113 1783859637882258700 REFRESH 31 0 0.78570709971666886 0.3594548551959113 2 6 2 6 0 0 2622 58 416 3988951 56640 219.43193054199219 1.444 316.10590000000002 6720 4788 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 416 320 0 64 0 5733751176 55060044 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 32 25 39 39 281 3 0 3 7 45 0 0 0 0 0 +114 1783859638368909000 REFRESH 29 0 0.78497622992881944 0.82027257240204421 3 10 3 10 0 0 1102 9 415 4050328 118080 218.73123168945312 1.4531000000000001 418.49090000000001 6720 5076 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 415 320 128 64 0 5734642956 55951824 1 0 6 1 2 1 6 1474560 245760 491520 245847 1497600 26 25 25 25 314 0 1 0 0 8 0 0 0 0 0 +115 1783859638733927600 REFRESH 7 0 0.78504363961537527 0.8356047700170357 1 12 1 12 0 0 857 12 410 4050329 118080 220.37094116210938 1.4557 307.79969999999997 6720 5053 0 0 0.00025497404471684274 0.86876728204740172 4096 2048 64 1 16 410 320 128 64 0 5735529636 56838504 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 28 28 25 25 304 0 0 0 0 12 0 0 0 0 0 +116 1783859639206400700 REFRESH 56 0 0.81453889345775787 0.17206132879045993 2 4 2 4 0 0 4096 56 416 3988958 56640 241.03321838378906 1.4329000000000001 357.12630000000001 13440 8755 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 416 320 0 64 0 5736262180 57571048 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 36 26 36 49 269 6 1 7 6 36 0 0 0 0 0 +117 1783859639534917100 REFRESH 45 0 0.77595077448072869 0.45315161839863699 2 7 2 7 0 0 2104 29 413 3988987 56640 225.90156555175781 1.4359 327.03809999999999 6720 4710 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 413 320 0 64 0 5736991664 58300532 1 0 5 1 2 2 6 1228800 245760 491520 491707 1497600 54 25 25 28 281 3 0 1 3 22 0 0 0 0 0 +118 1783859639947952000 REFRESH 53 0 0.78602760910663005 0.37478705281090291 0 8 0 8 0 0 4096 54 403 3988953 56640 240.62771606445312 1.4525999999999999 346.89550000000003 6720 4753 0 0 0 0.2106332408498392 4096 2048 64 1 16 403 320 0 64 0 5737710948 59019816 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 25 29 29 291 0 0 2 3 49 0 0 0 0 0 +119 1783859640376387000 REFRESH 20 0 0.80107194466101705 0.26575809199318562 2 5 2 5 0 0 2051 4 431 3988958 56640 226.47212219238281 1.4388000000000001 373.1404 6720 4797 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 5738458792 59767660 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 32 25 36 50 288 0 0 0 0 4 0 0 0 0 0 +120 1783859640742830100 REFRESH 23 0 0.77280087044746548 0.74190800681430991 1 11 1 11 0 0 3399 11 407 3988974 56640 223.9129638671875 1.4343999999999999 304.46140000000003 6720 4962 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 407 320 0 64 0 5739182156 60491024 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 29 25 31 26 296 0 0 0 0 11 0 0 0 0 0 +121 1783859641126523800 REFRESH 21 0 0.78236486489825363 0.56218057921635434 0 10 0 10 0 0 2465 43 415 3988951 56640 221.14201354980469 1.4588000000000001 324.53730000000002 6720 4917 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5739913680 61222548 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 30 25 27 32 301 2 0 6 5 30 0 0 0 0 0 +122 1783859643371313600 DEPTH 42 1 0.99626235351166648 0 0 4 0 4 0 0 4096 19 2549 23742608 147840 1307.0255279541016 8.6059999999999999 2182.6197000000002 80640 40450 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2549 1920 0 384 1 5744372568 65681436 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 190 150 155 213 1841 0 0 1 0 18 0 0 0 0 0 +123 1783859646650584900 DEPTH 8 1 0.78994383061996032 0.26575809199318562 2 5 2 5 0 0 2365 44 2532 23742618 147840 1283.1841278076172 8.7830000000000013 3083.9605999999999 53760 32672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2532 1920 0 384 1 5748814196 3015628 1 0 4 2 2 2 6 6881280 1966080 2949120 2950923 8985600 161 152 150 156 1913 0 0 0 0 44 0 0 0 0 0 +124 1783859648784622700 DEPTH 9 1 0.79000125987690195 0.27342419080068137 1 6 1 6 0 0 3036 56 2535 23742684 147840 1299.1714477539062 9.0946999999999996 2049.2062000000001 53760 32662 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2535 1920 0 384 1 5753258804 7460236 1 0 4 2 2 2 6 6881280 1966080 2949120 2950989 8985600 165 150 155 156 1909 14 0 0 2 40 0 0 0 0 0 +125 1783859650890356800 DEPTH 13 1 0.79005858550611718 0.27342419080068137 1 6 1 6 0 0 4096 73 2562 23742708 147840 1267.5420227050781 8.787700000000001 2047.8126999999999 73920 40365 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2562 1920 0 384 1 5757730952 11932384 1 0 4 2 2 2 6 6144000 2703360 2949120 2951012 8985600 161 154 151 150 1946 2 3 8 4 56 0 0 0 0 0 +126 1783859653101618300 DEPTH 17 1 0.79011580786937752 0.28109028960817717 0 7 0 7 0 0 3900 78 2557 23742635 147840 1306.672119140625 8.7594999999999992 2146.8897000000002 73920 40508 1 1 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2557 1920 0 384 1 5762198000 16399432 1 0 4 2 2 2 6 6144000 2703360 2949120 2950939 8985600 162 150 156 156 1933 13 12 0 4 48 0 0 0 0 0 +127 1783859655236074700 DEPTH 48 1 0.79017292732658606 0.26575809199318562 2 5 2 5 0 0 2416 45 2584 23742688 147840 1287.1475067138672 8.8102 2132.3739 73920 40740 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 0 384 1 5766692588 20894020 1 0 4 2 2 2 6 6144000 2703360 2949120 2950991 8985600 153 157 150 150 1974 3 5 1 4 32 0 0 0 0 0 +128 1783859657405286100 DEPTH 54 1 0.7766118021794014 0.4608177172061329 1 8 1 8 0 0 1190 35 2553 23742649 147840 1311.9477844238281 8.593 2107.5001000000002 40320 22589 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2553 1920 0 384 1 5771155556 25356988 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 154 150 173 193 1883 1 0 3 3 28 0 0 0 0 0 +129 1783859659746415100 DEPTH 25 1 0.77667124766297002 0.4608177172061329 1 8 1 8 0 0 2300 64 2545 23742163 147840 1398.0724487304688 8.8847000000000005 2204.8355999999999 73920 45124 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2545 1920 0 384 1 5775610364 29811796 1 0 4 2 2 2 6 6881280 2703360 2949120 2213186 8985600 156 150 156 160 1923 11 2 10 6 35 0 0 0 0 0 +130 1783859661958786700 DEPTH 42 1 0.81883295637122744 0 0 4 0 4 0 0 4096 17 2563 23731735 136320 1281.3885498046875 8.6743000000000006 2143.8806 100800 45761 1 0 0 0.0063610145412278767 4096 2048 383 12 96 2563 1920 0 383 1 5780081916 34283348 1 0 4 3 2 2 5 5898240 3686400 2949120 2950944 8236800 195 150 158 476 1584 0 0 0 0 17 0 0 0 0 0 +131 1783859664149250800 DEPTH 32 1 0.77678981990116314 0.4608177172061329 1 8 1 8 0 0 2922 75 2554 23742664 147840 1277.9263610839844 8.6893999999999991 2057.4546 40320 22890 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2554 1920 0 384 1 5784545904 38747336 1 0 5 1 2 2 6 7372800 1474560 2949120 2950968 8985600 150 150 154 155 1945 14 0 14 6 41 0 0 0 0 0 +132 1783859666361263800 DEPTH 30 1 0.77684894739036359 0.4608177172061329 1 8 1 8 0 0 3415 90 2534 23742680 147840 1318.7254486083984 8.6788000000000007 2140.6943000000001 40320 22872 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2534 1920 0 384 1 5788989492 43190924 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 159 150 163 169 1893 8 0 12 9 61 0 0 0 0 0 +133 1783859668614663500 DEPTH 11 1 0.77553410974215553 0.37478705281090291 0 8 0 8 1 0 2414 48 2544 23742716 147840 1325.3937377929688 8.6201999999999988 2178.2067000000002 73920 40504 1 0 0 0.71061916362628685 4096 2048 384 12 96 2544 1920 0 384 1 5793443280 47644712 1 0 4 2 2 2 6 6144000 2703360 2949120 2951020 8985600 162 150 174 164 1894 1 5 1 1 40 0 0 0 0 2 +134 1783859670636622700 DEPTH 16 1 0.77556991200284764 0.3594548551959113 2 6 2 6 0 0 3193 54 2525 23742737 147840 1344.427001953125 8.7600999999999996 1929.8870999999999 73920 41395 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2525 1920 0 384 1 5797877688 52079120 1 0 4 2 2 2 6 6144000 2703360 2949120 2951044 8985600 163 170 156 163 1873 0 1 0 3 50 0 0 0 0 0 +135 1783859672794477100 DEPTH 33 1 0.775626220948058 0.36712095400340705 1 7 1 7 0 0 3353 34 2537 23742606 147840 1303.7721710205078 8.649799999999999 2086.0673000000002 73920 41126 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2537 1920 0 384 1 5802324336 56525768 1 0 4 2 2 2 6 6144000 2703360 2949120 2950911 8985600 150 156 173 159 1899 3 0 1 1 29 0 0 0 0 0 +136 1783859674963265600 DEPTH 1 1 0.77568243014431948 0.36712095400340705 1 7 1 7 0 0 3009 71 2579 23742713 147840 1295.9487915039062 8.642199999999999 2095.2692000000002 73920 40596 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 0 384 1 5806813824 61015256 1 0 4 2 2 2 6 6144000 2703360 2949120 2951018 8985600 159 152 154 158 1956 1 7 15 4 44 0 0 0 0 0 +137 1783859677219137000 DEPTH 44 1 0.77573853993353192 0.36712095400340705 1 7 1 7 0 0 2213 72 2606 23742636 147840 1318.1113739013672 8.6388999999999996 2132.2280999999998 73920 40588 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2606 1920 0 384 1 5811330852 65532284 1 0 4 2 2 2 6 6144000 2703360 2949120 2950938 8985600 155 150 186 151 1964 17 7 2 6 40 0 0 0 0 0 +138 1783859680535078800 DEPTH 42 1 0.81209093536977484 0 0 4 0 4 0 0 4096 21 2594 23720772 125760 1281.1376800537109 8.6188000000000002 3314.1363999999999 120960 42511 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2594 1920 0 384 1 5815835720 2928240 1 0 4 3 2 2 5 5898240 4423680 2949120 2951001 7488000 171 150 152 1288 833 0 0 0 1 20 0 0 0 0 0 +139 1783859682700734600 DEPTH 57 1 0.79085046264975012 0.27342419080068137 1 6 1 6 0 0 4096 61 2537 23742705 147840 1277.4343719482422 8.6326000000000001 2090.6448 53760 32747 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2537 1920 0 384 1 5820282368 7374888 1 0 4 2 2 2 6 6881280 1966080 2949120 2951006 8985600 163 150 174 163 1887 3 2 1 2 53 0 0 0 0 0 +140 1783859684911919500 DEPTH 56 1 0.79598143336584093 0.17206132879045993 2 4 2 4 0 0 4096 71 2547 23742589 147840 1299.5641937255859 8.7393999999999998 2145.3820000000001 80640 43233 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2547 1920 0 384 1 5824739216 11831736 1 0 4 2 2 2 6 5898240 2949120 2949120 2950894 8985600 181 150 163 239 1814 9 0 13 1 48 0 0 0 0 0 +141 1783859687075372600 DEPTH 31 1 0.77596199179743763 0.3594548551959113 2 6 2 6 0 0 2629 44 2566 23742657 147840 1330.4719390869141 8.8184000000000005 2089.4728 73920 40708 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2566 1920 0 384 1 5829215444 16307964 1 0 4 2 2 2 6 6144000 2703360 2949120 2950961 8985600 160 152 192 180 1882 2 0 6 3 32 0 0 0 0 0 +142 1783859689225004100 DEPTH 52 1 0.77601760961961364 0.36712095400340705 1 7 1 7 0 0 2167 58 2572 23742684 147840 1321.1094970703125 8.7820999999999998 2091.7849999999999 73920 40615 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2572 1920 0 384 1 5833697792 20790312 1 0 4 2 2 2 6 6144000 2703360 2949120 2950987 8985600 257 150 197 152 1816 0 2 6 8 42 0 0 0 0 0 +143 1783859691547740400 DEPTH 46 1 0.7760731300501269 0.37478705281090291 0 8 0 8 1 0 2681 53 2563 23742702 147840 1346.2722473144531 8.8872 2250.5043999999998 73920 40928 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2563 1920 0 384 1 5838170960 25263480 1 0 4 2 2 2 6 6144000 2703360 2949120 2951005 8985600 172 150 162 169 1910 6 3 4 1 39 0 0 0 0 1 +144 1783859693412279200 DEPTH 36 1 0.77093168419287372 0.82027257240204421 3 10 3 10 0 0 1201 44 2575 23742609 147840 1273.8597869873047 8.7074999999999996 1803.4698000000001 40320 21351 1 0 0.063069086016965495 0.15492757616277195 4096 2048 384 12 96 2575 1920 0 384 1 5842656368 29748888 1 0 5 1 2 2 6 7372800 1474560 2949120 2950913 8985600 167 156 156 150 1946 5 0 1 1 37 0 0 0 0 0 +145 1783859695299487300 DEPTH 5 1 0.77099229148550485 0.8279386712095399 2 11 2 11 1 0 860 42 2563 23742725 147840 1264.9270477294922 8.6638000000000002 1815.4594999999999 40320 20608 1 0 0.005213560619153213 0.426630687374281 4096 2048 384 12 96 2563 1920 0 384 1 5847129536 34222056 1 0 5 1 2 2 6 7372800 1474560 2949120 2951031 8985600 156 151 150 154 1952 5 2 4 4 27 0 0 0 0 1 +146 1783859697513643600 DEPTH 42 1 0.80590392914861475 0 0 4 0 4 0 0 4096 17 2612 23705401 110400 1268.6704711914062 8.6869000000000014 2212.2429000000002 120960 31919 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2612 1920 0 384 1 5851652684 38745204 1 0 4 3 3 2 4 5898240 4423680 3932160 2950920 6489600 168 150 180 1545 569 0 1 0 0 16 0 0 0 0 0 +147 1783859699702961700 DEPTH 20 1 0.7852942444308374 0.26575809199318562 2 5 2 5 0 0 2060 24 2594 23742643 147840 1292.5274963378906 8.597900000000001 2115.2797999999998 73920 40542 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2594 1920 0 384 1 5856157472 43249992 1 0 4 2 2 2 6 6144000 2703360 2949120 2950947 8985600 156 155 179 228 1876 0 1 0 1 22 0 0 0 0 0 +148 1783859701866897600 DEPTH 53 1 0.77636385765727944 0.37478705281090291 0 8 0 8 0 0 4096 69 2523 23742700 147840 1273.2274169921875 8.6135000000000002 2086.3591000000001 53760 32248 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5860589840 47682360 1 0 4 2 2 2 6 6881280 1966080 2949120 2951003 8985600 162 150 156 157 1898 4 1 8 6 50 0 0 0 0 0 +149 1783859703766731200 DEPTH 19 1 0.77123366812662897 0.8279386712095399 2 11 2 11 0 0 851 40 2560 23742623 147840 1300.2291259765625 8.6801999999999992 1842.7973999999999 40320 21011 1 0 0.024134501803917539 0.35880585544835542 4096 2048 384 12 96 2560 1920 0 384 1 5865059948 52152468 1 0 5 1 2 2 6 7372800 1474560 2949120 2950927 8985600 150 150 150 159 1951 2 1 3 5 29 0 0 0 0 0 +150 1783859705692690400 DEPTH 35 1 0.77129375092177155 0.8279386712095399 2 11 2 11 0 0 1094 80 2487 23742640 147840 1299.1376495361328 8.7021999999999995 1861.4576999999999 40320 21214 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 2487 1920 0 384 1 5869455596 56548116 1 0 5 1 2 2 6 7372800 1474560 2949120 2950942 8985600 173 154 150 155 1855 0 0 0 1 79 0 0 0 0 0 +151 1783859707605000300 DEPTH 43 1 0.771353729871598 0.8279386712095399 2 11 2 11 0 0 773 50 2565 23742617 147840 1278.831298828125 8.6131999999999991 1785.3088 40320 20958 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2565 1920 0 384 1 5873930804 61023324 1 0 5 1 2 2 6 7372800 1474560 2949120 2950919 8985600 154 150 150 160 1951 2 5 0 2 41 0 0 0 0 0 +152 1783859709458337000 DEPTH 47 1 0.7714136053234375 0.8279386712095399 2 11 2 11 0 0 655 27 2608 23742684 147840 1272.7040710449219 8.6031000000000013 1788.7475999999999 40320 21337 1 0 0.018949803200694559 1.2450274644230548 4096 2048 384 12 96 2608 1920 0 384 1 5878449872 65542392 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 158 157 1993 0 0 0 0 27 0 0 0 0 0 +153 1783859712412939100 DEPTH 0 1 0.77147337762289991 0.8279386712095399 2 11 2 11 0 0 879 49 2566 23742634 147840 1271.7532501220703 8.6597000000000008 2897.7039 40320 21606 1 0 0.00014140214567446167 2.30096177437744 4096 2048 384 12 96 2566 1920 0 384 1 5882926180 2909880 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 155 150 150 157 1954 9 1 6 2 31 0 0 0 0 0 +154 1783859712779293900 REFRESH 14 0 0.76562374590852667 0.65587734241908002 0 11 0 11 0 0 1624 27 413 3988945 56640 222.35340881347656 1.4434 303.4452 6720 4905 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 413 320 0 64 0 5883655664 3639364 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 27 25 27 26 308 0 0 0 0 27 0 0 0 0 0 +155 1783859713145151500 REFRESH 38 0 0.77103768369529047 0.55451448040885853 1 9 1 9 0 0 2058 21 410 3988970 56640 219.75859069824219 1.4379 309.66359999999997 6720 4922 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 410 320 0 64 0 5884382088 4365788 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 26 28 27 303 0 0 1 0 20 0 0 0 0 0 +156 1783859713542129800 REFRESH 54 0 0.76678618093023254 0.4608177172061329 1 8 1 8 0 0 1190 11 419 3988962 56640 219.31724548339844 1.4346000000000001 334.49959999999999 6720 4701 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 419 320 0 64 0 5885117692 5101392 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 40 25 43 45 266 0 0 0 0 11 0 0 0 0 0 +157 1783859713939422400 REFRESH 39 0 0.77115098175836183 0.55451448040885853 1 9 1 9 0 0 1570 11 423 3988946 56640 219.48518371582031 1.4313 338.86680000000001 6720 4944 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 423 320 0 64 0 5885857376 5841076 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 34 37 302 0 0 0 0 11 0 0 0 0 0 +158 1783859714308491500 REFRESH 57 0 0.72193085924548228 0.27342419080068137 1 6 1 6 0 0 4096 39 416 3988971 56640 221.739013671875 1.4366000000000001 309.58589999999998 13440 9349 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 416 320 0 64 0 5886589920 6573620 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 26 25 43 46 276 0 0 0 1 38 0 0 0 0 0 +159 1783859714693719500 REFRESH 37 0 0.77182986436011503 0.8356047700170357 1 12 1 12 0 0 986 28 405 3988969 56640 221.08364868164062 1.4561999999999999 315.94569999999999 6720 5154 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 405 320 0 64 0 5887311244 7294944 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 25 29 25 26 300 0 0 0 0 28 0 0 0 0 0 +160 1783859715054524800 REFRESH 3 0 0.76596306132780523 0.64054514480408853 2 9 2 9 0 0 1109 33 408 3988947 56640 218.23283386230469 1.4871000000000001 300.86250000000001 6720 4952 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 408 320 0 64 0 5888035628 8019328 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 34 25 41 31 277 0 0 0 1 32 0 0 0 0 0 +161 1783859715404326800 REFRESH 28 0 0.77194788344772314 0.8279386712095399 2 11 2 11 0 0 630 13 407 3988960 56640 222.33113098144531 1.4390000000000001 294.87729999999999 6720 5066 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 5888758992 8742692 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 27 25 26 303 0 0 0 0 13 0 0 0 0 0 +162 1783859715781691400 REFRESH 21 0 0.77143253973811843 0.56218057921635434 0 10 0 10 0 0 2478 34 415 3988957 56640 219.77395629882812 1.4461999999999999 314.33120000000002 6720 4916 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5889490516 9474216 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 30 25 30 35 295 1 0 0 1 32 0 0 0 0 0 +163 1783859716081910700 REFRESH 35 0 0.63863142178394561 0.8279386712095399 2 11 2 11 0 0 1099 14 408 3988968 56640 220.31564331054688 1.4363999999999999 298.63339999999999 6720 4964 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 0 64 0 5890214900 10198600 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 26 25 25 31 301 0 0 0 0 14 0 0 0 0 0 +164 1783859716378497900 REFRESH 36 0 0.70868735185459375 0.82027257240204421 3 10 3 10 0 0 1217 45 406 3988942 56640 220.48870849609375 1.4419999999999999 294.64150000000001 6720 4987 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 406 320 0 64 0 5890937244 10920944 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 25 25 25 27 304 0 0 0 0 45 0 0 0 0 0 +165 1783859716777503400 REFRESH 13 0 0.78229222383358799 0.27342419080068137 1 6 1 6 0 0 4096 54 416 3988954 56640 220.08320617675781 1.4386000000000001 320.86770000000001 13440 9267 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 416 320 0 64 0 5891669788 11653488 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 58 32 275 0 0 10 4 40 0 0 0 0 0 +166 1783859717164198000 REFRESH 31 0 0.76734349840559513 0.3594548551959113 2 6 2 6 0 0 2649 44 418 3988968 56640 219.89077758789062 1.4638 314.32819999999998 13440 9244 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 418 320 0 64 0 5892404372 12388072 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 27 25 43 42 281 0 0 2 0 42 0 0 0 0 0 +167 1783859717584657400 REFRESH 44 0 0.76739468659772725 0.36712095400340705 1 7 1 7 0 0 2228 39 429 3988935 56640 221.54751586914062 1.4402999999999999 354.71080000000001 13440 9239 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 429 320 0 64 0 5893150176 13133876 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 26 25 62 27 289 0 0 2 2 35 0 0 0 0 0 +168 1783859717994937300 REFRESH 23 0 0.76226422510149461 0.74190800681430991 1 11 1 11 0 0 3401 15 408 3988946 56640 239.35897827148438 1.446 332.8974 6720 4913 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 408 320 0 64 0 5893874560 13858260 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 29 25 29 28 297 0 0 0 0 15 0 0 0 0 0 +169 1783859718383532100 REFRESH 45 0 0.76748352502188233 0.45315161839863699 2 7 2 7 0 0 2115 39 412 3988978 56640 221.06419372558594 1.4436 317.18040000000002 6720 4749 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 412 320 0 64 0 5894603024 14586724 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 57 25 25 31 274 3 0 0 1 35 0 0 0 0 0 +170 1783859718756884100 REFRESH 6 0 0.76974677846362216 0.91396933560476989 3 11 3 11 0 0 380 4 419 3988935 56640 227.45497131347656 1.4644999999999999 305.69549999999998 6720 5063 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 419 320 0 64 0 5895338628 15322328 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 25 25 25 26 318 0 0 0 0 4 0 0 0 0 0 +171 1783859719149268400 REFRESH 26 0 0.76663382952012915 0.64821124361158422 1 10 1 10 1 0 1819 43 418 3988953 56640 222.54489135742188 1.4472 322.26830000000001 6720 4933 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 418 320 0 64 0 5896073212 16056912 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 28 31 306 2 0 1 2 38 0 0 0 0 1 +172 1783859719540319800 REFRESH 40 0 0.76663141542256241 0.64821124361158422 1 10 1 10 0 0 1681 19 419 3988949 56640 219.05509948730469 1.4318 331.4067 6720 4973 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 419 320 0 64 0 5896808816 16792516 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 29 27 313 2 0 0 5 12 0 0 0 0 0 +173 1783859719899348600 REFRESH 29 0 0.77164767909539733 0.82027257240204421 3 10 3 10 0 0 1102 5 410 3988961 56640 221.41746520996094 1.4410000000000001 298.87270000000001 6720 5061 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 410 320 0 64 0 5897535240 17518940 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 25 310 0 0 0 1 4 0 0 0 0 0 +174 1783859720317501600 REFRESH 50 0 0.76674150439251354 0.64054514480408853 2 9 2 9 0 0 1041 8 424 3988958 56640 221.60383605957031 1.4530000000000001 334.87689999999998 6720 4842 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5898275944 18259644 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 28 25 25 25 321 1 0 0 0 7 0 0 0 0 0 +175 1783859720734481800 REFRESH 56 0 0.79896016049649976 0.17206132879045993 2 4 2 4 0 0 4096 49 412 3988949 56640 221.10617065429688 1.4376 347.9169 13440 8211 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 412 320 0 64 0 5899004408 18988108 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 45 26 40 56 245 2 0 2 6 39 0 0 0 0 0 +176 1783859721035250900 REFRESH 5 0 0.75935809817009003 0.8279386712095399 2 11 2 11 0 0 869 24 416 3988948 56640 219.37161254882812 1.4334 299.22579999999999 6720 4952 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 416 320 0 64 0 5899736952 19720652 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 31 310 0 0 1 2 21 0 0 0 0 0 +177 1783859721348751800 REFRESH 43 0 0.75940595235867525 0.8279386712095399 2 11 2 11 0 0 774 18 420 3988957 56640 223.46342468261719 1.6080000000000001 311.7441 6720 4947 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 420 320 0 64 0 5900473576 20457276 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 25 25 25 36 309 0 0 0 1 17 0 0 0 0 0 +178 1783859721738528800 REFRESH 34 0 0.77293513759045163 0.8356047700170357 1 12 1 12 0 0 701 13 419 3988956 56640 225.41619873046875 1.4409000000000001 311.58390000000003 6720 5082 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 419 320 0 64 0 5901209180 21192880 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 28 25 26 315 0 0 0 0 13 0 0 0 0 0 +179 1783859722161744600 REFRESH 17 0 0.78300230844811158 0.28109028960817717 0 7 0 7 0 0 3911 31 415 3988930 56640 222.04722595214844 1.4437 355.43560000000002 13440 9263 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 415 320 0 64 0 5901940704 21924404 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 33 38 293 0 0 1 4 26 0 0 0 0 0 +180 1783859722569237800 REFRESH 30 0 0.76806180546425207 0.4608177172061329 1 8 1 8 0 0 3441 59 415 3988949 56640 219.931640625 1.4371 328.19659999999999 6720 4771 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 415 320 0 64 0 5902672228 22655928 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 45 34 281 3 0 4 2 50 0 0 0 0 0 +181 1783859722913588400 REFRESH 53 0 0.76811552403845207 0.37478705281090291 0 8 0 8 0 0 4096 56 411 3988973 56640 220.76313781738281 1.4372 342.49689999999998 13440 9357 0 0 0 0.2106332408498392 4096 2048 64 1 16 411 320 0 64 0 5903399672 23383372 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 32 31 297 0 0 2 2 52 0 0 0 0 0 +182 1783859723278972800 REFRESH 15 0 0.76943612456485355 0.91396933560476989 3 11 3 11 0 0 322 8 414 3988956 56640 222.03596496582031 1.4391 303.74880000000002 6720 5063 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 414 320 0 64 0 5904130176 24113876 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 27 28 25 25 309 0 1 0 1 6 0 0 0 0 0 +183 1783859723739914700 REFRESH 10 0 0.76723240942299209 0.64821124361158422 1 10 1 10 0 0 1138 20 417 3988968 56640 219.84255981445312 1.9141999999999999 312.57150000000001 6720 4872 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 417 320 0 64 0 5904863740 24847440 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 27 25 29 31 305 2 0 2 1 15 0 0 0 0 0 +184 1783859724113256500 REFRESH 18 0 0.77054969203045909 0.9293015332197615 1 13 1 13 0 0 441 20 412 3988955 56640 227.17439270019531 1.4359999999999999 305.58460000000002 6720 5030 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 412 320 0 64 0 5905592204 25575904 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 25 25 26 311 0 0 0 1 19 0 0 0 0 0 +185 1783859724480663100 REFRESH 16 0 0.76830161771848271 0.3594548551959113 2 6 2 6 0 0 3212 39 412 3988936 56640 226.89894104003906 1.4504999999999999 305.05259999999998 13440 9455 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 412 320 0 64 0 5906320668 26304368 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 27 28 306 0 0 0 0 39 0 0 0 0 0 +186 1783859724790314800 REFRESH 0 0 0.75989443402040679 0.8279386712095399 2 11 2 11 0 0 884 20 418 3988953 56640 223.36408996582031 1.4567000000000001 307.83229999999998 6720 4984 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 418 320 0 64 0 5907055252 27038952 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 30 312 0 0 1 1 18 0 0 0 0 0 +187 1783859725200123700 REFRESH 11 0 0.76842945924215522 0.37478705281090291 0 8 0 8 0 0 2421 18 411 3988984 56640 225.17453002929688 1.4360999999999999 348.51429999999999 13440 9318 0 0 0 0.71061916362628685 4096 2048 64 1 16 411 320 0 64 0 5907782696 27766396 1 0 4 2 2 2 6 983040 491520 491520 491702 1497600 26 25 53 33 274 0 0 1 2 15 0 0 0 0 0 +188 1783859725559353900 REFRESH 47 0 0.76000200969258325 0.8279386712095399 2 11 2 11 0 0 656 14 407 3988954 56640 225.43667602539062 1.4439 303.11160000000001 6720 4996 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 407 320 0 64 0 5908506060 28489760 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 27 304 0 0 0 0 14 0 0 0 0 0 +189 1783859725919713500 REFRESH 55 0 0.76755566614586912 0.64054514480408853 2 9 2 9 0 0 1069 11 406 3988974 56640 226.62042236328125 1.4343999999999999 301.62270000000001 6720 4949 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 406 320 0 64 0 5909228404 29212104 1 0 5 1 2 2 6 1228800 245760 491520 491693 1497600 31 26 27 26 296 0 0 0 0 11 0 0 0 0 0 +190 1783859726293611800 REFRESH 1 0 0.76854880520851632 0.36712095400340705 1 7 1 7 0 0 3026 52 411 3988953 56640 224.82124328613281 1.4329000000000001 314.34840000000003 13440 9285 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 411 320 0 64 0 5909955848 29939548 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 30 51 279 0 1 3 7 41 0 0 0 0 0 +191 1783859726659171700 REFRESH 7 0 0.77367153873383077 0.8356047700170357 1 12 1 12 1 0 858 17 408 3988955 56640 224.26112365722656 1.4439 308.32049999999998 6720 5041 0 0 0.0015439939761988503 1.0294096654276503 4096 2048 64 1 16 408 320 0 64 0 5910680232 30663932 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 27 25 25 305 0 0 0 0 17 0 0 0 0 1 +192 1783859727047910200 REFRESH 25 0 0.76868080938790306 0.4608177172061329 1 8 1 8 0 0 2309 20 408 3988937 56640 224.78239440917969 1.4507000000000001 331.29349999999999 13440 9744 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 408 320 0 64 0 5911404616 31388316 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 33 30 294 0 0 3 1 16 0 0 0 0 0 +193 1783859727413329800 REFRESH 32 0 0.76873184907365055 0.4608177172061329 1 8 1 8 0 0 2940 46 413 3988967 56640 221.67654418945312 1.4319999999999999 303.64909999999998 6720 4722 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 413 320 0 64 0 5912134100 32117800 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 33 25 28 29 298 3 0 3 2 38 0 0 0 0 0 +194 1783859727782448700 REFRESH 4 0 0.77383927254095697 0.8356047700170357 1 12 1 12 0 0 277 9 424 3988962 56640 220.00639343261719 1.4390000000000001 315.19209999999998 6720 5083 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 424 320 0 64 0 5912874804 32858504 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 25 25 323 0 1 1 0 7 0 0 0 0 0 +195 1783859728170495600 REFRESH 12 0 0.76787578279761115 0.63287904599659284 3 8 3 8 0 0 1469 46 426 3988964 56640 221.5731201171875 1.4535 309.77879999999999 6720 4937 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5913617548 33601248 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 34 25 25 32 310 1 0 0 1 44 0 0 0 0 0 +196 1783859728530458200 REFRESH 22 0 0.77122337162049148 0.91396933560476989 3 11 3 11 0 0 472 11 420 3988962 56640 222.92291259765625 1.4977 301.39819999999997 6720 5060 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 420 320 0 64 0 5914354172 34337872 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 25 320 0 0 0 0 11 0 0 0 0 0 +197 1783859728902619100 REFRESH 42 0 0.97201486960288919 0 0 4 0 4 0 0 4096 3 426 3987986 55680 223.91398620605469 1.4377 370.56810000000002 20160 12173 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 5915096916 35080616 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 66 25 34 208 93 0 0 0 0 3 0 0 0 0 0 +198 1783859729273377800 REFRESH 20 0 0.77854015915580077 0.26575809199318562 2 5 2 5 0 0 2064 15 433 3988967 56640 224.06144714355469 1.4482999999999999 369.2724 13440 9303 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 433 320 0 64 0 5915846800 35830500 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 46 73 264 1 2 0 0 12 0 0 0 0 0 +199 1783859729667090800 REFRESH 8 0 0.78398872482401483 0.26575809199318562 2 5 2 5 0 0 2366 14 411 3988941 56640 226.10739135742188 1.4372 313.17790000000002 13440 9379 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 411 320 0 64 0 5916574244 36557944 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 26 25 27 308 0 0 0 0 14 0 0 0 0 0 +200 1783859730119173500 REFRESH 52 0 0.76903721273366354 0.36712095400340705 1 7 1 7 0 0 2179 42 417 3988962 56640 224.16793823242188 1.4341999999999999 334.48379999999997 13440 9169 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 417 320 0 64 0 5917307808 37291508 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 72 32 263 0 0 6 4 32 0 0 0 0 0 +201 1783859730502463600 REFRESH 24 0 0.76922751263516931 1 4 11 4 11 0 0 491 9 407 3988944 56640 226.12991333007812 1.4372 314.11989999999997 6720 5063 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 407 320 0 64 0 5918031172 38014872 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 27 28 25 25 302 0 0 0 0 9 0 0 0 0 0 +202 1783859730879317600 REFRESH 49 0 0.76918752609203522 0.4454855195911413 3 6 3 6 0 0 1494 35 409 3988932 56640 222.54489135742188 1.4349000000000001 303.09199999999998 6720 4667 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 409 320 0 64 0 5918756576 38740276 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 31 26 28 32 292 0 0 0 0 35 0 0 0 0 0 +203 1783859731254591600 REFRESH 2 0 0.76923775260804061 0.45315161839863699 2 7 2 7 0 0 3486 59 413 3988928 56640 220.516357421875 1.4444999999999999 312.30829999999997 6720 4694 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5919486060 39469760 1 0 5 1 2 2 6 1228800 245760 491520 491647 1497600 31 25 33 29 295 0 0 2 1 56 0 0 0 0 0 +204 1783859731632652800 REFRESH 58 0 0.77166530135375289 0.92163543441226559 2 12 2 12 0 0 524 16 410 3988956 56640 221.43693542480469 1.4379999999999999 308.64640000000003 6720 5033 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 410 320 0 64 0 5920212484 40196184 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 25 309 0 0 0 1 15 0 0 0 0 0 +205 1783859732006162400 REFRESH 19 0 0.76090249105377816 0.8279386712095399 2 11 2 11 0 0 852 17 417 3988978 56640 220.42726135253906 1.4443999999999999 302.88569999999999 6720 4983 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 417 320 0 64 0 5920946048 40929748 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 25 26 25 26 315 0 0 0 1 16 0 0 0 0 0 +206 1783859732415450500 REFRESH 33 0 0.76932652068199281 0.36712095400340705 1 7 1 7 0 0 3384 64 412 3988953 56640 241.05984497070312 1.474 345.65449999999998 13440 9314 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 412 320 0 64 0 5921674512 41658212 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 57 31 274 0 0 4 0 60 0 0 0 0 0 +207 1783859732804838900 REFRESH 9 0 0.78437447096889534 0.27342419080068137 1 6 1 6 0 0 3052 33 412 3988944 56640 221.68063354492188 1.4377 316.36849999999998 13440 9320 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 412 320 0 64 0 5922402976 42386676 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 27 31 303 0 0 0 0 33 0 0 0 0 0 +208 1783859733239694400 REFRESH 48 0 0.78442234539483302 0.26575809199318562 2 5 2 5 0 0 2419 17 414 3988938 56640 226.39411926269531 1.4384999999999999 359.67140000000001 13440 9196 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 414 320 0 64 0 5923133480 43117180 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 43 28 293 0 0 1 0 16 0 0 0 0 0 +209 1783859733679178500 REFRESH 46 0 0.76948940423860002 0.37478705281090291 0 8 0 8 0 0 2692 22 410 3988950 56640 246.83418273925781 1.7938000000000001 377.55489999999998 13440 9325 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 410 320 0 64 0 5923859904 43843604 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 27 25 51 41 266 0 0 0 1 21 0 0 0 0 0 +210 1783859734152851200 REFRESH 51 0 0.77199307442616416 0.91396933560476989 3 11 3 11 0 0 535 16 407 3988969 56640 239.572998046875 1.4330000000000001 319.90260000000001 6720 5081 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 407 320 0 64 0 5924583268 44566968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 28 25 26 302 0 2 0 0 14 0 0 0 0 0 +211 1783859734542285700 REFRESH 27 0 0.77204740177048992 0.93696763202725719 0 14 0 14 0 0 869 14 419 3988943 56640 239.36614990234375 1.4335 321.0292 6720 5116 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 419 320 0 64 0 5925318872 45302572 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 27 25 25 25 317 0 0 0 0 14 0 0 0 0 0 +212 1783859734942864800 REFRESH 41 0 0.77412337682886623 0.55451448040885853 1 9 1 9 0 0 2168 35 414 3988955 56640 234.24819946289062 1.4729000000000001 329.36720000000003 6720 4867 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 5926049376 46033076 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 28 25 32 33 296 1 0 0 0 34 0 0 0 0 0 +213 1783859737218400700 DEPTH 42 1 0.86990330961879392 0 0 4 0 4 0 0 4096 20 2587 23698459 103680 1312.9458312988281 8.8274000000000008 2210.0018 120960 59650 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 5930547024 50530724 1 0 4 3 3 2 4 5898240 4423680 4423680 2950867 5990400 249 150 214 1077 897 0 0 0 0 20 0 0 0 0 0 +214 1783859739482895600 DEPTH 56 1 0.79280542078937588 0.17206132879045993 2 4 2 4 0 0 4096 73 2550 23731174 136320 1306.7162322998047 8.5958000000000006 2145.5322999999999 100800 48983 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2550 1920 0 384 1 5935006932 54990632 1 0 4 3 2 2 5 5898240 3686400 2949120 2950973 8236800 205 150 178 547 1470 9 0 11 5 48 0 0 0 0 0 +215 1783859741678375400 DEPTH 13 1 0.7758433187563154 0.27342419080068137 1 6 1 6 0 0 4096 60 2552 23742637 147840 1313.3226928710938 8.6702000000000012 2136.2085000000002 80640 44820 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2552 1920 0 384 1 5939468880 59452580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 156 150 153 150 1943 0 0 1 6 53 0 0 0 0 0 +216 1783859743832891500 DEPTH 57 1 0.7758888748720798 0.27342419080068137 1 6 1 6 0 0 4096 42 2538 23742695 147840 1277.7666320800781 8.6552999999999987 2098.4387000000002 80640 45370 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2538 1920 0 384 1 5943916548 63900248 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 156 150 183 192 1857 0 0 0 6 36 0 0 0 0 0 +217 1783859747234428900 DEPTH 17 1 0.77593435986553594 0.28109028960817717 0 7 0 7 0 0 3926 47 2558 23742654 147840 1266.7654724121094 8.660400000000001 3271.4645999999998 80640 44945 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2558 1920 0 384 1 5948384696 1259692 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 156 150 156 162 1934 0 0 3 2 42 0 0 0 0 0 +218 1783859749407921300 DEPTH 39 1 0.76283883666828933 0.55451448040885853 1 9 1 9 0 0 1577 32 2580 23742191 147840 1311.2607269287109 8.6168999999999993 2112.9843999999998 80640 47763 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2580 1920 0 384 1 5952875204 5750200 1 0 4 2 2 2 6 6635520 2949120 2949120 2213218 8985600 150 152 162 177 1939 2 0 0 0 30 0 0 0 0 0 +219 1783859751419233300 DEPTH 38 1 0.76288781313018916 0.55451448040885853 1 9 1 9 0 0 2068 46 2534 23742226 147840 1268.4284820556641 8.6176000000000013 1878.7422999999999 80640 48384 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2534 1920 0 384 1 5957318792 10193788 1 0 4 2 2 2 6 6635520 2949120 2949120 2213251 8985600 150 156 156 156 1916 2 0 1 2 41 0 0 0 0 0 +220 1783859753651340100 DEPTH 21 1 0.76293671346474667 0.56218057921635434 0 10 0 10 0 0 2490 56 2554 23742219 147840 1270.2971801757812 8.6813000000000002 2085.0542999999998 80640 48041 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2554 1920 0 384 1 5961782780 14657776 1 0 4 2 2 2 6 6635520 2949120 2949120 2213246 8985600 162 150 156 165 1921 7 3 7 6 33 0 0 0 0 0 +221 1783859755784278700 DEPTH 42 1 0.7854872595714314 0 0 4 0 4 0 0 4096 21 2593 23691337 96000 1272.94873046875 8.8388999999999989 2131.3049999999998 120960 48895 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 5966286548 19161544 1 0 4 3 3 3 3 5898240 4423680 4423680 3442885 5491200 240 150 219 1223 761 0 0 0 0 21 0 0 0 0 0 +222 1783859757643258900 DEPTH 7 1 0.7617896098842577 0.8356047700170357 1 12 1 12 1 0 861 43 2522 23742683 147840 1274.3470916748047 8.5238000000000014 1775.3012000000001 40320 21739 1 0 0.0015317392842735759 1.0209349543212158 4096 2048 384 12 96 2522 1920 0 384 1 5970717896 23592892 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 150 150 1922 0 0 0 0 43 0 0 0 0 1 +223 1783859759566914500 DEPTH 28 1 0.76182982124008225 0.8279386712095399 2 11 2 11 0 0 632 32 2523 23742682 147840 1302.3631286621094 8.6245999999999992 1853.4874 40320 22550 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2523 1920 0 384 1 5975150264 28025260 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 156 169 150 161 1887 0 0 0 0 32 0 0 0 0 0 +224 1783859761473594300 DEPTH 37 1 0.76188058030650829 0.8356047700170357 1 12 1 12 0 0 989 25 2563 23741731 147840 1361.7868957519531 8.6172000000000004 1847.2736 47040 27506 1 0 0.0033651663875057473 0.47165320917887499 4096 2048 384 12 96 2563 1920 0 384 1 5979623432 32498428 1 0 6 1 2 1 6 8601600 1720320 2949120 1475475 8985600 154 153 150 157 1949 0 0 0 1 24 0 0 0 0 0 +225 1783859763476411100 DEPTH 34 1 0.76193126104643361 0.8356047700170357 1 12 1 12 0 0 705 41 2569 23741789 147840 1333.5244903564453 8.6967999999999996 1932.9495999999999 47040 27488 1 0 0.00024456112032069028 1.7981817145069319 4096 2048 384 12 96 2569 1920 0 384 1 5984102720 36977716 1 0 6 1 2 1 6 8601600 1720320 2949120 1475534 8985600 150 150 150 162 1957 0 0 0 3 38 0 0 0 0 0 +226 1783859765650310300 DEPTH 11 1 0.76136641156717111 0.37478705281090291 0 8 0 8 1 0 2434 39 2548 23742697 147840 1289.5477752685547 8.7028999999999996 2105.4488999999999 80640 45010 1 1 0 0.7068416979302139 4096 2048 384 12 96 2548 1920 0 384 1 5988560588 41435584 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 156 150 181 172 1889 0 0 0 0 38 0 0 0 0 2 +227 1783859767843355700 DEPTH 53 1 0.76139715051693146 0.37478705281090291 0 8 0 8 0 0 4096 77 2523 23742552 147840 1295.5689239501953 8.5891000000000002 2115.1190000000001 80640 44799 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5992992956 45867952 1 0 4 2 2 2 6 5898240 2949120 2949120 2950856 8985600 156 150 156 165 1896 0 0 18 6 53 0 0 0 0 0 +228 1783859770017993700 DEPTH 31 1 0.76143006152728177 0.3594548551959113 2 6 2 6 0 0 2676 55 2571 23742672 147840 1293.2413330078125 8.7461000000000002 2049.6084999999998 80640 44976 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2571 1920 0 384 1 5997474284 50349280 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 155 150 201 183 1882 0 0 4 0 51 0 0 0 0 0 +229 1783859772163846600 DEPTH 42 1 0.78127825159006525 0 0 4 0 4 0 0 4096 14 2595 23677636 81600 1293.9028625488281 9.0612999999999992 2144.1323000000002 120960 38940 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2595 1920 0 384 1 6001980092 54855088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 203 150 210 1440 592 0 0 0 0 14 0 0 0 0 0 +230 1783859774198835500 DEPTH 8 1 0.77651928917383695 0.26575809199318562 2 5 2 5 0 0 2372 41 2546 23742744 147840 1305.0890960693359 8.6493000000000002 1966.7519 80640 45282 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2546 1920 0 384 1 6006435920 59310916 1 0 4 2 2 2 6 5898240 2949120 2949120 2951048 8985600 150 154 150 156 1936 0 0 0 0 41 0 0 0 0 0 +231 1783859776353819700 DEPTH 20 1 0.77170380059868138 0.26575809199318562 2 5 2 5 0 0 2074 23 2597 23742661 147840 1302.8229064941406 9.0114000000000019 2096.0034000000001 80640 45255 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2597 1920 0 384 1 6010943768 63818764 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 150 150 202 256 1839 0 0 0 0 23 0 0 0 0 0 +232 1783859779445845300 DEPTH 16 1 0.76160824402756555 0.3594548551959113 2 6 2 6 0 0 3221 71 2544 23742652 147840 1307.7414245605469 8.6106999999999996 3033.6518999999998 80640 45323 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2544 1920 0 384 1 6015397636 1163812 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 151 150 156 162 1925 0 0 3 0 68 0 0 0 0 0 +233 1783859781592002900 DEPTH 1 1 0.76165261966162656 0.36712095400340705 1 7 1 7 0 0 3036 52 2572 23742586 147840 1295.9621734619141 8.581999999999999 2082.0095999999999 80640 44623 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2572 1920 0 384 1 6019879984 5646160 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 152 150 153 169 1948 0 0 4 2 46 0 0 0 0 0 +234 1783859783908675500 DEPTH 44 1 0.7616969277011213 0.36712095400340705 1 7 1 7 0 0 2238 48 2613 23742672 147840 1348.0674285888672 8.7278000000000002 2243.9232999999999 80640 44471 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2613 1920 0 384 1 6024404152 10170328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 151 150 215 159 1938 0 0 1 0 47 0 0 0 0 0 +235 1783859786048053600 DEPTH 52 1 0.76174116834543049 0.36712095400340705 1 7 1 7 0 0 2198 52 2568 23742668 147840 1304.3793792724609 8.6211000000000002 2075.4258 80640 44690 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2568 1920 0 384 1 6028882420 14648596 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 214 152 1902 0 0 4 4 44 0 0 0 0 0 +236 1783859787922953300 DEPTH 4 1 0.76148364583794459 0.8356047700170357 1 12 1 12 1 0 282 34 2560 23741661 147840 1325.0508728027344 8.6633000000000013 1817.8226999999999 47040 26747 1 0 0.040028929433672061 1.2420241261414608 4096 2048 384 12 96 2560 1920 0 384 1 6033352528 19118704 1 0 6 1 2 1 6 8601600 1720320 2949120 1475407 8985600 160 150 150 156 1944 0 0 2 0 32 0 0 0 0 1 +237 1783859790074706900 DEPTH 42 1 0.77724595543194364 0 0 4 0 4 0 0 4096 19 2601 23677534 81600 1308.9867858886719 8.8496000000000006 2149.7471999999998 120960 27463 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2601 1920 0 384 1 6037864456 23630632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 157 150 197 1578 519 0 0 0 0 19 0 0 0 0 0 +238 1783859792233817600 DEPTH 48 1 0.77687348788802413 0.26575809199318562 2 5 2 5 0 0 2433 45 2596 23742707 147840 1296.9318237304688 8.5524000000000004 2092.5513999999998 80640 44543 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2596 1920 0 384 1 6042371284 28137460 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 150 1996 0 0 4 2 39 0 0 0 0 0 +239 1783859794398619700 DEPTH 9 1 0.77691746092806224 0.27342419080068137 1 6 1 6 0 0 3061 54 2548 23742628 147840 1302.0518341064453 8.595600000000001 2101.0996 80640 44882 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2548 1920 0 384 1 6046829152 32595328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950934 8985600 156 150 154 156 1932 0 0 0 1 53 0 0 0 0 0 +240 1783859796627081200 DEPTH 56 1 0.786635304452449 0.17206132879045993 2 4 2 4 0 0 4096 62 2580 23720946 125760 1286.8270263671875 8.8532999999999991 2149.5689000000002 120960 46087 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2580 1920 0 384 1 6051319660 37085836 1 0 4 3 2 2 5 5898240 4423680 2949120 2950976 7488000 169 150 153 1500 608 1 2 2 15 42 0 0 0 0 0 +241 1783859798767849600 DEPTH 41 1 0.76394643199618006 0.55451448040885853 1 9 1 9 0 0 2184 84 2561 23742207 147840 1303.9554443359375 8.6574999999999989 2066.5641000000001 80640 47925 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2561 1920 0 384 1 6055790788 41556964 1 0 4 2 2 2 6 6635520 2949120 2949120 2213231 8985600 152 150 151 184 1924 16 2 13 5 48 0 0 0 0 0 +242 1783859801014763000 DEPTH 46 1 0.76206631639860589 0.37478705281090291 0 8 0 8 0 0 2697 33 2578 23742656 147840 1311.4962615966797 8.706900000000001 2122.8114999999998 80640 44914 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2578 1920 0 384 1 6060279256 46045432 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 152 150 160 168 1948 0 0 2 1 30 0 0 0 0 0 +243 1783859803190140400 DEPTH 33 1 0.76209269091392262 0.36712095400340705 1 7 1 7 0 0 3386 34 2554 23742724 147840 1310.3638000488281 8.6919000000000004 2098.9740999999999 80640 45167 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2554 1920 0 384 1 6064743244 50509420 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 150 150 186 158 1910 0 0 2 0 32 0 0 0 0 0 +244 1783859805111048800 DEPTH 49 1 0.76109718681332683 0.4454855195911413 3 6 3 6 0 0 1508 64 2528 23742659 147840 1316.8056488037109 8.7032000000000007 1858.5988 80640 42468 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2528 1920 0 384 1 6069180712 54946888 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 154 156 159 160 1899 0 0 6 6 52 0 0 0 0 0 +245 1783859805516715600 REFRESH 58 0 0.76020150754923799 0.92163543441226559 2 12 2 12 0 0 525 13 409 3988874 56640 238.0369873046875 1.5044999999999999 337.541 6720 4997 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 409 320 0 64 0 6069906116 55672292 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 26 25 25 25 308 0 0 0 1 12 0 0 0 0 0 +246 1783859805867725600 REFRESH 52 0 0.61418280896200972 0.36712095400340705 1 7 1 7 0 0 2200 15 418 3988970 56640 230.82392883300781 1.5165999999999999 349.286 13440 8576 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 418 320 0 64 0 6070640700 56406876 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 25 25 52 30 286 0 0 1 0 14 0 0 0 0 0 +247 1783859806231148700 REFRESH 47 0 0.75137191714118401 0.8279386712095399 2 11 2 11 1 0 657 13 409 3988960 56640 223.78189086914062 1.4655 304.48349999999999 6720 4877 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 409 320 0 64 0 6071366104 57132280 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 28 305 0 0 0 0 13 0 0 0 0 1 +248 1783859806613821000 REFRESH 27 0 0.7603485527212086 0.93696763202725719 0 14 0 14 0 0 874 22 414 3988886 56640 229.18246459960938 1.5159 310.03160000000003 6720 4980 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 414 320 0 64 0 6072096608 57862784 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 25 312 0 0 0 0 22 0 0 0 0 0 +249 1783859806945269400 REFRESH 16 0 0.67430854288142295 0.3594548551959113 2 6 2 6 0 0 3232 38 417 3988947 56640 239.7286376953125 1.4384999999999999 329.79500000000002 13440 8649 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 417 320 0 64 0 6072830172 58596348 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 27 29 310 0 0 0 0 38 0 0 0 0 0 +250 1783859807345961100 REFRESH 8 0 0.71935032930915432 0.26575809199318562 2 5 2 5 0 0 2377 20 409 3988951 56640 240.068603515625 1.4478 331.47919999999999 13440 8752 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 409 320 0 64 0 6073555576 59321752 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 26 25 26 307 0 0 0 0 20 0 0 0 0 0 +251 1783859807772341400 REFRESH 11 0 0.75441891089835411 0.37478705281090291 0 8 0 8 1 0 2445 32 409 3988946 56640 223.99078369140625 1.5987 361.52949999999998 13440 8578 0 0 0 0.70642063573804703 4096 2048 64 1 16 409 320 0 64 0 6074280980 60047156 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 75 48 235 0 0 3 5 24 0 0 0 0 1 +252 1783859808115097400 REFRESH 41 0 0.61431422421625548 0.55451448040885853 1 9 1 9 0 0 2200 36 414 3988947 56640 236.92185974121094 1.4479 340.83580000000001 13440 9604 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 6075011484 60777660 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 27 25 38 42 282 0 0 3 1 32 0 0 0 0 0 +253 1783859808497727100 REFRESH 23 0 0.75500404112331387 0.74190800681430991 1 11 1 11 0 0 3403 16 409 3988969 56640 228.5086669921875 1.4443999999999999 322.39760000000001 6720 4889 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 409 320 0 64 0 6075736888 61503064 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 36 28 291 0 0 1 0 15 0 0 0 0 0 +254 1783859808841390000 REFRESH 46 0 0.62453245605164642 0.37478705281090291 0 8 0 8 0 0 2704 23 408 3988949 56640 225.02809143066406 1.4295 342.00009999999997 13440 8591 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 408 320 0 64 0 6076461272 62227448 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 50 239 0 0 0 0 23 0 0 0 0 0 +255 1783859809211143000 REFRESH 19 0 0.75174483742184683 0.8279386712095399 2 11 2 11 0 0 856 14 416 3988942 56640 225.37420654296875 1.4345000000000001 304.51819999999998 6720 4911 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 416 320 0 64 0 6077193816 62959992 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 26 25 26 314 0 0 0 1 13 0 0 0 0 0 +256 1783859809666736600 REFRESH 32 0 0.76163542969361997 0.4608177172061329 1 8 1 8 0 0 2954 36 414 3988981 56640 224.69938659667969 1.4476 316.30349999999999 13440 9671 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 414 320 0 64 0 6077924320 63690496 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 26 25 29 29 305 0 0 2 3 31 0 0 0 0 0 +257 1783859810048257500 REFRESH 22 0 0.76078576968589173 0.91396933560476989 3 11 3 11 0 0 472 10 417 3988959 56640 241.39161682128906 1.456 320.04629999999997 6720 4898 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 0 64 0 6078657884 64424060 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 25 317 0 0 0 0 10 0 0 0 0 0 +258 1783859810442858600 REFRESH 57 0 0.7696823986573853 0.27342419080068137 1 6 1 6 0 0 4096 34 407 3988985 56640 233.21702575683594 1.4292 327.20580000000001 13440 8663 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 407 320 0 64 0 6079381248 65147424 1 0 4 2 2 2 6 983040 491520 491520 491703 1497600 26 25 47 46 263 0 0 0 1 33 0 0 0 0 0 +259 1783859810760059300 REFRESH 4 0 0.73125282517907986 0.8356047700170357 1 12 1 12 0 0 283 7 420 3988879 56640 229.41798400878906 1.4339 315.51420000000002 6720 4955 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 420 320 0 64 0 6080117872 65884048 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 34 310 0 0 0 0 7 0 0 0 0 0 +260 1783859811088138500 REFRESH 1 0 0.75476480520982259 0.36712095400340705 1 7 1 7 0 0 3056 45 422 3988492 56160 225.19296264648438 1.4319999999999999 326.12670000000003 13440 9921 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 422 320 0 64 0 6080856536 66622712 1 0 5 2 2 2 5 1228800 491520 491520 491692 1248000 25 25 25 102 245 0 0 2 9 34 0 0 0 0 0 +261 1783859812689448000 REFRESH 55 0 0.75952164575173842 0.64054514480408853 2 9 2 9 0 0 1070 8 409 3988950 56640 224.73216247558594 1.4358 1475.7898 6720 4939 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 6081582020 240144 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 30 26 28 26 299 0 0 0 0 8 0 0 0 0 0 +262 1783859813108721500 REFRESH 20 0 0.76547297022784822 0.26575809199318562 2 5 2 5 0 0 2079 9 432 3988477 56160 227.80415344238281 1.5111000000000001 358.59690000000001 13440 9901 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 6082330884 989008 1 0 5 2 2 2 5 1228800 491520 491520 491676 1248000 25 25 27 51 304 0 0 1 0 8 0 0 0 0 0 +263 1783859813495097200 REFRESH 35 0 0.75211337458762551 0.8279386712095399 2 11 2 11 0 0 1100 11 404 3988934 56640 240.15676879882812 1.4503999999999999 319.44209999999998 6720 4920 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 404 320 0 64 0 6083051188 1709312 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 26 25 25 31 297 0 0 0 0 11 0 0 0 0 0 +264 1783859813873262900 REFRESH 5 0 0.75216532221832089 0.8279386712095399 2 11 2 11 0 0 870 12 412 3988960 56640 235.70533752441406 1.4548000000000001 319.81939999999997 6720 4858 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 412 320 0 64 0 6083779652 2437776 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 33 304 0 0 1 2 9 0 0 0 0 0 +265 1783859814231746200 REFRESH 48 0 0.76996976786999938 0.26575809199318562 2 5 2 5 0 0 2445 26 421 3988944 56640 236.70988464355469 1.4321999999999999 356.6429 13440 8678 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 421 320 0 64 0 6084517296 3175420 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 51 34 286 0 0 2 0 24 0 0 0 0 0 +266 1783859814627972600 REFRESH 31 0 0.75501058112626385 0.3594548551959113 2 6 2 6 0 0 2694 32 419 3988964 56640 224.04197692871094 1.4341999999999999 332.1823 13440 8728 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 419 320 0 64 0 6085252900 3911024 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 27 25 47 44 276 0 0 1 2 29 0 0 0 0 0 +267 1783859815001087400 REFRESH 38 0 0.75497765354306856 0.55451448040885853 1 9 1 9 0 0 2079 26 415 3988946 56640 224.27033996582031 1.4318 308.72140000000002 13440 9508 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 415 320 0 64 0 6085984424 4642548 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 26 30 31 303 0 0 0 0 26 0 0 0 0 0 +268 1783859815319741500 REFRESH 33 0 0.75509202971088651 0.36712095400340705 1 7 1 7 0 0 3404 48 419 3988948 56640 225.49810791015625 1.4359 314.86559999999997 13440 8643 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 419 320 0 64 0 6086720028 5378152 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 51 30 288 0 0 4 0 44 0 0 0 0 0 +269 1783859815712621700 REFRESH 50 0 0.75788696061643368 0.64054514480408853 2 9 2 9 0 0 1042 13 427 3988898 56640 223.96620178222656 1.5024999999999999 324.36430000000001 13440 9997 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 427 320 0 64 0 6087463792 6121916 1 0 5 2 2 1 6 1228800 491520 491520 245857 1497600 27 25 25 26 324 2 0 0 0 11 0 0 0 0 0 +270 1783859816174765500 REFRESH 29 0 0.75823444548063867 0.82027257240204421 3 10 3 10 0 0 1103 9 416 3988881 56640 238.19161987304688 1.4302999999999999 319.08569999999997 6720 5025 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 416 320 0 64 0 6088196336 6854460 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 25 25 25 26 315 0 0 0 0 9 0 0 0 0 0 +271 1783859816565376000 REFRESH 2 0 0.76229498339089552 0.45315161839863699 2 7 2 7 0 0 3526 72 411 3988949 56640 236.66586303710938 1.5699000000000001 331.25549999999998 13440 9720 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 411 320 0 64 0 6088923780 7581904 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 33 29 298 0 0 1 0 71 0 0 0 0 0 +272 1783859816936523600 REFRESH 42 0 0.94426617535303015 0 0 4 0 4 0 0 4096 5 426 3987629 55200 227.74681091308594 1.4347000000000001 369.34350000000001 20160 12540 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 6089666524 8324648 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 82 25 48 194 77 0 0 0 0 5 0 0 0 0 0 +273 1783859817310506500 REFRESH 6 0 0.75554891270879831 0.91396933560476989 3 11 3 11 0 0 380 6 422 3988871 56640 236.57778930664062 1.4329000000000001 317.74110000000002 6720 4952 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 0 64 0 6090405188 9063312 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 25 25 25 26 321 0 0 0 0 6 0 0 0 0 0 +274 1783859817677771900 REFRESH 0 0 0.75261313735285573 0.8279386712095399 2 11 2 11 0 0 884 11 416 3988944 56640 229.56442260742188 1.4330000000000001 310.19540000000001 6720 4849 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 416 320 0 64 0 6091137732 9795856 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 29 311 0 0 1 2 8 0 0 0 0 0 +275 1783859818092929600 REFRESH 9 0 0.77037524892974452 0.27342419080068137 1 6 1 6 0 0 3088 43 414 3988961 56640 238.5479736328125 1.4724999999999999 344.07780000000002 13440 8697 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 414 320 0 64 0 6091868236 10526360 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 27 38 298 0 0 0 1 42 0 0 0 0 0 +276 1783859818469656700 REFRESH 45 0 0.76251166082391897 0.45315161839863699 2 7 2 7 0 0 2126 26 416 3988952 56640 226.10432434082031 1.4484999999999999 321.58159999999998 13440 9725 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 6092600780 11258904 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 27 25 25 31 308 1 0 0 0 25 0 0 0 0 0 +277 1783859818782638300 REFRESH 49 0 0.75354093429579583 0.4454855195911413 3 6 3 6 0 0 1516 22 406 3988960 56640 224.11672973632812 1.4509000000000001 311.37740000000002 13440 9294 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 406 320 0 64 0 6093323124 11981248 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 26 30 35 290 0 0 0 2 20 0 0 0 0 0 +278 1783859819152218200 REFRESH 51 0 0.76178378901368071 0.91396933560476989 3 11 3 11 0 0 535 12 408 3988886 56640 222.71897888183594 1.4545999999999999 304.21850000000001 6720 4928 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 408 320 0 64 0 6094047508 12705632 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 27 304 0 0 0 0 12 0 0 0 0 0 +279 1783859819520509100 REFRESH 30 0 0.76264092182952947 0.4608177172061329 1 8 1 8 0 0 3469 66 416 3988966 56640 223.393798828125 1.4246000000000001 309.55410000000001 6720 4688 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 416 320 0 64 0 6094780052 13438176 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 30 25 43 34 284 3 0 4 2 57 0 0 0 0 0 +280 1783859819892324000 REFRESH 26 0 0.76052877696709942 0.64821124361158422 1 10 1 10 0 0 1834 51 416 3988969 56640 223.60887145996094 1.6487000000000001 313.9873 6720 4921 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 416 320 0 64 0 6095512596 14170720 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 28 25 28 31 304 4 0 1 1 45 0 0 0 0 0 +281 1783859820309318700 REFRESH 44 0 0.7556157485707794 0.36712095400340705 1 7 1 7 0 0 2246 22 424 3988951 56640 228.92442321777344 1.4318 358.12349999999998 13440 8597 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 424 320 0 64 0 6096253300 14911424 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 72 27 274 0 0 2 0 20 0 0 0 0 0 +282 1783859820715151200 REFRESH 53 0 0.75566625672867505 0.37478705281090291 0 8 0 8 0 0 4096 55 413 3988983 56640 231.76602172851562 1.4383999999999999 340.4169 13440 8672 0 0 0 0.2106332408498392 4096 2048 64 1 16 413 320 0 64 0 6096982784 15640908 1 0 4 2 2 2 6 983040 491520 491520 491700 1497600 26 25 31 32 299 0 0 2 1 52 0 0 0 0 0 +283 1783859821089446500 REFRESH 3 0 0.76051618190573222 0.64054514480408853 2 9 2 9 0 0 1112 14 407 3988878 56640 228.30284118652344 1.4396 317.32780000000002 13440 9911 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 407 320 0 64 0 6097706148 16364272 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 37 25 25 31 289 0 0 0 0 14 0 0 0 0 0 +284 1783859821466489000 REFRESH 28 0 0.75306064580086374 0.8279386712095399 2 11 2 11 0 0 633 9 407 3988950 56640 223.46751403808594 1.4407000000000001 313.30029999999999 6720 4949 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 6098429512 17087636 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 26 305 0 0 0 0 9 0 0 0 0 0 +285 1783859821864801900 REFRESH 40 0 0.76060504657377048 0.64821124361158422 1 10 1 10 0 0 1688 26 422 3988866 56640 223.7337646484375 1.8196000000000001 342.72280000000001 13440 9978 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 422 320 0 64 0 6099168176 17826300 1 0 5 2 2 1 6 1228800 491520 491520 245826 1497600 25 25 25 27 320 3 0 0 4 19 0 0 0 0 0 +286 1783859822348556500 REFRESH 39 0 0.75579752943446388 0.55451448040885853 1 9 1 9 0 0 1580 14 425 3988956 56640 240.50483703613281 1.4317 362.71469999999999 13440 9495 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 6099909900 18568024 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 36 45 294 3 1 1 0 9 0 0 0 0 0 +287 1783859822714274300 REFRESH 14 0 0.76069365944654643 0.65587734241908002 0 11 0 11 0 0 1633 28 415 3988963 56640 228.41343688964844 1.4281999999999999 307.762 6720 4814 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 415 320 0 64 0 6100641424 19299548 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 27 27 309 0 0 1 0 27 0 0 0 0 0 +288 1783859823118137300 REFRESH 13 0 0.77089374355456874 0.27342419080068137 1 6 1 6 0 0 4096 52 420 3988949 56640 225.20115661621094 1.4684999999999999 330.69670000000002 13440 8559 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 420 320 0 64 0 6101378048 20036172 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 33 268 0 0 6 3 43 0 0 0 0 0 +289 1783859823502303300 REFRESH 15 0 0.75939465028876196 0.91396933560476989 3 11 3 11 0 0 322 11 409 3988881 56640 240.14028930664062 1.4350000000000001 321.42590000000001 6720 4979 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 6102103452 20761576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 28 26 25 25 305 1 0 0 0 10 0 0 0 0 0 +290 1783859823944547800 REFRESH 17 0 0.77097266581024126 0.28109028960817717 0 7 0 7 0 0 3931 25 416 3988953 56640 224.15155029296875 1.4529000000000001 367.77800000000002 13440 8697 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 416 320 0 64 0 6102835996 21494120 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 39 44 282 0 0 1 3 21 0 0 0 0 0 +291 1783859824316279100 REFRESH 36 0 0.7533701353160388 0.82027257240204421 3 10 3 10 0 0 1224 24 407 3988961 56640 225.25541687011719 1.4314 312.69830000000002 6720 4823 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 407 320 0 64 0 6103559360 22217484 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 28 304 0 0 0 0 24 0 0 0 0 0 +292 1783859824739613300 REFRESH 56 0 0.78193212547612045 0.17206132879045993 2 4 2 4 0 0 4096 10 426 3988472 56160 225.45304870605469 1.4365000000000001 360.5179 20160 13985 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 426 320 0 64 0 6104302104 22960228 1 0 4 3 2 2 5 983040 737280 491520 491670 1248000 38 25 25 252 86 1 0 1 0 8 0 0 0 0 0 +293 1783859825124388000 REFRESH 12 0 0.76095800103976818 0.63287904599659284 3 8 3 8 0 0 1485 43 431 3988967 56640 224.81205749511719 1.4330000000000001 318.17230000000001 6720 4905 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 431 320 0 64 0 6105049948 23708072 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 35 25 25 32 314 0 0 0 1 42 0 0 0 0 0 +294 1783859825503459000 REFRESH 21 0 0.75613615920700783 0.56218057921635434 0 10 0 10 0 0 2520 54 414 3988964 56640 223.73887634277344 1.4412 318.01179999999999 13440 9618 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 414 320 0 64 0 6105780452 24438576 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 38 40 285 0 0 5 4 45 0 0 0 0 0 +295 1783859825864985100 REFRESH 24 0 0.75929724268901522 1 4 11 4 11 0 0 491 12 411 3988962 56640 226.47807312011719 1.4305000000000001 304.66829999999999 6720 4953 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 411 320 0 64 0 6106507896 25166020 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 25 27 307 0 0 0 0 12 0 0 0 0 0 +296 1783859826246956600 REFRESH 34 0 0.75358933815396911 0.8356047700170357 1 12 1 12 1 0 707 12 413 3988899 56640 224.12696838378906 1.4321999999999999 317.3519 6720 4985 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 413 320 0 64 0 6107237380 25895504 1 0 6 1 2 1 6 1474560 245760 491520 245858 1497600 26 27 25 34 301 0 0 0 2 10 0 0 0 0 1 +297 1783859826696889600 REFRESH 10 0 0.76113299480041996 0.64821124361158422 1 10 1 10 0 0 1140 18 422 3988865 56640 224.95654296875 1.4244000000000001 310.40730000000002 13440 10009 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 422 320 0 64 0 6107976044 26634168 1 0 5 2 2 1 6 1228800 491520 491520 245824 1497600 26 25 25 28 318 3 0 0 3 12 0 0 0 0 0 +298 1783859827068705000 REFRESH 18 0 0.76270676377470381 0.9293015332197615 1 13 1 13 1 0 441 12 411 3988945 56640 225.22572326660156 1.4419999999999999 311.66680000000002 6720 4856 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 411 320 0 64 0 6108703488 27361612 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 26 310 0 0 0 0 12 0 0 0 0 1 +299 1783859827493011800 REFRESH 25 0 0.7634887368901081 0.4608177172061329 1 8 1 8 0 0 2317 32 411 3988962 56640 225.46022033691406 1.4316 360.04730000000001 13440 9525 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 411 320 0 64 0 6109430932 28089056 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 33 32 295 0 0 3 4 25 0 0 0 0 0 +300 1783859827893321300 REFRESH 54 0 0.7635305057241627 0.4608177172061329 1 8 1 8 0 0 1191 14 420 3988944 56640 223.43064880371094 1.4578 337.48750000000001 13440 9650 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 420 320 0 64 0 6110167556 28825680 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 44 53 272 0 0 0 0 14 0 0 0 0 0 +301 1783859828254190100 REFRESH 7 0 0.75383096429550178 0.8356047700170357 1 12 1 12 1 0 868 21 408 3988949 56640 224.18739318847656 1.4401999999999999 300.79969999999997 6720 4898 0 0 0.00025497451229948798 0.8256864504409217 4096 2048 64 1 16 408 320 0 64 0 6110891940 29550064 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 25 308 0 0 0 0 21 0 0 0 0 1 +302 1783859828627255700 REFRESH 43 0 0.75385036752150569 0.8279386712095399 2 11 2 11 0 0 779 13 422 3988956 56640 225.06291198730469 1.4319999999999999 312.44499999999999 6720 4923 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 422 320 0 64 0 6111630604 30288728 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 48 298 0 0 0 2 11 0 0 0 0 0 +303 1783859829052037800 REFRESH 37 0 0.75389366110711165 0.8356047700170357 1 12 1 12 0 0 991 18 408 3988886 56640 224.94003295898438 1.4262999999999999 304.3295 6720 4958 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 408 320 0 64 0 6112354988 31013112 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 26 26 25 31 300 0 0 0 0 18 0 0 0 0 0 +304 1783859831352938600 DEPTH 42 1 0.93623885515355454 0 0 4 0 4 0 0 4096 18 2593 23677553 81600 1307.8773651123047 8.7285000000000004 2178.6356000000001 120960 59732 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 6116858756 35516880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 395 150 245 1146 657 0 0 0 0 18 0 0 0 0 0 +305 1783859833447898900 DEPTH 8 1 0.76417980186552747 0.26575809199318562 2 5 2 5 0 0 2381 37 2556 23742657 147840 1304.7470855712891 8.6632999999999996 2003.6455000000001 80640 42672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2556 1920 0 384 1 6121324784 39982908 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 153 150 156 1947 0 0 0 0 37 0 0 0 0 0 +306 1783859835633143400 DEPTH 48 1 0.76421713989541695 0.26575809199318562 2 5 2 5 0 0 2449 32 2588 23742867 147840 1295.3057556152344 8.6809000000000012 2122.5641999999998 80640 42595 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2588 1920 0 384 1 6125823452 44481576 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 150 150 150 150 1988 0 0 0 2 30 0 0 0 0 0 +307 1783859837827238000 DEPTH 9 1 0.76425442643063035 0.27342419080068137 1 6 1 6 0 0 3114 73 2529 23742775 147840 1316.1339721679688 8.8003 2135.5412999999999 80640 42821 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2529 1920 0 384 1 6130261940 48920064 1 0 4 2 2 2 6 5898240 2949120 2949120 2950992 8985600 156 150 156 162 1905 0 0 4 1 68 0 0 0 0 0 +308 1783859840045055200 DEPTH 57 1 0.76429166160875961 0.27342419080068137 1 6 1 6 1 0 4096 44 2544 23742759 147840 1357.6306610107422 8.6378000000000004 2215.1531 80640 42989 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 2544 1920 0 384 1 6134715728 53373852 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 156 150 193 191 1854 0 0 2 3 39 0 0 0 0 1 +309 1783859842388958000 DEPTH 20 1 0.75939224556685214 0.26575809199318562 2 5 2 5 0 0 2100 45 2590 23720525 125760 1390.5732574462891 9.4380000000000006 2272.4083000000001 80640 45837 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2590 1920 0 384 1 6139216436 57874560 1 0 5 2 2 2 5 7372800 2949120 2949120 2950910 7488000 150 150 154 284 1852 0 0 18 0 27 0 0 0 0 0 +310 1783859844567379000 DEPTH 2 1 0.75488058084305398 0.45315161839863699 2 7 2 7 0 0 3554 106 2542 23742671 147840 1299.5737609863281 9.0709 2120.9535000000001 80640 45724 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2542 1920 0 384 1 6143668184 62326308 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 163 156 1917 0 0 14 1 91 0 0 0 0 0 +311 1783859846762567400 DEPTH 45 1 0.75492022309050144 0.45315161839863699 2 7 2 7 0 0 2131 34 2586 23742675 147840 1301.6227722167969 8.6951000000000001 2117.5291000000002 80640 45843 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2586 1920 0 384 1 6148164812 66822936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 156 1980 0 0 0 4 30 0 0 0 0 0 +312 1783859850139495000 DEPTH 42 1 0.76306553629810214 0 0 4 0 4 0 0 4096 16 2587 23677481 81600 1290.0669555664062 8.6252999999999993 3316.6455999999998 120960 49373 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 6152662540 4212308 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 392 150 231 1236 578 0 0 0 0 16 0 0 0 0 0 +313 1783859852250616100 DEPTH 32 1 0.75499934476824382 0.4608177172061329 1 8 1 8 0 0 2977 80 2551 23741875 147840 1288.2001953125 8.6305999999999994 2046.3279 80640 44622 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2551 1920 0 384 1 6157123468 8673236 1 0 5 2 2 1 6 7127040 2949120 2949120 1721382 8985600 150 150 156 156 1939 0 0 11 18 51 0 0 0 0 0 +314 1783859854545681500 DEPTH 30 1 0.75503882448639581 0.4608177172061329 1 8 1 8 0 0 3485 95 2526 23742638 147840 1313.08544921875 8.7832000000000008 2152.8955999999998 67200 37625 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2526 1920 0 384 1 6161558896 13108664 1 0 4 2 2 2 6 6389760 2457600 2949120 2950941 8985600 168 150 199 195 1814 5 0 6 8 76 0 0 0 0 0 +315 1783859856872996500 DEPTH 13 1 0.76455088130140414 0.27342419080068137 1 6 1 6 0 0 4096 50 2561 23742911 147840 1344.2642059326172 8.6227 2194.7676000000001 80640 42494 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 6166030024 17579792 1 0 4 2 2 2 6 5898240 2949120 2949120 2951023 8985600 154 150 155 150 1952 0 0 1 5 44 0 0 0 0 0 +316 1783859859008769600 DEPTH 26 1 0.75182274667350468 0.64821124361158422 1 10 1 10 1 0 1864 89 2565 23742642 147840 1329.6221923828125 8.6128999999999998 2074.7934 47040 29201 1 0 0.0023266425042342159 1.1740011678228659 4096 2048 384 12 96 2565 1920 0 384 1 6170505232 22055000 1 0 4 2 2 2 6 7127040 1720320 2949120 2950947 8985600 163 150 165 156 1931 19 6 5 7 52 0 0 1 0 0 +317 1783859860864500100 DEPTH 51 1 0.75176627702935039 0.91396933560476989 3 11 3 11 1 0 535 30 2569 23741735 147840 1278.4854888916016 8.6023999999999994 1801.9456 47040 27111 1 0 0.044092769239544943 0.28194752902809894 4096 2048 384 12 96 2569 1920 0 384 1 6174984520 26534288 1 0 6 1 2 1 6 8601600 1720320 2949120 1475480 8985600 162 150 150 162 1945 0 1 0 1 28 0 0 0 0 1 +318 1783859862906424200 DEPTH 22 1 0.75180868809061863 0.91396933560476989 3 11 3 11 0 0 474 43 2567 23742637 147840 1350.8653564453125 8.6508000000000003 1893.0464999999999 40320 22951 1 0 0.0083533723482868329 0.70040182967037024 4096 2048 384 12 96 2567 1920 0 384 1 6179461768 31011536 1 0 5 1 2 2 6 7372800 1474560 2949120 2950940 8985600 150 150 150 150 1967 0 0 0 0 43 0 0 0 0 0 +319 1783859864785277700 DEPTH 58 1 0.75185104155670768 0.92163543441226559 2 12 2 12 0 0 527 19 2547 23741699 147840 1290.7787170410156 8.6688000000000009 1822.2824000000001 47040 26761 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2547 1920 0 384 1 6183918616 35468384 1 0 6 1 2 1 6 8601600 1720320 2949120 1475445 8985600 163 150 150 150 1934 0 0 0 0 19 0 0 0 0 0 +320 1783859867003879800 DEPTH 56 1 0.77665699930989474 0.17206132879045993 2 4 2 4 0 0 4096 59 2581 23712856 118080 1303.3830261230469 8.6735000000000007 2144.6801 134400 78744 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2581 1920 0 384 1 6188410144 39959912 1 0 4 4 2 2 4 5898240 4915200 2949120 2950917 6988800 178 150 151 1325 777 0 0 4 7 48 0 0 0 0 0 +321 1783859869156145100 DEPTH 17 1 0.76477110705550211 0.28109028960817717 0 7 0 7 0 0 3946 49 2560 23742878 147840 1270.1327362060547 8.6295999999999999 2085.4821999999999 80640 42696 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2560 1920 0 384 1 6192880252 44430020 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 156 150 156 162 1936 0 0 1 0 48 0 0 0 0 0 +322 1783859871274673800 DEPTH 42 1 0.7800124779260057 0 0 4 0 4 0 0 4096 18 2590 23677678 81600 1274.3060455322266 8.6318000000000001 2117.3424 120960 39352 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2590 1920 0 384 1 6197380960 48930728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 370 150 219 1299 552 0 0 0 0 18 0 0 0 0 0 +323 1783859873075036600 DEPTH 27 1 0.75201988249135643 0.93696763202725719 0 14 0 14 1 0 879 54 2508 23741698 147840 1279.2626342773438 8.5945999999999998 1736.8150000000001 47040 27163 1 0 4.4782237923609263e-06 0.9356687662810621 4096 2048 384 12 96 2508 1920 0 384 1 6201798028 53347796 1 0 6 1 2 1 6 8601600 1720320 2949120 1475442 8985600 156 150 150 150 1902 0 0 0 0 54 0 0 0 0 1 +324 1783859874882122400 DEPTH 12 1 0.75201589251596102 0.63287904599659284 3 8 3 8 0 0 1518 119 2632 23742302 147840 1274.9720916748047 8.7653999999999996 1748.1923999999999 80640 47315 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2632 1920 0 384 1 6206341576 57891344 1 0 4 2 2 2 6 6389760 2949120 2949120 2459087 8985600 157 150 150 152 2023 2 0 1 1 115 0 0 0 0 0 +325 1783859876877024400 DEPTH 3 1 0.75205625543386667 0.64054514480408853 2 9 2 9 0 0 1115 31 2531 23742311 147840 1265.0391845703125 8.7083999999999993 1942.6298999999999 80640 46501 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2531 1920 0 384 1 6210782104 62331872 1 0 4 2 2 2 6 6389760 2949120 2949120 2459092 8985600 164 158 150 156 1903 0 1 0 3 27 0 0 0 0 0 +326 1783859878902894300 DEPTH 40 1 0.75209656402350744 0.64821124361158422 1 10 1 10 0 0 1716 76 2568 23742384 147840 1269.3582153320312 8.6222999999999992 1972.0811000000001 80640 46570 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2568 1920 0 384 1 6215260372 66810140 1 0 4 2 2 2 6 6389760 2949120 2949120 2459171 8985600 150 150 150 154 1964 6 12 2 7 49 0 0 0 0 0 +327 1783859880429641500 DEPTH 14 1 0.75213681842657332 0.65587734241908002 0 11 0 11 0 0 1633 16 426 3965101 32640 222.63194274902344 1.4303999999999999 1472.8162 6720 5351 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 2 16 426 320 0 64 0 6216003196 444144 1 0 5 1 2 2 6 1228800 245760 491520 491821 1497600 26 25 26 25 324 0 0 1 0 15 0 0 0 0 0 diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/run.tsv b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/run.tsv new file mode 100644 index 00000000..19c074e8 --- /dev/null +++ b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/run.tsv @@ -0,0 +1,53 @@ +format szilassi-global-search-v5 +run_id 39968628-bdef-4c6f-9617-c1fcd722ec3a +node_id LOOKICH +seed 1082316127 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-neural-v3 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 5410257628 +training_neural_model_reserve_bytes 251207948 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000001_d55964ac.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000001_d55964ac.szar new file mode 100644 index 00000000..6cf0dd42 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000001_d55964ac.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000002_88ba4016.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000002_88ba4016.szar new file mode 100644 index 00000000..40d1cfcd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000002_88ba4016.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000003_69fca6b9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000003_69fca6b9.szar new file mode 100644 index 00000000..7607ab8c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000003_69fca6b9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000004_c67e6db6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000004_c67e6db6.szar new file mode 100644 index 00000000..284c9c86 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/archive/delta_00000000000000000004_c67e6db6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000001_0a25bb01.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000001_0a25bb01.szcp new file mode 100644 index 00000000..171a9b28 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000001_0a25bb01.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000002_7f9289fd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000002_7f9289fd.szcp new file mode 100644 index 00000000..5c5e2ce5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000002_7f9289fd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000003_48a9f583.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000003_48a9f583.szcp new file mode 100644 index 00000000..3bde4516 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000003_48a9f583.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000004_9f37ade0.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000004_9f37ade0.szcp new file mode 100644 index 00000000..f6fdda2b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_000/checkpoints/checkpoint_00000000000000000004_9f37ade0.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000001_4a8b37b2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000001_4a8b37b2.szar new file mode 100644 index 00000000..b7e1331f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000001_4a8b37b2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000002_ba33d035.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000002_ba33d035.szar new file mode 100644 index 00000000..699d0a33 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000002_ba33d035.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000003_5fa30a57.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000003_5fa30a57.szar new file mode 100644 index 00000000..02b3b923 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000003_5fa30a57.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000004_d589396e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000004_d589396e.szar new file mode 100644 index 00000000..8d173aab Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000004_d589396e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000005_20b88d6f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000005_20b88d6f.szar new file mode 100644 index 00000000..a5331b47 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000005_20b88d6f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000006_a5718e87.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000006_a5718e87.szar new file mode 100644 index 00000000..0be18f49 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000006_a5718e87.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000007_8584761b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000007_8584761b.szar new file mode 100644 index 00000000..02e2b7b5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/archive/delta_00000000000000000007_8584761b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000001_4f5f35ba.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000001_4f5f35ba.szcp new file mode 100644 index 00000000..017a04d5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000001_4f5f35ba.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000002_34d35689.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000002_34d35689.szcp new file mode 100644 index 00000000..cb8ff783 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000002_34d35689.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000003_886ceb32.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000003_886ceb32.szcp new file mode 100644 index 00000000..0b8471fe Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000003_886ceb32.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000004_69bd2cff.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000004_69bd2cff.szcp new file mode 100644 index 00000000..bd8f91aa Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000004_69bd2cff.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000005_cabda5cf.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000005_cabda5cf.szcp new file mode 100644 index 00000000..bf9c5f2a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000005_cabda5cf.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000006_6eae18a4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000006_6eae18a4.szcp new file mode 100644 index 00000000..37a65f90 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000006_6eae18a4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000007_e25dd91a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000007_e25dd91a.szcp new file mode 100644 index 00000000..51d4d2bc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_001/checkpoints/checkpoint_00000000000000000007_e25dd91a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000001_8fd280d5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000001_8fd280d5.szar new file mode 100644 index 00000000..4f5ff565 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000001_8fd280d5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000002_ac6248b3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000002_ac6248b3.szar new file mode 100644 index 00000000..4c243148 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000002_ac6248b3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000003_68af0c00.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000003_68af0c00.szar new file mode 100644 index 00000000..980408c6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000003_68af0c00.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000004_29651ec9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000004_29651ec9.szar new file mode 100644 index 00000000..52316ff8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000004_29651ec9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000005_24af5e37.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000005_24af5e37.szar new file mode 100644 index 00000000..3b5deb00 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000005_24af5e37.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000006_00d43450.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000006_00d43450.szar new file mode 100644 index 00000000..caeb2183 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/archive/delta_00000000000000000006_00d43450.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000001_ac3c4309.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000001_ac3c4309.szcp new file mode 100644 index 00000000..f82d6e6d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000001_ac3c4309.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000002_80e5967b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000002_80e5967b.szcp new file mode 100644 index 00000000..5a86ecf6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000002_80e5967b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000003_baf9b3f4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000003_baf9b3f4.szcp new file mode 100644 index 00000000..0034ee6e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000003_baf9b3f4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000004_d9eaa23f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000004_d9eaa23f.szcp new file mode 100644 index 00000000..1131b742 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000004_d9eaa23f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000005_30bb276d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000005_30bb276d.szcp new file mode 100644 index 00000000..e8202a36 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000005_30bb276d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000006_a58f9cbc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000006_a58f9cbc.szcp new file mode 100644 index 00000000..909b541f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_002/checkpoints/checkpoint_00000000000000000006_a58f9cbc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000001_d5d134b6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000001_d5d134b6.szar new file mode 100644 index 00000000..e0d4371a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000001_d5d134b6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000002_31139fb6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000002_31139fb6.szar new file mode 100644 index 00000000..ce4bed3c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000002_31139fb6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000003_e857b8f7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000003_e857b8f7.szar new file mode 100644 index 00000000..5482f245 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000003_e857b8f7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000004_a2da362c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000004_a2da362c.szar new file mode 100644 index 00000000..4ce3b189 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000004_a2da362c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000005_59f84d51.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000005_59f84d51.szar new file mode 100644 index 00000000..8edd3fa7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/archive/delta_00000000000000000005_59f84d51.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000001_59dcba5a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000001_59dcba5a.szcp new file mode 100644 index 00000000..c3368653 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000001_59dcba5a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000002_fc6693e7.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000002_fc6693e7.szcp new file mode 100644 index 00000000..76d0f6be Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000002_fc6693e7.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000003_52fbae3c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000003_52fbae3c.szcp new file mode 100644 index 00000000..999ba8c3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000003_52fbae3c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000004_a33b628a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000004_a33b628a.szcp new file mode 100644 index 00000000..148df973 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000004_a33b628a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000005_c0e7d7a2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000005_c0e7d7a2.szcp new file mode 100644 index 00000000..352b8086 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_003/checkpoints/checkpoint_00000000000000000005_c0e7d7a2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000001_c37ef10b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000001_c37ef10b.szar new file mode 100644 index 00000000..2b2dad6e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000001_c37ef10b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000002_04c9e7f9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000002_04c9e7f9.szar new file mode 100644 index 00000000..313e18dc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000002_04c9e7f9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000003_0228daec.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000003_0228daec.szar new file mode 100644 index 00000000..32e59a1f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000003_0228daec.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000004_39a17a8d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000004_39a17a8d.szar new file mode 100644 index 00000000..f83de3fc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/archive/delta_00000000000000000004_39a17a8d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000001_c9cdc2db.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000001_c9cdc2db.szcp new file mode 100644 index 00000000..7845d17d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000001_c9cdc2db.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000002_35c405a5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000002_35c405a5.szcp new file mode 100644 index 00000000..3dc5123d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000002_35c405a5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000003_f68928fd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000003_f68928fd.szcp new file mode 100644 index 00000000..6e9ebffd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000003_f68928fd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000004_c4d78f36.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000004_c4d78f36.szcp new file mode 100644 index 00000000..701c97a0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_004/checkpoints/checkpoint_00000000000000000004_c4d78f36.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000001_4333ad59.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000001_4333ad59.szar new file mode 100644 index 00000000..743bfca5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000001_4333ad59.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000002_4446f336.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000002_4446f336.szar new file mode 100644 index 00000000..a4c47bea Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000002_4446f336.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000003_15e789d3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000003_15e789d3.szar new file mode 100644 index 00000000..22f31903 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000003_15e789d3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000004_8291e21c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000004_8291e21c.szar new file mode 100644 index 00000000..6e35bd47 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/archive/delta_00000000000000000004_8291e21c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000001_8b289472.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000001_8b289472.szcp new file mode 100644 index 00000000..b88c143d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000001_8b289472.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000002_18dd2ea4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000002_18dd2ea4.szcp new file mode 100644 index 00000000..4b50a72f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000002_18dd2ea4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000003_7745ad4b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000003_7745ad4b.szcp new file mode 100644 index 00000000..e0dd62ed Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000003_7745ad4b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000004_b19d5842.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000004_b19d5842.szcp new file mode 100644 index 00000000..a19fee08 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_005/checkpoints/checkpoint_00000000000000000004_b19d5842.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000001_22cf4777.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000001_22cf4777.szar new file mode 100644 index 00000000..a9fb6f30 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000001_22cf4777.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000002_dc2d11e5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000002_dc2d11e5.szar new file mode 100644 index 00000000..c2db43a1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000002_dc2d11e5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000003_e904dbb5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000003_e904dbb5.szar new file mode 100644 index 00000000..ee6b621e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/archive/delta_00000000000000000003_e904dbb5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000001_ca7566d5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000001_ca7566d5.szcp new file mode 100644 index 00000000..a378f34f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000001_ca7566d5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000002_4ffeaf66.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000002_4ffeaf66.szcp new file mode 100644 index 00000000..115c5905 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000002_4ffeaf66.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000003_7b4f92ea.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000003_7b4f92ea.szcp new file mode 100644 index 00000000..ea0c2009 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_006/checkpoints/checkpoint_00000000000000000003_7b4f92ea.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000001_d7f23213.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000001_d7f23213.szar new file mode 100644 index 00000000..eedfbc5a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000001_d7f23213.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000002_d6ccab2d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000002_d6ccab2d.szar new file mode 100644 index 00000000..935aa4fc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000002_d6ccab2d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000003_69f48e29.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000003_69f48e29.szar new file mode 100644 index 00000000..16365337 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000003_69f48e29.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000004_0c6638a6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000004_0c6638a6.szar new file mode 100644 index 00000000..bc75f443 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/archive/delta_00000000000000000004_0c6638a6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000001_0ac308f8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000001_0ac308f8.szcp new file mode 100644 index 00000000..017d883d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000001_0ac308f8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000002_92c24b63.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000002_92c24b63.szcp new file mode 100644 index 00000000..8705ead6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000002_92c24b63.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000003_15157ae8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000003_15157ae8.szcp new file mode 100644 index 00000000..411aec51 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000003_15157ae8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000004_1bf9895a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000004_1bf9895a.szcp new file mode 100644 index 00000000..5ad75bd8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_007/checkpoints/checkpoint_00000000000000000004_1bf9895a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000001_8e6329ad.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000001_8e6329ad.szar new file mode 100644 index 00000000..1bf3e14b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000001_8e6329ad.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000002_f0e9d879.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000002_f0e9d879.szar new file mode 100644 index 00000000..51c6c48f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000002_f0e9d879.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000003_15c45271.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000003_15c45271.szar new file mode 100644 index 00000000..0fb73be6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000003_15c45271.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000004_c545e241.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000004_c545e241.szar new file mode 100644 index 00000000..57b4c548 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000004_c545e241.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000005_f8348648.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000005_f8348648.szar new file mode 100644 index 00000000..44bd0cad Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000005_f8348648.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000006_a50b82aa.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000006_a50b82aa.szar new file mode 100644 index 00000000..fb68ba68 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000006_a50b82aa.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000007_4944f6a3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000007_4944f6a3.szar new file mode 100644 index 00000000..15e11373 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000007_4944f6a3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000008_f0e729cc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000008_f0e729cc.szar new file mode 100644 index 00000000..da426731 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/archive/delta_00000000000000000008_f0e729cc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000001_17659370.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000001_17659370.szcp new file mode 100644 index 00000000..3644a5e1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000001_17659370.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000002_74c94b98.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000002_74c94b98.szcp new file mode 100644 index 00000000..bdfb2e3f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000002_74c94b98.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000003_c3787a0d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000003_c3787a0d.szcp new file mode 100644 index 00000000..0ef9981f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000003_c3787a0d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000004_e98c9a5a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000004_e98c9a5a.szcp new file mode 100644 index 00000000..f98a392c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000004_e98c9a5a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000005_6d2d78c2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000005_6d2d78c2.szcp new file mode 100644 index 00000000..fb6ae99a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000005_6d2d78c2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000006_366385df.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000006_366385df.szcp new file mode 100644 index 00000000..020d5c53 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000006_366385df.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000007_7ca8c39b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000007_7ca8c39b.szcp new file mode 100644 index 00000000..5e7bba4c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000007_7ca8c39b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000008_da74a4d4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000008_da74a4d4.szcp new file mode 100644 index 00000000..778b9c6d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_008/checkpoints/checkpoint_00000000000000000008_da74a4d4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000001_1ae18367.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000001_1ae18367.szar new file mode 100644 index 00000000..32f86e70 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000001_1ae18367.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000002_6fb71cf2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000002_6fb71cf2.szar new file mode 100644 index 00000000..f22ea0de Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000002_6fb71cf2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000003_4c58fc8c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000003_4c58fc8c.szar new file mode 100644 index 00000000..b3528c39 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000003_4c58fc8c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000004_417c959d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000004_417c959d.szar new file mode 100644 index 00000000..af703bd4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000004_417c959d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000005_64ab4e3e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000005_64ab4e3e.szar new file mode 100644 index 00000000..6b20bc36 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000005_64ab4e3e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000006_5f040e2c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000006_5f040e2c.szar new file mode 100644 index 00000000..18b2fc59 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000006_5f040e2c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000007_d766b2ab.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000007_d766b2ab.szar new file mode 100644 index 00000000..61d8aeed Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000007_d766b2ab.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000008_c82778be.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000008_c82778be.szar new file mode 100644 index 00000000..d5a1aa5d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/archive/delta_00000000000000000008_c82778be.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000001_b83ffbe7.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000001_b83ffbe7.szcp new file mode 100644 index 00000000..a34f9eaf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000001_b83ffbe7.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000002_15e3edcc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000002_15e3edcc.szcp new file mode 100644 index 00000000..65506648 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000002_15e3edcc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000003_995424cb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000003_995424cb.szcp new file mode 100644 index 00000000..82b326a3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000003_995424cb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000004_ca3f7433.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000004_ca3f7433.szcp new file mode 100644 index 00000000..7e09043f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000004_ca3f7433.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000005_6507f60f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000005_6507f60f.szcp new file mode 100644 index 00000000..522f63e2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000005_6507f60f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000006_1017a399.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000006_1017a399.szcp new file mode 100644 index 00000000..2ee19564 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000006_1017a399.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000007_2b3e88e8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000007_2b3e88e8.szcp new file mode 100644 index 00000000..44e8262a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000007_2b3e88e8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000008_fdd46776.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000008_fdd46776.szcp new file mode 100644 index 00000000..c93bd5b7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_009/checkpoints/checkpoint_00000000000000000008_fdd46776.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000001_dc446d36.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000001_dc446d36.szar new file mode 100644 index 00000000..86aad6e4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000001_dc446d36.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000002_a8f690cf.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000002_a8f690cf.szar new file mode 100644 index 00000000..7752301e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000002_a8f690cf.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000003_b07f9963.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000003_b07f9963.szar new file mode 100644 index 00000000..72f04d64 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000003_b07f9963.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000004_e8e84317.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000004_e8e84317.szar new file mode 100644 index 00000000..e5a4b4d7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/archive/delta_00000000000000000004_e8e84317.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000001_a5fb17fd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000001_a5fb17fd.szcp new file mode 100644 index 00000000..cb21f309 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000001_a5fb17fd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000002_c3144adf.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000002_c3144adf.szcp new file mode 100644 index 00000000..a9b23638 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000002_c3144adf.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000003_dcadf4ea.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000003_dcadf4ea.szcp new file mode 100644 index 00000000..ca068521 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000003_dcadf4ea.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000004_2e12cd01.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000004_2e12cd01.szcp new file mode 100644 index 00000000..b26a1f1c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_010/checkpoints/checkpoint_00000000000000000004_2e12cd01.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000001_dde05f68.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000001_dde05f68.szar new file mode 100644 index 00000000..6982ac49 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000001_dde05f68.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000002_59c89ffd.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000002_59c89ffd.szar new file mode 100644 index 00000000..c8784328 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000002_59c89ffd.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000003_53ccf144.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000003_53ccf144.szar new file mode 100644 index 00000000..8612e3a6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000003_53ccf144.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000004_7d50fb29.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000004_7d50fb29.szar new file mode 100644 index 00000000..481c30e9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000004_7d50fb29.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000005_c6b501f6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000005_c6b501f6.szar new file mode 100644 index 00000000..819f80ed Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000005_c6b501f6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000006_80b7c951.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000006_80b7c951.szar new file mode 100644 index 00000000..1be06b84 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000006_80b7c951.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000007_5764e76b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000007_5764e76b.szar new file mode 100644 index 00000000..659c9d80 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/archive/delta_00000000000000000007_5764e76b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000001_4d8b6e73.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000001_4d8b6e73.szcp new file mode 100644 index 00000000..dce18951 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000001_4d8b6e73.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000002_835c235f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000002_835c235f.szcp new file mode 100644 index 00000000..5ec0dcc6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000002_835c235f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000003_271a8c75.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000003_271a8c75.szcp new file mode 100644 index 00000000..be4f4554 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000003_271a8c75.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000004_159bda3d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000004_159bda3d.szcp new file mode 100644 index 00000000..2aee0b3b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000004_159bda3d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000005_626ea89c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000005_626ea89c.szcp new file mode 100644 index 00000000..031ee896 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000005_626ea89c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000006_627cf4d7.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000006_627cf4d7.szcp new file mode 100644 index 00000000..1a1291a4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000006_627cf4d7.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000007_1b82debd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000007_1b82debd.szcp new file mode 100644 index 00000000..cc7c251c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_011/checkpoints/checkpoint_00000000000000000007_1b82debd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000001_b0b8158d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000001_b0b8158d.szar new file mode 100644 index 00000000..29e3da26 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000001_b0b8158d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000002_1bfc6252.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000002_1bfc6252.szar new file mode 100644 index 00000000..c6d835f8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000002_1bfc6252.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000003_5d300d97.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000003_5d300d97.szar new file mode 100644 index 00000000..06e8ad66 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000003_5d300d97.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000004_30e42fe6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000004_30e42fe6.szar new file mode 100644 index 00000000..a0c5822a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000004_30e42fe6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000005_e7c35d66.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000005_e7c35d66.szar new file mode 100644 index 00000000..ec32e67d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/archive/delta_00000000000000000005_e7c35d66.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000001_cff84a3b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000001_cff84a3b.szcp new file mode 100644 index 00000000..4660bfb9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000001_cff84a3b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000002_aa0d066d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000002_aa0d066d.szcp new file mode 100644 index 00000000..feb38b16 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000002_aa0d066d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000003_6e461199.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000003_6e461199.szcp new file mode 100644 index 00000000..d6bc41b0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000003_6e461199.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000004_d4157091.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000004_d4157091.szcp new file mode 100644 index 00000000..e9028a78 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000004_d4157091.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000005_71736201.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000005_71736201.szcp new file mode 100644 index 00000000..1f8ab62b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_012/checkpoints/checkpoint_00000000000000000005_71736201.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000001_f5e7c941.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000001_f5e7c941.szar new file mode 100644 index 00000000..d885c789 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000001_f5e7c941.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000002_3a9215b2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000002_3a9215b2.szar new file mode 100644 index 00000000..69de23cf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000002_3a9215b2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000003_8e69e6d3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000003_8e69e6d3.szar new file mode 100644 index 00000000..559ffc74 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000003_8e69e6d3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000004_7bf69d40.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000004_7bf69d40.szar new file mode 100644 index 00000000..1d63099c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000004_7bf69d40.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000005_f843aeac.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000005_f843aeac.szar new file mode 100644 index 00000000..f90a2cdd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000005_f843aeac.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000006_39825f26.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000006_39825f26.szar new file mode 100644 index 00000000..0f839e59 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000006_39825f26.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000007_003f85d5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000007_003f85d5.szar new file mode 100644 index 00000000..524fc909 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000007_003f85d5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000008_70b53301.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000008_70b53301.szar new file mode 100644 index 00000000..8ab78747 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/archive/delta_00000000000000000008_70b53301.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000001_12ae569d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000001_12ae569d.szcp new file mode 100644 index 00000000..d0494d96 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000001_12ae569d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000002_259a2592.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000002_259a2592.szcp new file mode 100644 index 00000000..3b5371d7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000002_259a2592.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000003_22ed2788.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000003_22ed2788.szcp new file mode 100644 index 00000000..bc8eb7f6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000003_22ed2788.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000004_5f8631db.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000004_5f8631db.szcp new file mode 100644 index 00000000..28edea41 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000004_5f8631db.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000005_45cf672e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000005_45cf672e.szcp new file mode 100644 index 00000000..d8e608b9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000005_45cf672e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000006_6f5330af.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000006_6f5330af.szcp new file mode 100644 index 00000000..7adcaf2d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000006_6f5330af.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000007_dc788fb2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000007_dc788fb2.szcp new file mode 100644 index 00000000..85f58f5f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000007_dc788fb2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000008_3a4aca55.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000008_3a4aca55.szcp new file mode 100644 index 00000000..de855e5e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_013/checkpoints/checkpoint_00000000000000000008_3a4aca55.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000001_e7f980ca.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000001_e7f980ca.szar new file mode 100644 index 00000000..67556c18 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000001_e7f980ca.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000002_0de5d552.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000002_0de5d552.szar new file mode 100644 index 00000000..09d35831 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000002_0de5d552.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000003_9b65bf86.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000003_9b65bf86.szar new file mode 100644 index 00000000..9a9f7478 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000003_9b65bf86.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000004_dfafabfc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000004_dfafabfc.szar new file mode 100644 index 00000000..c7a1fd5e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000004_dfafabfc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000005_a4e505dd.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000005_a4e505dd.szar new file mode 100644 index 00000000..5504a823 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/archive/delta_00000000000000000005_a4e505dd.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000001_7b12a57e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000001_7b12a57e.szcp new file mode 100644 index 00000000..ab15ba70 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000001_7b12a57e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000002_b8d68a95.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000002_b8d68a95.szcp new file mode 100644 index 00000000..b28b0e32 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000002_b8d68a95.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000003_5886d3d8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000003_5886d3d8.szcp new file mode 100644 index 00000000..d8977f8c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000003_5886d3d8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000004_98b977c5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000004_98b977c5.szcp new file mode 100644 index 00000000..74501518 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000004_98b977c5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000005_2bf79a97.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000005_2bf79a97.szcp new file mode 100644 index 00000000..73ec8a8a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_014/checkpoints/checkpoint_00000000000000000005_2bf79a97.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000001_7fb661ce.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000001_7fb661ce.szar new file mode 100644 index 00000000..33c0c857 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000001_7fb661ce.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000002_6cf56742.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000002_6cf56742.szar new file mode 100644 index 00000000..2387de6d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000002_6cf56742.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000003_b1d1d7c4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000003_b1d1d7c4.szar new file mode 100644 index 00000000..e3c825a0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/archive/delta_00000000000000000003_b1d1d7c4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000001_c2a91e7a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000001_c2a91e7a.szcp new file mode 100644 index 00000000..3724f230 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000001_c2a91e7a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000002_48e5a6b4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000002_48e5a6b4.szcp new file mode 100644 index 00000000..82b64aa5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000002_48e5a6b4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000003_ef081553.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000003_ef081553.szcp new file mode 100644 index 00000000..dcc8f810 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_015/checkpoints/checkpoint_00000000000000000003_ef081553.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000001_c81e42f8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000001_c81e42f8.szar new file mode 100644 index 00000000..567107e7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000001_c81e42f8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000002_b66b5f88.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000002_b66b5f88.szar new file mode 100644 index 00000000..16f10a50 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000002_b66b5f88.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000003_977fe423.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000003_977fe423.szar new file mode 100644 index 00000000..2b657ec7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000003_977fe423.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000004_62f6bf7a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000004_62f6bf7a.szar new file mode 100644 index 00000000..99fcd3ce Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000004_62f6bf7a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000005_16047851.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000005_16047851.szar new file mode 100644 index 00000000..8d650597 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000005_16047851.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000006_8ca638a7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000006_8ca638a7.szar new file mode 100644 index 00000000..a8774c1b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000006_8ca638a7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000007_dd9bdaca.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000007_dd9bdaca.szar new file mode 100644 index 00000000..9e59cbb5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/archive/delta_00000000000000000007_dd9bdaca.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000001_e820a9b1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000001_e820a9b1.szcp new file mode 100644 index 00000000..78d9a6b7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000001_e820a9b1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000002_8fea5d0a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000002_8fea5d0a.szcp new file mode 100644 index 00000000..4ef8e0d1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000002_8fea5d0a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000003_fb3bb885.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000003_fb3bb885.szcp new file mode 100644 index 00000000..238428f8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000003_fb3bb885.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000004_e8cd80a5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000004_e8cd80a5.szcp new file mode 100644 index 00000000..ffe3b543 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000004_e8cd80a5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000005_9876e4b1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000005_9876e4b1.szcp new file mode 100644 index 00000000..9cadbf69 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000005_9876e4b1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000006_36862c57.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000006_36862c57.szcp new file mode 100644 index 00000000..3c6c776f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000006_36862c57.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000007_cb4f77ca.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000007_cb4f77ca.szcp new file mode 100644 index 00000000..71c37b5a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_016/checkpoints/checkpoint_00000000000000000007_cb4f77ca.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000001_300ca5f3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000001_300ca5f3.szar new file mode 100644 index 00000000..c11e6bbb Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000001_300ca5f3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000002_6cefdcf4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000002_6cefdcf4.szar new file mode 100644 index 00000000..77d5950e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000002_6cefdcf4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000003_95d5abb9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000003_95d5abb9.szar new file mode 100644 index 00000000..f7837824 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000003_95d5abb9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000004_d0c59ca0.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000004_d0c59ca0.szar new file mode 100644 index 00000000..8d942c31 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000004_d0c59ca0.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000005_9d5b1bb6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000005_9d5b1bb6.szar new file mode 100644 index 00000000..7ff59fff Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000005_9d5b1bb6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000006_5641ef00.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000006_5641ef00.szar new file mode 100644 index 00000000..c13c604e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000006_5641ef00.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000007_5c4f59f5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000007_5c4f59f5.szar new file mode 100644 index 00000000..15137103 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000007_5c4f59f5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000008_c77b903d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000008_c77b903d.szar new file mode 100644 index 00000000..b59a0577 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/archive/delta_00000000000000000008_c77b903d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000001_e9fe6794.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000001_e9fe6794.szcp new file mode 100644 index 00000000..f15d4113 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000001_e9fe6794.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000002_45a63913.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000002_45a63913.szcp new file mode 100644 index 00000000..3ea633ec Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000002_45a63913.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000003_036524f9.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000003_036524f9.szcp new file mode 100644 index 00000000..a8df9515 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000003_036524f9.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000004_d99e8d3c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000004_d99e8d3c.szcp new file mode 100644 index 00000000..531d20db Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000004_d99e8d3c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000005_c709bb10.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000005_c709bb10.szcp new file mode 100644 index 00000000..bddd815a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000005_c709bb10.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000006_9c61b23f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000006_9c61b23f.szcp new file mode 100644 index 00000000..c3121371 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000006_9c61b23f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000007_b5dbff3e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000007_b5dbff3e.szcp new file mode 100644 index 00000000..7e9197c5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000007_b5dbff3e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000008_2fc3205a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000008_2fc3205a.szcp new file mode 100644 index 00000000..e309ca53 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_017/checkpoints/checkpoint_00000000000000000008_2fc3205a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000001_bc5f3868.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000001_bc5f3868.szar new file mode 100644 index 00000000..31043eaf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000001_bc5f3868.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000002_981e10a7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000002_981e10a7.szar new file mode 100644 index 00000000..f9b33c7c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000002_981e10a7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000003_a79f82c4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000003_a79f82c4.szar new file mode 100644 index 00000000..92f9f9e2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/archive/delta_00000000000000000003_a79f82c4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000001_5103c76b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000001_5103c76b.szcp new file mode 100644 index 00000000..9afc4033 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000001_5103c76b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000002_2ea640b1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000002_2ea640b1.szcp new file mode 100644 index 00000000..a91bbd59 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000002_2ea640b1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000003_7f24e3f9.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000003_7f24e3f9.szcp new file mode 100644 index 00000000..976b837a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_018/checkpoints/checkpoint_00000000000000000003_7f24e3f9.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000001_04048d25.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000001_04048d25.szar new file mode 100644 index 00000000..538a6dd4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000001_04048d25.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000002_21eb6b75.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000002_21eb6b75.szar new file mode 100644 index 00000000..b308d995 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000002_21eb6b75.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000003_bb35984c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000003_bb35984c.szar new file mode 100644 index 00000000..da273120 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000003_bb35984c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000004_2f5ef061.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000004_2f5ef061.szar new file mode 100644 index 00000000..cc9731e5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/archive/delta_00000000000000000004_2f5ef061.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000001_03c2a4cc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000001_03c2a4cc.szcp new file mode 100644 index 00000000..1cf16b55 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000001_03c2a4cc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000002_396e7176.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000002_396e7176.szcp new file mode 100644 index 00000000..bd2b5c46 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000002_396e7176.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000003_b94796e4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000003_b94796e4.szcp new file mode 100644 index 00000000..a4522f7a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000003_b94796e4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000004_7bc071e1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000004_7bc071e1.szcp new file mode 100644 index 00000000..551c34f2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_019/checkpoints/checkpoint_00000000000000000004_7bc071e1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000001_333366ce.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000001_333366ce.szar new file mode 100644 index 00000000..e530c437 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000001_333366ce.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000002_656f560d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000002_656f560d.szar new file mode 100644 index 00000000..78441b11 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000002_656f560d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000003_e35f3f36.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000003_e35f3f36.szar new file mode 100644 index 00000000..f0306560 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000003_e35f3f36.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000004_0b2548be.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000004_0b2548be.szar new file mode 100644 index 00000000..d505d9ca Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000004_0b2548be.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000005_1fe30c2e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000005_1fe30c2e.szar new file mode 100644 index 00000000..4c495474 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000005_1fe30c2e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000006_a500763b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000006_a500763b.szar new file mode 100644 index 00000000..8ded510e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000006_a500763b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000007_a2a04a11.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000007_a2a04a11.szar new file mode 100644 index 00000000..b38d5dce Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000007_a2a04a11.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000008_4fa72bb9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000008_4fa72bb9.szar new file mode 100644 index 00000000..3cbcaa77 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/archive/delta_00000000000000000008_4fa72bb9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000001_3ea25451.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000001_3ea25451.szcp new file mode 100644 index 00000000..12bebeef Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000001_3ea25451.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000002_97716338.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000002_97716338.szcp new file mode 100644 index 00000000..f63c7e1b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000002_97716338.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000003_8c86e479.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000003_8c86e479.szcp new file mode 100644 index 00000000..05834889 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000003_8c86e479.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000004_1c3df5a4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000004_1c3df5a4.szcp new file mode 100644 index 00000000..0d1a2690 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000004_1c3df5a4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000005_cbaaf161.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000005_cbaaf161.szcp new file mode 100644 index 00000000..9baf1f8e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000005_cbaaf161.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000006_acb85f11.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000006_acb85f11.szcp new file mode 100644 index 00000000..d3642f72 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000006_acb85f11.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000007_0405cf97.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000007_0405cf97.szcp new file mode 100644 index 00000000..b70dac50 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000007_0405cf97.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000008_3a25a149.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000008_3a25a149.szcp new file mode 100644 index 00000000..08b2e42c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_020/checkpoints/checkpoint_00000000000000000008_3a25a149.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000001_e1f0cc0a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000001_e1f0cc0a.szar new file mode 100644 index 00000000..32a9c4e9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000001_e1f0cc0a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000002_187b5b4f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000002_187b5b4f.szar new file mode 100644 index 00000000..d3632149 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000002_187b5b4f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000003_9796328c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000003_9796328c.szar new file mode 100644 index 00000000..07aa4e40 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000003_9796328c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000004_5076243b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000004_5076243b.szar new file mode 100644 index 00000000..10f39618 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000004_5076243b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000005_1891ecd5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000005_1891ecd5.szar new file mode 100644 index 00000000..c50525d8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/archive/delta_00000000000000000005_1891ecd5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000001_fefc5d2d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000001_fefc5d2d.szcp new file mode 100644 index 00000000..85d1470f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000001_fefc5d2d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000002_75e4f57b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000002_75e4f57b.szcp new file mode 100644 index 00000000..d04aba62 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000002_75e4f57b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000003_59fda4a9.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000003_59fda4a9.szcp new file mode 100644 index 00000000..54deb065 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000003_59fda4a9.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000004_30f95400.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000004_30f95400.szcp new file mode 100644 index 00000000..062bb625 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000004_30f95400.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000005_c6a1b6f0.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000005_c6a1b6f0.szcp new file mode 100644 index 00000000..5d994d2e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_021/checkpoints/checkpoint_00000000000000000005_c6a1b6f0.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000001_4bd092ba.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000001_4bd092ba.szar new file mode 100644 index 00000000..586fb4c8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000001_4bd092ba.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000002_69485801.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000002_69485801.szar new file mode 100644 index 00000000..a31e6298 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000002_69485801.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000003_b02168e8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000003_b02168e8.szar new file mode 100644 index 00000000..74c6e7f4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000003_b02168e8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000004_aecfb91c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000004_aecfb91c.szar new file mode 100644 index 00000000..abb4355e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/archive/delta_00000000000000000004_aecfb91c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000001_ed9d6f62.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000001_ed9d6f62.szcp new file mode 100644 index 00000000..26d09d15 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000001_ed9d6f62.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000002_e549a4df.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000002_e549a4df.szcp new file mode 100644 index 00000000..0d635e01 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000002_e549a4df.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000003_75305c4b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000003_75305c4b.szcp new file mode 100644 index 00000000..96c26847 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000003_75305c4b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000004_f006cc67.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000004_f006cc67.szcp new file mode 100644 index 00000000..29bdf4ab Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_022/checkpoints/checkpoint_00000000000000000004_f006cc67.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000001_6c4e76dd.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000001_6c4e76dd.szar new file mode 100644 index 00000000..0cfa6597 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000001_6c4e76dd.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000002_a4c019f8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000002_a4c019f8.szar new file mode 100644 index 00000000..34fddaff Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000002_a4c019f8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000003_1c2ad08d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000003_1c2ad08d.szar new file mode 100644 index 00000000..aa1e9c92 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000003_1c2ad08d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000004_a9f423cc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000004_a9f423cc.szar new file mode 100644 index 00000000..1a58196b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/archive/delta_00000000000000000004_a9f423cc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000001_58b0b62b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000001_58b0b62b.szcp new file mode 100644 index 00000000..32ea704b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000001_58b0b62b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000002_45c757ca.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000002_45c757ca.szcp new file mode 100644 index 00000000..d6248b31 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000002_45c757ca.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000003_c383bf74.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000003_c383bf74.szcp new file mode 100644 index 00000000..0e22807b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000003_c383bf74.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000004_b0943e63.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000004_b0943e63.szcp new file mode 100644 index 00000000..1df4d177 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_023/checkpoints/checkpoint_00000000000000000004_b0943e63.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000001_105e4281.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000001_105e4281.szar new file mode 100644 index 00000000..c3ef9155 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000001_105e4281.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000002_4ad1b701.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000002_4ad1b701.szar new file mode 100644 index 00000000..4f15aaea Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000002_4ad1b701.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000003_6855ce33.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000003_6855ce33.szar new file mode 100644 index 00000000..7796c4e4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/archive/delta_00000000000000000003_6855ce33.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000001_e13c796c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000001_e13c796c.szcp new file mode 100644 index 00000000..b05a2c3a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000001_e13c796c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000002_685b586b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000002_685b586b.szcp new file mode 100644 index 00000000..a6aefc24 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000002_685b586b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000003_61d8b62d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000003_61d8b62d.szcp new file mode 100644 index 00000000..7eb219d4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_024/checkpoints/checkpoint_00000000000000000003_61d8b62d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000001_ca78aa4e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000001_ca78aa4e.szar new file mode 100644 index 00000000..ee058239 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000001_ca78aa4e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000002_da355d0f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000002_da355d0f.szar new file mode 100644 index 00000000..4b52320b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000002_da355d0f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000003_5924b818.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000003_5924b818.szar new file mode 100644 index 00000000..45b56c50 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000003_5924b818.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000004_7aa337c0.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000004_7aa337c0.szar new file mode 100644 index 00000000..ffdca55c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000004_7aa337c0.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000005_e9777d78.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000005_e9777d78.szar new file mode 100644 index 00000000..acd4b7c6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/archive/delta_00000000000000000005_e9777d78.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000001_56ab2aef.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000001_56ab2aef.szcp new file mode 100644 index 00000000..b938235d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000001_56ab2aef.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000002_b19c04e8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000002_b19c04e8.szcp new file mode 100644 index 00000000..0578c3b5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000002_b19c04e8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000003_598cffe6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000003_598cffe6.szcp new file mode 100644 index 00000000..b2bd5840 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000003_598cffe6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000004_0ad9a453.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000004_0ad9a453.szcp new file mode 100644 index 00000000..dc2f54d2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000004_0ad9a453.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000005_6fe84c3e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000005_6fe84c3e.szcp new file mode 100644 index 00000000..4a2a2714 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_025/checkpoints/checkpoint_00000000000000000005_6fe84c3e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000001_4ebdacd3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000001_4ebdacd3.szar new file mode 100644 index 00000000..a5e15b48 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000001_4ebdacd3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000002_af5b1996.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000002_af5b1996.szar new file mode 100644 index 00000000..62347082 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000002_af5b1996.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000003_ffa396b2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000003_ffa396b2.szar new file mode 100644 index 00000000..d55aadbe Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000003_ffa396b2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000004_559cd86e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000004_559cd86e.szar new file mode 100644 index 00000000..c0979592 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000004_559cd86e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000005_258a7001.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000005_258a7001.szar new file mode 100644 index 00000000..2813a24e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/archive/delta_00000000000000000005_258a7001.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000001_769a87bd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000001_769a87bd.szcp new file mode 100644 index 00000000..d0d2a239 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000001_769a87bd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000002_2ccb9f96.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000002_2ccb9f96.szcp new file mode 100644 index 00000000..0cd5a07e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000002_2ccb9f96.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000003_abb336b2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000003_abb336b2.szcp new file mode 100644 index 00000000..92fd0f9d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000003_abb336b2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000004_9b4b9b6b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000004_9b4b9b6b.szcp new file mode 100644 index 00000000..2fa6672f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000004_9b4b9b6b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000005_16fa9be3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000005_16fa9be3.szcp new file mode 100644 index 00000000..3017fef7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_026/checkpoints/checkpoint_00000000000000000005_16fa9be3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000001_470e1c91.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000001_470e1c91.szar new file mode 100644 index 00000000..26fc5a1f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000001_470e1c91.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000002_3ced72c7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000002_3ced72c7.szar new file mode 100644 index 00000000..eced6c87 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000002_3ced72c7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000003_6daef72d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000003_6daef72d.szar new file mode 100644 index 00000000..183855bd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000003_6daef72d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000004_a26dcd31.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000004_a26dcd31.szar new file mode 100644 index 00000000..78543396 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/archive/delta_00000000000000000004_a26dcd31.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000001_4817c7ea.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000001_4817c7ea.szcp new file mode 100644 index 00000000..6bf698cf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000001_4817c7ea.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000002_266a9da8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000002_266a9da8.szcp new file mode 100644 index 00000000..453efe53 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000002_266a9da8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000003_75f9a371.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000003_75f9a371.szcp new file mode 100644 index 00000000..77ea3646 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000003_75f9a371.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000004_752e32d6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000004_752e32d6.szcp new file mode 100644 index 00000000..46a4bb8c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_027/checkpoints/checkpoint_00000000000000000004_752e32d6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000001_38b01b80.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000001_38b01b80.szar new file mode 100644 index 00000000..fabd08db Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000001_38b01b80.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000002_8d0b31a6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000002_8d0b31a6.szar new file mode 100644 index 00000000..b909ff07 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000002_8d0b31a6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000003_ed707135.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000003_ed707135.szar new file mode 100644 index 00000000..231fa333 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000003_ed707135.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000004_a21b8e47.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000004_a21b8e47.szar new file mode 100644 index 00000000..b9b67772 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/archive/delta_00000000000000000004_a21b8e47.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000001_5674065d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000001_5674065d.szcp new file mode 100644 index 00000000..bc01845b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000001_5674065d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000002_07de2d17.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000002_07de2d17.szcp new file mode 100644 index 00000000..69499c9e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000002_07de2d17.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000003_ec2b0d76.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000003_ec2b0d76.szcp new file mode 100644 index 00000000..9bb6d76c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000003_ec2b0d76.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000004_5002df5f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000004_5002df5f.szcp new file mode 100644 index 00000000..c36b5350 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_028/checkpoints/checkpoint_00000000000000000004_5002df5f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000001_74d7db16.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000001_74d7db16.szar new file mode 100644 index 00000000..6cb276a4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000001_74d7db16.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000002_d9d14a96.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000002_d9d14a96.szar new file mode 100644 index 00000000..081f65a3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000002_d9d14a96.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000003_c7071b5b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000003_c7071b5b.szar new file mode 100644 index 00000000..f361c220 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/archive/delta_00000000000000000003_c7071b5b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000001_bc38d893.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000001_bc38d893.szcp new file mode 100644 index 00000000..e1ae1b9a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000001_bc38d893.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000002_8996a90a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000002_8996a90a.szcp new file mode 100644 index 00000000..71dd80e4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000002_8996a90a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000003_fc0018ee.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000003_fc0018ee.szcp new file mode 100644 index 00000000..ac62be5d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_029/checkpoints/checkpoint_00000000000000000003_fc0018ee.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000001_40cbdf7f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000001_40cbdf7f.szar new file mode 100644 index 00000000..2c093d74 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000001_40cbdf7f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000002_65c31aa3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000002_65c31aa3.szar new file mode 100644 index 00000000..721b7f95 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000002_65c31aa3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000003_0b89aff8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000003_0b89aff8.szar new file mode 100644 index 00000000..37e97d86 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000003_0b89aff8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000004_8e6f444b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000004_8e6f444b.szar new file mode 100644 index 00000000..5d303fad Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000004_8e6f444b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000005_347ade5e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000005_347ade5e.szar new file mode 100644 index 00000000..0ec95a84 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000005_347ade5e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000006_0530e4f4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000006_0530e4f4.szar new file mode 100644 index 00000000..a2494c15 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/archive/delta_00000000000000000006_0530e4f4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000001_470da4dc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000001_470da4dc.szcp new file mode 100644 index 00000000..87d7e0e2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000001_470da4dc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000002_d8287461.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000002_d8287461.szcp new file mode 100644 index 00000000..2fabda80 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000002_d8287461.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000003_3b23e69f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000003_3b23e69f.szcp new file mode 100644 index 00000000..db8630ac Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000003_3b23e69f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000004_d9b13a80.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000004_d9b13a80.szcp new file mode 100644 index 00000000..610fb083 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000004_d9b13a80.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000005_d725a2df.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000005_d725a2df.szcp new file mode 100644 index 00000000..14f8e46e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000005_d725a2df.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000006_04f58078.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000006_04f58078.szcp new file mode 100644 index 00000000..4afd6e2f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_030/checkpoints/checkpoint_00000000000000000006_04f58078.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000001_933dd62f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000001_933dd62f.szar new file mode 100644 index 00000000..8781961f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000001_933dd62f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000002_87be6d57.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000002_87be6d57.szar new file mode 100644 index 00000000..c2ea4a14 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000002_87be6d57.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000003_a2f5ad0d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000003_a2f5ad0d.szar new file mode 100644 index 00000000..8e7b45ce Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000003_a2f5ad0d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000004_cc9502f6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000004_cc9502f6.szar new file mode 100644 index 00000000..a38cfe88 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000004_cc9502f6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000005_504ff7f1.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000005_504ff7f1.szar new file mode 100644 index 00000000..4aa4ca57 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000005_504ff7f1.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000006_e7a29f84.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000006_e7a29f84.szar new file mode 100644 index 00000000..d203249e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000006_e7a29f84.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000007_7f3e6d90.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000007_7f3e6d90.szar new file mode 100644 index 00000000..89853eb2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/archive/delta_00000000000000000007_7f3e6d90.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000001_ce8c328e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000001_ce8c328e.szcp new file mode 100644 index 00000000..dfece436 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000001_ce8c328e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000002_7cf69627.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000002_7cf69627.szcp new file mode 100644 index 00000000..829638b5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000002_7cf69627.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000003_c91697a2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000003_c91697a2.szcp new file mode 100644 index 00000000..43989ba9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000003_c91697a2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000004_c23f2073.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000004_c23f2073.szcp new file mode 100644 index 00000000..43e747cf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000004_c23f2073.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000005_09d26b91.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000005_09d26b91.szcp new file mode 100644 index 00000000..a8023e1a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000005_09d26b91.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000006_3b2d9563.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000006_3b2d9563.szcp new file mode 100644 index 00000000..b1bf7c6a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000006_3b2d9563.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000007_1217da96.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000007_1217da96.szcp new file mode 100644 index 00000000..e2c0afb8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_031/checkpoints/checkpoint_00000000000000000007_1217da96.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000001_9ba54738.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000001_9ba54738.szar new file mode 100644 index 00000000..cbdc3d5e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000001_9ba54738.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000002_670d87e1.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000002_670d87e1.szar new file mode 100644 index 00000000..c5d0543c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000002_670d87e1.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000003_c0834084.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000003_c0834084.szar new file mode 100644 index 00000000..ffcafa8c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000003_c0834084.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000004_c3524a20.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000004_c3524a20.szar new file mode 100644 index 00000000..149e441a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000004_c3524a20.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000005_26af79d4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000005_26af79d4.szar new file mode 100644 index 00000000..2ea098ee Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000005_26af79d4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000006_27cfb7b7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000006_27cfb7b7.szar new file mode 100644 index 00000000..26f63bb7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/archive/delta_00000000000000000006_27cfb7b7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000001_cad4c154.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000001_cad4c154.szcp new file mode 100644 index 00000000..db998673 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000001_cad4c154.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000002_14c2283c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000002_14c2283c.szcp new file mode 100644 index 00000000..b77ee829 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000002_14c2283c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000003_a0e73bc8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000003_a0e73bc8.szcp new file mode 100644 index 00000000..1ac948b3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000003_a0e73bc8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000004_6f88eb2d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000004_6f88eb2d.szcp new file mode 100644 index 00000000..30560417 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000004_6f88eb2d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000005_9fc1fccf.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000005_9fc1fccf.szcp new file mode 100644 index 00000000..e8610c13 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000005_9fc1fccf.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000006_89e0312e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000006_89e0312e.szcp new file mode 100644 index 00000000..1e31aadf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_032/checkpoints/checkpoint_00000000000000000006_89e0312e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000001_9abe03ae.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000001_9abe03ae.szar new file mode 100644 index 00000000..02f91c37 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000001_9abe03ae.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000002_68ec558e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000002_68ec558e.szar new file mode 100644 index 00000000..b437018e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000002_68ec558e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000003_b9eb4db9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000003_b9eb4db9.szar new file mode 100644 index 00000000..20b6cb54 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000003_b9eb4db9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000004_2fac92cd.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000004_2fac92cd.szar new file mode 100644 index 00000000..a989dd81 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000004_2fac92cd.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000005_a6ed0fe7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000005_a6ed0fe7.szar new file mode 100644 index 00000000..4c593cf2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000005_a6ed0fe7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000006_1d9eed99.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000006_1d9eed99.szar new file mode 100644 index 00000000..c6b8567d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000006_1d9eed99.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000007_b0d37b3d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000007_b0d37b3d.szar new file mode 100644 index 00000000..f82a4af2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/archive/delta_00000000000000000007_b0d37b3d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000001_b9c5522e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000001_b9c5522e.szcp new file mode 100644 index 00000000..92709478 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000001_b9c5522e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000002_d1af98cb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000002_d1af98cb.szcp new file mode 100644 index 00000000..2d8d22ba Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000002_d1af98cb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000003_3e356002.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000003_3e356002.szcp new file mode 100644 index 00000000..dc3c7b65 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000003_3e356002.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000004_b61e808f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000004_b61e808f.szcp new file mode 100644 index 00000000..6cf5c0df Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000004_b61e808f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000005_05e80f22.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000005_05e80f22.szcp new file mode 100644 index 00000000..11aac5c7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000005_05e80f22.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000006_7c5c8228.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000006_7c5c8228.szcp new file mode 100644 index 00000000..48a313ca Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000006_7c5c8228.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000007_59315260.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000007_59315260.szcp new file mode 100644 index 00000000..e7c7ddb0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_033/checkpoints/checkpoint_00000000000000000007_59315260.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000001_ee129482.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000001_ee129482.szar new file mode 100644 index 00000000..a2a02259 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000001_ee129482.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000002_7832287a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000002_7832287a.szar new file mode 100644 index 00000000..46c94e03 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000002_7832287a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000003_feadc28e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000003_feadc28e.szar new file mode 100644 index 00000000..87d6c82f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000003_feadc28e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000004_1ed3a075.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000004_1ed3a075.szar new file mode 100644 index 00000000..f9f46073 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/archive/delta_00000000000000000004_1ed3a075.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000001_746a1e15.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000001_746a1e15.szcp new file mode 100644 index 00000000..932c7ecf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000001_746a1e15.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000002_27872cb1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000002_27872cb1.szcp new file mode 100644 index 00000000..5b3f8697 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000002_27872cb1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000003_ad644683.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000003_ad644683.szcp new file mode 100644 index 00000000..acb31cb3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000003_ad644683.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000004_5a479596.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000004_5a479596.szcp new file mode 100644 index 00000000..5397755e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_034/checkpoints/checkpoint_00000000000000000004_5a479596.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000001_93d8cb3e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000001_93d8cb3e.szar new file mode 100644 index 00000000..3d6a8cf6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000001_93d8cb3e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000002_982ea904.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000002_982ea904.szar new file mode 100644 index 00000000..cc34c025 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000002_982ea904.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000003_822f992c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000003_822f992c.szar new file mode 100644 index 00000000..000e9083 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000003_822f992c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000004_3cc3e0e8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000004_3cc3e0e8.szar new file mode 100644 index 00000000..51ce949e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/archive/delta_00000000000000000004_3cc3e0e8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000001_27a1fd36.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000001_27a1fd36.szcp new file mode 100644 index 00000000..6bdef810 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000001_27a1fd36.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000002_c2a15360.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000002_c2a15360.szcp new file mode 100644 index 00000000..b3d247e0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000002_c2a15360.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000003_c7265c66.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000003_c7265c66.szcp new file mode 100644 index 00000000..431e7a11 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000003_c7265c66.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000004_1e2eec89.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000004_1e2eec89.szcp new file mode 100644 index 00000000..13fe1d68 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_035/checkpoints/checkpoint_00000000000000000004_1e2eec89.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000001_bbcf9a6a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000001_bbcf9a6a.szar new file mode 100644 index 00000000..9f5bf500 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000001_bbcf9a6a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000002_32b2912d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000002_32b2912d.szar new file mode 100644 index 00000000..01643ebb Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000002_32b2912d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000003_d4e052c3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000003_d4e052c3.szar new file mode 100644 index 00000000..4e9d1c34 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000003_d4e052c3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000004_9e36c598.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000004_9e36c598.szar new file mode 100644 index 00000000..b3296475 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/archive/delta_00000000000000000004_9e36c598.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000001_0103afd6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000001_0103afd6.szcp new file mode 100644 index 00000000..3765d427 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000001_0103afd6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000002_b4d59158.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000002_b4d59158.szcp new file mode 100644 index 00000000..4d607db6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000002_b4d59158.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000003_24007757.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000003_24007757.szcp new file mode 100644 index 00000000..56cd1fd7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000003_24007757.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000004_33ca2fbd.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000004_33ca2fbd.szcp new file mode 100644 index 00000000..202fd110 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_036/checkpoints/checkpoint_00000000000000000004_33ca2fbd.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000001_b0b8f9db.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000001_b0b8f9db.szar new file mode 100644 index 00000000..8674bcdc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000001_b0b8f9db.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000002_9e9ba935.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000002_9e9ba935.szar new file mode 100644 index 00000000..1a99b890 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000002_9e9ba935.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000003_4646620e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000003_4646620e.szar new file mode 100644 index 00000000..7b2b6a1e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000003_4646620e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000004_a721c9d2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000004_a721c9d2.szar new file mode 100644 index 00000000..4bef6b01 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/archive/delta_00000000000000000004_a721c9d2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000001_035f2a70.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000001_035f2a70.szcp new file mode 100644 index 00000000..a7b1e264 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000001_035f2a70.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000002_e3784891.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000002_e3784891.szcp new file mode 100644 index 00000000..b2f73fca Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000002_e3784891.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000003_d2fb83c2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000003_d2fb83c2.szcp new file mode 100644 index 00000000..fd9eebe2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000003_d2fb83c2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000004_46dc2b4f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000004_46dc2b4f.szcp new file mode 100644 index 00000000..a7cfa0bd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_037/checkpoints/checkpoint_00000000000000000004_46dc2b4f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000001_72a25778.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000001_72a25778.szar new file mode 100644 index 00000000..9ad6a786 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000001_72a25778.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000002_f28d66c8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000002_f28d66c8.szar new file mode 100644 index 00000000..8720ab3a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000002_f28d66c8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000003_d7f03496.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000003_d7f03496.szar new file mode 100644 index 00000000..bc0d2fcd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000003_d7f03496.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000004_498cc0fc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000004_498cc0fc.szar new file mode 100644 index 00000000..29295628 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000004_498cc0fc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000005_c63d47ce.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000005_c63d47ce.szar new file mode 100644 index 00000000..cf8d3626 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/archive/delta_00000000000000000005_c63d47ce.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000001_1f1b43c3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000001_1f1b43c3.szcp new file mode 100644 index 00000000..0f90c883 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000001_1f1b43c3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000002_16a2128e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000002_16a2128e.szcp new file mode 100644 index 00000000..02edb47c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000002_16a2128e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000003_6e42975f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000003_6e42975f.szcp new file mode 100644 index 00000000..f91ce648 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000003_6e42975f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000004_3be742eb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000004_3be742eb.szcp new file mode 100644 index 00000000..ddba198f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000004_3be742eb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000005_5b6da687.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000005_5b6da687.szcp new file mode 100644 index 00000000..586b0a00 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_038/checkpoints/checkpoint_00000000000000000005_5b6da687.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000001_4ddc6c1c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000001_4ddc6c1c.szar new file mode 100644 index 00000000..a12b0ffe Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000001_4ddc6c1c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000002_47f190cc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000002_47f190cc.szar new file mode 100644 index 00000000..26dcecba Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000002_47f190cc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000003_13be0037.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000003_13be0037.szar new file mode 100644 index 00000000..8172a490 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000003_13be0037.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000004_2fba65e4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000004_2fba65e4.szar new file mode 100644 index 00000000..fe644090 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000004_2fba65e4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000005_8db93503.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000005_8db93503.szar new file mode 100644 index 00000000..ec19c1d4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/archive/delta_00000000000000000005_8db93503.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000001_42c9710f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000001_42c9710f.szcp new file mode 100644 index 00000000..dcbc5fc9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000001_42c9710f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000002_535de5c6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000002_535de5c6.szcp new file mode 100644 index 00000000..e042f292 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000002_535de5c6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000003_b8cc45bb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000003_b8cc45bb.szcp new file mode 100644 index 00000000..0c0b12f0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000003_b8cc45bb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000004_a3154844.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000004_a3154844.szcp new file mode 100644 index 00000000..4191c158 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000004_a3154844.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000005_14a6d101.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000005_14a6d101.szcp new file mode 100644 index 00000000..74f2d81d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_039/checkpoints/checkpoint_00000000000000000005_14a6d101.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000001_dde32c16.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000001_dde32c16.szar new file mode 100644 index 00000000..f0b82ce1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000001_dde32c16.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000002_1ecd4838.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000002_1ecd4838.szar new file mode 100644 index 00000000..c39300f2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000002_1ecd4838.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000003_e5989af3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000003_e5989af3.szar new file mode 100644 index 00000000..46ed38d8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000003_e5989af3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000004_7681e1ee.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000004_7681e1ee.szar new file mode 100644 index 00000000..f5b8c869 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000004_7681e1ee.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000005_ed08124f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000005_ed08124f.szar new file mode 100644 index 00000000..0d306709 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/archive/delta_00000000000000000005_ed08124f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000001_9680579d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000001_9680579d.szcp new file mode 100644 index 00000000..c64f3efb Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000001_9680579d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000002_987808c5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000002_987808c5.szcp new file mode 100644 index 00000000..69bf9e83 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000002_987808c5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000003_78af8813.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000003_78af8813.szcp new file mode 100644 index 00000000..2ab287e6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000003_78af8813.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000004_c114909f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000004_c114909f.szcp new file mode 100644 index 00000000..64dda214 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000004_c114909f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000005_159349b5.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000005_159349b5.szcp new file mode 100644 index 00000000..02cf4739 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_040/checkpoints/checkpoint_00000000000000000005_159349b5.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000001_32abe705.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000001_32abe705.szar new file mode 100644 index 00000000..63542b02 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000001_32abe705.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000002_45ce0512.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000002_45ce0512.szar new file mode 100644 index 00000000..74204fe3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000002_45ce0512.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000003_2b44ac9f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000003_2b44ac9f.szar new file mode 100644 index 00000000..0e5e24d5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000003_2b44ac9f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000004_e496298d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000004_e496298d.szar new file mode 100644 index 00000000..2e43a550 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000004_e496298d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000005_130dc9e7.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000005_130dc9e7.szar new file mode 100644 index 00000000..d10c70f1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/archive/delta_00000000000000000005_130dc9e7.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000001_f7f8acb4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000001_f7f8acb4.szcp new file mode 100644 index 00000000..8dc2d7f6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000001_f7f8acb4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000002_8ac1004c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000002_8ac1004c.szcp new file mode 100644 index 00000000..b9f09a87 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000002_8ac1004c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000003_3791f674.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000003_3791f674.szcp new file mode 100644 index 00000000..fc57ee68 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000003_3791f674.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000004_325e4da3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000004_325e4da3.szcp new file mode 100644 index 00000000..cca93ccd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000004_325e4da3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000005_0cba651b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000005_0cba651b.szcp new file mode 100644 index 00000000..e98419c2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_041/checkpoints/checkpoint_00000000000000000005_0cba651b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000001_7dc64ef2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000001_7dc64ef2.szar new file mode 100644 index 00000000..f8d4ea08 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000001_7dc64ef2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000002_83da210c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000002_83da210c.szar new file mode 100644 index 00000000..24dddf6a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000002_83da210c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000003_8871316c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000003_8871316c.szar new file mode 100644 index 00000000..b8e99678 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000003_8871316c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000004_a2b59088.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000004_a2b59088.szar new file mode 100644 index 00000000..6fd6b62e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000004_a2b59088.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000005_dde554e2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000005_dde554e2.szar new file mode 100644 index 00000000..e952ff11 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000005_dde554e2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000006_5e44fe81.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000006_5e44fe81.szar new file mode 100644 index 00000000..04d5992b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000006_5e44fe81.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000007_b949c100.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000007_b949c100.szar new file mode 100644 index 00000000..8866c464 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000007_b949c100.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000008_72529151.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000008_72529151.szar new file mode 100644 index 00000000..5fa4a874 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000008_72529151.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000009_129f8e58.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000009_129f8e58.szar new file mode 100644 index 00000000..9f4300e1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000009_129f8e58.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000010_07374077.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000010_07374077.szar new file mode 100644 index 00000000..4461e12c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000010_07374077.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000011_45191d99.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000011_45191d99.szar new file mode 100644 index 00000000..4e3bee4d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000011_45191d99.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000012_057c76c1.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000012_057c76c1.szar new file mode 100644 index 00000000..a34f4226 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000012_057c76c1.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000013_7952a89c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000013_7952a89c.szar new file mode 100644 index 00000000..c6568f42 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/archive/delta_00000000000000000013_7952a89c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000001_ef60d062.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000001_ef60d062.szcp new file mode 100644 index 00000000..81919308 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000001_ef60d062.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000002_0f74923b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000002_0f74923b.szcp new file mode 100644 index 00000000..728bc3e8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000002_0f74923b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000003_1e1f2eee.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000003_1e1f2eee.szcp new file mode 100644 index 00000000..16a5926c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000003_1e1f2eee.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000004_7713f7d3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000004_7713f7d3.szcp new file mode 100644 index 00000000..8e6ec784 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000004_7713f7d3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000005_5eb6b0cc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000005_5eb6b0cc.szcp new file mode 100644 index 00000000..ddbb0709 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000005_5eb6b0cc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000006_55ee4107.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000006_55ee4107.szcp new file mode 100644 index 00000000..3ad99e0b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000006_55ee4107.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000007_3c9cfa95.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000007_3c9cfa95.szcp new file mode 100644 index 00000000..4adfbba4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000007_3c9cfa95.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000008_9ee27973.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000008_9ee27973.szcp new file mode 100644 index 00000000..4e671267 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000008_9ee27973.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000009_7ba74dfa.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000009_7ba74dfa.szcp new file mode 100644 index 00000000..94ce75af Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000009_7ba74dfa.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000010_55d30785.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000010_55d30785.szcp new file mode 100644 index 00000000..171ddec2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000010_55d30785.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000011_88230603.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000011_88230603.szcp new file mode 100644 index 00000000..0fa3aadc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000011_88230603.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000012_cb06a2fa.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000012_cb06a2fa.szcp new file mode 100644 index 00000000..22a72af0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000012_cb06a2fa.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000013_c566ebf3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000013_c566ebf3.szcp new file mode 100644 index 00000000..4c0796dc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_042/checkpoints/checkpoint_00000000000000000013_c566ebf3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000001_736f669c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000001_736f669c.szar new file mode 100644 index 00000000..1b567f3d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000001_736f669c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000002_eae58d35.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000002_eae58d35.szar new file mode 100644 index 00000000..1c45961b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000002_eae58d35.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000003_067ce6f6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000003_067ce6f6.szar new file mode 100644 index 00000000..1d119567 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000003_067ce6f6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000004_42584d3a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000004_42584d3a.szar new file mode 100644 index 00000000..40c7369d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/archive/delta_00000000000000000004_42584d3a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000001_f8dc442f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000001_f8dc442f.szcp new file mode 100644 index 00000000..2a648961 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000001_f8dc442f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000002_deaf8079.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000002_deaf8079.szcp new file mode 100644 index 00000000..055ae1ac Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000002_deaf8079.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000003_64d5e00f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000003_64d5e00f.szcp new file mode 100644 index 00000000..c17bd89f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000003_64d5e00f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000004_5a589dd6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000004_5a589dd6.szcp new file mode 100644 index 00000000..045a5e78 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_043/checkpoints/checkpoint_00000000000000000004_5a589dd6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000001_14f086cc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000001_14f086cc.szar new file mode 100644 index 00000000..829434a2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000001_14f086cc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000002_a0a406b2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000002_a0a406b2.szar new file mode 100644 index 00000000..bf1606c5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000002_a0a406b2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000003_bf2beb1d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000003_bf2beb1d.szar new file mode 100644 index 00000000..0b62c5be Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000003_bf2beb1d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000004_7d3a641c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000004_7d3a641c.szar new file mode 100644 index 00000000..ff38f7b0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000004_7d3a641c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000005_273d8f6a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000005_273d8f6a.szar new file mode 100644 index 00000000..3c767455 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000005_273d8f6a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000006_ba51f21f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000006_ba51f21f.szar new file mode 100644 index 00000000..184ab9e1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000006_ba51f21f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000007_1a2b79b6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000007_1a2b79b6.szar new file mode 100644 index 00000000..4d7c165e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/archive/delta_00000000000000000007_1a2b79b6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000001_5d22d8fe.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000001_5d22d8fe.szcp new file mode 100644 index 00000000..70dae8a6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000001_5d22d8fe.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000002_8fa7f2ee.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000002_8fa7f2ee.szcp new file mode 100644 index 00000000..52c0234c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000002_8fa7f2ee.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000003_6d785d13.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000003_6d785d13.szcp new file mode 100644 index 00000000..7c40b23f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000003_6d785d13.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000004_85c89553.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000004_85c89553.szcp new file mode 100644 index 00000000..af51880f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000004_85c89553.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000005_fe2abf81.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000005_fe2abf81.szcp new file mode 100644 index 00000000..b96f5ac2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000005_fe2abf81.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000006_8fdd7ddc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000006_8fdd7ddc.szcp new file mode 100644 index 00000000..9326f9f5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000006_8fdd7ddc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000007_f92ae853.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000007_f92ae853.szcp new file mode 100644 index 00000000..34e0e54f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_044/checkpoints/checkpoint_00000000000000000007_f92ae853.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000001_875215d8.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000001_875215d8.szar new file mode 100644 index 00000000..5ef858a3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000001_875215d8.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000002_42a7f846.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000002_42a7f846.szar new file mode 100644 index 00000000..115859b8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000002_42a7f846.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000003_f1a21543.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000003_f1a21543.szar new file mode 100644 index 00000000..89cb6f9e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000003_f1a21543.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000004_d2cad9b5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000004_d2cad9b5.szar new file mode 100644 index 00000000..082524c1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000004_d2cad9b5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000005_c2a760f6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000005_c2a760f6.szar new file mode 100644 index 00000000..86800705 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000005_c2a760f6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000006_e59d52e9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000006_e59d52e9.szar new file mode 100644 index 00000000..f273abad Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/archive/delta_00000000000000000006_e59d52e9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000001_8091dff6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000001_8091dff6.szcp new file mode 100644 index 00000000..ce4368b0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000001_8091dff6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000002_c145f319.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000002_c145f319.szcp new file mode 100644 index 00000000..3694b3c3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000002_c145f319.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000003_9459b745.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000003_9459b745.szcp new file mode 100644 index 00000000..ef500fc7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000003_9459b745.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000004_dbc7b15f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000004_dbc7b15f.szcp new file mode 100644 index 00000000..ec587884 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000004_dbc7b15f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000005_8bab0b90.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000005_8bab0b90.szcp new file mode 100644 index 00000000..05d13160 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000005_8bab0b90.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000006_7f6e9cd4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000006_7f6e9cd4.szcp new file mode 100644 index 00000000..5bdebcf4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_045/checkpoints/checkpoint_00000000000000000006_7f6e9cd4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000001_7c36c62e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000001_7c36c62e.szar new file mode 100644 index 00000000..4aef6530 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000001_7c36c62e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000002_71e5ef5f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000002_71e5ef5f.szar new file mode 100644 index 00000000..63276a5a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000002_71e5ef5f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000003_4e92fde4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000003_4e92fde4.szar new file mode 100644 index 00000000..ed6839f7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000003_4e92fde4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000004_fff64526.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000004_fff64526.szar new file mode 100644 index 00000000..c745882b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000004_fff64526.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000005_85841984.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000005_85841984.szar new file mode 100644 index 00000000..096af1ad Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000005_85841984.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000006_02f65fe1.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000006_02f65fe1.szar new file mode 100644 index 00000000..c39a143b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000006_02f65fe1.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000007_61289bb5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000007_61289bb5.szar new file mode 100644 index 00000000..996fb4e8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/archive/delta_00000000000000000007_61289bb5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000001_506d37cc.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000001_506d37cc.szcp new file mode 100644 index 00000000..788c54f0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000001_506d37cc.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000002_f3589f1d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000002_f3589f1d.szcp new file mode 100644 index 00000000..b9090ae4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000002_f3589f1d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000003_394db7bb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000003_394db7bb.szcp new file mode 100644 index 00000000..7bd6a489 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000003_394db7bb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000004_4663476a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000004_4663476a.szcp new file mode 100644 index 00000000..a0237a2e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000004_4663476a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000005_d410cd00.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000005_d410cd00.szcp new file mode 100644 index 00000000..ab222cca Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000005_d410cd00.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000006_25c582ce.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000006_25c582ce.szcp new file mode 100644 index 00000000..ccca70fd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000006_25c582ce.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000007_7d51743e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000007_7d51743e.szcp new file mode 100644 index 00000000..9cebf0ef Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_046/checkpoints/checkpoint_00000000000000000007_7d51743e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000001_51b5c170.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000001_51b5c170.szar new file mode 100644 index 00000000..d4d69937 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000001_51b5c170.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000002_0d641926.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000002_0d641926.szar new file mode 100644 index 00000000..a16f40f7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000002_0d641926.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000003_4f239362.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000003_4f239362.szar new file mode 100644 index 00000000..8480b86f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000003_4f239362.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000004_4511ee2b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000004_4511ee2b.szar new file mode 100644 index 00000000..da868dc2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/archive/delta_00000000000000000004_4511ee2b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000001_73a19473.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000001_73a19473.szcp new file mode 100644 index 00000000..a5ed8ae6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000001_73a19473.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000002_78103d6d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000002_78103d6d.szcp new file mode 100644 index 00000000..0d57cd3a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000002_78103d6d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000003_99d87206.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000003_99d87206.szcp new file mode 100644 index 00000000..c57fd1b7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000003_99d87206.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000004_d1c87f6f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000004_d1c87f6f.szcp new file mode 100644 index 00000000..6f03ce03 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_047/checkpoints/checkpoint_00000000000000000004_d1c87f6f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000001_49c377fb.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000001_49c377fb.szar new file mode 100644 index 00000000..912aa0fa Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000001_49c377fb.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000002_1dc6eb6a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000002_1dc6eb6a.szar new file mode 100644 index 00000000..b56d00d7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000002_1dc6eb6a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000003_41ec02a2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000003_41ec02a2.szar new file mode 100644 index 00000000..f45fbb09 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000003_41ec02a2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000004_0c8e3256.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000004_0c8e3256.szar new file mode 100644 index 00000000..f8ce0f52 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000004_0c8e3256.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000005_17da6bad.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000005_17da6bad.szar new file mode 100644 index 00000000..4172ec93 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000005_17da6bad.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000006_3ef229db.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000006_3ef229db.szar new file mode 100644 index 00000000..82ba7c28 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000006_3ef229db.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000007_148c2968.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000007_148c2968.szar new file mode 100644 index 00000000..8e532552 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000007_148c2968.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000008_b70f58fe.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000008_b70f58fe.szar new file mode 100644 index 00000000..f3ed50ea Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/archive/delta_00000000000000000008_b70f58fe.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000001_f465b362.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000001_f465b362.szcp new file mode 100644 index 00000000..31749204 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000001_f465b362.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000002_90af9557.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000002_90af9557.szcp new file mode 100644 index 00000000..c934deb8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000002_90af9557.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000003_bc28c1c2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000003_bc28c1c2.szcp new file mode 100644 index 00000000..66ba4b62 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000003_bc28c1c2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000004_3ed51b9e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000004_3ed51b9e.szcp new file mode 100644 index 00000000..81089f98 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000004_3ed51b9e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000005_13bdeac1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000005_13bdeac1.szcp new file mode 100644 index 00000000..89e74cfc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000005_13bdeac1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000006_e5052af2.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000006_e5052af2.szcp new file mode 100644 index 00000000..f3473da4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000006_e5052af2.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000007_59576d0a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000007_59576d0a.szcp new file mode 100644 index 00000000..43944433 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000007_59576d0a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000008_7f2685f4.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000008_7f2685f4.szcp new file mode 100644 index 00000000..d7b09862 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_048/checkpoints/checkpoint_00000000000000000008_7f2685f4.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000001_7b7f5f5c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000001_7b7f5f5c.szar new file mode 100644 index 00000000..fd3b3b4a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000001_7b7f5f5c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000002_07f17976.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000002_07f17976.szar new file mode 100644 index 00000000..473e9da6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000002_07f17976.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000003_d019bede.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000003_d019bede.szar new file mode 100644 index 00000000..43a7e45e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000003_d019bede.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000004_175f1e93.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000004_175f1e93.szar new file mode 100644 index 00000000..55dcfcdd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000004_175f1e93.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000005_ab38b495.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000005_ab38b495.szar new file mode 100644 index 00000000..2d5f937a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000005_ab38b495.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000006_b7a2c972.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000006_b7a2c972.szar new file mode 100644 index 00000000..8d12a261 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/archive/delta_00000000000000000006_b7a2c972.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000001_bb13dd34.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000001_bb13dd34.szcp new file mode 100644 index 00000000..5077a524 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000001_bb13dd34.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000002_747b9235.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000002_747b9235.szcp new file mode 100644 index 00000000..41e22897 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000002_747b9235.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000003_cbfedb70.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000003_cbfedb70.szcp new file mode 100644 index 00000000..17723638 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000003_cbfedb70.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000004_f63ceb57.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000004_f63ceb57.szcp new file mode 100644 index 00000000..d8f69cf8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000004_f63ceb57.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000005_1fa81267.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000005_1fa81267.szcp new file mode 100644 index 00000000..505f3c87 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000005_1fa81267.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000006_d899dee3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000006_d899dee3.szcp new file mode 100644 index 00000000..811a8be2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_049/checkpoints/checkpoint_00000000000000000006_d899dee3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000001_a6156b81.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000001_a6156b81.szar new file mode 100644 index 00000000..192956dd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000001_a6156b81.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000002_dfd03bd2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000002_dfd03bd2.szar new file mode 100644 index 00000000..cb9217ab Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000002_dfd03bd2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000003_9c3bb9f9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000003_9c3bb9f9.szar new file mode 100644 index 00000000..2d05cb82 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000003_9c3bb9f9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000004_d94991e5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000004_d94991e5.szar new file mode 100644 index 00000000..eb98d86c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/archive/delta_00000000000000000004_d94991e5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000001_d2de046a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000001_d2de046a.szcp new file mode 100644 index 00000000..38aec304 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000001_d2de046a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000002_0ef77f78.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000002_0ef77f78.szcp new file mode 100644 index 00000000..b6dc60d5 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000002_0ef77f78.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000003_e9edd81d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000003_e9edd81d.szcp new file mode 100644 index 00000000..46c0df4a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000003_e9edd81d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000004_61e2bbe1.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000004_61e2bbe1.szcp new file mode 100644 index 00000000..0771dcec Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_050/checkpoints/checkpoint_00000000000000000004_61e2bbe1.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000001_a5469248.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000001_a5469248.szar new file mode 100644 index 00000000..2c136c32 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000001_a5469248.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000002_b32f00f3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000002_b32f00f3.szar new file mode 100644 index 00000000..0110e71a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000002_b32f00f3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000003_80d001e6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000003_80d001e6.szar new file mode 100644 index 00000000..16f72a49 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000003_80d001e6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000004_cc7ef6fc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000004_cc7ef6fc.szar new file mode 100644 index 00000000..4baccbdd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/archive/delta_00000000000000000004_cc7ef6fc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000001_d47c583a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000001_d47c583a.szcp new file mode 100644 index 00000000..c44501f6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000001_d47c583a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000002_694528ad.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000002_694528ad.szcp new file mode 100644 index 00000000..fe444ecf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000002_694528ad.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000003_921e5912.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000003_921e5912.szcp new file mode 100644 index 00000000..679ee07f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000003_921e5912.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000004_1ef089c0.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000004_1ef089c0.szcp new file mode 100644 index 00000000..793c010c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_051/checkpoints/checkpoint_00000000000000000004_1ef089c0.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000001_e81d9d33.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000001_e81d9d33.szar new file mode 100644 index 00000000..c3d4c71d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000001_e81d9d33.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000002_97427b7a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000002_97427b7a.szar new file mode 100644 index 00000000..956f8802 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000002_97427b7a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000003_3fdd4368.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000003_3fdd4368.szar new file mode 100644 index 00000000..2f506794 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000003_3fdd4368.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000004_4811b162.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000004_4811b162.szar new file mode 100644 index 00000000..4a6f2138 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000004_4811b162.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000005_282269a3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000005_282269a3.szar new file mode 100644 index 00000000..e30dfcf3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000005_282269a3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000006_0967e4ce.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000006_0967e4ce.szar new file mode 100644 index 00000000..41b7d142 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000006_0967e4ce.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000007_5292178c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000007_5292178c.szar new file mode 100644 index 00000000..29dd4904 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/archive/delta_00000000000000000007_5292178c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000001_be7d9bb7.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000001_be7d9bb7.szcp new file mode 100644 index 00000000..cc464979 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000001_be7d9bb7.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000002_97f9fcff.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000002_97f9fcff.szcp new file mode 100644 index 00000000..0f659c5b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000002_97f9fcff.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000003_e866face.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000003_e866face.szcp new file mode 100644 index 00000000..a7bd090f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000003_e866face.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000004_44f83397.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000004_44f83397.szcp new file mode 100644 index 00000000..6cd4fad4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000004_44f83397.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000005_22cc6333.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000005_22cc6333.szcp new file mode 100644 index 00000000..22525c43 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000005_22cc6333.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000006_1fe838cb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000006_1fe838cb.szcp new file mode 100644 index 00000000..30c37d17 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000006_1fe838cb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000007_923ae93c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000007_923ae93c.szcp new file mode 100644 index 00000000..8538d77e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_052/checkpoints/checkpoint_00000000000000000007_923ae93c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000001_effd3bf4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000001_effd3bf4.szar new file mode 100644 index 00000000..78e1b338 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000001_effd3bf4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000002_aae67ef3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000002_aae67ef3.szar new file mode 100644 index 00000000..8242a72d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000002_aae67ef3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000003_26969d87.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000003_26969d87.szar new file mode 100644 index 00000000..c82ad2a3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000003_26969d87.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000004_9468370a.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000004_9468370a.szar new file mode 100644 index 00000000..2fd13b60 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000004_9468370a.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000005_965d743d.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000005_965d743d.szar new file mode 100644 index 00000000..2243580e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000005_965d743d.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000006_5f75db29.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000006_5f75db29.szar new file mode 100644 index 00000000..5119caec Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000006_5f75db29.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000007_d2c077e9.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000007_d2c077e9.szar new file mode 100644 index 00000000..f6d99856 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/archive/delta_00000000000000000007_d2c077e9.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000001_82782aeb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000001_82782aeb.szcp new file mode 100644 index 00000000..63d06cbf Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000001_82782aeb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000002_b7929430.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000002_b7929430.szcp new file mode 100644 index 00000000..df9846f9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000002_b7929430.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000003_8498ac68.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000003_8498ac68.szcp new file mode 100644 index 00000000..252ea0bd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000003_8498ac68.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000004_a805c7a8.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000004_a805c7a8.szcp new file mode 100644 index 00000000..3f750317 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000004_a805c7a8.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000005_42ba43f7.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000005_42ba43f7.szcp new file mode 100644 index 00000000..bd735ba2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000005_42ba43f7.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000006_0dea775c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000006_0dea775c.szcp new file mode 100644 index 00000000..972fec48 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000006_0dea775c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000007_b3246288.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000007_b3246288.szcp new file mode 100644 index 00000000..65890cb0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_053/checkpoints/checkpoint_00000000000000000007_b3246288.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000001_a306d684.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000001_a306d684.szar new file mode 100644 index 00000000..8fa0b74f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000001_a306d684.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000002_a1661ca3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000002_a1661ca3.szar new file mode 100644 index 00000000..46736679 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000002_a1661ca3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000003_3cfcfab3.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000003_3cfcfab3.szar new file mode 100644 index 00000000..d310cf0d Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000003_3cfcfab3.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000004_8ce0b54f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000004_8ce0b54f.szar new file mode 100644 index 00000000..dc7d60fc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000004_8ce0b54f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000005_0192c59c.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000005_0192c59c.szar new file mode 100644 index 00000000..609e98f4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/archive/delta_00000000000000000005_0192c59c.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000001_488af2a3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000001_488af2a3.szcp new file mode 100644 index 00000000..84a9c8c9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000001_488af2a3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000002_75572791.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000002_75572791.szcp new file mode 100644 index 00000000..f024077f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000002_75572791.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000003_7b47f742.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000003_7b47f742.szcp new file mode 100644 index 00000000..7f0dfca7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000003_7b47f742.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000004_18cec933.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000004_18cec933.szcp new file mode 100644 index 00000000..76f8b197 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000004_18cec933.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000005_962048ad.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000005_962048ad.szcp new file mode 100644 index 00000000..8ed65555 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_054/checkpoints/checkpoint_00000000000000000005_962048ad.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000001_9a0d30d2.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000001_9a0d30d2.szar new file mode 100644 index 00000000..b6ac16a8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000001_9a0d30d2.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000002_8d5bdf37.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000002_8d5bdf37.szar new file mode 100644 index 00000000..60387ad8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000002_8d5bdf37.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000003_ebc45584.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000003_ebc45584.szar new file mode 100644 index 00000000..8abd47dc Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000003_ebc45584.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000004_deef54f5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000004_deef54f5.szar new file mode 100644 index 00000000..bb75e124 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/archive/delta_00000000000000000004_deef54f5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000001_7cc69a2d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000001_7cc69a2d.szcp new file mode 100644 index 00000000..1a93c79a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000001_7cc69a2d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000002_0de78481.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000002_0de78481.szcp new file mode 100644 index 00000000..1d8e824b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000002_0de78481.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000003_4ed89933.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000003_4ed89933.szcp new file mode 100644 index 00000000..d4a72db6 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000003_4ed89933.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000004_8af206e6.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000004_8af206e6.szcp new file mode 100644 index 00000000..e2da4b5c Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_055/checkpoints/checkpoint_00000000000000000004_8af206e6.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000001_55df41be.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000001_55df41be.szar new file mode 100644 index 00000000..9bebaad4 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000001_55df41be.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000002_4124d76e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000002_4124d76e.szar new file mode 100644 index 00000000..cc3f7c8f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000002_4124d76e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000003_b5200e27.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000003_b5200e27.szar new file mode 100644 index 00000000..76b596ed Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000003_b5200e27.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000004_8475934b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000004_8475934b.szar new file mode 100644 index 00000000..35f4eb93 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000004_8475934b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000005_546ba8a6.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000005_546ba8a6.szar new file mode 100644 index 00000000..8e1bc14b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000005_546ba8a6.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000006_6e7fe7f5.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000006_6e7fe7f5.szar new file mode 100644 index 00000000..31b68819 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000006_6e7fe7f5.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000007_a691e155.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000007_a691e155.szar new file mode 100644 index 00000000..28ccd0b8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000007_a691e155.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000008_1b37e9fc.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000008_1b37e9fc.szar new file mode 100644 index 00000000..75121ab7 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000008_1b37e9fc.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000009_abebb87b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000009_abebb87b.szar new file mode 100644 index 00000000..8f81d58b Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000009_abebb87b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000010_e7cee77f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000010_e7cee77f.szar new file mode 100644 index 00000000..57dadad9 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/archive/delta_00000000000000000010_e7cee77f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000001_503eec4a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000001_503eec4a.szcp new file mode 100644 index 00000000..d824e253 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000001_503eec4a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000002_75953713.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000002_75953713.szcp new file mode 100644 index 00000000..1823e505 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000002_75953713.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000003_35c10ab0.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000003_35c10ab0.szcp new file mode 100644 index 00000000..2687f513 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000003_35c10ab0.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000004_113b5add.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000004_113b5add.szcp new file mode 100644 index 00000000..69b7330a Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000004_113b5add.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000005_5b2ef021.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000005_5b2ef021.szcp new file mode 100644 index 00000000..0444d4e3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000005_5b2ef021.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000006_c974efe3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000006_c974efe3.szcp new file mode 100644 index 00000000..16ae0cb1 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000006_c974efe3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000007_3787508b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000007_3787508b.szcp new file mode 100644 index 00000000..fafd5405 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000007_3787508b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000008_587ba37f.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000008_587ba37f.szcp new file mode 100644 index 00000000..c7655f0e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000008_587ba37f.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000009_0d047616.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000009_0d047616.szcp new file mode 100644 index 00000000..6a3c113f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000009_0d047616.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000010_b37f893d.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000010_b37f893d.szcp new file mode 100644 index 00000000..773c00cd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_056/checkpoints/checkpoint_00000000000000000010_b37f893d.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000001_3db857f0.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000001_3db857f0.szar new file mode 100644 index 00000000..1925f949 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000001_3db857f0.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000002_ab36a6cf.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000002_ab36a6cf.szar new file mode 100644 index 00000000..f8753473 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000002_ab36a6cf.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000003_a6cc043b.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000003_a6cc043b.szar new file mode 100644 index 00000000..366d54b3 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000003_a6cc043b.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000004_16df6010.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000004_16df6010.szar new file mode 100644 index 00000000..43cf3223 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000004_16df6010.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000005_465e6eac.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000005_465e6eac.szar new file mode 100644 index 00000000..c32c0a00 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000005_465e6eac.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000006_c39b39e4.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000006_c39b39e4.szar new file mode 100644 index 00000000..86b38df8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000006_c39b39e4.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000007_3012a900.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000007_3012a900.szar new file mode 100644 index 00000000..b27fbb59 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000007_3012a900.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000008_6eeb449f.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000008_6eeb449f.szar new file mode 100644 index 00000000..75dfbefd Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/archive/delta_00000000000000000008_6eeb449f.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000001_fd0f8f3e.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000001_fd0f8f3e.szcp new file mode 100644 index 00000000..addc863e Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000001_fd0f8f3e.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000002_4e557363.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000002_4e557363.szcp new file mode 100644 index 00000000..1edbe106 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000002_4e557363.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000003_b8f15b1c.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000003_b8f15b1c.szcp new file mode 100644 index 00000000..b1f77473 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000003_b8f15b1c.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000004_4102a141.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000004_4102a141.szcp new file mode 100644 index 00000000..30bb0ae0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000004_4102a141.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000005_7dbabd7b.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000005_7dbabd7b.szcp new file mode 100644 index 00000000..d68aa1e8 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000005_7dbabd7b.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000006_ff9f2e74.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000006_ff9f2e74.szcp new file mode 100644 index 00000000..90bf10ca Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000006_ff9f2e74.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000007_c3d9e048.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000007_c3d9e048.szcp new file mode 100644 index 00000000..439db1d2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000007_c3d9e048.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000008_f5dc62fb.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000008_f5dc62fb.szcp new file mode 100644 index 00000000..ecb08545 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_057/checkpoints/checkpoint_00000000000000000008_f5dc62fb.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000001_42f51c7e.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000001_42f51c7e.szar new file mode 100644 index 00000000..4d7b51d0 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000001_42f51c7e.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000002_369093da.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000002_369093da.szar new file mode 100644 index 00000000..5738129f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000002_369093da.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000003_0beb23ef.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000003_0beb23ef.szar new file mode 100644 index 00000000..0e6124b2 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000003_0beb23ef.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000004_91cfdd40.szar b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000004_91cfdd40.szar new file mode 100644 index 00000000..57c73129 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/archive/delta_00000000000000000004_91cfdd40.szar differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000001_d7b536e3.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000001_d7b536e3.szcp new file mode 100644 index 00000000..5fd6f586 Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000001_d7b536e3.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000002_e3e6a883.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000002_e3e6a883.szcp new file mode 100644 index 00000000..b17038ef Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000002_e3e6a883.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000003_7210038a.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000003_7210038a.szcp new file mode 100644 index 00000000..1dbc355f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000003_7210038a.szcp differ diff --git a/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000004_e8213757.szcp b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000004_e8213757.szcp new file mode 100644 index 00000000..812e063f Binary files /dev/null and b/results/search/runs/39968628-bdef-4c6f-9617-c1fcd722ec3a/topology_058/checkpoints/checkpoint_00000000000000000004_e8213757.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/metrics.tsv b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/metrics.tsv new file mode 100644 index 00000000..80c61ae3 --- /dev/null +++ b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/metrics.tsv @@ -0,0 +1,224 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783881058065226600 DEPTH 58 1 0.62348542587702926 0 2 12 2 12 0 0 576 34 2534 23803965 209280 1443.8830108642578 8.6897000000000002 2319.3454000000002 40320 20935 1 0 0.0095430491934861868 1.5827371062351756 4096 2048 384 12 96 360 72 24 0 2534 1920 128 384 1 15196500244 4603884 1 0 5 1 2 2 6 7618560 1474560 2949120 2705071 8985600 199 177 153 150 1855 8 1 3 3 19 0 0 0 0 0 +2 1783881060100096000 DEPTH 58 1 0.61380985317164116 0 2 12 2 12 1 0 577 34 2527 23742718 147840 1254.2740631103516 8.5866000000000007 2033.4408000000001 40320 15440 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 15200936692 9040332 1 0 5 1 2 2 6 7372800 1474560 2949120 2951023 8985600 192 173 164 154 1844 1 0 1 0 32 0 0 0 0 1 +3 1783881062130318200 DEPTH 58 1 0.61419752137558781 0 2 12 2 12 0 0 578 16 2525 23742614 147840 1252.0597229003906 8.5912000000000006 2028.99 47040 19269 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 15205371100 13474740 1 0 4 2 2 2 6 7127040 1720320 2949120 2950917 8985600 198 170 166 156 1835 0 0 0 0 16 0 0 0 0 0 +4 1783881064139264200 DEPTH 58 1 0.61451704931967588 0 2 12 2 12 0 0 579 20 2531 23742642 147840 1250.2492523193359 8.5739000000000001 2007.6538 80640 22176 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 15209811628 17915268 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 188 171 184 180 1808 0 0 0 0 20 0 0 0 0 0 +5 1783881064485719000 REFRESH 58 0 0.61474510603807397 0 2 12 2 12 0 0 581 11 410 3988973 56640 219.86201477050781 1.4362999999999999 345.06049999999999 13440 8223 0 0 0.0095510078464391083 1.5729596896815696 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 15210538052 18641692 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 42 26 34 30 278 0 0 0 0 11 0 0 0 0 0 +6 1783881066508907200 DEPTH 58 1 0.61485367461188312 0 2 12 2 12 0 0 583 28 2525 23742665 147840 1270.7737579345703 8.5808999999999997 2021.8602000000001 80640 40655 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 15214972460 23076100 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 166 150 188 171 1850 1 0 1 2 24 0 0 0 0 0 +7 1783881068543102000 DEPTH 58 1 0.61482893542126449 0 2 12 2 12 0 0 584 27 2529 23735407 140160 1268.12060546875 8.6270000000000007 2032.9851000000001 94080 42532 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 15219410948 27514588 1 0 4 3 2 2 5 5898240 3440640 2949120 2950963 8486400 173 150 192 279 1735 1 0 0 0 26 0 0 0 0 0 +8 1783881070570127400 DEPTH 58 1 0.61466646860744856 0 2 12 2 12 0 0 584 19 2554 23720778 125760 1263.6417236328125 8.5849000000000011 2025.8207 120960 41242 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15223874936 31978576 1 0 4 3 2 2 5 5898240 4423680 2949120 2951001 7488000 169 150 188 1196 851 1 0 0 2 16 0 0 0 0 0 +9 1783881072591299800 DEPTH 58 1 0.61436802078526143 0 2 12 2 12 0 0 588 28 2562 23705476 110400 1258.6721496582031 8.5912000000000006 2019.9553000000001 120960 30650 1 0 0.0095510078464391083 1.5729596896815696 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 15228347084 36450724 1 0 4 3 3 2 4 5898240 4423680 3932160 2950990 6489600 171 150 196 1486 559 3 0 1 4 20 0 0 0 0 0 +10 1783881072941329900 REFRESH 58 0 0.61393929956288418 0 2 12 2 12 0 0 588 8 417 3987998 55680 222.36569213867188 1.4265000000000001 348.56939999999997 20160 12170 0 0 0.0095510078464391083 1.5729596896815696 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15229080648 37184288 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 30 25 35 235 92 0 0 0 2 6 0 0 0 0 0 +11 1783881074986458100 DEPTH 58 1 0.61138845728578206 0 2 12 2 12 1 0 589 19 2532 23698612 103680 1282.36865234375 8.6341000000000001 2043.8041000000001 120960 60168 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 15233522196 41625836 1 0 4 3 3 2 4 5898240 4423680 4423680 2951020 5990400 175 150 185 1039 983 0 0 0 0 19 0 0 0 0 1 +12 1783881077016106100 DEPTH 58 1 0.61097887697993314 0 2 12 2 12 0 0 590 15 2554 23698637 103680 1277.5126953125 8.5831 2028.4286999999999 120960 49311 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15237986184 46089824 1 0 4 3 3 2 4 5898240 4423680 4423680 2950990 5990400 176 150 188 1240 800 0 0 0 0 15 0 0 0 0 0 +13 1783881079050129600 DEPTH 58 1 0.61038773906266575 0 2 12 2 12 0 0 591 19 2555 23680455 84480 1275.2386322021484 8.5769000000000002 2032.7263 120960 39095 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15242451192 50554832 1 0 4 3 3 3 3 5898240 4423680 4423680 4180534 4742400 180 150 174 1432 619 1 0 0 0 18 0 0 0 0 0 +14 1783881081067677200 DEPTH 58 1 0.60968720821861511 0 2 12 2 12 0 0 594 25 2566 23677478 81600 1270.3908996582031 8.5866999999999987 2016.2760000000001 120960 27224 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 15246927420 55031060 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 184 150 167 1573 492 0 0 0 1 24 0 0 0 0 0 +15 1783881081408792900 REFRESH 58 0 0.60888929026987482 0 2 12 2 12 0 0 596 10 422 3987612 55200 223.20848083496094 1.4305000000000001 339.75839999999999 20160 12598 0 0 0.009551019933481706 1.5711427160263036 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15247666084 55769724 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 40 25 42 217 98 0 0 0 1 9 0 0 0 0 0 +16 1783881083457085900 DEPTH 58 1 0.60800544423517067 0 2 12 2 12 0 0 596 18 2546 23677500 81600 1290.8459777832031 8.5831 2047.0071 120960 59794 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 15252121912 60225552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 205 150 214 1167 810 0 0 0 0 18 0 0 0 0 0 +17 1783881085489816900 DEPTH 58 1 0.6070464594496221 0 2 12 2 12 0 0 597 21 2547 23677492 81600 1280.8437042236328 8.583400000000001 2031.5599999999999 120960 48842 1 0 0.009551019933481706 1.5711427160263036 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15256578760 64682400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 205 150 205 1228 759 0 0 0 1 20 0 0 0 0 0 +18 1783881088654947400 DEPTH 58 1 0.60602238816756149 0 2 12 2 12 1 0 601 38 2552 23677487 81600 1279.7796783447266 9.6141000000000005 3106.2100999999998 120960 38901 1 0 0.0054410432326161412 1.5386288325994226 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 15261040788 2035856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426359 4492800 199 150 212 1305 686 5 0 0 0 33 0 0 0 0 1 +19 1783881090710092700 DEPTH 58 1 0.60502857660714748 0 2 12 1 12 1 0 603 20 2557 23677591 81600 1280.6262817382812 8.5838000000000001 2053.8647999999998 114240 26303 1 0 0.20575548072559491 1.6075784084425973 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15265507836 6502904 1 0 4 2 6 1 3 5898240 4177920 5160960 3934627 4492800 202 150 218 1404 583 3 0 1 0 16 0 0 1 0 0 +20 1783881091059634400 REFRESH 58 0 0.70389281969006046 0 1 12 1 12 1 0 603 11 421 3987449 55200 221.76666259765625 1.4317 348.14359999999999 13440 8155 0 0 0.20603918814107183 1.6054415924919172 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15266245480 7240548 1 0 4 2 6 1 3 983040 491520 1474560 245827 748800 59 25 27 219 91 3 0 0 0 8 0 0 0 0 1 +21 1783881093128327500 DEPTH 58 1 0.69272067046083841 0 1 12 1 12 1 0 604 31 2553 23675718 81600 1290.8884582519531 8.5929000000000002 2067.5194000000001 80640 39621 1 0 0.21019834823708672 1.6536956022838449 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 15270708448 11703516 1 0 4 2 6 1 3 5898240 2949120 8847360 1475535 4492800 218 150 166 1275 744 3 0 1 0 27 0 0 0 0 2 +22 1783881095158939000 DEPTH 58 1 0.68276472013448575 0 1 12 1 12 0 0 604 25 2555 23675701 81600 1280.6550445556641 8.5762999999999998 2029.2800999999999 80640 32568 1 0 0.21019834823708672 1.6536956022838449 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15275173456 16168524 1 0 4 2 6 1 3 5898240 2949120 8847360 1475504 4492800 222 150 177 1394 612 5 0 0 0 20 0 0 0 0 0 +23 1783881097217380400 DEPTH 58 1 0.67340799207563262 0 1 12 1 12 1 0 606 23 2564 23676329 81600 1276.8460083007812 8.6236999999999995 2057.1858000000002 80640 26239 1 0 0.20215558072944423 1.6300214103776356 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15279647644 20642712 1 0 4 2 5 2 3 5898240 2949120 7864320 2459122 4492800 232 150 167 1459 556 4 0 0 0 19 0 0 0 0 3 +24 1783881099278027600 DEPTH 58 1 0.66508040146011382 0 1 12 1 12 0 0 608 11 2567 23676549 81600 1276.7176666259766 8.5887999999999991 2059.3928999999998 80640 18441 1 0 0.20215558072944423 1.6300214103776356 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 15284124892 25119960 1 0 4 2 5 2 3 5898240 2949120 7618560 2705036 4492800 238 150 168 1498 513 0 0 0 0 11 0 0 0 0 0 +25 1783881099622512000 REFRESH 58 0 0.65720941667225907 0 1 12 1 12 1 0 609 11 417 3987551 55200 223.21664428710938 1.4265000000000001 343.02120000000002 13440 8057 0 0 0.20215496089929805 1.6283044389559089 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15284858456 25853524 1 0 4 2 5 2 3 983040 491520 1228800 491676 748800 79 25 28 181 104 1 0 0 1 9 0 0 0 0 1 +26 1783881101676470400 DEPTH 58 1 0.64999129054547067 0 1 12 1 12 1 0 611 26 2542 23676736 81600 1289.3634948730469 8.5840999999999994 2052.5057999999999 80640 38526 1 0 0.1972817951981129 1.531772161940181 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15289310204 30305272 1 0 4 2 5 2 3 5898240 2949120 7372800 2951000 4492800 261 150 156 1078 897 1 0 0 0 25 0 0 0 0 4 +27 1783881103734262600 DEPTH 58 1 0.64352422636701201 0 1 12 1 12 1 0 612 31 2552 23676620 81600 1281.7870025634766 8.5861999999999998 2056.5472 80640 31628 1 0 0.19826478472049 1.5149738760398024 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 15293772152 34767220 1 0 4 2 5 2 3 5898240 2949120 7372800 2950950 4492800 258 150 156 1261 727 6 0 0 0 25 0 0 0 0 1 +28 1783881105802985600 DEPTH 58 1 0.63742390744285549 0 1 12 1 12 1 0 614 38 2550 23691941 96960 1279.8724060058594 8.5915999999999997 2067.5259999999998 80640 25191 1 0 0.19807114956063762 1.4528042842908688 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15298232060 39227128 1 0 4 2 4 2 4 5898240 2949120 6389760 2950913 5491200 285 150 156 798 1161 1 0 0 0 37 0 0 0 0 3 +29 1783881107867576100 DEPTH 58 1 0.63184367287618648 0 1 12 1 12 1 0 622 55 2539 23698756 103680 1274.5853118896484 8.6021000000000001 2063.3881000000001 80640 17731 1 0 0.19249748642347822 1.4605496188750704 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 15302680748 43675816 1 0 4 2 4 2 4 5898240 2949120 5898240 2951000 5990400 277 150 153 702 1257 3 0 0 0 52 0 0 0 0 1 +30 1783881108229799300 REFRESH 58 0 0.62664694641340624 0 1 12 1 12 0 0 624 13 414 3988022 55680 223.63749694824219 1.4308000000000001 360.81020000000001 13440 8328 0 0 0.19249748642347822 1.4605496188750704 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 15303411252 44406320 1 0 4 2 4 2 4 983040 491520 983040 491667 998400 129 25 26 106 128 1 0 1 0 11 0 0 0 0 0 +31 1783881110265566700 DEPTH 58 1 0.62184254791882299 0 1 12 3 10 1 0 640 70 2517 23737173 142080 1283.4140014648438 8.5927000000000007 2034.5771999999999 80640 39597 1 0 0.44907396827879809 1.3836832104095216 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 15307837500 48832568 1 0 4 2 2 2 6 5898240 2949120 3440640 2950989 8486400 302 150 151 201 1713 3 0 0 0 67 0 0 0 0 2 +32 1783881112335787500 DEPTH 58 1 0.71739885490249811 0 3 10 3 10 0 0 653 85 2531 23742953 147840 1277.9435729980469 9.1003000000000007 2068.8944000000001 80640 32711 1 0 0.44907396827879809 1.3836832104095216 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 15312278028 53273096 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 311 150 150 150 1770 4 0 0 0 81 0 0 0 0 0 +33 1783881114379652900 DEPTH 58 1 0.70328238287072664 0 3 10 3 10 0 0 678 114 2510 23735247 140160 1275.6720581054688 8.5867000000000004 2042.6085 80640 25604 1 0 0.44907396827879809 1.3836832104095216 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 15316697136 57692204 1 0 4 2 3 2 5 5898240 2949120 3440640 2950995 8486400 315 150 150 231 1664 3 0 0 5 106 0 0 0 0 0 +34 1783881116437260100 DEPTH 58 1 0.6904629219609526 0 3 10 3 10 0 0 693 90 2506 23720803 125760 1272.2516479492188 8.5869 2056.3696 80640 17638 1 1 0.44907396827879809 1.3836832104095216 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 15321112164 62107232 1 0 4 2 3 2 5 5898240 2949120 4423680 2950913 7488000 236 150 150 930 1040 2 0 1 11 75 0 0 0 0 0 +35 1783881116781287800 REFRESH 58 0 0.6788132101375981 0 3 10 3 10 0 0 694 11 412 3988511 56160 222.66983032226562 1.429 342.83240000000001 13440 8401 0 0 0.44907396827879809 1.3836832104095216 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 15321840628 62835696 1 0 4 2 3 2 5 983040 491520 737280 491670 1248000 54 25 25 208 100 0 0 0 1 10 0 0 0 0 0 +36 1783881120001381900 DEPTH 58 1 0.66821863946915938 0 3 10 3 10 0 0 696 45 2530 23698713 103680 1285.0652770996094 8.5763999999999996 3154.6979000000001 120960 50311 1 0 0.44907396827879809 1.3836832104095216 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 15326280216 167088 1 0 4 3 3 2 4 5898240 4423680 4423680 2950892 5990400 319 150 150 823 1088 0 0 0 8 37 0 0 0 0 0 +37 1783881122056962100 DEPTH 58 1 0.65857599207923245 0 3 10 3 10 1 0 705 50 2547 23702667 107520 1279.8976135253906 8.6127000000000002 2054.2532999999999 114240 43521 1 0 0.43691125637677769 1.4366119383454099 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15330737064 4623936 1 0 4 3 3 2 4 5898240 4177920 4423680 2950950 6240000 301 150 150 993 953 4 1 1 5 39 0 0 0 0 3 +38 1783881124124338000 DEPTH 58 1 0.64999881039551455 0 3 10 3 10 0 0 715 58 2534 23698923 103680 1277.1759033203125 8.8407999999999998 2065.8593999999998 120960 34708 1 0 0.43691125637677769 1.4366119383454099 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 15335180652 9067524 1 0 4 3 3 2 4 5898240 4423680 4423680 2950987 5990400 233 150 150 1132 869 3 0 0 7 48 0 0 0 0 0 +39 1783881126173336000 DEPTH 58 1 0.6419696921825051 0 3 10 3 10 1 0 721 45 2536 23695205 99840 1272.6278228759766 8.5869999999999997 2047.7713000000001 120960 24892 1 0 0.43479977245941115 1.3632440134757988 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 15339626280 13513152 1 0 4 3 3 3 3 5898240 4423680 4423680 3196864 5740800 180 150 150 1474 582 1 0 0 6 38 0 0 0 0 1 +40 1783881126540268700 REFRESH 58 0 0.63476915083804464 0 3 10 3 10 0 0 724 11 412 3988029 55680 223.425537109375 1.4391 365.62110000000001 20160 12220 0 0 0.43479977245941115 1.3632440134757988 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 15340354744 14241616 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 54 25 25 210 98 0 0 0 1 10 0 0 0 0 0 +41 1783881128597476700 DEPTH 58 1 0.62806292325942126 0 3 10 3 10 1 0 724 31 2549 23691377 96000 1292.1637725830078 8.5831 2055.8712999999998 120960 60337 1 0 0.43466985338418812 1.3384624018188869 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 15344813632 18700504 1 0 4 3 3 2 4 5898240 4423680 4423680 3442782 5491200 316 150 154 835 1094 0 0 0 0 31 0 0 0 0 1 +42 1783881130657456200 DEPTH 58 1 0.6219615649588951 0 3 10 3 10 1 0 724 30 2537 23698723 103680 1283.8277893066406 8.5738000000000003 2058.7521000000002 120960 49223 1 0 0.42542425478207857 1.3381758055506132 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 15349260280 23147152 1 0 4 3 3 2 4 5898240 4423680 4423680 2950888 5990400 302 150 154 911 1020 0 0 0 1 29 0 0 0 0 1 +43 1783881132713206300 DEPTH 58 1 0.61636639395638859 0 3 10 3 10 0 0 726 31 2574 23684191 88320 1279.7508544921875 8.6248000000000005 2054.3805000000002 120960 39093 1 0 0.42542425478207857 1.3381758055506132 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 15353744668 27631540 1 0 4 3 3 3 3 5898240 4423680 4423680 3934522 4992000 230 150 150 1264 780 0 0 0 4 27 0 0 0 0 0 +44 1783881134764702700 DEPTH 58 1 0.61121495103099721 0 3 10 3 10 0 0 729 28 2563 23677767 81600 1280.5563507080078 8.5797000000000008 2049.9643999999998 120960 28111 1 0 0.42542425478207857 1.3381758055506132 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 15358217836 32104708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426398 4492800 182 150 150 1561 520 0 0 0 3 25 0 0 0 0 0 +45 1783881135109194300 REFRESH 58 0 0.60648715508197504 0 3 10 3 10 0 0 730 12 416 3987633 55200 224.80178833007812 1.4240999999999999 343.14409999999998 20160 12441 0 0 0.42542425478207857 1.3381758055506132 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15358950380 32837252 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 104 25 26 149 112 1 0 0 3 8 0 0 0 0 0 +46 1783881137180973900 DEPTH 58 1 0.60214238327910019 0 3 10 3 10 1 0 732 36 2536 23677769 81600 1298.7455444335938 8.5907999999999998 2070.5473000000002 120960 58871 1 0 0.40316021394451668 1.2956597220289001 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 15363396008 37282880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 330 150 156 717 1183 1 0 1 0 34 0 0 0 0 1 +47 1783881139237745700 DEPTH 58 1 0.59819275557652252 0 3 10 3 10 0 0 735 35 2550 23677856 81600 1289.4748687744141 8.6180999999999983 2055.4996000000001 120960 48259 1 0 0.40316021394451668 1.2956597220289001 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15367855916 41742788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426575 4492800 330 150 156 890 1024 1 0 4 0 30 0 0 0 0 0 +48 1783881141401637200 DEPTH 58 1 0.594502932539964 0 3 10 3 10 0 0 740 31 2545 23677842 81600 1376.1720275878906 8.6044999999999998 2162.1226000000001 120960 38093 1 0 0.40316021394451668 1.2956597220289001 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 15372310724 46197596 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 330 150 156 948 961 0 0 0 0 31 0 0 0 0 0 +49 1783881143693880600 DEPTH 58 1 0.59109725768441579 0 3 10 3 10 0 0 740 32 2536 23678004 81600 1369.3504180908203 8.7140000000000004 2290.7593999999999 120960 26515 1 0 0.40316021394451668 1.2956597220289001 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 15376756352 50643224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 321 150 156 1007 902 0 0 0 0 32 0 0 0 0 0 +50 1783881144058038400 REFRESH 58 0 0.58794886118134193 0 3 10 3 10 0 0 740 10 415 3987671 55200 231.48133850097656 1.4358 362.5428 20160 12482 0 0 0.40316021394451668 1.2956597220289001 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15377487876 51374748 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 101 25 27 164 98 0 0 1 0 9 0 0 0 0 0 +51 1783881146285654700 DEPTH 58 1 0.58503351531137948 0 3 10 3 10 0 0 743 32 2556 23677863 81600 1373.9111480712891 8.7796000000000003 2226.2150999999999 120960 59007 1 0 0.40316021394451668 1.2956597220289001 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 15381953904 55840776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426354 4492800 330 150 156 849 1071 0 0 0 0 32 0 0 0 0 0 +52 1783881148518846300 DEPTH 58 1 0.58232937188080491 0 3 10 3 10 1 0 744 30 2548 23677818 81600 1357.1104888916016 8.6970999999999989 2231.8193999999999 120960 48490 1 0 0.40317016404086864 1.295662664865044 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 15386411772 60298644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426411 4492800 328 150 156 904 1010 0 0 0 1 29 0 0 0 0 1 +53 1783881150775940800 DEPTH 58 1 0.57987570488943296 0 3 10 3 10 0 0 748 33 2543 23677837 81600 1335.9761505126953 8.6334 2180.3609999999999 120960 38662 1 0 0.40317016404086864 1.295662664865044 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 15390864540 64751412 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 326 150 156 1061 850 0 0 1 0 32 0 0 0 0 0 +54 1783881154153693800 DEPTH 58 1 0.57753088362395721 0 3 10 3 10 1 0 748 27 2551 23677954 81600 1356.5770874023438 8.6206999999999994 3376.1984000000002 120960 26607 1 0 0.40327639605987953 1.2101406251334947 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 15395325548 2103716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 304 150 154 1110 833 0 0 0 0 27 0 0 0 0 2 +55 1783881154548155500 REFRESH 58 0 0.57545889535594674 0 3 10 3 10 0 0 748 10 416 3987706 55200 242.49650573730469 1.4686999999999999 393.06139999999999 20160 12345 0 0 0.40327639605987953 1.2101406251334947 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15396058092 2836260 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 98 25 26 170 97 0 0 0 1 9 0 0 0 0 0 +56 1783881156763876200 DEPTH 58 1 0.57340464286915482 0 3 10 3 10 0 0 750 29 2550 23678095 81600 1354.9589080810547 8.6995000000000005 2214.3959 120960 59412 1 0 0.40327639605987953 1.2101406251334947 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15400518000 7296168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 330 150 156 875 1039 0 0 0 0 29 0 0 0 0 0 +57 1783881158955084400 DEPTH 58 1 0.57148217211818153 0 3 10 3 10 0 0 753 30 2541 23677996 81600 1296.1884002685547 8.6270000000000007 2189.2725999999998 120960 48919 1 0 0.40327639605987953 1.2101406251334947 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 15404968728 11746896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 327 150 156 1031 877 0 0 0 2 28 0 0 0 0 0 +58 1783881161073870700 DEPTH 58 1 0.56967953333060439 0 3 10 3 10 0 0 753 25 2548 23677849 81600 1289.6214904785156 8.6148000000000007 2117.3249999999998 120960 38993 1 0 0.40327639605987953 1.2101406251334947 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 15409426596 16204764 1 0 4 3 3 3 3 5898240 4423680 4423680 4426368 4492800 307 150 156 921 1014 0 0 0 2 23 0 0 0 0 0 +59 1783881163182629200 DEPTH 58 1 0.56798593829126687 0 3 10 3 10 0 0 755 26 2558 23677938 81600 1299.8698577880859 8.7087000000000003 2107.4196999999999 120960 26975 1 0 0.40327639605987953 1.2101406251334947 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 15413894664 20672832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 237 150 150 1216 805 0 0 0 1 25 0 0 0 0 0 +60 1783881163559394400 REFRESH 58 0 0.56639164537958031 0 3 10 3 10 0 0 755 6 425 3987681 55200 224.05632019042969 1.4497 374.90539999999999 20160 12698 0 0 0.40327639605987953 1.2101406251334947 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 15414636388 21414556 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 95 25 26 181 98 0 0 0 1 5 0 0 0 0 0 +61 1783881165713960800 DEPTH 58 1 0.56088785605497171 0 3 10 3 10 1 0 757 34 2543 23678051 81600 1326.9532165527344 8.6453000000000007 2152.9895000000001 120960 61349 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 15419089156 25867324 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 324 150 156 860 1053 0 0 0 3 31 0 0 0 0 1 +62 1783881167863905200 DEPTH 58 1 0.55987943436605769 0 3 10 3 10 0 0 760 26 2538 23678210 81600 1322.78076171875 8.6227999999999998 2148.5808999999999 120960 50754 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 15423536824 30314992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 278 150 158 968 984 0 0 0 1 25 0 0 0 0 0 +63 1783881169994502100 DEPTH 58 1 0.5588922908708096 0 3 10 3 10 0 0 764 27 2549 23678041 81600 1308.2603454589844 8.8438999999999997 2129.1077 120960 40334 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 15427995712 34773880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 217 150 157 1028 997 0 0 0 3 24 0 0 0 0 0 +64 1783881172152372100 DEPTH 58 1 0.55793815530856317 0 3 10 3 10 0 0 765 36 2554 23678008 81600 1318.0203399658203 8.6613000000000007 2156.5221999999999 120960 28381 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15432459700 39237868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 205 150 156 1097 946 0 0 0 1 35 0 0 0 0 0 +65 1783881172533748200 REFRESH 58 0 0.55701474477675317 0 3 10 3 10 0 0 766 8 421 3987674 55200 243.42938232421875 1.4407000000000001 379.56420000000003 20160 13094 0 0 0.40128031073429232 1.2036712358776653 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15433197344 39975512 1 0 4 3 3 3 3 983040 737280 737280 737488 748800 92 25 28 177 99 0 0 0 1 7 0 0 0 0 0 +66 1783881174763033200 DEPTH 58 1 0.55411997864381035 0 3 10 3 10 0 0 769 31 2555 23678058 81600 1374.7220458984375 8.6458999999999993 2227.6109999999999 120960 63688 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15437662352 44440520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 303 150 167 1017 918 0 0 0 0 31 0 0 0 0 0 +67 1783881176942804000 DEPTH 58 1 0.55345195921415113 0 3 10 3 10 0 0 775 38 2560 23677981 81600 1336.1684265136719 8.6113 2178.1662999999999 120960 53141 1 0 0.40128031073429232 1.2036712358776653 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 15442132460 48910628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426348 4492800 248 150 166 1141 855 0 0 1 1 36 0 0 0 0 0 +68 1783881179134701100 DEPTH 58 1 0.55278895429033181 0 3 10 3 10 1 0 776 30 2557 23678237 81600 1316.9520568847656 8.660499999999999 2190.4385000000002 120960 42040 1 0 0.40127248576554547 1.2023088415654053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15446599508 53377676 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 217 150 164 1152 874 0 0 0 0 30 0 0 0 0 1 +69 1783881181344823400 DEPTH 58 1 0.55213421164532339 0 3 10 3 10 1 0 779 35 2559 23681843 85440 1301.6033172607422 8.6413999999999991 2144.6761000000001 120960 28876 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 15451068596 57846764 1 0 4 3 3 2 4 5898240 4423680 4423680 4180558 4742400 210 150 168 1253 778 0 0 1 1 33 0 0 0 0 2 +70 1783881181711401200 REFRESH 58 0 0.55227437566791859 0 3 10 3 10 0 0 781 10 416 3988098 55680 226.43916320800781 1.4413 365.07240000000002 20160 13313 0 0 0.46957001212439625 0.74134409584502092 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15451801140 58579308 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 136 25 32 68 155 1 0 0 0 9 0 0 0 0 0 +71 1783881183914392800 DEPTH 58 1 0.55154919102667366 0 3 10 3 10 0 0 784 28 2555 23680642 84480 1329.7429809570312 8.6791 2201.1913 120960 64997 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15456266148 63044316 1 0 4 3 3 3 3 5898240 4423680 4423680 4180448 4742400 351 150 174 856 1024 0 0 0 3 25 0 0 0 0 0 +72 1783881187245752400 DEPTH 58 1 0.55083828051841743 0 3 10 3 10 0 0 784 24 2542 23677960 81600 1303.5725708007812 9.6197999999999997 3329.8742000000002 120960 53884 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15460717976 387408 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 351 150 174 1247 620 0 0 0 1 23 0 0 0 0 0 +73 1783881189395155000 DEPTH 58 1 0.55014104951577569 0 3 10 3 10 0 0 785 21 2556 23678080 81600 1311.5074462890625 9.2320999999999991 2148.0965000000001 120960 43226 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 15465184004 4853436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 261 150 170 1418 557 0 0 0 2 19 0 0 0 0 0 +74 1783881191519245500 DEPTH 58 1 0.54945694303732184 0 3 10 3 10 0 0 787 30 2564 23678197 81600 1302.35400390625 8.6176000000000013 2122.4694 120960 29733 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15469658192 9327624 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 204 150 168 1536 506 0 0 0 2 28 0 0 0 0 0 +75 1783881191899706600 REFRESH 58 0 0.54878544242485783 0 3 10 3 10 0 0 788 8 417 3987719 55200 233.34092712402344 1.4509000000000001 378.6789 20160 13462 0 0 0.46957001212439625 0.74134409584502092 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15470391756 10061188 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 78 25 29 188 97 0 0 0 3 5 0 0 0 0 0 +76 1783881194112242500 DEPTH 58 1 0.54612606232755778 0 3 10 3 10 0 0 790 37 2556 23678058 81600 1299.3382415771484 8.6059999999999999 2211.0985000000001 120960 64664 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 15474857784 14527216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426512 4492800 354 150 174 856 1022 0 0 0 0 37 0 0 0 0 0 +77 1783881196246161000 DEPTH 58 1 0.54567834796341497 0 3 10 3 10 0 0 791 29 2556 23678130 81600 1310.1199340820312 8.6152999999999995 2132.5596 120960 54074 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 15479323812 18993244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 352 150 174 922 958 0 0 0 2 27 0 0 0 0 0 +78 1783881198412124000 DEPTH 58 1 0.54522187263134037 0 3 10 3 10 0 0 791 35 2564 23678055 81600 1308.7724914550781 8.5624000000000002 2164.6329000000001 120960 43148 1 0 0.46957001212439625 0.74134409584502092 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15483798000 23467432 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 318 150 172 1072 852 0 0 0 0 35 0 0 0 0 0 +79 1783881200564550100 DEPTH 58 1 0.54475823544987767 0 3 10 3 10 1 0 791 22 2569 23678092 81600 1302.4184265136719 8.6029 2151.056 120960 29702 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 15488277288 27946720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 265 150 169 1192 793 0 0 0 0 22 0 0 0 0 1 +80 1783881200932039300 REFRESH 58 0 0.54429010270356759 0 3 10 3 10 0 0 792 10 421 3987730 55200 228.25881958007812 1.4238 365.6114 20160 13252 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15489014932 28684364 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 79 25 29 205 83 0 0 0 2 8 0 0 0 0 0 +81 1783881203087058700 DEPTH 58 1 0.54381612802085799 0 3 10 3 10 0 0 793 15 2555 23678299 81600 1325.3696136474609 8.6157000000000004 2153.5149000000001 120960 64992 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15493479940 33149372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 359 150 174 897 975 0 0 0 0 15 0 0 0 0 0 +82 1783881205281314800 DEPTH 58 1 0.54333881454199284 0 3 10 3 10 0 0 795 31 2555 23678022 81600 1315.4772644042969 8.6923000000000012 2192.7411000000002 120960 53637 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15497944948 37614380 1 0 4 3 3 3 3 5898240 4423680 4423680 4426369 4492800 333 150 174 976 922 0 0 0 0 31 0 0 0 0 0 +83 1783881207400185900 DEPTH 58 1 0.54285915682447539 0 3 10 3 10 0 0 796 32 2550 23678113 81600 1288.3517303466797 8.565100000000001 2117.4949999999999 120960 43085 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15502404856 42074288 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 282 150 169 1050 899 0 0 0 1 31 0 0 0 0 0 +84 1783881209548245700 DEPTH 58 1 0.54237803555385633 0 3 10 3 10 0 0 798 28 2542 23678196 81600 1286.9037322998047 8.6298999999999992 2146.6855 120960 29619 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15506856604 46526036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 252 150 168 1114 858 0 0 0 0 28 0 0 0 0 0 +85 1783881209906331900 REFRESH 58 0 0.5418962293638091 0 3 10 3 10 0 0 799 6 425 3987718 55200 225.06803894042969 1.4191 356.75279999999998 20160 13446 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 15507598328 47267760 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 79 25 29 205 87 0 0 0 1 5 0 0 0 0 0 +86 1783881212138975900 DEPTH 58 1 0.53741442545801754 0 3 10 3 10 0 0 800 28 2547 23678233 81600 1301.6505584716797 8.5547000000000004 2167.0306999999998 120960 65655 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15512055176 51724608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 311 150 171 926 989 0 0 0 0 28 0 0 0 0 0 +87 1783881214344122400 DEPTH 58 1 0.53733322915439352 0 3 10 3 10 0 0 801 30 2565 23678313 81600 1298.5292816162109 8.5883000000000003 2203.3499000000002 120960 54992 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 15516530384 56199816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 266 150 168 1088 893 0 0 0 0 30 0 0 0 0 0 +88 1783881216565945300 DEPTH 58 1 0.53721317246006584 0 3 10 3 10 0 0 803 21 2550 23678082 81600 1333.7528839111328 8.9940000000000015 2219.9025000000001 120960 43913 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15520990292 60659724 1 0 4 3 3 3 3 5898240 4423680 4423680 4426364 4492800 233 150 170 1282 715 0 0 0 1 20 0 0 0 0 0 +89 1783881218770541800 DEPTH 58 1 0.5370587217746976 0 3 10 3 10 0 0 804 33 2554 23678121 81600 1353.7232360839844 8.7286000000000001 2203.1741000000002 120960 29830 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15525454280 65123712 1 0 4 3 3 3 3 5898240 4423680 4423680 4426352 4492800 218 150 174 1474 538 0 0 0 3 30 0 0 0 0 0 +90 1783881219129992600 REFRESH 58 0 0.53687388480990894 0 3 10 3 10 0 0 804 7 418 3987697 55200 227.26348876953125 1.4308000000000001 358.02080000000001 20160 13516 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 15526188864 65858296 1 0 4 3 3 3 3 983040 737280 737280 737460 748800 77 25 30 210 76 0 0 0 1 6 0 0 0 0 0 +91 1783881222543324800 DEPTH 58 1 0.5336622568037741 0 3 10 3 10 0 0 804 20 2554 23678158 81600 1313.5442047119141 8.6297999999999995 3411.5653000000002 120960 66281 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15530652932 3213544 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 273 150 174 1114 843 0 0 3 0 17 0 0 0 0 0 +92 1783881224786320400 DEPTH 58 1 0.53372706210143506 0 3 10 3 10 0 0 804 21 2561 23678224 81600 1298.4859619140625 8.7010000000000005 2241.096 120960 55115 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 15535124060 7684672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 248 150 174 1108 881 0 0 1 0 20 0 0 0 0 0 +93 1783881227048839700 DEPTH 58 1 0.53374119156574773 0 3 10 3 10 0 0 804 24 2569 23678406 81600 1291.74365234375 8.6660999999999984 2260.7220000000002 120960 44327 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 15539603348 12163960 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 227 150 174 1299 719 0 0 1 1 22 0 0 0 0 0 +94 1783881229229479900 DEPTH 58 1 0.53371023623545799 0 3 10 3 10 0 0 805 24 2565 23678146 81600 1289.5815734863281 8.6102000000000007 2179.1246999999998 120960 30145 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 15544078556 16639168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 218 150 174 1455 568 0 0 2 2 20 0 0 0 0 0 +95 1783881229595812700 REFRESH 58 0 0.53363921760663025 0 3 10 3 10 0 0 805 10 419 3987745 55200 225.56466674804688 1.4371 364.96629999999999 20160 13643 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 15544814160 17374772 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 71 25 30 215 78 0 0 0 1 9 0 0 0 0 0 +96 1783881231775963500 DEPTH 58 1 0.53353264487546137 0 3 10 3 10 0 0 807 25 2547 23678243 81600 1303.3123931884766 8.5800000000000001 2178.4099999999999 120960 66279 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15549271008 21831620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 243 150 180 1164 810 0 0 1 0 24 0 0 0 0 0 +97 1783881233987624600 DEPTH 58 1 0.53339456644677252 0 3 10 3 10 0 0 807 31 2555 23678245 81600 1296.4033355712891 8.5997000000000003 2209.8910000000001 120960 54788 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15553736016 26296628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 226 150 178 1216 785 0 0 0 0 31 0 0 0 0 0 +98 1783881236189423800 DEPTH 58 1 0.53322861628202534 0 3 10 3 10 0 0 810 28 2546 23678303 81600 1304.4471282958984 8.6158000000000001 2199.9566 120960 44033 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 15558191844 30752456 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 218 150 176 1381 621 0 0 0 4 24 0 0 0 0 0 +99 1783881238353316800 DEPTH 58 1 0.53303805560330475 0 3 10 3 10 0 0 811 20 2560 23678339 81600 1291.4903106689453 8.8128999999999991 2162.3622999999998 120960 29285 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 15562661952 35222564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 215 150 173 1538 484 0 0 1 0 19 0 0 0 0 0 +100 1783881238723447400 REFRESH 58 0 0.53282581041804833 0 3 10 3 10 0 0 811 6 421 3987746 55200 225.35270690917969 1.4537 368.33949999999999 20160 13420 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15563399596 35960208 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 60 25 30 223 83 0 0 0 2 4 0 0 0 0 0 +101 1783881241007115200 DEPTH 58 1 0.52859450528280405 0 3 10 3 10 0 0 811 26 2547 23678165 81600 1304.634521484375 8.6350999999999996 2281.6981000000001 120960 66297 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15567856444 40417056 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 232 150 178 1221 766 0 0 2 0 24 0 0 0 0 0 +102 1783881243277569200 DEPTH 58 1 0.52874649368245907 0 3 10 3 10 0 0 812 24 2542 23678204 81600 1297.5689239501953 8.6433999999999997 2203.0830999999998 120960 55070 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15572308192 44868804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426364 4492800 218 150 174 1301 699 0 0 0 0 24 0 0 0 0 0 +103 1783881245441759500 DEPTH 58 1 0.52884388536371563 0 3 10 3 10 0 0 813 20 2552 23678235 81600 1292.4549255371094 8.5975000000000001 2162.6437999999998 120960 44093 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 15576770140 49330752 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 220 150 174 1391 617 0 0 0 0 20 0 0 0 0 0 +104 1783881247592841100 DEPTH 58 1 0.52889257092770425 0 3 10 3 10 0 0 815 26 2572 23678328 81600 1294.2099456787109 8.5851000000000006 2149.7012 120960 30317 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 15581252488 53813100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426484 4492800 222 150 174 1527 499 0 0 0 0 26 0 0 0 0 0 +105 1783881247962784000 REFRESH 58 0 0.52889784395611494 0 3 10 3 10 0 0 816 11 419 3987787 55200 226.9091796875 1.4400999999999999 368.63260000000002 20160 13449 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 15581988092 54548704 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 56 25 31 232 75 0 0 0 1 10 0 0 0 0 0 +106 1783881250172131300 DEPTH 58 1 0.52886446091778228 0 3 10 3 10 0 0 817 23 2567 23678442 81600 1368.1594848632812 8.627699999999999 2207.5623999999998 120960 65790 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 15586465340 59025952 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 233 150 182 1322 680 0 0 0 0 23 0 0 0 0 0 +107 1783881252402619600 DEPTH 58 1 0.52879669507794613 0 3 10 3 10 0 0 818 30 2560 23678235 81600 1375.0980529785156 8.6752000000000002 2228.8836999999999 120960 54586 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 15590935448 63496060 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 225 150 186 1423 576 0 0 1 0 29 0 0 0 0 0 +108 1783881255898329400 DEPTH 58 1 0.5286983850101844 0 3 10 3 10 0 0 821 25 2569 23678345 81600 1414.7328033447266 8.6835999999999984 3494.1408000000001 120960 43219 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 15595414816 866992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 225 150 180 1527 487 0 0 0 2 23 0 0 0 0 0 +109 1783881258187885000 DEPTH 58 1 0.5285729782509937 0 3 10 3 10 0 0 824 28 2555 23678253 81600 1394.9706420898438 8.6688000000000009 2287.7685000000001 120960 29539 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 15599879824 5332000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 209 150 174 1570 452 0 0 0 1 27 0 0 0 0 0 +110 1783881258590363700 REFRESH 58 0 0.52842357058299338 0 3 10 3 10 0 0 826 14 420 3987740 55200 242.77619934082031 1.4297 400.36619999999999 20160 13521 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15600616448 6068624 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 54 25 31 236 74 1 0 0 2 11 0 0 0 0 0 +111 1783881260853297200 DEPTH 58 1 0.52825294138411505 0 3 10 3 10 0 0 829 41 2544 23678318 81600 1402.3741607666016 8.625 2261.3865000000001 120960 66043 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 15605070236 10522412 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 242 150 186 1254 712 1 0 0 0 40 0 0 0 0 0 +112 1783881263044072200 DEPTH 58 1 0.52806358543639531 0 3 10 3 10 0 0 830 27 2557 23678380 81600 1337.7711944580078 8.6714000000000002 2189.4110999999998 120960 55059 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15609537284 14989460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 237 150 184 1438 548 0 0 1 0 26 0 0 0 0 0 +113 1783881265285432200 DEPTH 58 1 0.52785774154861986 0 3 10 3 10 0 0 833 30 2564 23678310 81600 1392.0706787109375 8.6882000000000001 2239.5972000000002 120960 43784 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15614011472 19463648 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 234 150 178 1516 486 0 0 0 0 30 0 0 0 0 0 +114 1783881267572781300 DEPTH 58 1 0.5276374183116288 0 3 10 3 10 0 0 835 28 2554 23678258 81600 1389.1768341064453 8.6391000000000009 2285.6156000000001 120960 29972 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15618475460 23927636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 224 150 176 1553 451 0 0 1 0 27 0 0 0 0 0 +115 1783881267955515900 REFRESH 58 0 0.52740441727321075 0 3 10 3 10 0 0 836 6 422 3987742 55200 239.20332336425781 1.4384999999999999 381.30610000000001 20160 13523 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15619214124 24666300 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 48 25 31 238 80 1 0 0 0 5 0 0 0 0 0 +116 1783881270162947700 DEPTH 58 1 0.5231603537908025 0 3 10 3 10 0 0 837 26 2550 23678277 81600 1350.0336608886719 8.6340000000000003 2206.1289999999999 120960 66210 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 15623674032 29126208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 247 150 186 1308 659 0 0 1 0 25 0 0 0 0 0 +117 1783881272349221500 DEPTH 58 1 0.5233066757943925 0 3 10 3 10 0 0 839 28 2559 23678397 81600 1328.2140045166016 8.6008999999999993 2184.7892000000002 120960 55225 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 15628143120 33595296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426510 4492800 245 150 176 1479 509 0 0 0 0 28 0 0 0 0 0 +118 1783881274618809800 DEPTH 58 1 0.52340468066877088 0 3 10 3 10 0 0 839 22 2566 23678461 81600 1329.0281219482422 8.6451999999999991 2204.7939999999999 120960 44115 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 15632619348 38071524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 230 150 174 1540 472 0 0 0 0 22 0 0 0 0 0 +119 1783881276813392400 DEPTH 58 1 0.5234595304433497 0 3 10 3 10 0 0 841 29 2553 23678308 81600 1324.0986938476562 9.0083000000000002 2193.0416 120960 29860 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 15637082316 42534492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 205 150 172 1567 459 0 0 0 0 29 0 0 0 0 0 +120 1783881277187709800 REFRESH 58 0 0.52347586545895153 0 3 10 3 10 0 0 841 8 422 3987756 55200 231.42707824707031 1.4330000000000001 372.40260000000001 20160 13458 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15637820980 43273156 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 48 25 31 242 76 0 0 0 1 7 0 0 0 0 0 +121 1783881279420973800 DEPTH 58 1 0.52145785666401379 0 3 10 3 10 0 0 842 22 2561 23678360 81600 1386.3014221191406 8.6508000000000003 2231.8211000000001 120960 65963 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 15642292108 47744284 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 259 150 184 1380 588 0 0 0 0 22 0 0 0 0 0 +122 1783881281616486600 DEPTH 58 1 0.5216092526774061 0 3 10 3 10 0 0 843 24 2573 23678307 81600 1354.4737091064453 8.7058999999999997 2194.0338000000002 120960 54989 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 15646775476 52227652 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 256 150 178 1506 483 0 0 0 0 24 0 0 0 0 0 +123 1783881283777611200 DEPTH 58 1 0.52171342214133598 0 3 10 3 10 0 0 843 17 2576 23678322 81600 1322.9998474121094 8.6113999999999997 2159.6111999999998 120960 44380 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 15651261904 56714080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 228 150 172 1566 460 0 0 0 0 17 0 0 0 0 0 +124 1783881285974994000 DEPTH 58 1 0.52177539183546062 0 3 10 3 10 0 0 843 19 2595 23678286 81600 1322.6250305175781 8.6118000000000006 2195.6262999999999 120960 30081 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 15655767712 61219888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 205 150 169 1596 475 0 0 0 0 19 0 0 0 0 0 +125 1783881286347295300 REFRESH 58 0 0.52179968097620777 0 3 10 3 10 0 0 843 7 423 3987780 55200 232.63130187988281 1.4329000000000001 370.56939999999997 20160 13687 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 15656507396 61959572 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 50 25 31 246 71 1 0 0 0 6 0 0 0 0 0 +126 1783881288536015100 DEPTH 58 1 0.51879035208290425 0 3 10 3 10 0 0 844 17 2565 23678357 81600 1342.2888946533203 9.881199999999998 2187.2923000000001 120960 65899 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 15660982604 66434780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 271 150 182 1330 632 0 0 0 0 17 0 0 0 0 0 +127 1783881291837142400 DEPTH 58 1 0.51905105675414209 0 3 10 3 10 0 0 844 16 2581 23678332 81600 1325.4909973144531 8.5655999999999999 3299.5837000000001 120960 55251 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 15665474212 3817716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 266 150 180 1481 504 0 0 0 0 16 0 0 0 0 0 +128 1783881293993896500 DEPTH 58 1 0.5192550768634715 0 3 10 3 10 0 0 844 18 2581 23678317 81600 1291.7842102050781 8.6058000000000003 2155.2588000000001 120960 44287 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 15669965740 8309244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 233 150 173 1564 461 0 0 0 0 18 0 0 0 0 0 +129 1783881296142932500 DEPTH 58 1 0.51940836163258763 0 3 10 3 10 0 0 844 16 2562 23678361 81600 1286.4770355224609 8.587299999999999 2147.0857999999998 120960 30621 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 15674437888 12781392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 205 150 171 1584 452 0 0 0 0 16 0 0 0 0 0 +130 1783881296507153400 REFRESH 58 0 0.51951626099436621 0 3 10 3 10 0 0 845 10 423 3987583 55200 227.05357360839844 1.4220999999999999 362.69 26880 16428 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 15675177572 13521076 1 0 4 4 3 2 3 983040 983040 737280 491668 748800 103 25 25 166 104 0 0 0 0 10 0 0 0 0 0 +131 1783881298696964500 DEPTH 58 1 0.51958358561685725 0 3 10 3 10 0 0 845 15 2586 23677640 81600 1314.4035949707031 8.6996000000000002 2188.4414000000002 127680 72795 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 15679674200 18017704 1 0 4 3 3 3 3 5898240 4669440 4423680 4180519 4492800 308 150 150 1043 935 0 0 0 0 15 0 0 0 0 0 +132 1783881300862783400 DEPTH 58 1 0.51961466092223385 0 3 10 3 10 0 0 848 22 2573 23677813 81600 1304.5556488037109 8.6160999999999994 2164.2705000000001 120960 56433 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 15684157568 22501072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 292 150 150 1138 843 0 0 0 0 22 0 0 0 0 0 +133 1783881303074396500 DEPTH 58 1 0.51961337570129018 0 3 10 3 10 0 0 854 26 2577 23677794 81600 1313.2175903320312 8.6474000000000011 2209.7836000000002 120960 45938 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 15688645016 26988520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426361 4492800 279 150 150 1125 873 0 0 0 2 24 0 0 0 0 0 +134 1783881305349520200 DEPTH 58 1 0.51958322586401873 0 3 10 3 10 0 0 857 40 2560 23677879 81600 1363.3239288330078 8.6050999999999984 2211.0403000000001 120960 33389 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 15693115124 31458628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 276 150 150 1205 779 0 0 0 0 40 0 0 0 0 0 +135 1783881305729710300 REFRESH 58 0 0.51952735381273984 0 3 10 3 10 0 0 860 8 421 3987660 55200 237.80351257324219 1.4308000000000001 378.70979999999997 20160 12155 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15693852768 32196272 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 119 25 25 159 93 0 0 0 1 7 0 0 0 0 0 +136 1783881307959420200 DEPTH 58 1 0.51744858387561021 0 3 10 3 10 0 0 863 33 2568 23677861 81600 1368.6282196044922 8.6236999999999995 2228.0974000000001 120960 60718 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 15698331036 36674540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 326 150 150 924 1018 0 0 0 0 33 0 0 0 0 0 +137 1783881310173194400 DEPTH 58 1 0.51754945419454446 0 3 10 3 10 0 0 866 31 2577 23677957 81600 1361.3260650634766 8.6120000000000001 2212.3552 120960 48806 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 15702818484 41161988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426539 4492800 301 150 150 1135 841 0 0 0 0 31 0 0 0 0 0 +138 1783881312372374300 DEPTH 58 1 0.51761224542218509 0 3 10 3 10 0 0 866 30 2563 23677956 81600 1359.5710906982422 8.5761000000000003 2197.8265999999999 120960 38920 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 15707291652 45635156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 294 150 150 1188 781 0 0 0 0 30 0 0 0 0 0 +139 1783881314560810300 DEPTH 58 1 0.51764100654708334 0 3 10 3 10 0 0 868 22 2574 23677930 81600 1359.0128326416016 8.6014999999999997 2186.8143 120960 28211 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 15711776040 50119544 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 283 150 150 1179 812 0 0 0 0 22 0 0 0 0 0 +140 1783881314924999900 REFRESH 58 0 0.51763937813433902 0 3 10 3 10 0 0 869 8 420 3987699 55200 235.28448486328125 1.4415 362.73410000000001 20160 11993 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15712512664 50856168 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 119 25 25 162 89 0 0 0 0 8 0 0 0 0 0 +141 1783881317113552100 DEPTH 58 1 0.51561063324021816 0 3 10 3 10 0 0 869 19 2557 23677925 81600 1373.68798828125 8.7300999999999984 2187.2651000000001 120960 57275 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15716979712 55323216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426396 4492800 330 150 150 901 1026 0 0 0 0 19 0 0 0 0 0 +142 1783881319254199500 DEPTH 58 1 0.51575771423341277 0 3 10 3 10 0 0 871 34 2562 23677938 81600 1333.9302978515625 8.6021000000000001 2139.2707 120960 45821 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 15721451860 59795364 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 303 150 150 1002 957 0 0 0 0 34 0 0 0 0 0 +143 1783881321374361800 DEPTH 58 1 0.515863265932339 0 3 10 3 10 0 0 875 25 2572 23677905 81600 1287.7380065917969 8.5661000000000005 2118.817 120960 36896 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 15725934208 64277712 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 300 150 150 1116 856 0 0 0 2 23 0 0 0 0 0 +144 1783881324644137600 DEPTH 58 1 0.51593166542692814 0 3 10 3 10 0 0 876 35 2580 23678022 81600 1284.4564514160156 8.6064000000000007 3268.3292000000001 120960 25135 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 15730424796 1659716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 295 150 150 1208 777 0 0 0 0 35 0 0 0 0 0 +145 1783881325005272900 REFRESH 58 0 0.51596684891651645 0 3 10 3 10 0 0 876 5 415 3987718 55200 225.25234985351562 1.4484999999999999 359.79230000000001 20160 12091 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15731156320 2391240 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 120 25 25 164 81 0 0 0 0 5 0 0 0 0 0 +146 1783881327162718400 DEPTH 58 1 0.51097235586227829 0 3 10 3 10 0 0 878 32 2574 23678002 81600 1298.8884735107422 8.6082000000000001 2156.1415999999999 120960 58132 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 15735640708 6875628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 318 150 150 1028 928 0 0 0 0 32 0 0 0 0 0 +147 1783881329304484100 DEPTH 58 1 0.51145136872279995 0 3 10 3 10 0 0 879 24 2581 23678026 81600 1291.0909423828125 8.668000000000001 2140.2501000000002 120960 46829 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 15740132236 11367156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 306 150 150 1171 804 0 0 0 0 24 0 0 0 0 0 +148 1783881331441917700 DEPTH 58 1 0.51185674871452946 0 3 10 3 10 0 0 879 26 2578 23678043 81600 1289.3298187255859 8.5716999999999999 2136.0506 120960 37883 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 15744620704 15855624 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 299 150 150 1245 734 0 0 0 0 26 0 0 0 0 0 +149 1783881333568327800 DEPTH 58 1 0.51219606799466377 0 3 10 3 10 0 0 880 19 2573 23677968 81600 1284.6286468505859 8.5442999999999998 2125.1296000000002 120960 26057 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 15749104072 20338992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 288 150 150 1259 726 0 0 0 0 19 0 0 0 0 0 +150 1783881333939893300 REFRESH 58 0 0.51247613862427577 0 3 10 3 10 0 0 881 9 422 3987729 55200 224.542724609375 1.5264 369.9932 20160 12255 0 0 0.46911210632259304 0.74140428467347741 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15749842736 21077656 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 125 25 25 171 76 0 0 0 0 9 0 0 0 0 0 +151 1783881336168831500 DEPTH 58 1 0.51170308863370151 0 3 10 3 10 0 0 883 44 2564 23678162 81600 1319.0512847900391 8.6236999999999995 2164.3744000000002 120960 58506 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15754316924 25551844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 324 150 150 1098 842 0 0 0 0 44 0 0 0 0 0 +152 1783881338306158800 DEPTH 58 1 0.51198243048000558 0 3 10 3 10 0 0 884 19 2556 23678145 81600 1293.138427734375 8.5883000000000003 2135.7534999999998 120960 47831 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 15758782952 30017872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426510 4492800 316 150 150 1158 782 0 0 0 0 19 0 0 0 0 0 +153 1783881340435559900 DEPTH 58 1 0.51220912265735685 0 3 10 3 10 0 0 887 29 2566 23678019 81600 1295.4152984619141 8.5846 2127.7819 120960 38281 1 0 0.46911210632259304 0.74140428467347741 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 15763259180 34494100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426369 4492800 302 150 150 1117 847 0 2 0 0 27 0 0 0 0 0 +154 1783881342667771900 DEPTH 58 1 0.51238862514506611 0 3 10 2 10 1 0 920 72 2533 23689474 93120 1307.2923431396484 8.5924999999999994 2230.8987000000002 114240 25772 1 0 0.091739611170004565 0.47218793635420342 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 15767701748 38936668 1 0 4 2 2 2 6 5898240 4177920 4177920 4180586 5241600 266 150 150 969 998 0 4 0 0 68 0 0 0 0 2 +155 1783881343035211700 REFRESH 58 0 0.61252584930955634 0 2 10 2 10 1 0 944 47 406 3989018 56640 224.72703552246094 1.4416 365.9178 13440 8056 0 0 0.069481912890886455 0.46292459064527092 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 15768424092 39659012 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 207 25 25 25 124 2 0 0 0 45 0 0 0 0 1 +156 1783881345250792500 DEPTH 58 1 0.60270956945700038 0 2 10 2 9 1 0 983 148 2489 23742986 147840 1302.2696533203125 8.5846999999999998 2214.1306 80640 40018 1 1 0.0016542225974442537 0.52551752849830291 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 15772821780 44056700 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 150 150 150 1889 0 0 0 0 147 0 0 0 0 5 +157 1783881347602993800 DEPTH 58 1 0.69376661001905515 0 2 9 2 8 1 0 1018 150 2473 23743101 147840 1288.1387481689453 8.6097999999999999 2350.3292000000001 80640 32592 1 0 0.0079595981812813701 0.82996917343610754 4096 2048 384 12 96 360 72 24 0 2473 1920 0 384 1 15777203148 48438068 1 0 4 2 2 2 6 5898240 2949120 2949120 2951010 8985600 150 150 150 150 1873 0 0 0 0 150 0 0 0 0 5 +158 1783881349992599200 DEPTH 58 1 0.7756941804397679 0 2 8 2 8 1 0 1036 105 2483 23743091 147840 1281.439453125 8.5844000000000005 2387.9537 80640 26402 1 0 0.013092897836874975 0.83267135787790669 4096 2048 384 12 96 360 72 24 0 2483 1920 0 384 1 15781594716 52829636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950948 8985600 150 150 150 150 1883 0 0 0 0 105 0 0 0 0 4 +159 1783881352371445000 DEPTH 58 1 0.75166650223465226 0 2 8 2 8 1 0 1064 94 2510 23743122 147840 1273.6787109375 8.583400000000001 2377.2718 80640 18400 1 0 0.013092896488433616 0.83267137100756916 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 15786013824 57248744 1 0 4 2 2 2 6 5898240 2949120 2949120 2950948 8985600 150 150 150 150 1910 0 0 0 0 94 0 0 0 0 1 +160 1783881352737138200 REFRESH 58 0 0.72775709718283621 0 2 8 2 8 0 0 1104 58 405 3989043 56640 222.49063110351562 1.46 364.0788 13440 8205 0 0 0.013092896488433616 0.83267137100756916 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 15786735148 57970068 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 140 25 25 25 190 1 0 0 0 57 0 0 0 0 0 +161 1783881355108151800 DEPTH 58 1 0.70621540566554364 0 2 8 2 8 1 0 1136 109 2500 23743305 147840 1297.9712677001953 8.5939999999999994 2369.5886999999998 80640 38762 1 0 0.0083082873232372418 0.29296110006841675 4096 2048 384 12 96 360 72 24 0 2500 1920 0 384 1 15791144056 62378976 1 0 4 2 2 2 6 5898240 2949120 2949120 2951018 8985600 150 150 150 150 1900 0 0 0 0 109 0 0 0 0 2 +162 1783881357495976300 DEPTH 58 1 0.68760662810611461 0 2 8 2 8 1 0 1158 71 2512 23743037 147840 1279.9634094238281 8.5816999999999997 2385.8705 80640 31872 1 1 0.013228320532410976 0.4439698506449527 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 15795565204 66800124 1 0 4 2 2 2 6 5898240 2949120 2949120 2950911 8985600 150 150 150 150 1912 0 0 0 0 70 0 0 0 0 2 +163 1783881361016492100 DEPTH 58 1 0.67044432493651918 0 2 8 2 8 1 0 1180 93 2536 23743225 147840 1274.3270416259766 8.5865000000000009 3518.4065000000001 80640 25618 1 1 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 15800010912 4137848 1 0 4 2 2 2 6 5898240 2949120 2949120 2951043 8985600 150 150 150 150 1936 0 0 0 0 92 0 0 0 0 1 +164 1783881363395179200 DEPTH 58 1 0.65461233139688324 0 2 8 2 8 0 0 1191 62 2524 23743198 147840 1274.4619293212891 8.5821000000000005 2377.2766000000001 80640 17941 1 0 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 15804444300 8571236 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 150 150 150 150 1924 0 0 0 0 62 0 0 0 0 0 +165 1783881363773224300 REFRESH 58 0 0.64029394450851917 0 2 8 2 8 0 0 1206 39 400 3989053 56640 222.90841674804688 1.4319999999999999 376.55970000000002 13440 8254 0 0 0.015679075712257989 0.36745753617606658 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 15805160524 9287460 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 140 25 25 25 185 0 0 0 0 39 0 0 0 0 0 +166 1783881366375279000 DEPTH 58 1 0.62738502529990137 0 2 8 2 8 0 0 1224 68 2517 23743225 147840 1287.5797119140625 8.7609999999999992 2496.9270000000001 80640 39424 1 0 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 15809586772 13713708 1 0 4 2 2 2 6 5898240 2949120 2949120 2950948 8985600 150 150 150 150 1917 0 0 0 0 68 0 0 0 0 0 +167 1783881368804786100 DEPTH 58 1 0.61574479154650219 0 2 8 2 8 0 0 1237 62 2506 23739530 144000 1282.0572052001953 8.5884 2427.4515999999999 87360 37395 1 0 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 15814001800 18128736 1 0 4 3 2 2 5 5898240 3194880 2949120 2951068 8736000 150 150 150 166 1890 0 0 2 1 59 0 0 0 0 0 +168 1783881371299405300 DEPTH 58 1 0.60524653718805033 0 2 8 2 8 0 0 1249 55 2533 23721113 125760 1280.2468719482422 8.6861999999999995 2492.8436000000002 120960 39380 1 1 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 15818444368 22571304 1 0 4 3 2 2 5 5898240 4423680 2949120 2951019 7488000 150 150 150 784 1299 0 0 2 1 51 0 0 0 0 0 +169 1783881373764367400 DEPTH 58 1 0.59577622474830938 0 2 8 2 8 0 0 1264 78 2551 23701837 106560 1271.4219512939453 8.5891000000000002 2463.5855000000001 120960 28480 1 0 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 15822905296 27032232 1 0 4 3 3 2 4 5898240 4423680 4177920 2950940 6240000 150 150 155 1235 861 0 0 16 11 51 0 0 0 0 0 +170 1783881374162244000 REFRESH 58 0 0.58723121851206161 0 2 8 2 8 0 0 1271 32 414 3988056 55680 224.35020446777344 1.4319999999999999 396.18079999999998 20160 12025 0 0 0.015679075712257989 0.36745753617606658 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 15823635800 27762736 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 40 25 25 208 116 0 0 2 12 18 0 0 0 0 0 +171 1783881376627215100 DEPTH 58 1 0.57951914438359742 0 2 8 2 8 0 0 1283 77 2522 23698786 103680 1292.4590148925781 8.5905000000000005 2463.3597 120960 59920 1 0 0.015679075712257989 0.36745753617606658 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 15828067148 32194084 1 0 4 3 3 2 4 5898240 4423680 4423680 2950871 5990400 150 150 150 842 1230 0 0 6 2 69 0 0 0 0 0 +172 1783881379259653600 DEPTH 58 1 0.57255686375858428 0 2 8 2 8 1 0 1296 62 2531 23696281 100800 1383.3707427978516 8.8172999999999995 2630.8395999999998 120960 48731 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 15832507676 36634612 1 0 4 3 2 2 5 5898240 4423680 4177920 3442714 5740800 150 150 150 937 1144 0 0 2 0 60 0 0 0 0 4 +173 1783881381781184000 DEPTH 58 1 0.5666357698464346 0 2 8 2 8 0 0 1306 55 2516 23717385 121920 1388.2685394287109 8.7106000000000012 2519.5423000000001 120960 38328 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 15836932904 41059840 1 0 4 3 3 2 4 5898240 4423680 3194880 2950985 7238400 150 150 150 587 1479 0 0 1 0 54 0 0 0 0 0 +174 1783881384350629400 DEPTH 58 1 0.56091945516750519 0 2 8 2 8 0 0 1316 63 2552 23699047 103680 1405.8465728759766 8.761099999999999 2567.8865000000001 120960 27710 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 15841394852 45521788 1 0 4 3 3 2 4 5898240 4423680 4423680 2951037 5990400 150 150 155 1261 836 0 0 14 5 44 0 0 0 0 0 +175 1783881384762505800 REFRESH 58 0 0.55575381068426655 0 2 8 2 8 0 0 1325 20 420 3988101 55680 240.679931640625 1.4350000000000001 410.25200000000001 20160 12446 0 0 0.009987423151418505 0.29158383405602922 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15842131476 46258412 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 52 25 27 215 101 0 0 1 5 14 0 0 0 0 0 +176 1783881387390734500 DEPTH 58 1 0.55108391663426015 0 2 8 2 8 0 0 1334 52 2519 23695220 99840 1361.0486602783203 8.7637999999999998 2626.6844999999998 120960 58624 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 15846559764 50686700 1 0 4 3 3 3 3 5898240 4423680 4423680 3196815 5740800 150 150 161 932 1126 0 0 3 2 47 0 0 0 0 0 +177 1783881389850589600 DEPTH 58 1 0.54686034347128598 0 2 8 2 8 0 0 1344 55 2554 23677800 81600 1315.2499847412109 8.6365000000000016 2458.5117 120960 48270 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15851023752 55150688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 150 150 162 1442 650 0 0 5 1 49 0 0 0 0 0 +178 1783881392355937700 DEPTH 58 1 0.54303860287337424 0 2 8 2 8 0 0 1354 44 2572 23677911 81600 1319.9638214111328 8.7225999999999999 2503.8813 120960 38447 1 0 0.009987423151418505 0.29158383405602922 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 15855506100 59633036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426509 4492800 150 150 160 1565 547 0 1 3 2 38 0 0 0 0 0 +179 1783881394849483600 DEPTH 58 1 0.53957865364932145 0 2 8 2 8 1 0 1359 50 2588 23678072 81600 1332.0470886230469 8.7871000000000006 2491.5524 120960 27363 1 0 0.0077391082005196085 0.20101146153838584 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 15860004768 64131704 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 156 1626 506 0 0 0 6 44 0 0 0 0 1 +180 1783881395263470300 REFRESH 58 0 0.53647461051063294 0 2 8 2 8 0 0 1368 25 418 3987714 55200 237.53421020507812 1.4379999999999999 412.12810000000002 20160 12640 0 0 0.0077391082005196085 0.20101146153838584 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 15860739352 64866288 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 34 244 90 0 0 2 10 13 0 0 0 0 0 +181 1783881399050558800 DEPTH 58 1 0.53363071468224799 0 2 8 2 8 1 0 1379 59 2547 23677980 81600 1375.0323028564453 8.6660000000000004 3684.9450999999999 120960 59744 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 15865196280 2214296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426532 4492800 150 150 177 1061 1009 0 1 0 1 57 0 0 0 0 1 +182 1783881401535129600 DEPTH 58 1 0.53109291981017526 0 2 8 2 8 0 0 1389 62 2539 23691658 96000 1311.5525207519531 8.5985999999999994 2482.7574 120960 48667 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 15869644968 6662984 1 0 4 3 3 3 3 5898240 4423680 4423680 3442799 5491200 150 150 198 812 1229 0 0 2 2 58 0 0 0 0 0 +183 1783881403968439000 DEPTH 58 1 0.52874739575226104 0 2 8 2 8 0 0 1401 60 2557 23677863 81600 1300.5711669921875 9.8156999999999996 2431.5174000000002 120960 38808 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15874112016 11130032 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 150 150 184 1413 660 0 0 0 16 44 0 0 0 0 0 +184 1783881406483774600 DEPTH 58 1 0.52661672719012553 0 2 8 2 8 0 0 1407 65 2545 23678048 81600 1299.1765594482422 8.6309000000000005 2513.7968999999998 120960 26637 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 15878566824 15584840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426512 4492800 150 150 169 1557 519 0 0 1 17 47 0 0 0 0 0 +185 1783881406878140700 REFRESH 58 0 0.52467956100528768 0 2 8 2 8 0 0 1409 23 409 3987719 55200 226.97779846191406 1.4716 392.96210000000002 20160 12304 0 0 0.0080779200825664352 0.14682166050789094 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 15879292228 16310244 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 38 238 83 0 0 3 5 15 0 0 0 0 0 +186 1783881409336927800 DEPTH 58 1 0.52291667787584073 0 2 8 2 8 0 0 1418 60 2538 23678200 81600 1315.73779296875 8.8176000000000005 2456.8914 120960 59470 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 15883739896 20757912 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 150 150 215 1146 877 0 0 4 3 53 0 0 0 0 0 +187 1783881411804398300 DEPTH 58 1 0.52131077892120181 0 2 8 2 8 0 0 1431 50 2557 23678027 81600 1308.0719757080078 8.6321000000000012 2465.6332000000002 120960 48269 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15888206944 25224960 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 200 1404 653 0 0 4 4 42 0 0 0 0 0 +188 1783881414255265600 DEPTH 58 1 0.51984629368188195 0 2 8 2 8 0 0 1438 49 2561 23677958 81600 1321.0175933837891 8.5928000000000004 2449.3901999999998 120960 39818 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 15892678072 29696088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 203 1489 569 0 0 7 0 42 0 0 0 0 0 +189 1783881416716206200 DEPTH 58 1 0.51850920730078598 0 2 8 2 8 0 0 1447 41 2578 23678110 81600 1321.058349609375 8.7555999999999994 2459.0866000000001 120960 27210 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 15897166540 34184556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 150 150 202 1551 525 0 0 2 1 38 0 0 0 0 0 +190 1783881417135559600 REFRESH 58 0 0.51728690498590291 0 2 8 2 8 0 0 1450 17 422 3987747 55200 234.36288452148438 1.4544999999999999 417.69080000000002 20160 12545 0 0 0.0080779200825664352 0.14682166050789094 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15897905204 34923220 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 41 245 86 0 0 2 5 10 0 0 0 0 0 +191 1783881419835420400 DEPTH 58 1 0.51616803202625849 0 2 8 2 8 0 0 1465 54 2578 23678147 81600 1515.1134796142578 8.7463999999999995 2697.8566999999998 120960 60715 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 15902393672 39411688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 232 1358 688 0 2 3 0 49 0 0 0 0 0 +192 1783881422360578500 DEPTH 58 1 0.51514236780581624 0 2 8 2 8 0 0 1473 39 2577 23678207 81600 1388.0761413574219 8.6424000000000003 2523.6478000000002 120960 50306 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 15906881120 43899136 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 229 1489 559 0 1 1 0 37 0 0 0 0 0 +193 1783881424918435900 DEPTH 58 1 0.51420071241554355 0 2 8 2 8 0 0 1479 37 2586 23678087 81600 1383.2735443115234 8.6173999999999999 2555.9837000000002 120960 40151 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 15911377748 48395764 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 220 1566 500 0 0 3 0 34 0 0 0 0 0 +194 1783881427451431200 DEPTH 58 1 0.51333478460383564 0 2 8 2 8 0 0 1483 30 2588 23678081 81600 1375.4388427734375 8.5842000000000009 2531.4875999999999 120960 27946 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 15915876416 52894432 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 212 1586 490 0 0 0 3 27 0 0 0 0 0 +195 1783881427868646900 REFRESH 58 0 0.51253712993147471 0 2 8 2 8 0 0 1489 16 414 3987751 55200 241.55647277832031 1.4241999999999999 415.6146 20160 13165 0 0 0.0080779200825664352 0.14682166050789094 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 15916606920 53624936 1 0 4 3 3 3 3 983040 737280 737280 737532 748800 25 25 41 241 82 0 0 0 6 10 0 0 0 0 0 +196 1783881430473383500 DEPTH 58 1 0.51180103811068012 0 2 8 2 8 0 0 1494 46 2579 23678193 81600 1351.0165100097656 8.6688000000000009 2517.5075999999999 120960 63485 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 15921096408 58114424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 236 1452 591 0 0 2 1 43 0 0 0 0 0 +197 1783881433002189200 DEPTH 58 1 0.51112046860984872 0 2 8 2 8 0 0 1500 55 2582 23678287 81600 1333.6177520751953 8.6145999999999994 2527.4155999999998 120960 52359 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 15925588956 62606972 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 150 150 216 1547 519 0 0 1 4 50 0 0 0 0 0 +198 1783881436611491100 DEPTH 58 1 0.51048998369742948 0 2 8 2 8 0 0 1507 37 2595 23678358 81600 1322.2759704589844 8.6435999999999993 3607.8157000000001 120960 42388 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 15930094844 9604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 210 1594 491 0 0 2 1 34 0 0 0 0 0 +199 1783881439279163500 DEPTH 58 1 0.50990468818102574 0 2 8 2 8 0 0 1516 40 2578 23678168 81600 1516.3883514404297 8.6030000000000015 2666.2707 120960 29094 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 15934583312 4498072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 209 1598 471 0 0 1 2 37 0 0 0 0 0 +200 1783881439697191700 REFRESH 58 0 0.5093601751722131 0 2 8 2 8 0 0 1519 18 420 3987703 55200 230.56486511230469 1.4246000000000001 416.45839999999998 20160 13478 0 0 0.0080779200825664352 0.14682166050789094 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15935319936 5234696 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 40 256 74 0 0 0 5 13 0 0 0 0 0 +201 1783881442188382300 DEPTH 58 1 0.50885247727450866 0 2 8 2 8 0 0 1526 44 2573 23678150 81600 1333.001220703125 8.6234999999999999 2489.6338000000001 120960 64727 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 15939803304 9718064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 223 1465 585 0 0 1 7 36 0 0 0 0 0 +202 1783881444699606900 DEPTH 58 1 0.50837802265218801 0 2 8 2 8 0 0 1539 44 2590 23678203 81600 1324.9187774658203 8.5660000000000007 2509.5491000000002 120960 53934 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 15944304012 14218772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 213 1584 493 0 0 5 3 36 0 0 0 0 0 +203 1783881447183706800 DEPTH 58 1 0.50793359549187 0 2 8 2 8 0 0 1545 42 2610 23678307 81600 1321.427978515625 8.6034000000000006 2482.6516000000001 120960 43453 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2610 1920 0 384 1 15948825120 18739880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 214 1608 488 0 0 0 8 34 0 0 0 0 0 +204 1783881449705285900 DEPTH 58 1 0.50751630041760409 0 2 8 2 8 0 0 1548 25 2589 23678060 81600 1320.3824768066406 8.6709999999999994 2520.0832999999998 120960 33589 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 15953324808 23239568 1 0 5 3 3 2 3 6389760 4423680 4423680 3934664 4492800 150 150 213 1612 464 0 0 2 5 18 0 0 0 0 0 +205 1783881450102304000 REFRESH 58 0 0.50712353046411629 0 2 8 2 8 0 0 1562 51 418 3987536 55200 227.92713928222656 1.4444999999999999 395.28289999999998 20160 13988 0 0 0.0080779200825664352 0.14682166050789094 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 15954059392 23974152 1 0 5 3 3 2 3 1228800 737280 737280 491685 748800 25 25 27 215 126 0 0 0 31 20 0 0 0 0 0 +206 1783881452551835000 DEPTH 58 1 0.50675293825240486 0 2 8 2 8 0 0 1577 76 2578 23677100 81600 1321.581298828125 8.6812000000000005 2448.0455999999999 120960 64918 1 0 0.0080779200825664352 0.14682166050789094 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 15958547860 28462620 1 0 4 3 3 3 3 6389760 4423680 4423680 3934632 4492800 150 150 154 1065 1059 0 0 1 4 71 0 0 0 0 0 +207 1783881454980570400 DEPTH 58 1 0.50640241004746134 0 2 8 2 7 1 0 1603 78 2564 23700128 104640 1283.5800170898438 8.8311999999999991 2427.3085000000001 107520 45727 1 0 0.010321317213672994 0.31993387628893494 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15963022048 32936808 1 0 4 2 2 2 6 5898240 3932160 3932160 3934638 5990400 150 150 150 934 1180 0 0 0 8 70 0 0 0 0 3 +208 1783881457415040300 DEPTH 58 1 0.60607004240990781 0 2 7 2 7 1 0 1623 77 2497 23742694 147840 1288.5391082763672 8.6013999999999999 2433.1187 80640 25271 1 0 0.0068983533311199807 0.22924873811023985 4096 2048 384 12 96 360 72 24 0 2497 1920 0 384 1 15967427896 37342656 1 0 4 2 2 2 6 5898240 2949120 2949120 2950970 8985600 150 150 150 150 1897 0 0 0 0 77 0 0 0 0 3 +209 1783881459865811400 DEPTH 58 1 0.59590175313169569 0 2 7 2 7 0 0 1631 50 2491 23742750 147840 1278.5889282226562 8.6014999999999997 2448.8694999999998 80640 17412 1 0 0.0068983533311199807 0.22924873811023985 4096 2048 384 12 96 360 72 24 0 2491 1920 0 384 1 15971827624 41742384 1 0 4 2 2 2 6 5898240 2949120 2949120 2950986 8985600 150 150 150 150 1891 0 0 0 0 50 0 0 0 0 0 +210 1783881460234971600 REFRESH 58 0 0.58658597133030632 0 2 7 2 7 1 0 1637 19 402 3988981 56640 223.8525390625 1.4211 367.6782 13440 8079 0 0 0.0068983440114873638 0.21466616016469223 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 15972545888 42460648 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 25 302 0 0 0 0 19 0 0 0 0 1 +211 1783881462677011000 DEPTH 58 1 0.57821214729291071 0 2 7 2 7 0 0 1649 53 2491 23742819 147840 1282.9971771240234 8.6500000000000004 2348.0228999999999 80640 40363 1 0 0.0068983440114873638 0.21466616016469223 4096 2048 384 12 96 360 72 24 0 2491 1920 0 384 1 15976945616 46860376 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 150 150 150 150 1891 0 0 0 0 53 0 0 0 0 0 +212 1783881465035668500 DEPTH 58 1 0.57063224551854852 0 2 7 2 7 1 0 1659 48 2496 23742728 147840 1274.6720275878906 8.5866000000000007 2357.2325999999998 80640 32675 1 0 0.0069501770327497891 0.19737421838373664 4096 2048 384 12 96 360 72 24 0 2496 1920 0 384 1 15981350444 51265204 1 0 4 2 2 2 6 5898240 2949120 2949120 2950912 8985600 150 150 150 150 1896 0 0 0 0 48 0 0 0 0 2 +213 1783881467403932500 DEPTH 58 1 0.56418994333994554 0 2 7 2 7 0 0 1665 51 2511 23742862 147840 1275.3131408691406 8.5864999999999991 2366.9427000000001 80640 26068 1 0 0.0069501770327497891 0.19737421838373664 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 15985770572 55685332 1 0 4 2 2 2 6 5898240 2949120 2949120 2950942 8985600 150 150 150 150 1911 0 0 1 0 50 0 0 0 0 0 +214 1783881469800843200 DEPTH 58 1 0.55797957262700182 0 2 7 2 7 0 0 1668 42 2506 23742675 147840 1271.0993347167969 8.5500999999999987 2395.5047 80640 18628 1 0 0.0069501770327497891 0.19737421838373664 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 15990185600 60100360 1 0 4 2 2 2 6 5898240 2949120 2949120 2950876 8985600 150 150 150 150 1906 0 0 0 0 42 0 0 0 0 0 +215 1783881470175013100 REFRESH 58 0 0.55237403856631395 0 2 7 2 7 0 0 1675 27 405 3988986 56640 222.9248046875 1.4259999999999999 372.55500000000001 13440 8457 0 0 0.0069501770327497891 0.19737421838373664 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 15990906924 60821684 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 25 305 1 0 0 0 26 0 0 0 0 0 +216 1783881472584793100 DEPTH 58 1 0.54731295237345678 0 2 7 2 7 0 0 1680 37 2495 23735184 140160 1301.1496887207031 9.1616 2408.4513000000002 94080 48180 1 0 0.0069501770327497891 0.19737421838373664 4096 2048 384 12 96 360 72 24 0 2495 1920 0 384 1 15995310732 65225492 1 0 4 3 2 2 5 5898240 3440640 2949120 2950978 8486400 150 150 150 225 1820 0 0 0 0 37 0 0 0 0 0 +217 1783881476145321900 DEPTH 58 1 0.54274196319609813 0 2 7 2 7 1 0 1686 33 2516 23724584 129600 1294.2112426757812 8.5885999999999996 3558.902 114240 48679 1 0 0.0069501477078280421 0.19760349703861052 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 15999736040 2542200 1 0 4 3 2 2 5 5898240 4177920 2949120 2950958 7737600 150 150 152 675 1389 0 0 0 1 32 0 0 0 0 1 +218 1783881478668073500 DEPTH 58 1 0.53861321919438321 0 2 7 2 7 1 0 1692 33 2567 23713041 118080 1333.2799987792969 8.6497000000000011 2521.0212999999999 120960 37549 1 0 0.0069501541546713244 0.19502052397136443 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 16004213288 7019448 1 0 4 3 2 2 5 5898240 4423680 3440640 2950974 6988800 150 150 159 1382 726 0 0 0 1 32 0 0 0 0 1 +219 1783881481155997000 DEPTH 58 1 0.53488534301368174 0 2 7 2 7 0 0 1695 33 2579 23705354 110400 1293.7083892822266 8.6196000000000002 2486.0291999999999 120960 26665 1 0 0.0069501541546713244 0.19502052397136443 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 16008702776 11508936 1 0 4 3 3 2 4 5898240 4423680 3932160 2950924 6489600 150 150 177 1575 527 0 0 2 5 26 0 0 0 0 0 +220 1783881481583034800 REFRESH 58 0 0.53150963430227205 0 2 7 2 7 1 0 1698 23 421 3987998 55680 222.92172241210938 1.4489000000000001 425.59730000000002 20160 12204 0 0 0.0069501478781469712 0.19501750040841304 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 16009440420 12246580 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 31 226 114 0 0 1 5 17 0 0 0 0 1 +221 1783881484003720700 DEPTH 58 1 0.5284559279735519 0 2 7 2 7 0 0 1700 32 2522 23701401 106560 1305.9246520996094 8.6015999999999995 2419.3366000000001 120960 60138 1 0 0.0069501478781469712 0.19501750040841304 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 16013871768 16677928 1 0 4 3 3 2 4 5898240 4423680 4177920 2950929 6240000 150 150 172 865 1185 0 0 3 1 28 0 0 0 0 0 +222 1783881486339009600 DEPTH 58 1 0.52569196002972862 0 2 7 2 7 0 0 1707 29 2561 23698615 103680 1276.9167785644531 8.5932999999999993 2334.0376000000001 120960 49056 1 0 0.0069501478781469712 0.19501750040841304 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 16018342896 21149056 1 0 4 3 3 2 4 5898240 4423680 4423680 2950928 5990400 150 150 171 1475 615 0 1 4 0 24 0 0 0 0 0 +223 1783881487516356300 DEPTH 58 1 0.52318892173833342 0 2 7 2 7 0 0 1709 18 1279 11847737 49920 642.16395568847656 4.2885 1175.9090000000001 60480 19975 0 0 0.0069501478781469712 0.19501750040841304 4096 2048 192 6 48 180 36 12 0 1279 960 0 192 0 16020572148 23378308 1 0 4 3 3 3 3 2949120 2211840 2211840 1967225 2496000 75 75 87 766 276 0 0 0 0 18 0 0 0 0 0 diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/run.tsv b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/run.tsv new file mode 100644 index 00000000..fd435dfb --- /dev/null +++ b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/run.tsv @@ -0,0 +1,58 @@ +format szilassi-global-search-v5 +run_id 39f3391d-d20c-4b57-bf88-287d2db196b4 +node_id LOOKICH +seed 787581010 +topology_from 58 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 1 +algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +transformer_enabled 1 +transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83 +transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker +transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64 +transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 15191896304 +training_neural_model_reserve_bytes 265316868 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000001_c537514e.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000001_c537514e.szar new file mode 100644 index 00000000..fa5641eb Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000001_c537514e.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000002_58598ca8.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000002_58598ca8.szar new file mode 100644 index 00000000..4fc3557a Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000002_58598ca8.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000003_473c37e5.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000003_473c37e5.szar new file mode 100644 index 00000000..a24074b8 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000003_473c37e5.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000004_d491ebc1.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000004_d491ebc1.szar new file mode 100644 index 00000000..d649853b Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000004_d491ebc1.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000005_f7353a7e.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000005_f7353a7e.szar new file mode 100644 index 00000000..0081a483 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000005_f7353a7e.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000006_a45a57d6.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000006_a45a57d6.szar new file mode 100644 index 00000000..69870702 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000006_a45a57d6.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000007_aaf9e76e.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000007_aaf9e76e.szar new file mode 100644 index 00000000..b28b4eb9 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000007_aaf9e76e.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000008_c3840ef3.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000008_c3840ef3.szar new file mode 100644 index 00000000..6e3a47c0 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000008_c3840ef3.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000009_0c3085cc.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000009_0c3085cc.szar new file mode 100644 index 00000000..8770d118 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000009_0c3085cc.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000010_fc677258.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000010_fc677258.szar new file mode 100644 index 00000000..de5df6bd Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000010_fc677258.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000011_463a4406.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000011_463a4406.szar new file mode 100644 index 00000000..984ffade Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000011_463a4406.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000012_ace7f402.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000012_ace7f402.szar new file mode 100644 index 00000000..8cbfc006 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000012_ace7f402.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000013_741c4317.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000013_741c4317.szar new file mode 100644 index 00000000..04eeabec Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000013_741c4317.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000014_d619c6ef.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000014_d619c6ef.szar new file mode 100644 index 00000000..03f2a7e4 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000014_d619c6ef.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000015_51faf369.szar b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000015_51faf369.szar new file mode 100644 index 00000000..dc69d0ad Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/archive/delta_00000000000000000015_51faf369.szar differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000001_805bbc6b.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000001_805bbc6b.szcp new file mode 100644 index 00000000..cd8bab75 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000001_805bbc6b.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000002_1dbb1531.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000002_1dbb1531.szcp new file mode 100644 index 00000000..8b1a100d Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000002_1dbb1531.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000003_ba72b863.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000003_ba72b863.szcp new file mode 100644 index 00000000..31c6dac3 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000003_ba72b863.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000004_7c04ebd0.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000004_7c04ebd0.szcp new file mode 100644 index 00000000..2ddf0424 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000004_7c04ebd0.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000005_9d9d7366.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000005_9d9d7366.szcp new file mode 100644 index 00000000..b88890c9 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000005_9d9d7366.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000006_687337e5.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000006_687337e5.szcp new file mode 100644 index 00000000..e82a0555 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000006_687337e5.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000007_60e910ea.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000007_60e910ea.szcp new file mode 100644 index 00000000..17b8f545 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000007_60e910ea.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000008_b986e50e.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000008_b986e50e.szcp new file mode 100644 index 00000000..b2b5f3b0 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000008_b986e50e.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000009_1185f337.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000009_1185f337.szcp new file mode 100644 index 00000000..3df83d79 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000009_1185f337.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000010_6e257cb3.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000010_6e257cb3.szcp new file mode 100644 index 00000000..8576839d Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000010_6e257cb3.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000011_dbf6ca3f.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000011_dbf6ca3f.szcp new file mode 100644 index 00000000..667f8ed1 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000011_dbf6ca3f.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000012_afd434d2.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000012_afd434d2.szcp new file mode 100644 index 00000000..e4e5b1ca Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000012_afd434d2.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000013_1b9374db.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000013_1b9374db.szcp new file mode 100644 index 00000000..499644bb Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000013_1b9374db.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000014_cb329e92.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000014_cb329e92.szcp new file mode 100644 index 00000000..f279bbe0 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000014_cb329e92.szcp differ diff --git a/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000015_6ed14281.szcp b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000015_6ed14281.szcp new file mode 100644 index 00000000..a37ee920 Binary files /dev/null and b/results/search/runs/39f3391d-d20c-4b57-bf88-287d2db196b4/topology_058/checkpoints/checkpoint_00000000000000000015_6ed14281.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/metrics.tsv b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/metrics.tsv new file mode 100644 index 00000000..9a6a92d4 --- /dev/null +++ b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/metrics.tsv @@ -0,0 +1,225 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783859943979760900 DEPTH 27 1 0.62348542587702926 0 0 14 0 14 1 0 883 65 2514 23803932 209280 1453.7943115234375 8.5983999999999998 2023.798 40320 20132 1 0 4.4782017417475159e-06 0.89043534185111339 4096 2048 384 12 96 2514 1920 128 384 1 6220586720 4583484 1 0 5 1 2 2 6 7618560 1474560 2949120 2705035 8985600 220 173 157 181 1783 12 2 2 1 48 0 0 0 0 2 +2 1783859945735480300 DEPTH 27 1 0.61383087851126661 0 0 14 0 14 1 0 886 68 2523 23742767 147840 1263.0438385009766 8.708400000000001 1754.5352 40320 15974 1 0 3.8960647247984719e-06 0.99438672944551088 4096 2048 384 12 96 2523 1920 0 384 1 6225019088 9015852 1 0 5 1 2 2 6 7372800 1474560 2949120 2951069 8985600 197 160 162 219 1785 0 0 5 1 62 0 0 0 0 1 +3 1783859947523553200 DEPTH 27 1 0.61419410212908265 0 0 14 0 14 1 0 887 52 2508 23742626 147840 1259.2931213378906 8.5750999999999991 1786.9163000000001 47040 19031 1 0 4.1653514936675035e-06 0.94684043664068696 4096 2048 384 12 96 2508 1920 0 384 1 6229436156 13432920 1 0 4 2 2 2 6 7127040 1720320 2949120 2950931 8985600 207 162 168 283 1688 0 0 3 0 49 0 0 0 0 1 +4 1783859949237662100 DEPTH 27 1 0.61457981256441618 0 0 14 0 14 0 0 892 49 2506 23742649 147840 1258.4949645996094 8.5728999999999989 1712.971 80640 22001 1 0 4.1653514936675035e-06 0.94684043664068696 4096 2048 384 12 96 2506 1920 0 384 1 6233851184 17847948 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 205 162 172 466 1501 0 4 1 0 44 0 0 0 0 0 +5 1783859949534337100 REFRESH 27 0 0.61480159295834014 0 0 14 0 14 0 0 897 21 409 3988973 56640 221.76358032226562 1.4271 295.53309999999999 13440 8109 0 0 4.1653514936675035e-06 0.94684043664068696 4096 2048 64 1 16 409 320 0 64 0 6234576588 18573352 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 30 25 31 39 284 0 0 0 0 21 0 0 0 0 0 +6 1783859951283494900 DEPTH 27 1 0.61490451284012282 0 0 14 0 14 1 0 899 55 2505 23742724 147840 1283.9638977050781 8.6532999999999998 1747.8876 80640 40833 1 0 4.1653196148956255e-06 0.94656923445003716 4096 2048 384 12 96 2505 1920 0 384 1 6238990596 22987360 1 0 4 2 2 2 6 5898240 2949120 2949120 2951030 8985600 162 150 168 188 1837 3 0 0 0 52 0 0 0 0 1 +7 1783859953022005900 DEPTH 27 1 0.61487608383226222 0 0 14 0 14 1 0 899 58 2513 23743037 147840 1283.2646789550781 8.6069999999999993 1737.2271000000001 80640 33385 1 0 3.1597583354772713e-06 0.9481609520051526 4096 2048 384 12 96 2513 1920 0 384 1 6243412764 27409528 1 0 4 2 2 2 6 5898240 2949120 2949120 2950996 8985600 162 150 168 185 1848 1 0 0 0 57 0 0 0 0 1 +8 1783859954739322100 DEPTH 27 1 0.61472751206190024 0 0 14 0 14 0 0 899 42 2536 23720759 125760 1276.0771179199219 8.7133000000000003 1715.9824000000001 120960 41315 1 0 3.1597583354772713e-06 0.9481609520051526 4096 2048 384 12 96 2536 1920 0 384 1 6247858392 31855156 1 0 4 3 2 2 5 5898240 4423680 2949120 2950999 7488000 159 150 174 952 1101 1 0 3 1 37 0 0 0 0 0 +9 1783859956461113600 DEPTH 27 1 0.61442295989426787 0 0 14 0 14 1 0 899 46 2558 23720725 125760 1272.1981658935547 8.6302000000000003 1720.4478999999999 120960 28948 1 0 8.1275709083700562e-07 0.80763628746906602 4096 2048 384 12 96 2558 1920 0 384 1 6252326460 36323224 1 0 4 3 2 2 5 5898240 4423680 2949120 2950888 7488000 156 150 172 1506 574 0 0 2 3 41 0 0 0 0 1 +10 1783859956760248200 REFRESH 27 0 0.6141227468091448 0 0 14 0 14 0 0 904 25 423 3987993 55680 225.080322265625 1.4428000000000001 297.96699999999998 20160 12222 0 0 8.1275709083700562e-07 0.80763628746906602 4096 2048 64 1 16 423 320 0 64 0 6253066144 37062908 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 29 25 27 142 200 1 0 0 10 14 0 0 0 0 0 +11 1783859958499995100 DEPTH 27 1 0.61355355980741666 0 0 14 0 14 0 0 905 48 2534 23698532 103680 1291.7402191162109 8.5823999999999998 1738.5753999999999 120960 60291 1 0 8.1275709083700562e-07 0.80763628746906602 4096 2048 384 12 96 2534 1920 0 384 1 6257509732 41506496 1 0 4 3 3 2 4 5898240 4423680 4423680 2950956 5990400 162 150 187 761 1274 5 0 4 0 39 0 0 0 0 0 +12 1783859960280133600 DEPTH 27 1 0.61287363706050946 0 0 14 0 14 0 0 914 45 2552 23698573 103680 1286.3703155517578 8.6309000000000005 1778.9222 120960 49007 1 0 8.1275709083700562e-07 0.80763628746906602 4096 2048 384 12 96 2552 1920 0 384 1 6261971680 45968444 1 0 4 3 3 2 4 5898240 4423680 4423680 2950951 5990400 158 150 185 1180 879 6 0 5 3 31 0 0 0 0 0 +13 1783859962016312400 DEPTH 27 1 0.61209302313518443 0 0 14 0 14 1 0 917 36 2563 23691425 96000 1286.4092254638672 8.5781999999999989 1733.9363000000001 120960 39152 1 0 2.7764157249169022e-05 0.816492131766548 4096 2048 384 12 96 2563 1920 0 384 1 6266444848 50441612 1 0 4 3 3 2 4 5898240 4423680 4423680 3442761 5491200 156 150 175 1406 676 0 0 1 4 31 0 0 0 0 2 +14 1783859963752898200 DEPTH 27 1 0.61124983675509403 0 0 14 0 14 1 0 919 28 2565 23698766 103680 1281.5126647949219 8.5942000000000007 1735.4229 120960 26841 1 0 9.8246816246824155e-07 0.78335288789504098 4096 2048 384 12 96 2565 1920 0 384 1 6270920056 54916820 1 0 4 3 3 2 4 5898240 4423680 4423680 2951001 5990400 163 150 185 1494 573 1 0 1 0 26 0 0 0 0 1 +15 1783859964048462500 REFRESH 27 0 0.61034800004767487 0 0 14 0 14 0 0 924 23 419 3987611 55200 225.9222412109375 1.4359 294.27069999999998 20160 12717 0 0 9.8246816246824155e-07 0.78335288789504098 4096 2048 64 1 16 419 320 0 64 0 6271655660 55652424 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 44 25 51 135 164 1 0 2 7 13 0 0 0 0 0 +16 1783859965840340500 DEPTH 27 1 0.60931828303519064 0 0 14 1 13 1 0 931 67 2551 23677314 81600 1299.4908142089844 8.5861999999999998 1790.5323000000001 114240 58357 1 0 0.00029582430467168765 1.8871954882783482 4096 2048 384 12 96 2551 1920 0 384 1 6276116588 60113352 1 0 4 3 4 2 3 5898240 4177920 5160960 3934680 4492800 180 150 258 675 1288 4 0 1 1 61 0 0 1 0 0 +17 1783859967598455200 DEPTH 27 1 0.65822801436963996 0 1 13 1 13 0 0 933 41 2540 23676495 81600 1285.4213409423828 8.588000000000001 1756.8544999999999 120960 48870 1 0 0.00029582430467168765 1.8871954882783482 4096 2048 384 12 96 2540 1920 0 384 1 6280566296 64563060 1 0 4 3 4 2 3 5898240 4423680 5898240 2950933 4492800 190 150 268 694 1238 2 0 0 0 39 0 0 0 0 0 +18 1783859970426932900 DEPTH 27 1 0.65208578759557767 0 1 13 1 13 0 0 935 44 2567 23676676 81600 1286.1994934082031 8.6127000000000002 2827.0412999999999 120960 39082 1 0 0.00029582430467168765 1.8871954882783482 4096 2048 384 12 96 2567 1920 0 384 1 6285043624 1932056 1 0 4 3 4 2 3 5898240 4423680 5898240 2951036 4492800 200 150 277 911 1029 6 0 2 0 36 0 0 0 0 0 +19 1783859972186932500 DEPTH 27 1 0.64639957660658909 0 1 13 1 13 0 0 937 39 2551 23677468 81600 1286.3613128662109 8.5993999999999993 1758.5857000000001 120960 27048 1 0 0.00029582430467168765 1.8871954882783482 4096 2048 384 12 96 2551 1920 0 384 1 6289504552 6392984 1 0 4 3 3 3 3 5898240 4423680 4915200 3934665 4492800 198 150 269 1134 800 0 0 1 2 36 0 0 0 0 0 +20 1783859972496559100 REFRESH 27 0 0.64112671968955781 0 1 13 1 13 0 0 939 24 419 3987744 55200 226.57843017578125 1.4308000000000001 308.44069999999999 20160 12626 0 0 0.00029582430467168765 1.8871954882783482 4096 2048 64 1 16 419 320 0 64 0 6290240156 7128588 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 51 25 67 156 120 5 0 1 5 13 0 0 0 0 0 +21 1783859974398954700 DEPTH 27 1 0.63622892352108396 0 1 13 1 13 0 0 942 48 2544 23677659 81600 1304.2924041748047 8.5830000000000002 1806.5471 120960 60078 1 0 0.00029582430467168765 1.8871954882783482 4096 2048 384 12 96 2544 1920 0 384 1 6294693944 11582376 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 204 150 299 721 1170 2 0 0 2 44 0 0 0 0 0 +22 1783859976178825200 DEPTH 27 1 0.63167178076383834 0 1 13 1 13 1 0 944 36 2561 23677725 81600 1296.3973083496094 8.6058999999999983 1778.6525999999999 120960 48349 1 0 0.00031958403181490361 1.8867880034802773 4096 2048 384 12 96 2561 1920 0 384 1 6299165072 16053504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426532 4492800 205 150 295 828 1083 0 0 0 0 36 0 0 0 0 1 +23 1783859977978580000 DEPTH 27 1 0.62742485715369867 0 1 13 1 13 1 0 944 43 2556 23677620 81600 1291.6934356689453 8.6067999999999998 1798.3804 120960 39138 1 0 0.00029286916554958946 1.8120658789898423 4096 2048 384 12 96 2556 1920 0 384 1 6303631100 20519532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 206 150 301 936 963 0 0 0 2 41 0 0 0 0 1 +24 1783859979826560400 DEPTH 27 1 0.6235508655347517 0 1 13 1 13 1 0 946 49 2571 23677582 81600 1289.7344512939453 8.5751000000000008 1846.3955000000001 120960 27041 1 0 0.00024430302528691999 1.7559979924145535 4096 2048 384 12 96 2571 1920 0 384 1 6308112428 25000860 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 214 150 303 1102 802 0 0 2 4 43 0 0 0 0 1 +25 1783859980131087600 REFRESH 27 0 0.61990727761444586 0 1 13 1 13 0 0 946 15 426 3987633 55200 226.27532958984375 1.4256 303.42180000000002 20160 12404 0 0 0.00024430302528691999 1.7559979924145535 4096 2048 64 1 16 426 320 0 64 0 6308855172 25743604 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 45 25 73 172 111 5 0 1 2 7 0 0 0 0 0 +26 1783859981901733100 DEPTH 27 1 0.61641685738996355 0 1 13 1 13 0 0 946 42 2557 23677963 81600 1304.6640777587891 8.5893999999999995 1769.2074 120960 60134 1 0 0.00024430302528691999 1.7559979924145535 4096 2048 384 12 96 2557 1920 0 384 1 6313322220 30210652 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 234 150 321 867 985 1 1 0 7 33 0 0 0 0 0 +27 1783859983673891800 DEPTH 27 1 0.61314173106584091 0 1 13 1 13 0 0 948 36 2559 23677722 81600 1294.8152313232422 8.6012999999999984 1770.9632999999999 120960 49466 1 0 0.00024430302528691999 1.7559979924145535 4096 2048 384 12 96 2559 1920 0 384 1 6317791308 34679740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 246 150 334 1028 801 0 0 0 4 32 0 0 0 0 0 +28 1783859985451575700 DEPTH 27 1 0.61006330942838471 0 1 13 1 13 1 0 948 41 2564 23677810 81600 1294.413818359375 8.5748999999999995 1776.4319 120960 39408 1 0 0.00024224044967092014 1.744025879599354 4096 2048 384 12 96 2564 1920 0 384 1 6322265496 39153928 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 248 150 329 1217 620 2 0 5 2 32 0 0 0 0 1 +29 1783859987195626400 DEPTH 27 1 0.60718863152267977 0 1 13 1 13 1 0 950 34 2572 23677811 81600 1290.6221466064453 8.5967000000000002 1742.7180000000001 120960 27177 1 0 0.00024445356756463168 1.7415561754129323 4096 2048 384 12 96 2572 1920 0 384 1 6326747844 43636276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426484 4492800 252 150 308 1300 562 0 0 1 4 29 0 0 0 0 1 +30 1783859987501314900 REFRESH 27 0 0.60445491856292932 0 1 13 1 13 0 0 951 12 425 3987652 55200 226.629638671875 1.4288000000000001 304.3535 20160 12713 0 0 0.00024445356756463168 1.7415561754129323 4096 2048 64 1 16 425 320 0 64 0 6327489568 44378000 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 47 25 78 179 96 1 0 1 3 7 0 0 0 0 0 +31 1783859989287766200 DEPTH 27 1 0.6018697228533938 0 1 13 1 13 0 0 951 38 2576 23677886 81600 1306.0659027099609 8.5850000000000009 1785.2231999999999 120960 61688 1 0 0.00024445356756463168 1.7415561754129323 4096 2048 384 12 96 2576 1920 0 384 1 6331975996 48864428 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 270 150 374 869 913 0 0 1 6 31 0 0 0 0 0 +32 1783859991099402100 DEPTH 27 1 0.5994233123436119 0 1 13 1 13 0 0 952 35 2566 23677976 81600 1298.4567413330078 8.5823 1810.2666999999999 120960 49921 1 0 0.00024445356756463168 1.7415561754129323 4096 2048 384 12 96 2566 1920 0 384 1 6336452224 53340656 1 0 4 3 3 3 3 5898240 4423680 4423680 4426389 4492800 269 150 369 1044 734 1 0 3 1 30 0 0 0 0 0 +33 1783859992881352100 DEPTH 27 1 0.59710439456772901 0 1 13 1 13 0 0 952 47 2571 23677930 81600 1293.6765594482422 8.5779999999999994 1780.5255999999999 120960 40121 1 0 0.00024445356756463168 1.7415561754129323 4096 2048 384 12 96 2571 1920 0 384 1 6340933552 57821984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 252 150 357 1194 618 1 0 4 3 39 0 0 0 0 0 +34 1783859994669663100 DEPTH 27 1 0.59490273248825476 0 1 13 1 13 1 0 952 37 2569 23677871 81600 1292.5839385986328 8.588099999999999 1786.7955999999999 120960 27722 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2569 1920 0 384 1 6345412840 62301272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 237 150 340 1321 521 1 0 3 7 26 0 0 0 0 1 +35 1783859994976154800 REFRESH 27 0 0.59291013157982819 0 1 13 1 13 0 0 953 18 426 3987720 55200 227.45805358886719 1.4371 305.15550000000002 20160 13142 0 0 0.0002164515344191109 1.6656654269063753 4096 2048 64 1 16 426 320 0 64 0 6346155584 63044016 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 49 25 82 175 95 0 0 2 2 14 0 0 0 0 0 +36 1783859997860697700 DEPTH 27 1 0.59090586876716644 0 1 13 1 13 0 0 956 44 2578 23677975 81600 1307.9429016113281 8.6044999999999998 2883.3525 120960 63435 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2578 1920 0 384 1 6350644132 424128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 278 150 445 951 754 1 0 6 1 36 0 0 0 0 0 +37 1783859999659554200 DEPTH 27 1 0.58899449844743867 0 1 13 1 13 0 0 958 27 2569 23677992 81600 1299.6741180419922 8.583499999999999 1797.0664999999999 120960 52955 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2569 1920 0 384 1 6355123420 4903416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 256 150 413 1134 616 1 0 0 1 25 0 0 0 0 0 +38 1783860001461534400 DEPTH 27 1 0.587168958456598 0 1 13 1 13 0 0 963 42 2575 23678174 81600 1295.6930389404297 8.5703999999999994 1800.5146999999999 120960 41860 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2575 1920 0 384 1 6359608828 9388824 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 235 150 399 1244 547 0 0 0 4 38 0 0 0 0 0 +39 1783860003266683700 DEPTH 27 1 0.58542282543748025 0 1 13 1 13 0 0 964 33 2577 23678005 81600 1291.7616729736328 8.5871999999999993 1803.9333999999999 120960 28108 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2577 1920 0 384 1 6364096276 13876272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426350 4492800 213 150 361 1339 514 1 0 3 0 29 0 0 0 0 0 +40 1783860003576737600 REFRESH 27 0 0.58375025281378623 0 1 13 1 13 0 0 965 13 426 3987684 55200 226.27328491210938 1.4238 308.8372 20160 13462 0 0 0.0002164515344191109 1.6656654269063753 4096 2048 64 1 16 426 320 0 64 0 6364839020 14619016 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 46 25 92 166 97 0 0 0 3 10 0 0 0 0 0 +41 1783860005457150600 DEPTH 27 1 0.5821459150375885 0 1 13 1 13 0 0 966 37 2577 23678065 81600 1308.9238739013672 8.5767999999999986 1794.6318000000001 120960 64879 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2577 1920 0 384 1 6369326468 19106464 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 238 150 458 1086 645 1 0 2 6 28 0 0 0 0 0 +42 1783860007277336300 DEPTH 27 1 0.58060495745185059 0 1 13 1 13 0 0 966 35 2571 23678140 81600 1299.1665191650391 8.5911000000000008 1818.9640999999999 120960 54072 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2571 1920 0 384 1 6373807796 23587792 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 216 150 416 1279 510 0 0 3 1 31 0 0 0 0 0 +43 1783860009069744900 DEPTH 27 1 0.57912295118193091 0 1 13 1 13 0 0 967 26 2578 23678021 81600 1296.8447875976562 8.6216999999999988 1791.1578999999999 120960 42708 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2578 1920 0 384 1 6378296264 28076260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 201 150 364 1392 471 0 0 0 2 24 0 0 0 0 0 +44 1783860010848653700 DEPTH 27 1 0.57769585253398548 0 1 13 1 13 0 0 969 35 2587 23678248 81600 1295.8074798583984 8.5671999999999997 1777.4848 120960 30260 1 0 0.0002164515344191109 1.6656654269063753 4096 2048 384 12 96 2587 1920 0 384 1 6382793912 32573908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 198 150 346 1427 466 0 0 0 3 32 0 0 0 0 0 +45 1783860011150758400 REFRESH 27 0 0.57631996643466443 0 1 13 1 13 0 0 969 11 429 3987788 55200 227.55839538574219 1.4258 300.96870000000001 20160 13580 0 0 0.0002164515344191109 1.6656654269063753 4096 2048 64 1 16 429 320 0 64 0 6383539716 33319712 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 46 25 97 174 87 0 0 1 3 7 0 0 0 0 0 +46 1783860012964079800 DEPTH 27 1 0.57499191349652068 0 1 13 1 13 1 0 971 44 2573 23678284 81600 1309.9110412597656 8.5709999999999997 1811.9280000000001 120960 65582 1 0 0.00021645138423734503 1.6641652406048912 4096 2048 384 12 96 2573 1920 0 384 1 6388023084 37803080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426558 4492800 225 150 473 1163 562 0 0 0 13 31 0 0 0 0 1 +47 1783860014760745400 DEPTH 27 1 0.57371059986331518 0 1 13 1 13 1 0 971 42 2574 23678196 81600 1303.8541717529297 8.5789000000000009 1794.8377 120960 54557 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2574 1920 0 384 1 6392507472 42287468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 205 150 430 1260 529 0 0 1 4 37 0 0 0 0 1 +48 1783860016557235000 DEPTH 27 1 0.5726503539035378 0 1 13 1 13 0 0 974 24 2577 23678110 81600 1297.7053680419922 8.5829999999999984 1795.0936999999999 120960 43930 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2577 1920 0 384 1 6396994920 46774916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 204 150 380 1367 476 0 0 0 0 24 0 0 0 0 0 +49 1783860018372029500 DEPTH 27 1 0.57142993691163224 0 1 13 1 13 0 0 974 21 2579 23678103 81600 1295.4503479003906 8.5869999999999997 1813.6756 120960 30332 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2579 1920 0 384 1 6401484408 51264404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 204 150 337 1434 454 1 0 0 0 20 0 0 0 0 0 +50 1783860018672652400 REFRESH 27 0 0.57024827248583665 0 1 13 1 13 0 0 975 13 422 3987753 55200 226.27532958984375 1.4279999999999999 299.42509999999999 20160 13378 0 0 0.00021269001562440341 1.6434220478463724 4096 2048 64 1 16 422 320 0 64 0 6402223072 52003068 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 39 25 99 175 84 1 0 0 3 9 0 0 0 0 0 +51 1783860020481097800 DEPTH 27 1 0.56910298548542482 0 1 13 1 13 0 0 976 29 2586 23678342 81600 1309.8273162841797 8.5710999999999995 1807.0555999999999 120960 65553 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2586 1920 0 384 1 6406719700 56499696 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 218 150 468 1195 555 0 0 3 0 26 0 0 0 0 0 +52 1783860022399582200 DEPTH 27 1 0.56799189503744585 0 1 13 1 13 0 0 977 23 2593 23678245 81600 1401.1517028808594 8.6748999999999992 1916.8248000000001 120960 54697 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2593 1920 0 384 1 6411223468 61003464 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 209 150 408 1330 496 0 0 1 1 21 0 0 0 0 0 +53 1783860024305522200 DEPTH 27 1 0.56691299668024731 0 1 13 1 13 0 0 977 18 2584 23678209 81600 1383.0808410644531 8.702 1903.9199000000001 120960 43918 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2584 1920 0 384 1 6415718056 65498052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 204 150 361 1409 460 0 0 1 0 17 0 0 0 0 0 +54 1783860027375853400 DEPTH 27 1 0.56586444623569032 0 1 13 1 13 0 0 977 28 2589 23678250 81600 1342.1507720947266 8.8274000000000008 3068.6246999999998 120960 29668 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2589 1920 0 384 1 6420217824 2889360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 204 150 330 1443 462 0 0 1 1 26 0 0 0 0 0 +55 1783860027702012400 REFRESH 27 0 0.56484454523774907 0 1 13 1 13 0 0 978 10 424 3987712 55200 225.66400146484375 1.4936 324.3886 20160 13450 0 0 0.00021269001562440341 1.6434220478463724 4096 2048 64 1 16 424 320 0 64 0 6420958528 3630064 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 41 25 99 176 83 0 0 0 4 6 0 0 0 0 0 +56 1783860029552716700 DEPTH 27 1 0.56385172776277692 0 1 13 1 13 0 0 979 29 2573 23678136 81600 1338.1683044433594 8.9177 1848.7709 120960 65539 1 0 0.00021269001562440341 1.6434220478463724 4096 2048 384 12 96 2573 1920 0 384 1 6425441896 8113432 1 0 4 3 3 3 3 5898240 4423680 4423680 4426388 4492800 221 150 483 1191 528 0 0 0 3 26 0 0 0 0 0 +57 1783860031431184100 DEPTH 27 1 0.56288454852244152 0 1 13 1 13 1 0 983 30 2568 23678324 81600 1347.2369232177734 8.6620000000000008 1876.3984 120960 54883 1 0 0.00021269000828083459 1.6277160835928912 4096 2048 384 12 96 2568 1920 0 384 1 6429920164 12591700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 209 150 399 1338 472 0 0 0 0 30 0 0 0 0 1 +58 1783860033406208300 DEPTH 27 1 0.56196259722316744 0 1 13 1 13 0 0 984 27 2580 23678304 81600 1393.42041015625 8.5990000000000002 1973.0947000000001 120960 43628 1 0 0.00021269000828083459 1.6277160835928912 4096 2048 384 12 96 2580 1920 0 384 1 6434410672 17082208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 206 150 357 1416 451 0 0 0 0 27 0 0 0 0 0 +59 1783860035294978100 DEPTH 27 1 0.5610406957945735 0 1 13 1 13 1 0 984 22 2582 23678195 81600 1309.2281799316406 8.6683000000000003 1886.5923 120960 30035 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2582 1920 0 384 1 6438903220 21574756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 204 150 325 1454 449 0 0 0 0 22 0 0 0 0 1 +60 1783860035703004000 REFRESH 27 0 0.56016562313833385 0 1 13 1 13 0 0 984 14 424 3987730 55200 245.02886962890625 1.4363999999999999 326.46289999999999 20160 13568 0 0 0.00021354089830540819 1.6094059484476779 4096 2048 64 1 16 424 320 0 64 0 6439643924 22315460 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 42 25 102 179 76 0 0 1 0 13 0 0 0 0 0 +61 1783860037587986500 DEPTH 27 1 0.55928443603784983 0 1 13 1 13 0 0 984 27 2576 23678167 81600 1337.1673126220703 8.6613000000000007 1883.1396999999999 120960 65871 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2576 1920 0 384 1 6444130352 26801888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426371 4492800 222 150 478 1217 509 0 0 3 0 24 0 0 0 0 0 +62 1783860039514764400 DEPTH 27 1 0.558423543631966 0 1 13 1 13 0 0 987 27 2579 23678195 81600 1371.4923858642578 8.6967999999999996 1925.3010999999999 120960 54578 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2579 1920 0 384 1 6448619840 31291376 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 210 150 405 1363 451 0 0 1 0 26 0 0 0 0 0 +63 1783860041379977100 DEPTH 27 1 0.55758198921012714 0 1 13 1 13 0 0 988 19 2570 23678363 81600 1311.9528961181641 8.5493000000000006 1863.2451000000001 120960 44095 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2570 1920 0 384 1 6453100148 35771684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426510 4492800 206 150 349 1420 445 0 0 0 1 18 0 0 0 0 0 +64 1783860043284878000 DEPTH 27 1 0.55675888381394889 0 1 13 1 13 0 0 989 30 2577 23678219 81600 1306.4552917480469 8.6020000000000003 1903.1045999999999 120960 29513 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2577 1920 0 384 1 6457587596 40259132 1 0 4 3 3 3 3 5898240 4423680 4423680 4426393 4492800 204 150 326 1449 448 0 0 0 4 26 0 0 0 0 0 +65 1783860043612061400 REFRESH 27 0 0.55595340043160035 0 1 13 1 13 0 0 989 7 426 3987710 55200 228.65306091308594 1.4213 325.8263 20160 13623 0 0 0.00021354089830540819 1.6094059484476779 4096 2048 64 1 16 426 320 0 64 0 6458330340 41001876 1 0 4 3 3 3 3 983040 737280 737280 737485 748800 44 25 99 187 71 0 0 1 1 5 0 0 0 0 0 +66 1783860045513870300 DEPTH 27 1 0.55216476873317277 0 1 13 1 13 0 0 990 24 2582 23678333 81600 1324.4427795410156 8.6156000000000006 1900.1282000000001 120960 66358 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2582 1920 0 384 1 6462822888 45494424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 216 150 426 1297 493 0 0 0 1 23 0 0 0 0 0 +67 1783860047389088600 DEPTH 27 1 0.55169227029457735 0 1 13 1 13 0 0 990 27 2576 23678272 81600 1315.8586273193359 8.6690000000000005 1873.106 120960 55193 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2576 1920 0 384 1 6467309316 49980852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 206 150 360 1414 446 0 0 0 0 27 0 0 0 0 0 +68 1783860049249326500 DEPTH 27 1 0.55120523426271539 0 1 13 1 13 0 0 990 25 2588 23678195 81600 1310.8316650390625 8.5395000000000003 1858.8271 120960 43640 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2588 1920 0 384 1 6471807984 54479520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 204 150 327 1452 455 0 0 0 4 21 0 0 0 0 0 +69 1783860051136326000 DEPTH 27 1 0.55070603341934454 0 1 13 1 13 0 0 990 22 2584 23678400 81600 1309.220947265625 8.5954999999999995 1884.9643000000001 120960 30402 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2584 1920 0 384 1 6476302572 58974108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426545 4492800 204 150 312 1462 456 0 0 0 0 22 0 0 0 0 0 +70 1783860051460601300 REFRESH 27 0 0.55019678060527299 0 1 13 1 13 0 0 990 8 429 3987798 55200 228.94093322753906 1.4390000000000001 322.42500000000001 20160 13485 0 0 0.00021354089830540819 1.6094059484476779 4096 2048 64 1 16 429 320 0 64 0 6477048376 59719912 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 46 25 93 192 73 1 0 1 1 5 0 0 0 0 0 +71 1783860053330387800 DEPTH 27 1 0.54767935547029267 0 1 13 1 13 0 0 992 29 2583 23678173 81600 1321.5416412353516 8.6615000000000002 1867.0320999999999 120960 66088 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2583 1920 0 384 1 6481541944 64213480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426354 4492800 225 150 446 1248 514 1 0 0 0 28 0 0 0 0 0 +72 1783860056317405100 DEPTH 27 1 0.54735542851767449 0 1 13 1 13 0 0 994 27 2578 23678301 81600 1314.7515106201172 8.6377000000000006 2985.3822 120960 54962 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2578 1920 0 384 1 6486030492 1594516 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 209 150 388 1379 452 1 0 0 0 26 0 0 0 0 0 +73 1783860058184110600 DEPTH 27 1 0.5470064827151071 0 1 13 1 13 0 0 995 17 2589 23678265 81600 1311.1480255126953 8.6107000000000014 1864.8724999999999 120960 44152 1 0 0.00021354089830540819 1.6094059484476779 4096 2048 384 12 96 2589 1920 0 384 1 6490530180 6094204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 205 150 350 1426 458 1 0 0 0 16 0 0 0 0 0 +74 1783860060041553800 DEPTH 27 1 0.54663583291672002 0 1 13 0 13 1 0 995 17 2581 23678649 81600 1309.4686737060547 8.5995000000000008 1856.0406 114240 30119 1 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 384 12 96 2581 1920 0 384 1 6495021708 10585732 1 0 4 2 1 6 3 5898240 4177920 3932160 5164115 4492800 204 150 336 1443 448 0 0 0 1 16 0 0 0 1 0 +75 1783860060351883300 REFRESH 27 0 0.6462464433163162 0 0 13 0 13 0 0 996 11 420 3987880 55200 227.23992919921875 1.4187000000000001 308.60840000000002 13440 8054 0 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 64 1 16 420 320 0 64 0 6495758332 11322356 1 0 4 2 1 6 3 983040 491520 245760 1475008 748800 71 25 25 204 95 0 0 0 4 7 0 0 0 0 0 +76 1783860062174856300 DEPTH 27 1 0.63584096312987037 0 0 13 0 13 0 0 999 35 2576 23680532 81600 1321.3122711181641 8.5887000000000011 1821.0093999999999 80640 39561 1 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 384 12 96 2576 1920 0 384 1 6500244760 15808784 1 0 4 2 1 6 3 5898240 2949120 1474560 8852825 4492800 283 150 150 1215 778 4 0 0 2 29 0 0 0 0 0 +77 1783860063991668300 DEPTH 27 1 0.62642175868549632 0 0 13 0 13 0 0 1000 42 2582 23680621 81600 1308.6013488769531 8.5800999999999998 1814.7553 80640 32470 1 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 384 12 96 2582 1920 0 384 1 6504737308 20301332 1 0 4 2 1 6 3 5898240 2949120 1474560 8852881 4492800 269 150 150 1391 622 1 0 0 0 41 0 0 0 0 0 +78 1783860065901187500 DEPTH 27 1 0.61789094228121355 0 0 13 0 13 0 0 1002 21 2588 23680668 81600 1304.6661682128906 8.7378 1835.7678000000001 80640 25659 1 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 384 12 96 2588 1920 0 384 1 6509235976 24800000 1 0 4 2 1 6 3 5898240 2949120 1474560 8852901 4492800 225 150 150 1564 499 1 0 0 0 20 0 0 0 0 0 +79 1783860067738572700 DEPTH 27 1 0.61016039813476364 0 0 13 0 13 0 0 1002 25 2581 23680510 81600 1302.6488342285156 8.6227999999999998 1835.7373 80640 18476 1 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 384 12 96 2581 1920 0 384 1 6513727504 29291528 1 0 4 2 2 5 3 5898240 2949120 1720320 8606905 4492800 216 150 150 1607 458 0 0 0 0 25 0 0 0 0 0 +80 1783860068042621800 REFRESH 27 0 0.60315080571725188 0 0 13 0 13 0 0 1003 10 419 3987814 55200 228.27314758300781 1.4619 302.5564 13440 8263 0 0 2.1722124050642579e-08 2.0246689912975926 4096 2048 64 1 16 419 320 0 64 0 6514463108 30027132 1 0 4 2 2 5 3 983040 491520 491520 1229179 748800 73 25 25 208 88 1 0 0 0 9 0 0 0 0 0 +81 1783860069856716200 DEPTH 27 1 0.59679076073317394 0 0 13 0 13 1 0 1004 25 2581 23679691 81600 1316.9878997802734 8.5800000000000001 1812.3231000000001 80640 39289 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2581 1920 0 384 1 6518954636 34518660 1 0 4 2 2 5 3 5898240 2949120 2949120 7377389 4492800 308 150 150 1191 782 0 0 0 1 24 0 0 0 0 1 +82 1783860071688124500 DEPTH 27 1 0.5910798005941571 0 0 13 0 13 0 0 1006 34 2580 23678738 81600 1308.9576873779297 8.5856999999999992 1829.7409 114240 47470 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2580 1920 0 384 1 6523445144 39009168 1 0 4 3 2 4 3 5898240 4177920 2949120 6147747 4492800 271 150 150 1391 618 2 0 0 3 29 0 0 0 0 0 +83 1783860073611933600 DEPTH 27 1 0.58582604427142337 0 0 13 0 13 0 0 1012 44 2592 23678788 81600 1372.9054870605469 8.6862999999999992 1922.1819 120960 38604 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2592 1920 0 384 1 6527947892 43511916 1 0 4 3 2 4 3 5898240 4423680 2949120 5901977 4492800 237 150 150 1545 510 2 0 0 0 42 0 0 0 0 0 +84 1783860075451438300 DEPTH 27 1 0.58104823425610941 0 0 13 0 13 0 0 1012 26 2588 23678668 81600 1329.2140350341797 8.650500000000001 1837.7528 120960 28315 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2588 1920 0 384 1 6532446560 48010584 1 0 4 3 2 4 3 5898240 4423680 2949120 5901807 4492800 220 150 150 1611 457 0 0 0 0 26 0 0 0 0 0 +85 1783860075765114900 REFRESH 27 0 0.57669940819583698 0 0 13 0 13 0 0 1013 10 419 3987651 55200 228.40217590332031 1.4320999999999999 312.04129999999998 20160 12104 0 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 64 1 16 419 320 0 64 0 6533182164 48746188 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 66 25 25 214 89 2 0 0 0 8 0 0 0 0 0 +86 1783860077661465900 DEPTH 27 1 0.57273728640684252 0 0 13 0 13 0 0 1015 33 2585 23677724 81600 1404.2224426269531 8.5681000000000012 1894.9552000000001 120960 59613 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2585 1920 0 384 1 6537677772 53241796 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 302 150 150 1281 702 5 0 0 0 28 0 0 0 0 0 +87 1783860079421004300 DEPTH 27 1 0.56912380400833606 0 0 13 0 13 0 0 1015 23 2585 23677827 81600 1295.6440734863281 8.5902000000000012 1758.3998999999999 120960 48795 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2585 1920 0 384 1 6542173380 57737404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 232 150 150 1497 556 0 0 0 0 23 0 0 0 0 0 +88 1783860081182886800 DEPTH 27 1 0.56582468982861411 0 0 13 0 13 0 0 1016 27 2579 23677883 81600 1287.3643188476562 8.6410999999999998 1760.5186000000001 120960 39349 1 0 2.0074807912572324e-08 1.9809253949281704 4096 2048 384 12 96 2579 1920 0 384 1 6546662868 62226892 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 222 150 150 1594 463 0 0 1 0 26 0 0 0 0 0 +89 1783860082944195300 DEPTH 27 1 0.56280908740639091 0 0 13 0 13 1 0 1018 18 2590 23677699 81600 1282.1748657226562 8.6013000000000002 1759.777 120960 26975 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2590 1920 0 384 1 6551163576 66727600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 218 150 150 1613 459 0 0 0 0 18 0 0 0 0 1 +90 1783860084351101100 REFRESH 27 0 0.56007970741963642 0 0 13 0 13 0 0 1019 7 420 3987695 55200 225.93125915527344 1.4430000000000001 1405.4467 20160 12208 0 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 64 1 16 420 320 0 64 0 6551900280 355404 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 69 25 25 211 90 0 0 0 0 7 0 0 0 0 0 +91 1783860086159534600 DEPTH 27 1 0.55454749715252882 0 0 13 0 13 0 0 1019 28 2584 23677948 81600 1298.3571472167969 8.6024999999999991 1807.2152000000001 120960 58257 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2584 1920 0 384 1 6556394868 4849992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 311 150 150 1303 670 1 0 0 0 27 0 0 0 0 0 +92 1783860087956423700 DEPTH 27 1 0.5525237784153143 0 0 13 0 13 0 0 1020 32 2575 23677785 81600 1288.4540863037109 8.6114999999999995 1795.4733000000001 120960 47311 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2575 1920 0 384 1 6560880276 9335400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 252 150 150 1519 504 0 0 0 0 32 0 0 0 0 0 +93 1783860089745823600 DEPTH 27 1 0.55065823624823906 0 0 13 0 13 0 0 1021 20 2589 23677902 81600 1287.4034271240234 8.6125999999999987 1788.1615999999999 120960 37618 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2589 1920 0 384 1 6565379964 13835088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 225 150 150 1593 471 0 0 0 0 20 0 0 0 0 0 +94 1783860091512157400 DEPTH 27 1 0.54893557644970015 0 0 13 0 13 0 0 1021 31 2581 23678053 81600 1281.9677276611328 8.5957000000000008 1765.0553 120960 26022 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2581 1920 0 384 1 6569871492 18326616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 217 150 150 1615 449 0 0 0 0 31 0 0 0 0 0 +95 1783860091817892300 REFRESH 27 0 0.54734202379944819 0 0 13 0 13 0 0 1021 5 425 3987678 55200 225.14483642578125 1.4468000000000001 304.64890000000003 20160 12436 0 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 64 1 16 425 320 0 64 0 6570613216 19068340 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 71 25 25 215 89 1 0 0 0 4 0 0 0 0 0 +96 1783860093606458700 DEPTH 27 1 0.54086517044899751 0 0 13 0 13 0 0 1022 26 2581 23677929 81600 1297.8457183837891 8.6142000000000003 1787.0930000000001 120960 59259 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2581 1920 0 384 1 6575104744 23559868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 334 150 150 1318 629 2 0 0 0 24 0 0 0 0 0 +97 1783860095381613000 DEPTH 27 1 0.53999383946295509 0 0 13 0 13 0 0 1022 26 2589 23677934 81600 1292.5000915527344 8.5915999999999997 1773.9768999999999 120960 47813 1 0 2.0074809776563589e-08 1.9630749104707428 4096 2048 384 12 96 2589 1920 0 384 1 6579604432 28059556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 266 150 150 1474 549 2 0 0 0 24 0 0 0 0 0 +98 1783860097235211000 DEPTH 27 1 0.53916796199658967 0 0 13 0 13 1 0 1022 23 2587 23677873 81600 1285.9638977050781 8.6282999999999994 1789.8427999999999 120960 38575 1 0 2.8362557293794822e-08 1.9345713724229912 4096 2048 384 12 96 2587 1920 0 384 1 6584102080 32557204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 236 150 150 1567 484 0 0 0 0 23 0 0 0 0 1 +99 1783860098997166100 DEPTH 27 1 0.5384588559987119 0 0 13 0 13 0 0 1024 26 2588 23677894 81600 1284.0729064941406 8.6176999999999992 1760.8226999999999 120960 26247 1 0 2.8362557293794822e-08 1.9345713724229912 4096 2048 384 12 96 2588 1920 0 384 1 6588600748 37055872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 221 150 150 1608 459 1 1 0 0 24 0 0 0 0 0 +100 1783860099306086600 REFRESH 27 0 0.53770453077391478 0 0 13 0 13 1 0 1024 11 422 3987746 55200 225.84422302246094 1.4439 307.40910000000002 20160 12464 0 0 2.8375541985818784e-08 1.906372560781824 4096 2048 64 1 16 422 320 0 64 0 6589339412 37794536 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 72 25 25 204 96 1 0 0 0 10 0 0 0 0 1 +101 1783860101105763100 DEPTH 27 1 0.53701745484384034 0 0 13 0 13 0 0 1025 32 2577 23678066 81600 1297.8562164306641 8.6274999999999995 1798.3638000000001 120960 59822 1 0 2.8375541985818784e-08 1.906372560781824 4096 2048 384 12 96 2577 1920 0 384 1 6593826860 42281984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 328 150 150 1283 666 0 0 0 0 32 0 0 0 0 0 +102 1783860102891648200 DEPTH 27 1 0.5363271482873917 0 0 13 0 13 0 0 1026 31 2575 23677982 81600 1289.0774230957031 8.5878000000000014 1784.3779999999999 120960 49056 1 0 2.8375541985818784e-08 1.906372560781824 4096 2048 384 12 96 2575 1920 0 384 1 6598312268 46767392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 273 150 150 1436 566 2 0 0 0 29 0 0 0 0 0 +103 1783860104697543500 DEPTH 27 1 0.53566647450815497 0 0 13 0 13 1 0 1027 28 2586 23678045 81600 1289.1728515625 8.6812000000000005 1804.3698999999999 120960 39125 1 0 2.8323367292396885e-08 1.9091056572763652 4096 2048 384 12 96 2586 1920 0 384 1 6602808896 51264020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 249 150 150 1542 495 0 0 0 0 28 0 0 0 0 1 +104 1783860106471196200 DEPTH 27 1 0.53505259687146467 0 0 13 0 13 1 0 1029 30 2580 23692666 96960 1282.9532318115234 8.6066000000000003 1771.8578 120960 27370 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2580 1920 0 384 1 6607299404 55754528 1 0 4 3 3 2 4 5898240 4423680 4423680 3442784 5491200 334 150 154 1183 759 0 0 0 0 30 0 0 0 0 2 +105 1783860106780764000 REFRESH 27 0 0.53450465455590102 0 0 13 0 13 0 0 1030 12 424 3988115 55680 225.27590942382812 1.4318 308.24279999999999 20160 12656 0 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 64 1 16 424 320 0 64 0 6608040108 56495232 1 0 4 3 3 2 4 983040 737280 737280 491698 998400 108 25 26 130 135 1 0 0 1 10 0 0 0 0 0 +106 1783860108542909300 DEPTH 27 1 0.5339105904575896 0 0 13 0 13 0 0 1031 32 2569 23695473 99840 1293.5767669677734 8.5823999999999998 1760.7934 120960 61028 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2569 1920 0 384 1 6612519396 60974520 1 0 4 3 3 3 3 5898240 4423680 4423680 3196938 5740800 378 150 156 804 1081 0 0 0 0 32 0 0 0 0 0 +107 1783860110379960300 DEPTH 27 1 0.53333821166377282 0 0 13 0 13 0 0 1032 19 2576 23678057 81600 1285.8492126464844 8.6532 1835.9084 120960 50841 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2576 1920 0 384 1 6617005824 65460948 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 327 150 156 1386 557 0 0 0 0 19 0 0 0 0 0 +108 1783860113212557300 DEPTH 27 1 0.53278574993742844 0 0 13 0 13 0 0 1033 31 2578 23677944 81600 1282.5113525390625 8.6228999999999996 2831.1156000000001 120960 40057 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2578 1920 0 384 1 6621494372 2840600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 267 150 161 1524 476 0 0 0 1 30 0 0 0 0 0 +109 1783860115079388800 DEPTH 27 1 0.5322516066855133 0 0 13 0 13 0 0 1033 29 2581 23678069 81600 1279.8480377197266 8.6141000000000005 1865.404 120960 27224 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2581 1920 0 384 1 6625985900 7332128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 239 150 160 1554 478 0 0 0 0 29 0 0 0 0 0 +110 1783860115379292700 REFRESH 27 0 0.53173433617406096 0 0 13 0 13 0 0 1033 5 428 3987716 55200 225.43670654296875 1.4309000000000001 298.63240000000002 20160 13043 0 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 64 1 16 428 320 0 64 0 6626730684 8076912 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 64 25 27 233 79 0 0 0 0 5 0 0 0 0 0 +111 1783860117150754400 DEPTH 27 1 0.52623263041607593 0 0 13 0 13 0 0 1033 26 2564 23677999 81600 1297.1448974609375 8.5892999999999997 1770.165 120960 63130 1 0 2.9223553747020876e-08 1.8930305149182221 4096 2048 384 12 96 2564 1920 0 384 1 6631204872 12551100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426489 4492800 374 150 162 1232 646 0 0 0 0 26 0 0 0 0 0 +112 1783860118903886100 DEPTH 27 1 0.52624530556516014 0 0 13 0 13 1 0 1033 33 2566 23689097 93120 1289.6870269775391 8.5871000000000013 1751.9070999999999 120960 52097 1 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 384 12 96 2566 1920 0 384 1 6635681100 17027328 1 0 4 3 3 2 4 5898240 4423680 4423680 3688743 5241600 380 150 162 1150 724 0 0 0 0 33 0 0 0 0 2 +113 1783860120668922600 DEPTH 27 1 0.52625641084797692 0 0 13 0 13 0 0 1034 22 2578 23678076 81600 1286.2827301025391 8.6234000000000002 1763.7940000000001 120960 41540 1 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 384 12 96 2578 1920 0 384 1 6640169568 21515796 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 383 150 162 1278 605 0 0 0 0 22 0 0 0 0 0 +114 1783860122440983000 DEPTH 27 1 0.52619622068105021 0 0 13 0 13 0 0 1034 18 2565 23678059 81600 1284.7748565673828 8.5944000000000003 1770.7713000000001 120960 28632 1 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 384 12 96 2565 1920 0 384 1 6644644776 25991004 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 375 150 162 1366 512 0 0 0 1 17 0 0 0 0 0 +115 1783860122738492300 REFRESH 27 0 0.52610733940568999 0 0 13 0 13 0 0 1035 10 422 3987716 55200 225.96607971191406 1.4341999999999999 296.18880000000001 20160 13296 0 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 64 1 16 422 320 0 64 0 6645383440 26729668 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 66 25 27 225 79 0 0 0 1 9 0 0 0 0 0 +116 1783860124508395700 DEPTH 27 1 0.52599298371003378 0 0 13 0 13 0 0 1036 41 2560 23678225 81600 1298.8662109375 8.5785 1768.4883 120960 64732 1 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 384 12 96 2560 1920 0 384 1 6649853548 31199776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426492 4492800 385 150 162 1232 631 2 0 0 0 39 0 0 0 0 0 +117 1783860126304336200 DEPTH 27 1 0.52585604272170072 0 0 13 0 13 0 0 1036 33 2564 23677986 81600 1291.5893859863281 8.5893999999999995 1794.5565999999999 120960 54036 1 0 1.4296289630035232e-08 1.8709031732529038 4096 2048 384 12 96 2564 1920 0 384 1 6654327736 35673964 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 381 150 162 1291 580 4 0 0 2 27 0 0 0 0 0 +118 1783860128146454400 DEPTH 27 1 0.5256991109033482 0 0 13 0 13 1 0 1036 27 2559 23678146 81600 1288.4864654541016 8.5984999999999996 1776.0771999999999 120960 42862 1 0 9.5716710795844608e-07 1.8278375514925229 4096 2048 384 12 96 2559 1920 0 384 1 6658796824 40143052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426500 4492800 382 150 162 1315 550 3 0 0 0 24 0 0 0 0 1 +119 1783860129929388500 DEPTH 27 1 0.52558425945722997 0 0 13 0 13 0 0 1037 25 2565 23678142 81600 1285.8009185791016 8.6224999999999987 1781.6621 120960 29660 1 0 9.5716710795844608e-07 1.8278375514925229 4096 2048 384 12 96 2565 1920 0 384 1 6663272032 44618260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426377 4492800 379 150 162 1385 489 2 0 1 0 22 0 0 0 0 0 +120 1783860130230328800 REFRESH 27 0 0.52538812157144399 0 0 13 0 13 0 0 1037 10 423 3987717 55200 226.62371826171875 1.4311 299.72109999999998 20160 13488 0 0 9.5716710795844608e-07 1.8278375514925229 4096 2048 64 1 16 423 320 0 64 0 6664011716 45357944 1 0 4 3 3 3 3 983040 737280 737280 737480 748800 67 25 27 226 78 1 0 0 1 8 0 0 0 0 0 +121 1783860132057801500 DEPTH 27 1 0.52517888716525696 0 0 13 0 13 0 0 1044 34 2576 23678258 81600 1301.2602844238281 8.6264000000000003 1826.2071000000001 120960 65515 1 0 9.5716710795844608e-07 1.8278375514925229 4096 2048 384 12 96 2576 1920 0 384 1 6668498144 49844372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 386 150 162 1328 550 2 0 0 0 32 0 0 0 0 0 +122 1783860133851846000 DEPTH 27 1 0.5249581801285248 0 0 13 2 11 1 0 1081 100 2533 23689582 93120 1299.3870239257812 8.5654000000000003 1792.6458 114240 53129 1 0 0.023542674943461992 0.6145891540848909 4096 2048 384 12 96 2533 1920 0 384 1 6672940712 54286940 1 0 4 2 2 2 6 5898240 4177920 4177920 4180565 5241600 264 150 162 588 1369 0 0 0 0 100 0 0 0 0 2 +123 1783860135632674200 DEPTH 27 1 0.62472745684734288 0 2 11 2 11 1 0 1115 129 2499 23743243 147840 1293.2044219970703 8.5846 1779.3907999999999 80640 27840 1 0 0.013136212764111534 0.28269054350740475 4096 2048 384 12 96 2499 1920 0 384 1 6677348600 58694828 1 0 4 2 2 2 6 5898240 2949120 2949120 2950912 8985600 176 150 157 158 1858 3 0 0 0 126 0 0 0 0 3 +124 1783860137385898500 DEPTH 27 1 0.61528564110268968 0 2 11 2 11 1 0 1143 153 2503 23743326 147840 1285.7142639160156 8.5915999999999997 1751.8896999999999 80640 20779 1 0 0.028923788135907711 0.21863084764457136 4096 2048 384 12 96 2503 1920 0 384 1 6681760568 63106796 1 0 4 2 2 2 6 5898240 2949120 2949120 2951012 8985600 162 150 167 156 1868 1 0 0 0 152 0 0 0 0 2 +125 1783860137690908200 REFRESH 27 0 0.60618059105423838 0 2 11 2 11 0 0 1152 36 411 3989020 56640 224.11776733398438 1.4528000000000001 303.7663 13440 7994 0 0 0.028923788135907711 0.21863084764457136 4096 2048 64 1 16 411 320 0 64 0 6682488012 63834240 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 165 25 28 28 165 3 0 0 0 33 0 0 0 0 0 +126 1783860140585945100 DEPTH 27 1 0.59773317115313174 0 2 11 0 11 1 0 1243 187 2487 23743026 147840 1288.4462738037109 8.6829000000000001 2893.598 80640 40208 1 0 0 2.4410339681272801 4096 2048 384 12 96 2487 1920 0 384 1 6686883740 1121992 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 162 150 165 157 1853 1 0 0 0 186 0 0 0 0 6 +127 1783860142485775400 DEPTH 27 1 0.79009959391734697 0 0 11 0 11 1 0 1371 314 2496 23743063 147840 1278.7958068847656 8.5655999999999999 1898.4619 80640 32256 1 0 0 1.6722771184120437 4096 2048 384 12 96 2496 1920 0 384 1 6691288568 5526820 1 0 4 2 2 2 6 5898240 2949120 2949120 2950947 8985600 152 150 152 154 1888 0 0 0 0 314 0 0 0 0 3 +128 1783860144446232100 DEPTH 27 1 0.76491630736317384 0 0 11 1 10 1 0 1484 269 2494 23743279 147840 1273.1963500976562 8.8005999999999993 1958.702 80640 25776 1 0 0.085110696296643543 1.7559989761335897 4096 2048 384 12 96 2494 1920 0 384 1 6695691356 9929608 1 0 4 2 2 2 6 5898240 2949120 2949120 2951003 8985600 151 150 150 154 1889 0 0 0 0 269 0 0 0 0 1 +129 1783860146419126700 DEPTH 27 1 0.79050346908231972 0 1 10 1 10 1 0 1546 218 2491 23743074 147840 1270.6191253662109 8.6028000000000002 1971.6559999999999 80640 17727 1 0 0.076676625408116761 1.5940267967565036 4096 2048 384 12 96 2491 1920 0 384 1 6700091084 14329336 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 150 150 150 150 1891 0 0 0 0 218 0 0 0 0 1 +130 1783860146724840700 REFRESH 27 0 0.76520136260134608 0 1 10 1 10 0 0 1593 74 402 3989056 56640 222.63090515136719 1.4295 304.47739999999999 13440 8485 0 0 0.076676625408116761 1.5940267967565036 4096 2048 64 1 16 402 320 0 64 0 6700809348 15047600 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 138 25 28 28 183 1 0 0 0 73 0 0 0 0 0 +131 1783860148701179000 DEPTH 27 1 0.74070017706313918 0 1 10 1 10 0 0 1677 246 2519 23743053 147840 1281.0094146728516 8.5800999999999998 1975.1715999999999 80640 39981 1 0 0.076676625408116761 1.5940267967565036 4096 2048 384 12 96 2519 1920 0 384 1 6705237636 19475888 1 0 4 2 2 2 6 5898240 2949120 2949120 2950929 8985600 152 150 151 151 1915 0 0 0 0 246 0 0 0 0 0 +132 1783860150712812500 DEPTH 27 1 0.71861959322388758 0 1 10 1 10 0 0 1715 204 2551 23743073 147840 1275.9466400146484 8.5949000000000009 2010.278 80640 32403 1 0 0.076676625408116761 1.5940267967565036 4096 2048 384 12 96 2551 1920 0 384 1 6709698564 23936816 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 150 150 150 150 1951 0 1 0 0 203 0 0 0 0 0 +133 1783860152732246900 DEPTH 27 1 0.69871781477277861 0 1 10 1 10 1 0 1754 178 2530 23743148 147840 1270.5561676025391 8.6775000000000002 2018.2251000000001 80640 25766 1 0 0.10262792787637361 2.2762628449694677 4096 2048 384 12 96 2530 1920 0 384 1 6714138072 28376324 1 0 4 2 2 2 6 5898240 2949120 2949120 2950951 8985600 150 150 150 150 1930 0 0 0 0 178 0 0 0 0 1 +134 1783860154747529800 DEPTH 27 1 0.68150310054380947 0 1 10 1 10 0 0 1793 153 2545 23743269 147840 1269.1291961669922 8.5824999999999996 2014.002 80640 17913 1 0 0.10262792787637361 2.2762628449694677 4096 2048 384 12 96 2545 1920 0 384 1 6718592880 32831132 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 150 150 150 1945 0 0 0 0 153 0 0 0 0 0 +135 1783860155062110300 REFRESH 27 0 0.66525524102455158 0 1 10 1 10 0 0 1833 70 408 3989051 56640 222.64627075195312 1.4291 313.45929999999998 13440 8536 0 0 0.10262792787637361 2.2762628449694677 4096 2048 64 1 16 408 320 0 64 0 6719317264 33555516 1 0 4 2 2 2 6 983040 491520 491520 491649 1497600 134 25 27 28 194 1 0 0 0 69 0 0 0 0 0 +136 1783860157047251800 DEPTH 27 1 0.65060368236624067 0 1 10 1 10 1 0 1881 152 2511 23743093 147840 1282.8454895019531 8.6131000000000011 1983.807 80640 40271 1 0 0.11081134120329378 1.7905949143875075 4096 2048 384 12 96 2511 1920 0 384 1 6723737392 37975644 1 0 4 2 2 2 6 5898240 2949120 2949120 2950912 8985600 150 150 150 150 1911 0 0 0 0 152 0 0 0 0 1 +137 1783860159227559000 DEPTH 27 1 0.6373905457711857 0 1 10 1 10 0 0 1901 109 2542 23723909 128640 1276.9853820800781 8.5970999999999993 2041.6166000000001 114240 46954 1 0 0.11081134120329378 1.7905949143875075 4096 2048 384 12 96 2542 1920 0 384 1 6728189140 42427392 1 0 4 3 2 2 5 5898240 4177920 2949120 2950978 7737600 150 150 150 668 1424 0 0 0 19 90 0 0 0 0 0 +138 1783860161224528700 DEPTH 27 1 0.62546922784116221 0 1 10 1 10 0 0 1924 88 2584 23717188 121920 1271.364501953125 8.5993999999999993 1995.8208 120960 38192 1 0 0.11081134120329378 1.7905949143875075 4096 2048 384 12 96 2584 1920 0 384 1 6732683728 46921980 1 0 4 3 3 2 4 5898240 4423680 3194880 2950950 7238400 150 150 151 1502 631 0 0 0 30 58 0 0 0 0 0 +139 1783860163267528700 DEPTH 27 1 0.61471229072416278 0 1 10 1 10 0 0 1947 94 2600 23699023 103680 1268.2857208251953 8.6242999999999999 2041.8167000000001 120960 27605 1 0 0.11081134120329378 1.7905949143875075 4096 2048 384 12 96 2600 1920 0 384 1 6737194636 51432888 1 0 4 3 3 2 4 5898240 4423680 4423680 2950990 5990400 150 150 163 1550 587 0 0 4 20 70 0 0 0 0 0 +140 1783860163615305600 REFRESH 27 0 0.60500353389371053 0 1 10 1 10 1 0 1959 40 421 3988045 55680 223.68051147460938 1.4294 346.49880000000002 20160 12070 0 0 0.16217132791830391 1.3524366473742557 4096 2048 64 1 16 421 320 0 64 0 6737932280 52170532 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 31 264 76 0 0 6 17 17 0 0 0 1 0 +141 1783860165669947300 DEPTH 27 1 0.59792991806531082 0 1 10 1 10 0 0 1983 79 2587 23680557 84480 1285.1329040527344 8.6219999999999999 2053.4726000000001 120960 59845 1 0 0.16217132791830391 1.3524366473742557 4096 2048 384 12 96 2587 1920 0 384 1 6742429928 56668180 1 0 4 3 3 3 3 5898240 4423680 4177920 4426434 4742400 150 150 178 1447 662 0 0 4 12 63 0 0 0 0 0 +142 1783860167720367500 DEPTH 27 1 0.58984507057599611 0 1 10 1 10 0 0 2001 76 2592 23677746 81600 1277.4848022460938 8.6020000000000003 2049.2646 120960 48328 1 0 0.16217132791830391 1.3524366473742557 4096 2048 384 12 96 2592 1920 0 384 1 6746932676 61170928 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 174 1577 541 0 0 1 17 58 0 0 0 0 0 +143 1783860169734429800 DEPTH 27 1 0.58254188664066409 0 1 10 1 10 0 0 2028 74 2612 23677868 81600 1275.1217651367188 8.6474999999999991 2012.8036 120960 38585 1 0 0.16217132791830391 1.3524366473742557 4096 2048 384 12 96 2612 1920 0 384 1 6751455824 65694076 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 175 1632 505 0 0 2 12 60 0 0 0 0 0 +144 1783860172773482200 DEPTH 27 1 0.57594242406442064 0 1 10 1 10 1 0 2054 75 2601 23677761 81600 1270.9105987548828 8.5983999999999998 3037.4427000000001 120960 27312 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2601 1920 0 384 1 6755967832 3097676 1 0 4 3 3 3 3 5898240 4423680 4423680 4426357 4492800 150 150 171 1640 490 0 0 2 10 63 0 0 0 0 1 +145 1783860173112412200 REFRESH 27 0 0.57017512179725605 0 1 10 1 10 0 0 2061 24 419 3987669 55200 224.11366271972656 1.4305000000000001 337.49270000000001 20160 12379 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 419 320 0 64 0 6756703436 3833280 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 37 264 68 0 0 2 8 14 0 0 0 0 0 +146 1783860175182790900 DEPTH 27 1 0.56475980145494398 0 1 10 1 10 0 0 2085 70 2592 23677874 81600 1293.0022277832031 8.6378999999999984 2069.2453 120960 58872 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2592 1920 0 384 1 6761206184 8336028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 219 1518 555 0 0 2 4 64 0 0 0 0 0 +147 1783860177203161200 DEPTH 27 1 0.55986006975619906 0 1 10 1 10 0 0 2102 65 2597 23677876 81600 1286.1271362304688 8.5869999999999997 2019.1388999999999 120960 48045 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2597 1920 0 384 1 6765714032 12843876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426504 4492800 150 150 225 1571 501 0 0 3 6 56 0 0 0 0 0 +148 1783860179216690200 DEPTH 27 1 0.55542457964458869 0 1 10 1 10 0 0 2123 67 2607 23677994 81600 1281.0864562988281 8.5974000000000004 2012.2291 120960 37881 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2607 1920 0 384 1 6770232080 17361924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 217 1577 513 0 0 2 11 54 0 0 0 0 0 +149 1783860181258283300 DEPTH 27 1 0.55140711583171709 0 1 10 1 10 0 0 2147 64 2605 23677964 81600 1280.6773223876953 8.6416000000000004 2040.2156 120960 25996 1 1 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2605 1920 0 384 1 6774748088 21877932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426312 4492800 150 150 221 1587 497 0 0 3 5 55 0 0 0 0 0 +150 1783860181601198700 REFRESH 27 0 0.54776608167762375 0 1 10 1 10 0 0 2153 18 424 3987733 55200 224.27853393554688 1.4320999999999999 341.75009999999997 20160 12364 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 424 320 0 64 0 6775488792 22618636 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 40 265 69 0 0 1 5 12 0 0 0 0 0 +151 1783860183643693500 DEPTH 27 1 0.54446403738171478 0 1 10 1 10 0 0 2173 67 2601 23678090 81600 1294.7815093994141 8.6103000000000005 2041.1528000000001 120960 59389 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2601 1920 0 384 1 6780000720 27130564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 240 1565 496 0 0 2 5 60 0 0 0 0 0 +152 1783860185661388100 DEPTH 27 1 0.54146728435321745 0 1 10 1 10 0 0 2193 73 2603 23677898 81600 1286.3988494873047 8.6036000000000001 2016.405 120960 48212 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2603 1920 0 384 1 6784514688 31644532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 234 1572 497 0 0 7 6 60 0 0 0 0 0 +153 1783860187702680900 DEPTH 27 1 0.53874549114324743 0 1 10 1 10 0 0 2200 49 2605 23677951 81600 1281.7950439453125 8.6084999999999994 2039.9166 120960 38942 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2605 1920 0 384 1 6789030696 36160540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 150 150 228 1576 501 0 0 2 1 46 0 0 0 0 0 +154 1783860189890256100 DEPTH 27 1 0.53627135678236759 0 1 10 1 10 0 0 2218 50 2609 23677994 81600 1278.1608734130859 8.6045999999999996 2066.7923000000001 120960 27057 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2609 1920 0 384 1 6793550784 40680628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 230 1589 490 0 0 2 1 47 0 0 0 0 0 +155 1783860190234357900 REFRESH 27 0 0.53402030778312781 0 1 10 1 10 0 0 2221 16 426 3987731 55200 225.038330078125 1.4308000000000001 342.85160000000002 20160 12403 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 426 320 0 64 0 6794293528 41423372 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 45 260 71 0 0 2 2 12 0 0 0 0 0 +156 1783860192332956400 DEPTH 27 1 0.5319702254411246 0 1 10 1 10 0 0 2239 66 2599 23678178 81600 1304.0099182128906 8.6663999999999994 2096.4265 120960 59313 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2599 1920 0 384 1 6798803416 45933260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 249 1551 499 0 0 3 5 58 0 0 0 0 0 +157 1783860194454055300 DEPTH 27 1 0.53010120040476694 0 1 10 1 10 0 0 2250 62 2601 23678151 81600 1319.7254943847656 8.626100000000001 2119.4996000000001 120960 48915 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2601 1920 0 384 1 6803315344 50445188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 150 150 248 1549 504 0 0 5 5 52 0 0 0 0 0 +158 1783860196562019100 DEPTH 27 1 0.52839531178690846 0 1 10 1 10 0 0 2271 60 2607 23677995 81600 1310.2807159423828 8.5958000000000006 2106.5970000000002 120960 38931 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2607 1920 0 384 1 6807833392 54963236 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 236 1586 485 0 0 9 1 50 0 0 0 0 0 +159 1783860198669136000 DEPTH 27 1 0.52683642836419819 0 1 10 1 10 0 0 2277 43 2603 23677972 81600 1309.834228515625 8.6022999999999996 2105.9265999999998 120960 26916 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2603 1920 0 384 1 6812347360 59477204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 234 1589 480 0 0 1 2 40 0 0 0 0 0 +160 1783860199013723300 REFRESH 27 0 0.52541002965540518 0 1 10 1 10 0 0 2277 16 424 3987732 55200 224.9881591796875 1.4283999999999999 343.40620000000001 20160 12516 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 424 320 0 64 0 6813088064 60217908 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 46 258 70 0 0 2 0 14 0 0 0 0 0 +161 1783860201044633500 DEPTH 27 1 0.52410304489085568 0 1 10 1 10 0 0 2297 68 2601 23678177 81600 1294.0260772705078 8.5739999999999998 2029.7231999999999 120960 60721 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2601 1920 0 384 1 6817599992 64729836 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 253 1574 474 0 0 4 3 61 0 0 0 0 0 +162 1783860204232746600 DEPTH 27 1 0.5229037080838993 0 1 10 1 10 0 0 2321 67 2607 23678266 81600 1287.5528869628906 8.6227999999999998 3186.8516 120960 50367 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2607 1920 0 384 1 6822118120 2139276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 241 1583 483 0 0 3 9 55 0 0 0 0 0 +163 1783860206334724700 DEPTH 27 1 0.52180142759423043 0 1 10 1 10 0 0 2332 51 2613 23678250 81600 1285.5904235839844 8.6048999999999989 2100.7109999999998 120960 39989 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2613 1920 0 384 1 6826642288 6663444 1 0 4 3 3 3 3 5898240 4423680 4423680 4426451 4492800 150 150 232 1597 484 0 0 3 7 41 0 0 0 0 0 +164 1783860208342175700 DEPTH 27 1 0.52078666873391033 0 1 10 1 10 0 0 2351 75 2594 23678184 81600 1280.0195159912109 8.5825999999999993 2005.9241 120960 27753 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2594 1920 0 384 1 6831147076 11168232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 224 1609 461 0 0 11 4 60 0 0 0 0 0 +165 1783860208682763100 REFRESH 27 0 0.51985084811184357 0 1 10 1 10 0 0 2353 16 426 3987729 55200 224.24166870117188 1.4320999999999999 338.60219999999998 20160 12973 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 426 320 0 64 0 6831889820 11910976 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 46 260 70 0 0 0 4 12 0 0 0 0 0 +166 1783860210735611800 DEPTH 27 1 0.51898623854289327 0 1 10 1 10 0 0 2367 66 2590 23678132 81600 1293.5105285644531 8.6064000000000007 2051.4364999999998 120960 62684 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2590 1920 0 384 1 6836390528 16411684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 250 1568 472 0 0 2 6 58 0 0 0 0 0 +167 1783860212772803600 DEPTH 27 1 0.5181858834651949 0 1 10 1 10 0 0 2377 47 2595 23678090 81600 1286.8730926513672 8.6097000000000001 2035.9627 120960 52069 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2595 1920 0 384 1 6840896336 20917492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426362 4492800 150 150 238 1590 467 0 0 5 7 35 0 0 0 0 0 +168 1783860214798189100 DEPTH 27 1 0.5174435199148737 0 1 10 1 10 0 0 2389 47 2599 23678249 81600 1282.8650817871094 8.5937999999999999 2024.0742 120960 42170 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2599 1920 0 384 1 6845406224 25427380 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 229 1597 473 0 0 0 10 37 0 0 0 0 0 +169 1783860216813965100 DEPTH 27 1 0.51675350920245045 0 1 10 1 10 0 0 2401 55 2603 23678346 81600 1284.3404083251953 8.6230000000000011 2014.5645999999999 120960 28782 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2603 1920 0 384 1 6849920192 29941348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 221 1607 475 0 0 0 3 52 0 0 0 0 0 +170 1783860217182579800 REFRESH 27 0 0.51611077452078846 0 1 10 1 10 0 0 2403 19 429 3987749 55200 225.70700073242188 1.4544999999999999 366.82459999999998 20160 13256 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 429 320 0 64 0 6850665996 30687152 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 48 257 74 0 0 0 5 14 0 0 0 0 0 +171 1783860219233373600 DEPTH 27 1 0.51551074479145176 0 1 10 1 10 0 0 2411 47 2613 23678191 81600 1296.4860382080078 8.5906000000000002 2049.5682000000002 120960 64118 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2613 1920 0 384 1 6855190164 35211320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 253 1567 493 0 0 0 17 30 0 0 0 0 0 +172 1783860221343324000 DEPTH 27 1 0.5149493041256531 0 1 10 1 10 0 0 2420 53 2584 23678154 81600 1290.3774719238281 8.5950000000000006 2008.4023 120960 53207 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2584 1920 0 384 1 6859684752 39705908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 249 1579 456 0 0 2 7 44 0 0 0 0 0 +173 1783860223334692100 DEPTH 27 1 0.51442274633835616 0 1 10 1 10 0 0 2424 43 2603 23678246 81600 1286.2637329101562 8.5982000000000003 1990.182 120960 43188 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2603 1920 0 384 1 6864198720 44219876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 241 1583 479 0 0 1 5 37 0 0 0 0 0 +174 1783860225358013600 DEPTH 27 1 0.5139277340102345 0 1 10 1 10 0 0 2431 40 2595 23678321 81600 1283.970947265625 8.6245000000000012 2022.0143 120960 28640 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2595 1920 0 384 1 6868704528 48725684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 231 1601 463 0 0 0 2 38 0 0 0 0 0 +175 1783860225704182600 REFRESH 27 0 0.51346126164272299 0 1 10 1 10 0 0 2435 16 427 3987762 55200 224.62258911132812 1.4460999999999999 344.47289999999998 20160 13406 0 0 0.16077354860662227 1.2484605050483872 4096 2048 64 1 16 427 320 0 64 0 6869448292 49469448 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 54 252 71 0 0 0 5 11 0 0 0 0 0 +176 1783860227722175300 DEPTH 27 1 0.51302062249687097 0 1 10 1 10 0 0 2446 45 2603 23678352 81600 1296.7392425537109 8.5830000000000002 2016.5628999999999 120960 65390 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2603 1920 0 384 1 6873962260 53983416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 278 1546 479 0 0 0 5 40 0 0 0 0 0 +177 1783860229732317700 DEPTH 27 1 0.51260337874763573 0 1 10 1 10 0 0 2456 44 2587 23678261 81600 1288.4468078613281 8.6338000000000008 2008.874 120960 53847 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2587 1920 0 384 1 6878459908 58481064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 259 1570 458 1 0 0 1 42 0 0 0 0 0 +178 1783860231761492600 DEPTH 27 1 0.51220733462208901 0 1 10 1 10 0 0 2473 55 2606 23678305 81600 1284.527099609375 8.6382000000000012 2027.4896000000001 120960 43435 1 0 0.16077354860662227 1.2484605050483872 4096 2048 384 12 96 2606 1920 0 384 1 6882976936 62998092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426504 4492800 150 150 241 1591 474 1 0 0 5 49 0 0 0 0 0 +179 1783860234843948700 DEPTH 27 1 0.51183051222316478 0 1 10 1 10 1 0 2484 50 2599 23678220 81600 1282.3489227294922 8.6140000000000008 3081.2397000000001 120960 29844 1 0 0.058561506038566045 1.2516878570051944 4096 2048 384 12 96 2599 1920 0 384 1 6887486904 399648 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 225 1605 469 3 2 0 1 44 0 0 0 0 1 +180 1783860235197428800 REFRESH 27 0 0.51167749021017905 0 1 10 1 10 0 0 2486 14 423 3987762 55200 225.40492248535156 1.4319 352.202 20160 13413 0 0 0.058561506038566045 1.2516878570051944 4096 2048 64 1 16 423 320 0 64 0 6888226588 1139332 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 51 254 68 0 0 0 2 12 0 0 0 0 0 +181 1783860237274597000 DEPTH 27 1 0.51131330641183959 0 1 10 1 10 1 0 2514 86 2604 23693246 96960 1300.8613433837891 8.6349999999999998 2076.0203000000001 120960 65126 1 0 0.00081812629199664861 0.93281979822412697 4096 2048 384 12 96 2604 1920 0 384 1 6892741576 5654320 1 0 4 3 2 2 5 5898240 4423680 4177920 3688735 5491200 150 150 351 1330 623 0 0 5 4 77 0 0 0 0 4 +182 1783860239441060800 DEPTH 27 1 0.51222291104676754 0 1 10 1 10 1 0 2541 87 2565 23725178 129600 1293.8741760253906 8.6179000000000006 2165.0655000000002 114240 56827 1 0 0.0010875887999769174 0.65423427687763713 4096 2048 384 12 96 2565 1920 0 384 1 6897216784 10129528 1 0 4 3 2 2 5 5898240 4177920 2949120 2950872 7737600 150 150 499 741 1025 0 0 5 7 75 0 0 0 0 3 +183 1783860241539552300 DEPTH 27 1 0.51223988197244608 0 1 10 1 10 0 0 2559 71 2579 23727933 132480 1286.8075256347656 8.629999999999999 2097.1799000000001 107520 40836 1 0 0.0010875887999769174 0.65423427687763713 4096 2048 384 12 96 2579 1920 0 384 1 6901706272 14619016 1 0 4 3 2 2 5 5898240 3932160 2949120 2950900 7987200 150 150 494 814 971 0 0 0 12 59 0 0 0 0 0 +184 1783860243653969800 DEPTH 27 1 0.511759964788292 0 1 10 1 10 1 0 2568 52 2593 23732767 137280 1281.3806457519531 8.6152000000000015 2113.1741999999999 100800 31476 1 0 0.0010908332348912664 0.63209395150692183 4096 2048 384 12 96 2593 1920 0 384 1 6906210040 19122784 1 0 4 2 2 2 6 5898240 3686400 2949120 2950964 8236800 150 150 477 938 878 0 0 0 7 45 0 0 0 0 4 +185 1783860243988812900 REFRESH 27 0 0.51134478387468285 0 1 10 1 10 0 0 2597 48 419 3989026 56640 223.44090270996094 1.4299999999999999 333.48950000000002 13440 8125 0 0 0.0010908332348912664 0.63209395150692183 4096 2048 64 1 16 419 320 0 64 0 6906945644 19858388 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 91 25 80 131 92 2 0 3 22 21 0 0 0 0 0 +186 1783860246039796200 DEPTH 27 1 0.51091537845829638 0 1 10 1 9 1 0 2646 110 2569 23742989 147840 1290.3372802734375 8.5982000000000003 2049.6383000000001 80640 39844 1 0 0.0010554204737913925 1.3582965734614691 4096 2048 384 12 96 2569 1920 0 384 1 6911424932 24337676 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 155 150 500 581 1183 0 0 0 1 109 0 0 0 0 1 +187 1783860248125232200 DEPTH 27 1 0.61050960944541188 0 1 9 1 9 0 0 2671 81 2584 23743166 147840 1290.6629333496094 8.5792000000000002 2084.3328999999999 80640 32829 1 0 0.0010554204737913925 1.3582965734614691 4096 2048 384 12 96 2584 1920 0 384 1 6915919520 28832264 1 0 4 2 2 2 6 5898240 2949120 2949120 2951032 8985600 150 150 520 717 1047 0 0 0 3 78 0 0 0 0 0 +188 1783860250203093700 DEPTH 27 1 0.60012524115367105 0 1 9 1 9 1 0 2687 54 2597 23743262 147840 1284.6991424560547 8.5970000000000013 2076.5940999999998 80640 25993 1 0 0.00088719667752517933 1.4425930123019066 4096 2048 384 12 96 2597 1920 0 384 1 6920427368 33340112 1 0 4 2 2 2 6 5898240 2949120 2949120 2951014 8985600 150 150 547 828 922 0 0 0 3 51 0 0 0 0 1 +189 1783860252436145000 DEPTH 27 1 0.59131999333855756 0 1 9 1 9 1 0 2696 43 2598 23743323 147840 1278.9284820556641 8.6372999999999998 2130.0882999999999 80640 18204 1 1 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2598 1920 0 384 1 6924936236 37848980 1 0 4 2 2 2 6 5898240 2949120 2949120 2951013 8985600 150 150 617 913 768 0 4 0 4 34 0 0 0 0 1 +190 1783860252774671400 REFRESH 27 0 0.58320685832560237 0 1 9 1 9 0 0 2707 37 417 3989036 56640 223.34054565429688 1.4317 337.14400000000001 13440 8398 0 0 0.00087836368962093962 1.2515469035725841 4096 2048 64 1 16 417 320 0 64 0 6925669800 38582544 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 67 25 72 158 95 0 0 0 20 17 0 0 0 0 0 +191 1783860254783720600 DEPTH 27 1 0.57549599003198804 0 1 9 1 9 0 0 2728 71 2573 23743333 147840 1289.19873046875 8.585700000000001 2007.7601999999999 80640 40108 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2573 1920 0 384 1 6930153168 43065912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 153 150 473 572 1225 0 0 0 3 68 0 0 0 0 0 +192 1783860256843118900 DEPTH 27 1 0.56853753001097296 0 1 9 1 9 0 0 2739 52 2591 23743056 147840 1286.5594787597656 8.6203000000000003 2058.1678999999999 80640 32972 1 1 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2591 1920 0 384 1 6934654896 47567640 1 0 4 2 2 2 6 5898240 2949120 2949120 2950910 8985600 156 150 498 651 1136 0 0 0 0 51 0 0 0 0 0 +193 1783860258875108500 DEPTH 27 1 0.56225635840018451 0 1 9 1 9 0 0 2740 36 2595 23739344 144000 1284.67724609375 8.6181000000000001 2030.6124 87360 31259 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2595 1920 0 384 1 6939160704 52073448 1 0 4 3 2 2 5 5898240 3194880 2949120 2950973 8736000 156 150 560 784 945 0 0 0 2 34 0 0 0 0 0 +194 1783860260944230000 DEPTH 27 1 0.55658486599001256 0 1 9 1 9 0 0 2746 57 2633 23721130 125760 1279.7040710449219 8.6019000000000005 2067.6622000000002 120960 27204 1 1 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2633 1920 0 384 1 6943705272 56618016 1 0 4 3 2 2 5 5898240 4423680 2949120 2950946 7488000 156 150 540 1138 649 0 0 0 6 50 0 0 0 0 0 +195 1783860261272599500 REFRESH 27 0 0.55146220317903394 0 1 9 1 9 0 0 2757 26 419 3988535 56160 224.86528015136719 1.4320999999999999 327.04309999999998 20160 12086 0 0 0.00087836368962093962 1.2515469035725841 4096 2048 64 1 16 419 320 0 64 0 6944440876 57353620 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 26 25 62 226 80 0 0 0 13 13 0 0 0 0 0 +196 1783860263373608000 DEPTH 27 1 0.54683360403348336 0 1 9 1 9 0 0 2767 54 2567 23698839 103680 1287.9568481445312 8.6425999999999998 2099.6374999999998 120960 59209 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2567 1920 0 384 1 6948918124 61830868 1 0 4 3 3 2 4 5898240 4423680 4423680 2950958 5990400 156 150 344 1135 782 0 0 0 6 48 0 0 0 0 0 +197 1783860265401071000 DEPTH 27 1 0.54264977794037161 0 1 9 1 9 0 0 2772 37 2569 23699022 103680 1285.6513061523438 8.5952999999999999 2026.1532999999999 120960 48682 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2569 1920 0 384 1 6953397412 66310156 1 0 4 3 3 2 4 5898240 4423680 4423680 2950992 5990400 156 150 337 1394 532 0 0 0 2 35 0 0 0 0 0 +198 1783860268516417700 DEPTH 27 1 0.53886636209490013 0 1 9 1 9 0 0 2779 42 2598 23677936 81600 1283.0881042480469 8.5984999999999996 3114.0592000000001 120960 38713 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2598 1920 0 384 1 6957906360 3710364 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 156 150 322 1457 513 0 0 0 3 39 0 0 0 0 0 +199 1783860270587665600 DEPTH 27 1 0.53544342873874939 0 1 9 1 9 0 0 2786 53 2599 23678106 81600 1280.3223419189453 8.6219999999999999 2069.8951999999999 120960 27490 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2599 1920 0 384 1 6962416248 8220252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 156 150 317 1492 484 0 0 0 11 42 0 0 0 0 0 +200 1783860270929032700 REFRESH 27 0 0.53234504167416441 0 1 9 1 9 0 0 2791 37 423 3987698 55200 224.96255493164062 1.4256 340.10539999999997 20160 12569 0 0 0.00087836368962093962 1.2515469035725841 4096 2048 64 1 16 423 320 0 64 0 6963155932 8959936 1 0 4 3 3 3 3 983040 737280 737280 737531 748800 30 25 29 262 77 0 0 0 19 18 0 0 0 0 0 +201 1783860272980947600 DEPTH 27 1 0.52953885712626492 0 1 9 1 9 0 0 2798 61 2569 23677793 81600 1296.2107543945312 8.6021999999999998 2050.6264000000001 120960 59517 1 0 0.00087836368962093962 1.2515469035725841 4096 2048 384 12 96 2569 1920 0 384 1 6967635220 13439224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426511 4492800 156 150 166 1364 733 0 0 0 7 54 0 0 0 0 0 +202 1783860275014473600 DEPTH 27 1 0.52699576451876862 0 1 9 1 9 1 0 2804 52 2567 23677805 81600 1286.2340393066406 8.6150000000000002 2032.2938999999999 120960 48448 1 0 0.00087844055490814111 1.2259310230768561 4096 2048 384 12 96 2567 1920 0 384 1 6972112468 17916472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 156 150 171 1494 596 0 0 0 2 50 0 0 0 0 1 +203 1783860277081744300 DEPTH 27 1 0.52473567498470475 0 1 9 1 9 0 0 2822 64 2573 23677778 81600 1281.9490051269531 8.5701000000000001 2066.0711999999999 120960 39154 1 0 0.00087844055490814111 1.2259310230768561 4096 2048 384 12 96 2573 1920 0 384 1 6976595836 22399840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426312 4492800 156 150 178 1575 514 0 0 0 0 64 0 0 0 0 0 +204 1783860279097449800 DEPTH 27 1 0.52263817196115547 0 1 9 1 9 0 0 2832 54 2588 23677963 81600 1282.9734039306641 8.600200000000001 2014.5075999999999 120960 26796 1 0 0.00087844055490814111 1.2259310230768561 4096 2048 384 12 96 2588 1920 0 384 1 6981094504 26898508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 156 150 184 1606 492 0 0 0 5 49 0 0 0 0 0 +205 1783860279434918200 REFRESH 27 0 0.52073321485331237 0 1 9 1 9 1 0 2838 16 421 3987739 55200 225.328125 1.4298999999999999 336.21019999999999 20160 12419 0 0 0.00050746617283295556 1.0366228681620053 4096 2048 64 1 16 421 320 0 64 0 6981832148 27636152 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 26 25 27 273 70 0 0 0 6 10 0 0 0 0 1 +206 1783860281518998700 DEPTH 27 1 0.51939148969349458 0 1 9 1 9 0 0 2843 63 2566 23680756 84480 1297.48974609375 8.6095000000000006 2082.8281999999999 120960 59429 1 0 0.00050746617283295556 1.0366228681620053 4096 2048 384 12 96 2566 1920 0 384 1 6986308376 32112380 1 0 4 3 3 3 3 5898240 4423680 4423680 4180483 4742400 156 150 150 1292 818 0 0 0 3 60 0 0 0 0 0 +207 1783860283717947300 DEPTH 27 1 0.51777710634444207 0 1 9 1 9 0 0 2851 48 2581 23677856 81600 1287.2508392333984 8.5910000000000011 2096.6142 120960 49131 1 0 0.00050746617283295556 1.0366228681620053 4096 2048 384 12 96 2581 1920 0 384 1 6990799904 36603908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 156 150 150 1615 510 0 0 1 3 44 0 0 0 0 0 +208 1783860285766190000 DEPTH 27 1 0.51630726907719049 0 1 9 1 9 0 0 2876 69 2564 23677932 81600 1283.3023986816406 8.6160999999999994 2047.0803000000001 120960 38929 1 0 0.00050746617283295556 1.0366228681620053 4096 2048 384 12 96 2564 1920 0 384 1 6995274092 41078096 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 156 150 150 1610 498 0 0 0 7 62 0 0 0 0 0 +209 1783860287797873500 DEPTH 27 1 0.51496762518272354 0 1 9 1 9 0 0 2917 128 2509 23677948 81600 1279.6535797119141 8.5945999999999998 2030.1667 120960 27327 1 0 0.00050746617283295556 1.0366228681620053 4096 2048 384 12 96 2509 1920 0 384 1 6999692180 45496184 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 153 150 150 1210 846 0 0 0 6 122 0 0 0 0 0 +210 1783860288143816900 REFRESH 27 0 0.51374525617623124 0 1 9 1 9 0 0 2923 26 411 3987700 55200 224.69631958007812 1.4283999999999999 344.58319999999998 20160 12463 0 0 0.00050746617283295556 1.0366228681620053 4096 2048 64 1 16 411 320 0 64 0 7000419624 46223628 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 26 25 25 250 85 0 0 0 5 21 0 0 0 0 0 +211 1783860290182590500 DEPTH 27 1 0.51262853438983935 0 1 9 1 9 0 0 2968 119 2547 23678050 81600 1295.6434173583984 8.6037999999999997 2037.6213 120960 60143 1 0 0.00050746617283295556 1.0366228681620053 4096 2048 384 12 96 2547 1920 0 384 1 7004876472 50680476 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 151 150 150 594 1502 0 0 0 2 117 0 0 0 0 0 +212 1783860292247876200 DEPTH 27 1 0.51160699390578435 0 1 9 1 8 1 0 3007 127 2547 23689454 93120 1285.2503356933594 8.5986000000000011 2063.9283 114240 47328 1 0 0.013630108929561581 1.1529515108451323 4096 2048 384 12 96 2547 1920 0 384 1 7009333320 55137324 1 0 4 2 2 2 6 5898240 4177920 4177920 4180510 5241600 150 150 150 401 1696 0 0 0 8 119 0 0 0 0 1 +213 1783860294315362200 DEPTH 27 1 0.61067121439599514 0 1 8 1 8 0 0 3024 60 2551 23743249 147840 1279.2217102050781 8.6024999999999991 2066.2898 80640 24353 1 1 0.013630108929561581 1.1529515108451323 4096 2048 384 12 96 2551 1920 0 384 1 7013794248 59598252 1 0 4 2 2 2 6 5898240 2949120 2949120 2951057 8985600 150 150 150 150 1951 1 0 0 0 58 0 0 0 0 0 +214 1783860296354412300 DEPTH 27 1 0.59981271657744639 0 1 8 1 8 1 0 3055 106 2572 23743147 147840 1281.9239044189453 8.5747 2037.8866 80640 17426 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2572 1920 0 384 1 7018276596 64080600 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 150 150 150 150 1972 3 0 0 0 103 0 0 0 0 2 +215 1783860296668108000 REFRESH 27 0 0.59429671215454105 0 1 8 1 8 0 0 3111 76 408 3989017 56640 221.73593139648438 1.4471000000000001 312.3211 13440 8109 0 0 0.077951739910531739 0.82729508589705136 4096 2048 64 1 16 408 320 0 64 0 7019000980 64804984 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 87 25 26 28 242 1 0 0 0 75 0 0 0 0 0 +216 1783860299763660300 DEPTH 27 1 0.58504335860286116 0 1 8 1 8 0 0 3124 52 2567 23742993 147840 1284.5664215087891 8.5986000000000011 3094.1214 80640 39957 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2567 1920 0 384 1 7023478308 2173956 1 0 4 2 2 2 6 5898240 2949120 2949120 2950932 8985600 150 150 150 150 1967 0 0 0 0 52 0 0 0 0 0 +217 1783860301819858200 DEPTH 27 1 0.57669932880256214 0 1 8 1 8 0 0 3140 45 2578 23743014 147840 1278.1803283691406 8.5930999999999997 2054.8733000000002 80640 32239 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2578 1920 0 384 1 7027966776 6662424 1 0 4 2 2 2 6 5898240 2949120 2949120 2950935 8985600 150 150 150 150 1978 0 0 0 0 45 0 0 0 0 0 +218 1783860303856303300 DEPTH 27 1 0.56917378337991154 0 1 8 1 8 0 0 3156 59 2572 23743189 147840 1276.1127014160156 8.6670999999999996 2035.057 80640 25522 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2572 1920 0 384 1 7032449124 11144772 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 150 150 150 150 1972 0 0 0 0 59 0 0 0 0 0 +219 1783860305898945800 DEPTH 27 1 0.5623849659785678 0 1 8 1 8 0 0 3162 36 2558 23743163 147840 1275.3231353759766 8.5743999999999989 2041.4232999999999 80640 17461 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2558 1920 0 384 1 7036917192 15612840 1 0 4 2 2 2 6 5898240 2949120 2949120 2950991 8985600 150 150 150 150 1958 0 0 0 0 36 0 0 0 0 0 +220 1783860306215696000 REFRESH 27 0 0.55625929497066939 0 1 8 1 8 0 0 3199 60 414 3989058 56640 223.09683227539062 1.4414 315.60660000000001 13440 8334 0 0 0.077951739910531739 0.82729508589705136 4096 2048 64 1 16 414 320 0 64 0 7037647696 16343344 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 90 25 26 28 245 0 0 0 0 60 0 0 0 0 0 +221 1783860308289455700 DEPTH 27 1 0.55073054599658389 0 1 8 1 8 0 0 3212 25 2562 23727812 132480 1286.0249481201172 8.5858000000000008 2072.4265 107520 51470 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2562 1920 0 384 1 7042119844 20815492 1 0 4 3 2 2 5 5898240 3932160 2949120 2950960 7987200 150 150 150 554 1558 0 0 0 3 22 0 0 0 0 0 +222 1783860310393824000 DEPTH 27 1 0.54573911625045735 0 1 8 1 8 0 0 3227 60 2570 23709535 114240 1275.3059539794922 8.5899000000000001 2103.1358 120960 44924 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2570 1920 0 384 1 7046600152 25295800 1 0 4 3 3 2 4 5898240 4423680 3686400 2951004 6739200 150 150 168 1410 692 0 0 9 18 33 0 0 0 0 0 +223 1783860312438113400 DEPTH 27 1 0.54123136233698921 0 1 8 1 8 0 0 3243 64 2566 23698890 103680 1274.2626800537109 8.5961999999999996 2042.854 120960 36689 1 0 0.077951739910531739 0.82729508589705136 4096 2048 384 12 96 2566 1920 0 384 1 7051076380 29772028 1 0 4 3 3 2 4 5898240 4423680 4423680 2950925 5990400 150 150 196 1545 525 0 0 0 20 44 0 0 0 0 0 +224 1783860313139676100 DEPTH 27 1 0.53715900434231245 0 1 8 1 8 0 0 3248 26 861 7907309 42240 432.90008544921875 2.8641000000000001 700.30229999999995 40320 8515 0 0 0.077951739910531739 0.82729508589705136 4096 2048 128 4 32 861 640 0 128 0 7052571048 31266696 1 0 4 3 3 2 4 1966080 1474560 1474560 983633 1996800 50 50 67 519 175 0 0 0 5 21 0 0 0 0 0 diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/run.tsv b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/run.tsv new file mode 100644 index 00000000..e4c27508 --- /dev/null +++ b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/run.tsv @@ -0,0 +1,53 @@ +format szilassi-global-search-v5 +run_id 59995ced-8ccb-4ce4-9549-612f3b8fd0d1 +node_id LOOKICH +seed 300580731 +topology_from 27 +topology_to 27 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 1 +algorithm hybrid-quality-diversity-neural-v3 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 6216003180 +training_neural_model_reserve_bytes 251207948 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000001_b9d6912e.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000001_b9d6912e.szar new file mode 100644 index 00000000..1dedecc9 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000001_b9d6912e.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000002_626ccd02.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000002_626ccd02.szar new file mode 100644 index 00000000..4502bb3e Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000002_626ccd02.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000003_85cf5351.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000003_85cf5351.szar new file mode 100644 index 00000000..67ad5f71 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000003_85cf5351.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000004_5cc4b679.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000004_5cc4b679.szar new file mode 100644 index 00000000..fb8274a6 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000004_5cc4b679.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000005_ee18ffa6.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000005_ee18ffa6.szar new file mode 100644 index 00000000..d399e059 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000005_ee18ffa6.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000006_bfc96981.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000006_bfc96981.szar new file mode 100644 index 00000000..ff31933c Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000006_bfc96981.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000007_eba55695.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000007_eba55695.szar new file mode 100644 index 00000000..008b5d19 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000007_eba55695.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000008_addac604.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000008_addac604.szar new file mode 100644 index 00000000..b2643eb1 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000008_addac604.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000009_6ea26290.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000009_6ea26290.szar new file mode 100644 index 00000000..ec2bcfc2 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000009_6ea26290.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000010_f178c057.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000010_f178c057.szar new file mode 100644 index 00000000..47682146 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000010_f178c057.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000011_da86cd36.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000011_da86cd36.szar new file mode 100644 index 00000000..2c4ddc04 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000011_da86cd36.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000012_7e5feead.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000012_7e5feead.szar new file mode 100644 index 00000000..7551d255 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000012_7e5feead.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000013_90dae08b.szar b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000013_90dae08b.szar new file mode 100644 index 00000000..a645c52c Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/archive/delta_00000000000000000013_90dae08b.szar differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000001_09ecaeec.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000001_09ecaeec.szcp new file mode 100644 index 00000000..3deb9c18 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000001_09ecaeec.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000002_0c6d878e.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000002_0c6d878e.szcp new file mode 100644 index 00000000..9bca6299 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000002_0c6d878e.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000003_57890a9d.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000003_57890a9d.szcp new file mode 100644 index 00000000..91e85cec Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000003_57890a9d.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000004_a443c9a0.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000004_a443c9a0.szcp new file mode 100644 index 00000000..ffeffed6 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000004_a443c9a0.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000005_83f644d7.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000005_83f644d7.szcp new file mode 100644 index 00000000..2bf40c86 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000005_83f644d7.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000006_7505d5b1.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000006_7505d5b1.szcp new file mode 100644 index 00000000..87488351 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000006_7505d5b1.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000007_ac56be48.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000007_ac56be48.szcp new file mode 100644 index 00000000..6198ea42 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000007_ac56be48.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000008_2bf66e79.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000008_2bf66e79.szcp new file mode 100644 index 00000000..b64e4cb3 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000008_2bf66e79.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000009_f5bba78f.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000009_f5bba78f.szcp new file mode 100644 index 00000000..bdde3c59 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000009_f5bba78f.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000010_b12f0d43.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000010_b12f0d43.szcp new file mode 100644 index 00000000..3016127c Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000010_b12f0d43.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000011_7eb991c4.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000011_7eb991c4.szcp new file mode 100644 index 00000000..342645c0 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000011_7eb991c4.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000012_cfe01745.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000012_cfe01745.szcp new file mode 100644 index 00000000..554dc8c6 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000012_cfe01745.szcp differ diff --git a/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000013_8327c173.szcp b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000013_8327c173.szcp new file mode 100644 index 00000000..296348d1 Binary files /dev/null and b/results/search/runs/59995ced-8ccb-4ce4-9549-612f3b8fd0d1/topology_027/checkpoints/checkpoint_00000000000000000013_8327c173.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/metrics.tsv b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/metrics.tsv new file mode 100644 index 00000000..517972d8 --- /dev/null +++ b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/metrics.tsv @@ -0,0 +1,1948 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783856828680740100 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 59 2557 23803950 209280 1480.0831451416016 8.6089999999999982 2368.1723000000002 40320 21241 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2557 1920 128 384 1 399487504 4627344 1 0 5 1 2 2 6 7618560 1474560 2949120 2705053 8985600 177 172 153 158 1897 12 13 14 5 15 0 0 0 0 0 +2 1783856830657227600 DEPTH 8 1 0.60152048513770873 0.26575809199318562 2 5 2 5 0 0 2072 74 2544 23803904 209280 1266.2176361083984 8.6388999999999996 1916.3411000000001 40320 18714 1 0 0.029777514209826789 0.97385828270584285 4096 2048 384 12 96 2544 1920 128 384 1 404101548 9241388 1 0 5 1 2 2 6 7618560 1474560 2949120 2705007 8985600 209 167 170 175 1823 15 3 6 12 38 0 0 0 0 0 +3 1783856832753177500 DEPTH 56 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 3996 195 2534 23803995 209280 1237.3729248046875 9.7020999999999997 2029.4712999999999 40320 21322 1 0 0.064707843960638695 0.50396939975484667 4096 2048 384 12 96 2534 1920 128 384 1 408705392 13845232 1 0 5 1 2 2 6 7618560 1474560 2949120 2705098 8985600 214 173 173 166 1808 42 19 39 40 55 0 0 0 0 0 +4 1783856834828777800 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 1900 98 2560 23803955 209280 1229.6913299560547 8.6288 2015.6570999999999 40320 21284 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2560 1920 128 384 1 413335756 18475596 1 0 5 1 2 2 6 7618560 1474560 2949120 2705058 8985600 156 154 155 158 1937 21 19 14 15 29 0 0 0 0 0 +5 1783856836909461500 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 1680 64 2582 23803996 209280 1233.4992523193359 8.7766999999999999 2022.6252999999999 40320 19927 1 1 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2582 1920 128 384 1 417988560 23128400 1 0 5 1 2 2 6 7618560 1474560 2949120 2705099 8985600 196 179 163 156 1888 6 20 12 3 22 0 0 0 0 0 +6 1783856839002795100 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 1 0 1705 108 2566 23803961 209280 1257.9038543701172 8.6144999999999996 2033.6984 40320 21224 1 0 0.00037163703443267532 0.50865726811766498 4096 2048 384 12 96 2566 1920 128 384 1 422625044 27764884 1 0 5 1 2 2 6 7618560 1474560 2949120 2705067 8985600 169 151 157 156 1933 10 18 21 17 42 0 2 0 0 1 +7 1783856841046748100 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 3068 166 2568 23803936 209280 1229.2440643310547 8.7925000000000004 1977.1891000000001 40320 20767 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2568 1920 128 384 1 427263568 32403408 1 0 5 1 2 2 6 7618560 1474560 2949120 2705039 8985600 155 150 159 150 1954 32 20 19 38 57 0 0 0 0 0 +8 1783856843138363800 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 3349 91 2554 23803855 209280 1254.4737091064453 8.6557999999999993 2027.3012000000001 40320 21209 1 0 0.00072138714773995318 0.49269898043698712 4096 2048 384 12 96 2554 1920 128 384 1 431887812 37027652 1 0 5 1 2 2 6 7618560 1474560 2949120 2704956 8985600 171 179 161 159 1884 12 2 6 7 64 0 0 0 0 0 +9 1783856845272425000 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 0 0 2843 115 2574 23803918 209280 1229.4830169677734 8.6346999999999987 2056.1502 40320 22328 1 0 0 0.16424126902321717 4096 2048 384 12 96 2574 1920 128 384 1 436532456 41672296 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 182 164 153 155 1920 20 17 22 13 43 0 0 0 0 0 +10 1783856847295888200 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 0 0 1996 100 2558 23804034 209280 1230.6259002685547 8.754900000000001 1962.7768000000001 40320 21717 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2558 1920 128 384 1 441160780 46300620 1 0 5 1 2 2 6 7618560 1474560 2949120 2705132 8985600 167 156 162 152 1921 24 9 21 14 32 0 0 0 0 0 +11 1783856849208797800 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 2351 117 2539 23803913 209280 1268.0303344726562 8.6416999999999984 1849.0857000000001 40320 20365 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2539 1920 128 384 1 445769724 50909564 1 0 5 1 2 2 6 7618560 1474560 2949120 2705015 8985600 223 165 172 315 1664 16 1 16 9 75 0 0 0 0 0 +12 1783856851337515000 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 2626 90 2549 23803946 209280 1264.36962890625 8.7277000000000005 2023.1255000000001 40320 19904 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2549 1920 128 384 1 450388868 55528708 1 0 5 1 2 2 6 7618560 1474560 2949120 2705050 8985600 193 162 155 151 1888 19 6 12 10 43 0 0 0 0 0 +13 1783856853445925400 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 2310 136 2572 23803966 209280 1263.6683959960938 8.6315000000000008 2037.9000000000001 40320 21422 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2572 1920 128 384 1 455031472 60171312 1 0 5 1 2 2 6 7618560 1474560 2949120 2705071 8985600 181 150 160 159 1922 19 10 45 18 44 0 0 0 0 0 +14 1783856855500835800 DEPTH 52 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 1606 94 2549 23803992 209280 1215.9038543701172 8.6868999999999996 1979.6398999999999 40320 21626 1 0 7.3524768624344791e-05 1.4580422119253347 4096 2048 384 12 96 2549 1920 128 384 1 459650616 64790456 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 170 150 156 157 1916 11 16 16 10 41 0 0 0 0 0 +15 1783856858816705500 DEPTH 44 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 1638 102 2598 23803960 209280 1261.7422332763672 8.7469000000000001 3246.6981999999998 40320 21021 1 0 0.058086188671880992 1.6339388773258507 4096 2048 384 12 96 2598 1920 128 384 1 464319820 2351540 1 0 5 1 2 2 6 7618560 1474560 2949120 2705064 8985600 165 156 151 177 1949 5 5 17 8 67 0 0 0 0 0 +16 1783856860931481700 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 3730 153 2538 23803929 209280 1258.2780303955078 8.6481999999999992 2041.6407999999999 40320 22465 1 0 0 0.26169361010444037 4096 2048 384 12 96 2538 1920 128 384 1 468927744 6959464 1 0 5 1 2 2 6 7618560 1474560 2949120 2705035 8985600 205 151 157 150 1875 34 6 29 26 58 0 0 0 0 1 +17 1783856863065020300 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2331 89 2565 23803923 209280 1253.7003326416016 8.6829000000000001 2068.1118000000001 40320 21842 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2565 1920 128 384 1 473563208 11594928 1 0 5 1 2 2 6 7618560 1474560 2949120 2705026 8985600 162 156 150 152 1945 23 14 12 7 33 0 0 0 0 0 +18 1783856865217578300 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 0 0 1785 133 2571 23803989 209280 1229.7101135253906 8.7132000000000005 2083.9000000000001 40320 21547 1 0 0 0.7245092082209259 4096 2048 384 12 96 2571 1920 128 384 1 478204792 16236512 1 0 5 1 2 2 6 7618560 1474560 2949120 2705093 8985600 180 156 162 150 1923 15 13 23 10 72 0 0 0 0 0 +19 1783856867409746600 DEPTH 2 1 0.74793488395541474 0.45315161839863699 2 7 2 7 0 0 2404 156 2565 23803901 209280 1252.9233856201172 8.6580999999999992 2094.1556999999998 40320 20733 1 0 0.27768796280696073 2.131664922996019 4096 2048 384 12 96 2565 1920 128 384 1 482840256 20871976 1 0 5 1 2 2 6 7618560 1474560 2949120 2705005 8985600 181 162 161 168 1893 25 12 20 23 76 0 0 0 0 0 +20 1783856869595877600 DEPTH 45 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 1626 114 2558 23803938 209280 1271.8325805664062 8.6996000000000002 2119.3424 40320 20004 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2558 1920 128 384 1 487468580 25500300 1 0 5 1 2 2 6 7618560 1474560 2949120 2705042 8985600 177 162 158 160 1901 29 8 11 16 50 0 0 0 0 0 +21 1783856871750824200 DEPTH 54 1 0.76809780233154701 0.4608177172061329 1 8 1 8 0 0 902 72 2548 23803900 209280 1235.6484985351562 8.7073 2093.9423000000002 40320 22058 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2548 1920 128 384 1 492086704 30118424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705000 8985600 186 170 153 174 1865 13 6 8 5 40 0 0 0 0 0 +22 1783856873919581900 DEPTH 32 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 2095 112 2556 23803933 209280 1287.0635681152344 8.6902000000000008 2107.7402999999999 40320 20992 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2556 1920 128 384 1 496712988 34744708 1 0 5 1 2 2 6 7618560 1474560 2949120 2705038 8985600 156 157 150 153 1940 19 5 22 21 45 0 0 0 0 0 +23 1783856876027090600 DEPTH 30 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 2403 148 2530 23803910 209280 1256.7459869384766 8.9253 2036.0146999999999 40320 22099 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2530 1920 128 384 1 501312752 39344472 1 0 5 1 2 2 6 7618560 1474560 2949120 2705008 8985600 189 173 179 170 1819 20 5 13 19 91 0 0 0 0 0 +24 1783856878237296800 DEPTH 25 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 2032 92 2567 23803878 209280 1288.3670196533203 8.6468999999999987 2123.1424999999999 40320 20752 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2567 1920 128 384 1 505950256 43981976 1 0 5 1 2 2 6 7618560 1474560 2949120 2704984 8985600 183 158 156 151 1919 24 7 19 10 32 0 0 0 0 0 +25 1783856880468516100 DEPTH 39 1 0.79127865431204192 0.55451448040885853 1 9 1 9 1 0 1375 71 2584 23803848 209280 1263.9365997314453 8.7948999999999984 2168.7876000000001 40320 22147 1 0 0.00024070464189697479 1.9446632480920674 4096 2048 384 12 96 2584 1920 128 384 1 510605100 48636820 1 0 5 1 2 2 6 7618560 1474560 2949120 2704954 8985600 168 150 157 169 1940 10 6 8 4 43 1 0 0 0 0 +26 1783856882414585100 DEPTH 38 1 0.79135914268268093 0.55451448040885853 1 9 1 9 0 0 1676 110 2537 23803962 209280 1264.9379730224609 8.7015000000000011 1882.768 40320 20561 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2537 1920 128 384 1 515212004 53243724 1 0 5 1 2 2 6 7618560 1474560 2949120 2705065 8985600 191 172 164 161 1849 24 9 8 14 55 0 0 0 0 0 +27 1783856884511545500 DEPTH 41 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 1648 138 2563 23803980 209280 1230.3696136474609 8.6965000000000003 2023.6088999999999 40320 21245 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2563 1920 128 384 1 519845428 57877148 1 0 5 1 2 2 6 7618560 1474560 2949120 2705078 8985600 175 152 158 179 1899 26 16 29 14 53 0 0 0 0 0 +28 1783856886624334900 DEPTH 21 1 0.79151959787395532 0.56218057921635434 0 10 0 10 0 0 2026 82 2557 23803878 209280 1238.2289886474609 8.7012 2048.2031000000002 40320 20584 1 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 384 12 96 2557 1920 128 384 1 524472732 62504452 1 0 5 1 2 2 6 7618560 1474560 2949120 2704983 8985600 180 150 151 150 1926 12 10 8 14 38 0 0 0 0 0 +29 1783856889607504200 DEPTH 12 1 0.7862424232884837 0.63287904599659284 3 8 3 8 0 0 1113 75 2592 23804004 209280 1280.2998199462891 8.6640999999999995 2898.5446000000002 40320 21849 1 0 0.0015102624860077482 0.9394486955269914 4096 2048 384 12 96 2592 1920 128 384 1 529135816 59700 1 0 5 1 2 2 6 7618560 1474560 2949120 2705105 8985600 151 150 157 152 1982 11 5 12 10 37 0 0 0 0 0 +30 1783856891602987100 DEPTH 3 1 0.786322219637407 0.64054514480408853 2 9 2 9 1 0 939 76 2534 23803939 209280 1201.2950286865234 8.6754000000000016 1930.5967000000001 40320 22054 1 0 0.007762414124757676 0.23327367927094445 4096 2048 384 12 96 2534 1920 128 384 1 533739660 4663544 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 204 150 159 169 1852 17 8 4 7 40 0 0 0 0 2 +31 1783856893726398800 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 29 2560 23742678 147840 1231.17041015625 8.655800000000001 2063.7593999999999 40320 14380 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2560 1920 0 384 1 538209768 9133652 1 0 5 1 2 2 6 7372800 1474560 2949120 2950980 8985600 175 168 160 269 1788 2 10 3 0 14 0 0 0 0 0 +32 1783856895831991000 DEPTH 9 1 0.80997739391660117 0.27342419080068137 1 6 1 6 1 0 1737 92 2576 23742694 147840 1269.2345733642578 8.6072000000000006 2036.0826999999999 40320 15953 1 0 0.00036730819729911281 0.48688797648766713 4096 2048 384 12 96 2576 1920 0 384 1 542696196 13620080 1 0 5 1 2 2 6 7372800 1474560 2949120 2950997 8985600 179 159 152 165 1921 2 4 15 23 48 0 0 0 0 1 +33 1783856897847407000 DEPTH 8 1 0.80845044101188535 0.26575809199318562 2 5 2 5 1 0 2082 55 2573 23742696 147840 1268.5412292480469 8.6185999999999989 1953.3685 40320 15648 1 0 0.029786643823038746 0.97392721512911284 4096 2048 384 12 96 2573 1920 0 384 1 547179564 18103448 1 0 5 1 2 2 6 7372800 1474560 2949120 2951001 8985600 197 156 173 239 1808 3 1 16 0 35 0 0 0 0 1 +34 1783856899954573900 DEPTH 56 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 4057 123 2553 23742640 147840 1243.2130737304688 8.6157000000000004 2040.1964 40320 15526 1 0 0.064707843960638695 0.50396939975484667 4096 2048 384 12 96 2553 1920 0 384 1 551642532 22566416 1 0 5 1 2 2 6 7372800 1474560 2949120 2950946 8985600 236 165 166 209 1777 7 20 21 4 71 0 0 0 0 0 +35 1783856902096899800 DEPTH 48 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 1911 72 2574 23742695 147840 1236.6939392089844 8.730500000000001 2069.489 40320 15027 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2574 1920 0 384 1 556126920 27050804 1 0 5 1 2 2 6 7372800 1474560 2949120 2951000 8985600 158 156 153 161 1946 6 9 3 5 49 0 0 0 0 0 +36 1783856904306519900 DEPTH 20 1 0.80867512980503709 0.26575809199318562 2 5 2 5 0 0 1692 45 2607 23742612 147840 1276.5591430664062 8.8079999999999998 2150.7588999999998 40320 14513 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2607 1920 0 384 1 560644968 31568852 1 0 5 1 2 2 6 7372800 1474560 2949120 2950916 8985600 212 156 157 179 1903 0 3 2 0 40 0 0 0 0 0 +37 1783856906440209600 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 3095 106 2560 23742675 147840 1257.1931457519531 8.6890999999999998 2059.8969000000002 40320 14581 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2560 1920 0 384 1 565115076 36038960 1 0 5 1 2 2 6 7372800 1474560 2949120 2950981 8985600 153 150 168 150 1939 7 9 24 15 51 0 0 0 0 0 +38 1783856908571501500 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 1 0 3358 63 2535 23742544 147840 1285.3218078613281 8.6089000000000002 2055.6541000000002 40320 16335 1 0 0.00072285488641214994 0.49252826452705561 4096 2048 384 12 96 2535 1920 0 384 1 569559684 40483568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950843 8985600 169 174 173 168 1851 5 1 8 2 47 0 0 0 0 1 +39 1783856910593480000 DEPTH 50 1 0.78703276669461864 0.64054514480408853 2 9 2 9 0 0 920 76 2567 23803957 209280 1231.2430725097656 8.6464999999999996 1962.2474999999999 40320 20821 1 1 0.061518444399238342 2.0460364460936478 4096 2048 384 12 96 2567 1920 128 384 1 574197188 45121072 1 0 5 1 2 2 6 7618560 1474560 2949120 2705062 8985600 171 161 155 150 1930 11 4 10 10 40 0 0 0 0 0 +40 1783856912699746900 DEPTH 40 1 0.7871108823943197 0.64821124361158422 1 10 1 10 0 0 1405 84 2602 23803912 209280 1226.1106567382812 8.6936999999999998 2021.0297 40320 21217 1 0 0.026057215024178938 1.7176440476922248 4096 2048 384 12 96 2602 1920 128 384 1 578870392 49794276 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 156 156 155 153 1982 8 8 18 5 45 0 0 0 0 0 +41 1783856914585554500 DEPTH 10 1 0.78718883379379867 0.64821124361158422 1 10 1 10 0 0 945 106 2556 23803962 209280 1239.894775390625 8.7468000000000004 1810.8897999999999 40320 20176 1 0 0.0040407710321612731 2.9277816338853699 4096 2048 384 12 96 2556 1920 128 384 1 583496676 54420560 1 0 5 1 2 2 6 7618560 1474560 2949120 2705067 8985600 192 162 171 155 1876 14 17 24 3 48 0 0 0 0 0 +42 1783856916573921400 DEPTH 14 1 0.78726662156105365 0.65587734241908002 0 11 0 11 0 0 1278 129 2517 23803989 209280 1284.2680053710938 8.6252000000000013 1922.9124999999999 40320 21625 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2517 1920 128 384 1 588083180 59007064 1 0 5 1 2 2 6 7618560 1474560 2949120 2705091 8985600 215 174 161 170 1797 27 4 2 1 95 0 0 0 0 0 +43 1783856918421902400 DEPTH 23 1 0.78317757969339952 0.74190800681430991 1 11 1 11 0 0 3211 57 2533 23803899 209280 1273.8703308105469 8.6341999999999999 1785.1460999999999 40320 21188 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2533 1920 128 384 1 592686004 63609888 1 0 5 1 2 2 6 7618560 1474560 2949120 2705002 8985600 219 176 166 162 1810 9 2 3 0 43 0 0 0 0 0 +44 1783856921319971400 DEPTH 49 1 0.77992170885083312 0.82027257240204421 3 10 3 10 0 0 932 78 2552 23803925 209280 1236.4939575195312 8.6236999999999995 2837.7282 40320 21342 1 0 0.11390296728247497 0.2604955383597074 4096 2048 384 12 96 2552 1920 128 384 1 597308288 1124032 1 0 5 1 2 2 6 7618560 1474560 2949120 2705028 8985600 189 150 157 158 1898 12 6 6 12 42 0 0 0 0 0 +45 1783856923108215700 DEPTH 36 1 0.77999900968939861 0.82027257240204421 3 10 3 10 0 0 997 90 2577 23803951 209280 1243.6650695800781 8.6613000000000007 1734.1775 40320 22103 1 0 0.063856168107744679 0.17242192002112078 4096 2048 384 12 96 2577 1920 128 384 1 601955992 5771736 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 194 166 155 150 1912 25 11 12 6 36 0 0 0 0 0 +46 1783856924920482300 DEPTH 29 1 0.78007614952788495 0.82027257240204421 3 10 3 10 0 0 1013 82 2566 23803945 209280 1239.2203369140625 8.6297999999999995 1730.2914000000001 40320 20200 1 0 0.19917884497934765 1.0177350439861224 4096 2048 384 12 96 2566 1920 128 384 1 606592476 10408220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 189 176 158 152 1891 12 2 10 7 51 0 0 0 0 0 +47 1783856927036327400 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 22 2563 23742654 147840 1227.14111328125 8.7414999999999985 2054.4830000000002 47040 18161 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2563 1920 0 384 1 611065644 14881388 1 0 4 2 2 2 6 7127040 1720320 2949120 2950958 8985600 175 166 172 450 1600 0 7 0 1 14 0 0 0 0 0 +48 1783856929161626100 DEPTH 17 1 0.80955979760523455 0.28109028960817717 0 7 0 7 0 0 2878 77 2567 23742676 147840 1233.572509765625 8.7643000000000004 2062.9132 40320 15717 1 0 0 0.16424126902321717 4096 2048 384 12 96 2567 1920 0 384 1 615542892 19358636 1 0 5 1 2 2 6 7372800 1474560 2949120 2950981 8985600 182 161 156 156 1912 11 10 3 2 51 0 0 0 0 0 +49 1783856931230892400 DEPTH 53 1 0.79463252886893598 0.37478705281090291 0 8 0 8 0 0 3777 144 2534 23742646 147840 1255.1581420898438 8.6377000000000006 2005.9014999999999 40320 16985 1 0 0 0.26169361010444037 4096 2048 384 12 96 2534 1920 0 384 1 619986480 23802224 1 0 5 1 2 2 6 7372800 1474560 2949120 2950950 8985600 194 150 160 151 1879 33 4 24 14 69 0 0 0 0 0 +50 1783856933303778300 DEPTH 31 1 0.79470510077977585 0.3594548551959113 2 6 2 6 0 0 2010 51 2560 23742554 147840 1237.1309967041016 8.6311 2006.9445000000001 40320 15152 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2560 1920 0 384 1 624456588 28272332 1 0 5 1 2 2 6 7372800 1474560 2949120 2950859 8985600 168 160 174 246 1812 7 7 7 3 27 0 0 0 0 0 +51 1783856935208175000 DEPTH 16 1 0.79477752751742314 0.3594548551959113 2 6 2 6 0 0 2365 67 2536 23742657 147840 1268.4919128417969 8.6203000000000003 1841.4825000000001 40320 16535 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2536 1920 0 384 1 628902216 32717960 1 0 5 1 2 2 6 7372800 1474560 2949120 2950962 8985600 208 162 166 742 1258 2 2 18 1 44 0 0 0 0 0 +52 1783856937274919800 DEPTH 33 1 0.79484980515242754 0.36712095400340705 1 7 1 7 0 0 2645 80 2536 23742647 147840 1258.1722106933594 8.6144999999999996 2008.2769000000001 40320 14999 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2536 1920 0 384 1 633347844 37163588 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 230 154 158 169 1825 0 5 17 8 50 0 0 0 0 0 +53 1783856939364230400 DEPTH 1 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 2331 89 2592 23742585 147840 1243.68896484375 8.6217999999999986 2022.4840999999999 40320 15533 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2592 1920 0 384 1 637850592 41666336 1 0 5 1 2 2 6 7372800 1474560 2949120 2950891 8985600 198 150 166 184 1894 8 17 14 3 47 0 0 0 0 0 +54 1783856941447091600 DEPTH 52 1 0.79499391548470288 0.36712095400340705 1 7 1 7 1 0 1629 55 2557 23742725 147840 1224.2520599365234 9.0001999999999995 2027.8733 40320 14809 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2557 1920 0 384 1 642317640 46133384 1 0 5 1 2 2 6 7372800 1474560 2949120 2951029 8985600 190 150 172 206 1839 1 11 1 2 40 0 0 0 0 1 +55 1783856943526944100 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 28 2577 23742644 147840 1230.9544372558594 8.6131999999999991 2078.5239999999999 80640 20123 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2577 1920 0 384 1 646805088 50620832 1 0 4 2 2 2 6 5898240 2949120 2949120 2950950 8985600 186 168 184 631 1408 0 0 0 0 28 0 0 0 0 0 +56 1783856945659742600 DEPTH 44 1 0.79513743648222324 0.36712095400340705 1 7 1 7 0 0 1650 38 2601 23742663 147840 1251.1146850585938 8.5949000000000009 2073.3206 40320 15140 1 0 0.058086188671880992 1.6339388773258507 4096 2048 384 12 96 2601 1920 0 384 1 651317016 55132760 1 0 5 1 2 2 6 7372800 1474560 2949120 2950967 8985600 179 151 161 298 1812 0 2 2 0 34 0 0 0 0 0 +57 1783856947778659400 DEPTH 46 1 0.7952089774358877 0.37478705281090291 0 8 0 8 0 0 2346 59 2568 23742667 147840 1252.5015106201172 8.6066000000000003 2048.7138 40320 16226 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2568 1920 0 384 1 655795284 59611028 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 165 156 151 157 1939 4 3 3 3 46 0 0 0 0 0 +58 1783856949920121100 DEPTH 11 1 0.79528037279558439 0.37478705281090291 0 8 0 8 0 0 1814 65 2564 23742668 147840 1231.0368041992188 8.604099999999999 2060.0807 40320 15059 1 1 0 0.7245092082209259 4096 2048 384 12 96 2564 1920 0 384 1 660269472 64085216 1 0 5 1 2 2 6 7372800 1474560 2949120 2950973 8985600 174 150 170 170 1900 0 7 4 0 53 0 0 0 0 0 +59 1783856953113261300 DEPTH 2 1 0.78535162313417972 0.45315161839863699 2 7 2 7 0 0 2429 111 2564 23742661 147840 1248.4157104492188 8.6038999999999994 3124.4499000000001 40320 15717 1 0 0.27768796280696073 2.131664922996019 4096 2048 384 12 96 2564 1920 0 384 1 664743740 1451152 1 0 5 1 2 2 6 7372800 1474560 2949120 2950968 8985600 187 150 162 181 1884 6 10 18 5 72 0 0 0 0 0 +60 1783856955222328500 DEPTH 45 1 0.78542272902120525 0.45315161839863699 2 7 2 7 0 0 1634 62 2569 23742737 147840 1257.4601593017578 8.7134 2033.3127999999999 40320 15563 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2569 1920 0 384 1 669223028 5930440 1 0 5 1 2 2 6 7372800 1474560 2949120 2951041 8985600 164 150 175 194 1886 10 1 7 1 43 0 0 0 0 0 +61 1783856957422795200 DEPTH 54 1 0.78549369102288524 0.4608177172061329 1 8 1 8 0 0 911 41 2549 23742664 147840 1233.1742858886719 8.6305000000000014 2018.7384 40320 15164 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2549 1920 0 384 1 673681916 10389328 1 0 5 1 2 2 6 7372800 1474560 2949120 2950970 8985600 180 176 170 277 1746 0 1 1 0 39 0 0 0 0 0 +62 1783856959453389700 DEPTH 32 1 0.78556450970216041 0.4608177172061329 1 8 1 8 0 0 2125 103 2567 23742618 147840 1248.909423828125 8.6109000000000009 1961.4574 40320 15378 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2567 1920 0 384 1 678159164 14866576 1 0 5 1 2 2 6 7372800 1474560 2949120 2950921 8985600 160 162 152 161 1932 4 8 17 14 60 0 0 0 0 0 +63 1783856959814403200 REFRESH 21 0 0.77849232847585725 0.56218057921635434 0 10 0 10 0 0 2044 48 411 3988962 56640 218.98655700683594 1.4343999999999999 305.53019999999998 6720 5012 0 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 64 1 16 411 320 0 64 0 678886608 15594020 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 29 25 34 28 295 5 0 8 4 31 0 0 0 0 0 +64 1783856960146802100 REFRESH 54 0 0.55256760687036321 0.4608177172061329 1 8 1 8 0 0 915 22 418 3988945 56640 218.82470703125 1.4307000000000001 330.85210000000001 6720 4771 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 418 320 0 64 0 679621192 16328604 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 30 25 33 44 286 1 0 1 3 17 0 0 0 0 0 +65 1783856960510451400 REFRESH 55 0 0.78151205609284347 0.8279386712095399 2 11 2 11 0 0 853 17 405 4050326 118080 221.40313720703125 1.4568000000000001 310.47469999999998 6720 4814 0 0 0.06000989007139422 0.36611514884752205 4096 2048 64 1 16 405 320 128 64 0 680502772 17210184 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 30 25 25 25 300 0 0 0 0 17 0 0 0 0 0 +66 1783856960867823700 REFRESH 58 0 0.77885883437335246 0.92163543441226559 2 12 2 12 0 0 458 19 415 4050326 118080 221.31097412109375 1.4532 307.16570000000002 6720 5042 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 415 320 128 64 0 681394552 18101964 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 30 25 25 25 310 2 0 0 0 17 0 0 0 0 0 +67 1783856961266073200 REFRESH 17 0 0.73776855236212402 0.28109028960817717 0 7 0 7 0 0 2896 38 410 3988984 56640 218.99264526367188 1.6191 341.99579999999997 6720 4728 0 0 0 0.16424126902321717 4096 2048 64 1 16 410 320 0 64 0 682120976 18828388 1 0 5 1 2 2 6 1228800 245760 491520 491704 1497600 32 25 31 37 285 6 0 1 4 27 0 0 0 0 0 +68 1783856961628677000 REFRESH 14 0 0.77348644312466852 0.65587734241908002 0 11 0 11 0 0 1283 31 414 3988951 56640 222.7589111328125 1.4360999999999999 306.11759999999998 6720 5071 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 414 320 0 64 0 682851480 19558892 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 25 35 26 299 0 0 2 0 29 0 0 0 0 0 +69 1783856961946947800 REFRESH 1 0 0.69290184767176599 0.36712095400340705 1 7 1 7 0 0 2364 66 417 3988934 56640 219.45753479003906 1.4319 317.08350000000002 6720 4784 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 417 320 0 64 0 683585044 20292456 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 30 25 38 35 289 4 1 6 4 51 0 0 0 0 0 +70 1783856962259467100 REFRESH 33 0 0.71296829636763048 0.36712095400340705 1 7 1 7 0 0 2686 77 409 3988935 56640 220.86553955078125 1.4360999999999999 311.04539999999997 6720 4776 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 409 320 0 64 0 684310448 21017860 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 31 25 26 26 301 5 0 4 3 65 0 0 0 0 0 +71 1783856962569826600 REFRESH 2 0 0.64303461310466581 0.45315161839863699 2 7 2 7 0 0 2444 43 417 3988943 56640 219.77497863769531 1.4351 309.1902 6720 4714 0 0 0.27768796280696073 2.131664922996019 4096 2048 64 1 16 417 320 0 64 0 685044012 21751424 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 31 26 30 27 303 4 0 3 1 35 0 0 0 0 0 +72 1783856962948193600 REFRESH 15 0 0.77930004902576655 0.91396933560476989 3 11 3 11 0 0 292 16 410 4050326 118080 219.42579650878906 1.4567000000000001 310.7706 6720 5061 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 410 320 128 64 0 685930692 22638104 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 29 26 26 25 304 1 0 1 0 14 0 0 0 0 0 +73 1783856963423597200 REFRESH 43 0 0.78210034756988189 0.8279386712095399 2 11 2 11 0 0 694 21 418 4050320 118080 220.96076965332031 1.456 357.44389999999999 6720 5066 0 0 0.0098917603558251466 1.2583434584708781 4096 2048 64 1 16 418 320 128 64 0 686825532 23532944 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 29 25 25 26 313 0 0 0 0 21 0 0 0 0 0 +74 1783856963785431300 REFRESH 51 0 0.77944595644457315 0.91396933560476989 3 11 3 11 0 0 467 17 408 4050324 118080 219.92457580566406 1.498 307.93220000000002 6720 5075 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 408 320 128 64 0 687710172 24417584 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 30 25 25 26 302 1 0 0 0 16 0 0 0 0 0 +75 1783856964143431900 REFRESH 6 0 0.77951869438239019 0.91396933560476989 3 11 3 11 0 0 359 10 419 4050303 118080 218.49087524414062 1.448 305.50889999999998 6720 5056 0 0 0.078490995891016657 0.16637572843653256 3662 1614 64 1 16 419 320 128 64 0 688606032 25313444 1 0 6 1 2 1 6 1474560 245760 491520 245822 1497600 27 25 25 25 317 3 0 0 0 7 0 0 0 0 0 +76 1783856964538148600 REFRESH 20 0 0.79836423504251119 0.26575809199318562 2 5 2 5 0 0 1703 34 419 3988940 56640 218.93734741210938 1.4354 336.8904 6720 4862 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 419 320 0 64 0 689341636 26049048 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 40 25 29 39 286 1 0 7 2 24 0 0 0 0 0 +77 1783856964919640500 REFRESH 48 0 0.79842977056782094 0.26575809199318562 2 5 2 5 0 0 1929 43 419 3988948 56640 218.55743408203125 1.4359 326.6121 6720 4830 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 419 320 0 64 0 690077240 26784652 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 29 25 40 28 297 8 0 2 7 26 0 0 0 0 0 +78 1783856965271979000 REFRESH 36 0 0.7666785637402892 0.82027257240204421 3 10 3 10 0 0 1002 27 410 3988942 56640 221.12666320800781 1.4359999999999999 297.39229999999998 6720 4926 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 410 320 0 64 0 690803664 27511076 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 30 25 34 27 294 1 0 1 0 25 0 0 0 0 0 +79 1783856965616920700 REFRESH 29 0 0.76674702900592406 0.82027257240204421 3 10 3 10 0 0 1015 18 420 3988977 56640 221.25567626953125 1.4306000000000001 293.91300000000001 6720 4962 0 0 0.19917884497934765 1.0177350439861224 4096 2048 64 1 16 420 320 0 64 0 691540288 28247700 1 0 5 1 2 2 6 1228800 245760 491520 491695 1497600 33 25 26 33 303 3 0 0 1 14 0 0 0 0 0 +80 1783856965981308100 REFRESH 26 0 0.78260752089567209 0.8356047700170357 1 12 1 12 0 0 904 21 415 4050315 118080 218.9619140625 1.452 305.49299999999999 6720 5055 0 0 0.00095608200241023913 0.46793588624263099 4096 2048 64 1 16 415 320 128 64 0 692432068 29139480 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 25 25 25 312 2 0 0 0 19 0 0 0 0 0 +81 1783856966337215700 REFRESH 5 0 0.7826794082413675 0.8279386712095399 2 11 2 11 0 0 689 19 417 4050317 118080 219.325439453125 1.4523999999999999 305.59629999999999 6720 5112 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 417 320 128 64 0 693325888 30033300 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 26 26 26 25 314 2 0 0 0 17 0 0 0 0 0 +82 1783856966687113100 REFRESH 44 0 0.7837555308223525 0.36712095400340705 1 7 1 7 0 0 1658 21 429 3988950 56640 220.62387084960938 1.4366000000000001 348.61419999999998 6720 4772 0 0 0.058086188671880992 1.6339388773258507 4096 2048 64 1 16 429 320 0 64 0 694071692 30779104 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 35 25 29 37 303 1 0 9 0 11 0 0 0 0 0 +83 1783856967070871700 REFRESH 56 0 0.79882030277004701 0.26575809199318562 2 5 2 5 0 0 4096 94 412 3988957 56640 219.76483154296875 1.4366000000000001 322.827 6720 4765 0 0 0.064707843960638695 0.50396939975484667 4096 2048 64 1 16 412 320 0 64 0 694800156 31507568 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 34 25 27 37 289 13 0 7 8 66 0 0 0 0 0 +84 1783856967502454600 REFRESH 40 0 0.77458735954475066 0.64821124361158422 1 10 1 10 0 0 1406 10 420 3988969 56640 218.90559387207031 1.4339 327.96190000000001 6720 4916 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 420 320 0 64 0 695536780 32244192 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 25 26 30 313 2 0 2 0 6 0 0 0 0 0 +85 1783856967845608800 REFRESH 52 0 0.78451290543646346 0.36712095400340705 1 7 1 7 0 0 1641 26 422 3988946 56640 219.82821655273438 1.4351 341.96890000000002 6720 4716 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 422 320 0 64 0 696275444 32982856 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 34 25 43 41 279 2 1 8 2 13 0 0 0 0 0 +86 1783856968207701500 REFRESH 27 0 0.78030948430565417 0.93696763202725719 0 14 0 14 0 0 767 21 414 4050326 118080 220.59190368652344 1.4634 306.41759999999999 6720 5014 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 414 320 128 64 0 697166204 33873616 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 29 25 25 25 310 1 0 0 0 20 0 0 0 0 0 +87 1783856968559469800 REFRESH 42 0 1.0030010037642354 0 0 4 0 4 0 0 4096 21 422 3988943 56640 218.8564453125 1.4357 350.5684 13440 8169 0 0 0 0.0039368239797356571 4096 2048 64 1 16 422 320 0 64 0 697904868 34612280 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 35 26 43 83 235 1 1 1 2 16 0 0 0 0 0 +88 1783856968920549900 REFRESH 30 0 0.78735725887307617 0.4608177172061329 1 8 1 8 0 0 2431 65 412 3988950 56640 220.26956176757812 1.4389000000000001 300.82810000000001 6720 4899 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 412 320 0 64 0 698633332 35340744 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 28 25 37 33 289 1 0 4 1 59 0 0 0 0 0 +89 1783856969287710900 REFRESH 13 0 0.79920631346094329 0.27342419080068137 1 6 1 6 0 0 3134 68 414 3988933 56640 219.83949279785156 1.4357 312.1053 6720 4769 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 414 320 0 64 0 699363836 36071248 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 26 25 30 33 300 4 1 6 11 46 0 0 0 0 0 +90 1783856969705427400 REFRESH 31 0 0.78427021607854819 0.3594548551959113 2 6 2 6 0 0 2031 54 412 3988969 56640 219.3807373046875 1.4331 306.43970000000002 6720 4775 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 412 320 0 64 0 700092300 36799712 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 31 26 37 32 286 7 0 6 5 36 0 0 0 0 0 +91 1783856970085523800 REFRESH 18 0 0.78066340066658568 0.9293015332197615 1 13 1 13 0 0 413 10 410 4050317 118080 221.18809509277344 1.4557 318.23950000000002 6720 4946 0 0 0.0012047658074714103 1.5360264306134574 4096 2048 64 1 16 410 320 128 64 0 700978980 37686392 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 30 25 25 25 305 1 0 0 0 9 0 0 0 0 0 +92 1783856970458521700 REFRESH 9 0 0.80088691410226476 0.27342419080068137 1 6 1 6 1 0 1788 82 413 3988954 56640 221.90386962890625 1.4370000000000001 315.2287 6720 4738 0 0 0.00045683662084148647 0.47178240195912624 4096 2048 64 1 16 413 320 0 64 0 701708464 38415876 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 47 25 28 30 283 4 0 0 4 74 0 0 0 0 1 +93 1783856970860937700 REFRESH 19 0 0.78353129309718905 0.8279386712095399 2 11 2 11 0 0 747 27 414 4050323 118080 261.63784790039062 1.4516 347.98000000000002 6720 5060 0 0 0.026162283138524579 0.38449384479445964 4096 2048 64 1 16 414 320 128 64 0 702599224 39306636 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 28 25 25 26 310 3 0 0 0 24 0 0 0 0 0 +94 1783856971238512100 REFRESH 41 0 0.78061538185904544 0.55451448040885853 1 9 1 9 0 0 1661 32 414 3988975 56640 238.73432922363281 1.4300999999999999 324.2595 6720 4990 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 703329728 40037140 1 0 5 1 2 2 6 1228800 245760 491520 491694 1497600 26 25 28 28 307 0 0 4 1 27 0 0 0 0 0 +95 1783856971649597000 REFRESH 10 0 0.7753246237626954 0.64821124361158422 1 10 1 10 0 0 952 26 417 3988957 56640 219.41658020019531 1.4348000000000001 296.5727 6720 5014 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 417 320 0 64 0 704063292 40770704 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 27 25 27 31 307 0 0 6 2 18 0 0 0 0 0 +96 1783856971988729200 REFRESH 32 0 0.77465107825710422 0.4608177172061329 1 8 1 8 0 0 2138 34 413 3988958 56640 239.43475341796875 1.4432 337.2475 6720 4767 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 413 320 0 64 0 704792776 41500188 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 28 25 28 27 305 4 0 5 1 24 0 0 0 0 0 +97 1783856972382222400 REFRESH 16 0 0.78471413387005662 0.3594548551959113 2 6 2 6 0 0 2390 49 418 3988961 56640 240.92160034179688 1.4843 332.90370000000001 6720 4807 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 418 320 0 64 0 705527360 42234772 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 27 34 306 0 0 0 2 47 0 0 0 0 0 +98 1783856972755696900 REFRESH 49 0 0.76802302407689149 0.82027257240204421 3 10 3 10 1 0 938 19 410 3988964 56640 237.10823059082031 1.4352 313.10410000000002 6720 5009 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 410 320 0 64 0 706253784 42961196 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 30 25 26 27 302 0 0 0 0 19 0 0 0 0 1 +99 1783856973170253200 REFRESH 25 0 0.78808890772498863 0.4608177172061329 1 8 1 8 0 0 2035 22 411 3988942 56640 247.84895324707031 1.5547 357.25839999999999 6720 4998 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 411 320 0 64 0 706981228 43688640 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 28 25 26 28 304 2 1 0 0 19 0 0 0 0 0 +100 1783856973570958000 REFRESH 50 0 0.77565466723825949 0.64054514480408853 2 9 2 9 0 0 923 14 427 3988946 56640 234.22566223144531 1.4801 336.5419 6720 5008 0 0 0.061518444399238342 2.0460364460936478 4096 2048 64 1 16 427 320 0 64 0 707724992 44432404 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 27 25 26 25 324 2 0 0 0 12 0 0 0 0 0 +101 1783856973962194200 REFRESH 3 0 0.77574737698799545 0.64054514480408853 2 9 2 9 0 0 942 19 409 3988952 56640 228.39602661132812 1.4387000000000001 325.29509999999999 6720 5010 0 0 0.007762414124757676 0.23327367927094445 4096 2048 64 1 16 409 320 0 64 0 708450396 45157808 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 33 25 38 29 284 0 0 0 0 19 0 0 0 0 0 +102 1783856974373934400 REFRESH 53 0 0.78502763627950689 0.37478705281090291 0 8 0 8 0 0 3814 74 411 3988966 56640 232.87193298339844 1.4771000000000001 346.30939999999998 6720 4616 0 0 0 0.26169361010444037 4096 2048 64 1 16 411 320 0 64 0 709177840 45885252 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 28 25 38 30 290 3 0 8 2 61 0 0 0 0 0 +103 1783856974771846700 REFRESH 24 0 0.77922644360231219 1 4 11 4 11 0 0 475 13 408 4050330 118080 232.59468078613281 1.4601999999999999 334.38479999999998 6720 4937 0 0 0.049718034260125263 1.3802885951242663 4027 1979 64 1 16 408 320 128 64 0 710062480 46769892 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 30 28 25 25 300 2 0 0 0 11 0 0 0 0 0 +104 1783856975171240400 REFRESH 35 0 0.78429524156026298 0.8279386712095399 2 11 2 11 1 0 917 19 408 4050310 118080 230.40614318847656 1.4750000000000001 337.92570000000001 6720 5045 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 408 320 128 64 0 710947120 47654532 1 0 6 1 2 1 6 1474560 245760 491520 245827 1497600 30 25 25 25 303 1 0 0 0 18 0 0 0 0 1 +105 1783856975569977300 REFRESH 34 0 0.78436391102743974 0.8356047700170357 1 12 1 12 0 0 562 17 421 4050312 118080 234.66188049316406 1.4581999999999999 334.54140000000001 6720 5079 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 421 320 128 64 0 711845020 48552432 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 28 25 25 25 318 3 0 0 0 14 0 0 0 0 0 +106 1783856976014188000 REFRESH 0 0 0.78443245246803839 0.8279386712095399 2 11 2 11 0 0 726 35 417 4050328 118080 226.63885498046875 1.4587000000000001 319.57249999999999 6720 5091 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 417 320 128 64 0 712738840 49446252 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 28 26 25 26 312 1 0 0 0 34 0 0 0 0 0 +107 1783856976415445600 REFRESH 4 0 0.78450086634377414 0.8356047700170357 1 12 1 12 0 0 248 11 419 4050303 118080 232.42466735839844 1.6702999999999999 334.63850000000002 6720 5084 0 0 0.040411785743191188 1.4510951908289993 4053 2048 64 1 16 419 320 128 64 0 713634700 50342112 1 0 6 1 2 1 6 1474560 245760 491520 245820 1497600 28 26 26 26 313 4 0 0 0 7 0 0 0 0 0 +108 1783856976801559000 REFRESH 12 0 0.77617632827064764 0.63287904599659284 3 8 3 8 0 0 1113 10 424 3988932 56640 229.47532653808594 1.4311 326.11599999999999 6720 5014 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 424 320 0 64 0 714375404 51082816 1 0 5 1 2 2 6 1228800 245760 491520 491651 1497600 32 25 26 36 305 0 0 1 0 9 0 0 0 0 0 +109 1783856977183623300 REFRESH 37 0 0.78463731323521602 0.8356047700170357 1 12 1 12 1 0 823 29 412 4050319 118080 227.9761962890625 1.4505999999999999 322.78289999999998 6720 5116 0 0 0.014285210338591101 0.61113614697252217 4096 2048 64 1 16 412 320 128 64 0 715264124 51971536 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 28 29 26 25 304 1 1 0 0 27 0 1 0 0 0 +110 1783856977553537600 REFRESH 38 0 0.78166267614661689 0.55451448040885853 1 9 1 9 0 0 1697 43 416 3988957 56640 226.74943542480469 1.4319 308.50479999999999 6720 4966 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 416 320 0 64 0 715996668 52704080 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 30 25 27 27 307 1 0 2 0 40 0 0 0 0 0 +111 1783856977917480300 REFRESH 11 0 0.7855845887792775 0.37478705281090291 0 8 0 8 0 0 1824 30 414 3988979 56640 227.25733947753906 1.4419999999999999 362.34359999999998 6720 4769 0 0 0 0.7245092082209259 4096 2048 64 1 16 414 320 0 64 0 716727172 53434584 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 32 25 31 42 284 5 1 1 0 23 0 0 0 0 0 +112 1783856978297916000 REFRESH 8 0 0.80066963911674671 0.26575809199318562 2 5 2 5 0 0 2089 26 412 3988969 56640 229.82456970214844 1.4679 315.74950000000001 6720 4724 0 0 0.029786643823038746 0.97392721512911284 4096 2048 64 1 16 412 320 0 64 0 717455636 54163048 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 33 25 30 30 294 0 0 1 0 25 0 0 0 0 0 +113 1783856978626937100 REFRESH 45 0 0.77570709971666885 0.45315161839863699 2 7 2 7 0 0 1647 48 416 3988956 56640 228.09292602539062 1.4325000000000001 327.3449 6720 4715 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 718188180 54895592 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 31 25 37 33 290 6 0 7 7 28 0 0 0 0 0 +114 1783856979006965700 REFRESH 7 0 0.78497622992881944 0.8356047700170357 1 12 1 12 0 0 745 24 405 4050318 118080 228.28031921386719 1.4609000000000001 321.48070000000001 6720 5013 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 405 320 128 64 0 719069760 55777172 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 32 25 25 25 298 3 0 0 1 20 0 0 0 0 0 +115 1783856979384836500 REFRESH 47 0 0.78504363961537527 0.8279386712095399 2 11 2 11 0 0 518 29 412 4050307 118080 227.62803649902344 1.4616 316.26229999999998 6720 5102 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 412 320 128 64 0 719958480 56665892 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 28 28 26 25 305 5 0 0 0 24 0 0 0 0 0 +116 1783856979817361700 REFRESH 22 0 0.78238365305642421 0.91396933560476989 3 11 3 11 0 0 435 12 408 4050306 118080 242.66752624511719 2.0367000000000002 369.6207 6720 5009 0 0 0.0084510069687565564 0.67421194247655503 4096 2048 64 1 16 408 320 128 64 0 720843120 57550532 1 0 6 1 2 1 6 1474560 245760 491520 245826 1497600 29 28 26 25 300 0 2 0 0 10 0 0 0 0 0 +117 1783856980262390100 REFRESH 23 0 0.77258734878692503 0.74190800681430991 1 11 1 11 0 0 3216 15 416 3988947 56640 235.71559143066406 1.4462999999999999 325.10759999999999 6720 5025 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 416 320 0 64 0 721575664 58283076 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 44 25 29 26 292 3 0 0 0 12 0 0 0 0 0 +118 1783856980649225600 REFRESH 57 0 0.80229341965537315 0.27342419080068137 1 6 1 6 0 0 3374 35 406 3988944 56640 238.94221496582031 1.4323999999999999 328.0104 6720 4784 0 0 0.00072285488641214994 0.49252826452705561 4096 2048 64 1 16 406 320 0 64 0 722298008 59005420 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 30 25 36 33 282 0 0 1 1 33 0 0 0 0 0 +119 1783856981081661700 REFRESH 39 0 0.78225044869774729 0.55451448040885853 1 9 1 9 0 0 1383 14 417 3988962 56640 244.85069274902344 1.4338 373.75830000000002 6720 4976 0 0 0.00024070464189697479 1.9446632480920674 4096 2048 64 1 16 417 320 0 64 0 723031572 59738984 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 32 25 34 31 295 3 1 0 1 9 0 0 0 0 0 +120 1783856981485588000 REFRESH 28 0 0.78537884399716329 0.8279386712095399 2 11 2 11 0 0 532 18 410 4050324 118080 241.64761352539062 1.4876 345.71449999999999 6720 4837 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 410 320 128 64 0 723918252 60625664 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 32 25 25 26 302 2 0 0 0 16 0 0 0 0 0 +121 1783856981897876200 REFRESH 46 0 0.78619267422057337 0.37478705281090291 0 8 0 8 0 0 2361 35 412 3988962 56640 233.9102783203125 1.4819 351.2364 6720 4685 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 412 320 0 64 0 724646716 61354128 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 27 33 301 4 0 4 2 25 0 0 0 0 0 +122 1783856984198958900 DEPTH 42 1 0.99626235351166648 0 0 4 0 4 0 0 4096 17 2569 23742672 147840 1323.2047424316406 8.6942000000000004 2232.4771999999998 80640 40657 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2569 1920 0 384 1 729126004 65833416 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 162 156 173 267 1811 0 0 1 0 16 0 0 0 0 0 +123 1783856987643496300 DEPTH 9 1 0.79132154682444744 0.27342419080068137 1 6 1 6 0 0 1816 88 2564 23742635 147840 1313.4162902832031 8.7688000000000006 3263.8647000000001 80640 43546 1 0 0.00045683662084148647 0.47178240195912624 4096 2048 384 12 96 2564 1920 0 384 1 733600272 3199264 1 0 4 2 2 2 6 5898240 2949120 2949120 2950939 8985600 160 171 155 158 1920 2 6 2 21 57 0 0 0 0 0 +124 1783856989850620700 DEPTH 56 1 0.79000125987690195 0.26575809199318562 2 5 2 5 0 0 4096 125 2526 23742593 147840 1302.8270874023438 8.6627999999999989 2122.7345999999998 73920 40507 1 1 0.064707843960638695 0.50396939975484667 4096 2048 384 12 96 2526 1920 0 384 1 738035700 7634692 1 0 4 2 2 2 6 6144000 2703360 2949120 2950897 8985600 168 156 150 208 1844 17 17 24 4 62 0 0 0 0 0 +125 1783856991969424700 DEPTH 48 1 0.79005858550611718 0.26575809199318562 2 5 2 5 0 0 1948 72 2574 23742638 147840 1269.100341796875 8.6635000000000009 2116.8886000000002 73920 40608 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2574 1920 0 384 1 742520088 12119080 1 0 4 2 2 2 6 6144000 2703360 2949120 2950945 8985600 161 150 155 150 1958 14 6 0 5 47 0 0 0 0 0 +126 1783856994086792200 DEPTH 20 1 0.79011580786937752 0.26575809199318562 2 5 2 5 0 0 1724 63 2605 23742657 147840 1269.1165618896484 8.6479000000000017 2115.5875999999998 73920 40579 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2605 1920 0 384 1 747036096 16635088 1 0 4 2 2 2 6 6144000 2703360 2949120 2950962 8985600 195 150 150 175 1935 4 7 2 0 50 0 0 0 0 0 +127 1783856996270177600 DEPTH 13 1 0.79017292732658606 0.27342419080068137 1 6 1 6 0 0 3164 112 2571 23742581 147840 1265.0168304443359 8.660499999999999 2057.1021999999998 73920 40454 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2571 1920 0 384 1 751517424 21116416 1 0 4 2 2 2 6 6144000 2703360 2949120 2950886 8985600 150 150 159 150 1962 10 7 26 12 57 0 0 0 0 0 +128 1783856998494668900 DEPTH 17 1 0.79022994423578974 0.28109028960817717 0 7 0 7 0 0 2922 64 2554 23742675 147840 1266.9412689208984 8.6730999999999998 2096.9694 73920 40445 1 0 0 0.16424126902321717 4096 2048 384 12 96 2554 1920 0 384 1 755981412 25580404 1 0 4 2 2 2 6 6144000 2703360 2949120 2950980 8985600 162 150 157 156 1929 4 2 2 4 52 0 0 0 0 0 +129 1783857000715362300 DEPTH 30 1 0.77667124766297002 0.4608177172061329 1 8 1 8 0 0 2448 97 2534 23742694 147840 1271.0963287353516 8.6869999999999994 2008.3853999999999 40320 22852 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2534 1920 0 384 1 760425000 30023992 1 0 5 1 2 2 6 7372800 1474560 2949120 2950997 8985600 162 150 185 159 1878 5 0 15 3 74 0 0 0 0 0 +130 1783857002854371300 DEPTH 42 1 0.81883295637122744 0 0 4 0 4 0 0 4096 19 2563 23739463 144000 1261.0979766845703 8.6986999999999988 2137.2242999999999 87360 39321 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2563 1920 0 384 1 764898168 34497160 1 0 4 3 2 2 5 5898240 3194880 2949120 2951032 8736000 164 156 175 391 1677 1 0 0 0 18 0 0 0 0 0 +131 1783857005012964000 DEPTH 25 1 0.77678981990116314 0.4608177172061329 1 8 1 8 0 0 2053 71 2543 23742204 147840 1317.401611328125 8.6682000000000006 2093.527 73920 45614 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2543 1920 0 384 1 769350936 38949928 1 0 4 2 2 2 6 6881280 2703360 2949120 2213229 8985600 162 150 152 152 1927 13 6 0 9 43 0 0 0 0 0 +132 1783857007158276300 DEPTH 52 1 0.77596408505194359 0.36712095400340705 1 7 1 7 0 0 1663 59 2545 23742654 147840 1261.7774658203125 8.7245000000000008 2076.7375000000002 73920 39967 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2545 1920 0 384 1 773805744 43404736 1 0 4 2 2 2 6 6144000 2703360 2949120 2950959 8985600 167 175 182 212 1809 4 2 3 1 49 0 0 0 0 0 +133 1783857009291074900 DEPTH 53 1 0.7755135066314206 0.37478705281090291 0 8 0 8 0 0 3840 106 2524 23742627 147840 1270.0536651611328 8.7646000000000015 2058.9254000000001 53760 32526 1 0 0 0.26169361010444037 4096 2048 384 12 96 2524 1920 0 384 1 778239132 47838124 1 0 4 2 2 2 6 6881280 1966080 2949120 2950924 8985600 167 150 161 150 1896 9 1 13 12 71 0 0 0 0 0 +134 1783857011414932900 DEPTH 31 1 0.77556991200284764 0.3594548551959113 2 6 2 6 0 0 2050 62 2556 23742639 147840 1263.6282501220703 8.7431999999999999 2058.2575999999999 73920 40580 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2556 1920 0 384 1 782705160 52304152 1 0 4 2 2 2 6 6144000 2703360 2949120 2950943 8985600 159 150 179 172 1896 11 3 4 9 35 0 0 0 0 0 +135 1783857013352281900 DEPTH 16 1 0.775626220948058 0.3594548551959113 2 6 2 6 0 0 2404 78 2521 23742641 147840 1282.4749145507812 8.6662999999999997 1868.3933 73920 41417 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2521 1920 0 384 1 787135488 56734480 1 0 4 2 2 2 6 6144000 2703360 2949120 2950942 8985600 150 150 162 179 1880 0 0 0 10 68 0 0 0 0 0 +136 1783857015457416500 DEPTH 33 1 0.77568243014431948 0.36712095400340705 1 7 1 7 0 0 2703 79 2540 23742647 147840 1277.0215606689453 8.8935999999999993 2036.2454 53760 32536 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2540 1920 0 384 1 791585196 61184188 1 0 4 2 2 2 6 6881280 1966080 2949120 2950949 8985600 162 150 156 150 1922 13 3 8 8 47 0 0 0 0 0 +137 1783857017634233900 DEPTH 1 1 0.77573853993353192 0.36712095400340705 1 7 1 7 0 0 2382 67 2580 23742746 147840 1271.1564788818359 8.6844000000000001 2058.2311 73920 40286 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2580 1920 0 384 1 796075704 65674696 1 0 4 2 2 2 6 6144000 2703360 2949120 2951050 8985600 166 150 189 189 1886 4 6 10 4 43 0 0 0 0 0 +138 1783857020888177000 DEPTH 42 1 0.81209093536977484 0 0 4 0 4 0 0 4096 22 2583 23720761 125760 1257.2710876464844 8.6196000000000002 3251.9567000000002 120960 41944 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2583 1920 0 384 1 800569352 3059752 1 0 4 3 2 2 5 5898240 4423680 2949120 2950941 7488000 163 155 168 1039 1058 0 0 0 0 22 0 0 0 0 0 +139 1783857022890527500 DEPTH 8 1 0.79087182721441118 0.26575809199318562 2 5 2 5 0 0 2093 44 2531 23742690 147840 1280.5420837402344 8.6753999999999998 1942.3432 53760 32822 1 0 0.029786643823038746 0.97392721512911284 4096 2048 384 12 96 2531 1920 0 384 1 805009880 7500280 1 0 4 2 2 2 6 6881280 1966080 2949120 2950994 8985600 187 155 168 182 1839 0 0 3 0 41 0 0 0 0 0 +140 1783857025095391700 DEPTH 44 1 0.77590627625193143 0.36712095400340705 1 7 1 7 0 0 1674 49 2606 23742603 147840 1277.8415069580078 8.6759000000000004 2138.8820000000001 73920 40514 1 0 0.058086188671880992 1.6339388773258507 4096 2048 384 12 96 2606 1920 0 384 1 809526908 12017308 1 0 4 2 2 2 6 6144000 2703360 2949120 2950909 8985600 154 150 152 188 1962 0 1 11 1 36 0 0 0 0 0 +141 1783857027290369200 DEPTH 11 1 0.77596199179743763 0.37478705281090291 0 8 0 8 0 0 1843 70 2564 23742686 147840 1262.7697601318359 8.636000000000001 2127.6731 73920 39830 1 0 0 0.7245092082209259 4096 2048 384 12 96 2564 1920 0 384 1 814001096 16491496 1 0 4 2 2 2 6 6144000 2703360 2949120 2950991 8985600 166 150 162 150 1936 6 3 5 0 56 0 0 0 0 0 +142 1783857029121679900 DEPTH 37 1 0.77088485541738372 0.8356047700170357 1 12 1 12 1 0 828 54 2558 23742646 147840 1269.0152130126953 8.6576000000000004 1765.2438999999999 40320 20883 1 0 0.0085342948993554126 0.56759192261672475 4096 2048 384 12 96 2558 1920 0 384 1 818469164 20959564 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 173 162 156 150 1917 5 2 1 5 41 0 0 0 0 2 +143 1783857030976914100 DEPTH 35 1 0.7708709714141655 0.8279386712095399 2 11 2 11 0 0 934 119 2491 23742581 147840 1276.1813201904297 8.7167999999999992 1791.7384999999999 40320 21309 1 0 0.10284194156167628 1.462681166290273 4096 2048 384 12 96 2491 1920 0 384 1 822868892 25359292 1 0 5 1 2 2 6 7372800 1474560 2949120 2950886 8985600 164 151 150 154 1872 0 2 0 0 117 0 0 0 0 0 +144 1783857032812145000 DEPTH 5 1 0.77093168419287372 0.8279386712095399 2 11 2 11 0 0 699 60 2563 23742634 147840 1262.1461791992188 8.6409000000000002 1762.6557 40320 20171 1 0 0.013882409877838182 0.46729441044295411 4096 2048 384 12 96 2563 1920 0 384 1 827342060 29832460 1 0 5 1 2 2 6 7372800 1474560 2949120 2950936 8985600 155 150 153 150 1955 9 4 3 10 34 0 0 0 0 0 +145 1783857034660977600 DEPTH 19 1 0.77099229148550485 0.8279386712095399 2 11 2 11 0 0 753 38 2561 23742629 147840 1275.2476196289062 8.6532 1788.5451 40320 21151 1 0 0.026162283138524579 0.38449384479445964 4096 2048 384 12 96 2561 1920 0 384 1 831813188 34303588 1 0 5 1 2 2 6 7372800 1474560 2949120 2950936 8985600 156 150 150 150 1955 4 4 0 7 23 0 0 0 0 0 +146 1783857036789521000 DEPTH 42 1 0.80590392914861475 0 0 4 0 4 0 0 4096 21 2596 23705468 110400 1254.0915069580078 8.6165000000000003 2126.6709000000001 120960 31147 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2596 1920 0 384 1 836320016 38810416 1 0 4 3 3 2 4 5898240 4423680 3932160 2950965 6489600 156 150 177 1502 611 0 0 0 0 21 0 0 0 0 0 +147 1783857038954901000 DEPTH 57 1 0.79244804876184893 0.27342419080068137 1 6 1 6 0 0 3405 131 2534 23742615 147840 1275.8168640136719 8.6745999999999999 2078.1374999999998 73920 40630 1 0 0.00072285488641214994 0.49252826452705561 4096 2048 384 12 96 2534 1920 0 384 1 840763604 43254004 1 0 4 2 2 2 6 6144000 2703360 2949120 2950918 8985600 162 150 173 160 1889 0 0 6 2 123 0 0 0 0 0 +148 1783857041109366500 DEPTH 46 1 0.7763492828201366 0.37478705281090291 0 8 0 8 0 0 2386 66 2572 23742609 147840 1275.4802551269531 8.6586999999999996 2084.4133000000002 73920 40821 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2572 1920 0 384 1 845245952 47736352 1 0 4 2 2 2 6 6144000 2703360 2949120 2950913 8985600 156 150 150 151 1965 10 2 14 1 39 0 0 0 0 0 +149 1783857042945960600 DEPTH 55 1 0.77123366812662897 0.8279386712095399 2 11 2 11 1 0 861 85 2522 23742708 147840 1287.9431762695312 8.6662999999999997 1779.6814999999999 40320 22474 1 0 0.055573528014644762 0.64669680740129121 4096 2048 384 12 96 2522 1920 0 384 1 849677300 52167700 1 0 5 1 2 2 6 7372800 1474560 2949120 2951011 8985600 164 162 154 156 1886 0 0 0 1 84 0 0 0 0 3 +150 1783857044759635700 DEPTH 43 1 0.77129375092177155 0.8279386712095399 2 11 2 11 0 0 697 39 2571 23742634 147840 1277.5424346923828 8.7131000000000007 1755.2709 40320 21086 1 0 0.0098917603558251466 1.2583434584708781 4096 2048 384 12 96 2571 1920 0 384 1 854158628 56649028 1 0 5 1 2 2 6 7372800 1474560 2949120 2950939 8985600 162 150 150 160 1949 5 1 1 3 29 0 0 0 0 0 +151 1783857046585529100 DEPTH 47 1 0.771353729871598 0.8279386712095399 2 11 2 11 0 0 518 23 2596 23742697 147840 1274.6442565917969 8.7083999999999993 1761.8647000000001 40320 21038 1 0 0.031374216798943186 1.3938937060236263 4096 2048 384 12 96 2596 1920 0 384 1 858665456 61155856 1 0 5 1 2 2 6 7372800 1474560 2949120 2951002 8985600 162 150 160 150 1974 3 0 1 1 18 0 0 0 0 0 +152 1783857048484199600 DEPTH 0 1 0.7714136053234375 0.8279386712095399 2 11 2 11 0 0 742 52 2570 23742645 147840 1270.5534515380859 8.7126999999999999 1774.2515000000001 40320 20160 1 0 0.00017817385236690964 2.3450496297959931 4096 2048 384 12 96 2570 1920 0 384 1 863145764 65636164 1 0 5 1 2 2 6 7372800 1474560 2949120 2950951 8985600 156 156 156 157 1945 1 7 2 10 32 0 0 0 0 0 +153 1783857051546627500 DEPTH 28 1 0.77147337762289991 0.8279386712095399 2 11 2 11 0 0 536 32 2522 23742628 147840 1282.5169830322266 8.6738999999999997 2977.2408999999998 40320 22604 1 0 0.00017781511379253443 2.0677017543935525 4096 2048 384 12 96 2522 1920 0 384 1 867577192 2959928 1 0 5 1 2 2 6 7372800 1474560 2949120 2950931 8985600 162 151 150 162 1897 2 1 1 0 28 0 0 0 0 0 +154 1783857051966131600 REFRESH 56 0 0.78172242053258434 0.26575809199318562 2 5 2 5 1 0 4096 74 406 3988954 56640 219.725830078125 1.4395 334.88549999999998 13440 9284 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 406 320 0 64 0 868299536 3682272 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 28 44 284 0 0 3 4 67 0 0 0 0 1 +155 1783857052340350500 REFRESH 7 0 0.7715926141386048 0.8356047700170357 1 12 1 12 0 0 746 15 409 3988959 56640 220.66893005371094 1.4508000000000001 302.14400000000001 6720 5116 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 409 320 0 64 0 869024940 4407676 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 27 26 25 25 306 0 0 0 0 15 0 0 0 0 0 +156 1783857052754091500 REFRESH 33 0 0.71682681843580598 0.36712095400340705 1 7 1 7 0 0 2736 59 413 3988974 56640 221.44613647460938 1.4520999999999999 328.72030000000001 13440 9347 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 413 320 0 64 0 869754424 5137160 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 27 25 27 27 307 1 0 3 0 55 0 0 0 0 0 +157 1783857053132872100 REFRESH 16 0 0.73687888332929119 0.3594548551959113 2 6 2 6 0 0 2419 36 415 3988940 56640 221.6468505859375 1.4536 313.06150000000002 13440 9303 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 415 320 0 64 0 870485948 5868684 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 27 35 303 0 0 0 1 35 0 0 0 0 0 +158 1783857053543992100 REFRESH 39 0 0.77121847096319052 0.55451448040885853 1 9 1 9 1 0 1386 19 420 3988956 56640 219.4176025390625 1.4982 350.62790000000001 6720 4835 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 420 320 0 64 0 871222572 6605308 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 31 25 35 33 296 3 0 0 1 15 0 0 0 0 1 +159 1783857053857356800 REFRESH 57 0 0.65302117037656748 0.27342419080068137 1 6 1 6 0 0 3418 32 412 3988960 56640 220.53273010253906 1.4360999999999999 311.58510000000001 13440 9383 0 0 0.00072285488641214994 0.49252826452705561 4096 2048 64 1 16 412 320 0 64 0 871951036 7333772 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 41 37 283 0 0 3 1 28 0 0 0 0 0 +160 1783857054252446000 REFRESH 2 0 0.76700238992795355 0.45315161839863699 2 7 2 7 0 0 2463 51 414 3988952 56640 220.18765258789062 1.4379 323.52050000000003 6720 4641 0 0 0.27768796280696073 2.131664922996019 4096 2048 64 1 16 414 320 0 64 0 872681540 8064276 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 33 26 30 27 298 1 0 4 1 45 0 0 0 0 0 +161 1783857054548317600 REFRESH 43 0 0.61851927683349905 0.8279386712095399 2 11 2 11 0 0 697 17 414 3988949 56640 220.01458740234375 1.4388000000000001 294.19839999999999 6720 4933 0 0 0.0098917603558251466 1.2583434584708781 4096 2048 64 1 16 414 320 0 64 0 873412044 8794780 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 33 305 0 0 0 1 16 0 0 0 0 0 +162 1783857054917757400 REFRESH 18 0 0.7692794699228036 0.9293015332197615 1 13 1 13 0 0 413 16 413 3988927 56640 222.51213073730469 1.4353 310.02820000000003 6720 4985 0 0 0.0012047658074714103 1.5360264306134574 4096 2048 64 1 16 413 320 0 64 0 874141528 9524264 1 0 5 1 2 2 6 1228800 245760 491520 491647 1497600 26 27 25 25 310 0 0 0 0 16 0 0 0 0 0 +163 1783857055278978300 REFRESH 42 0 0.89056836184091137 0 0 4 0 4 0 0 4096 11 426 3988009 55680 222.10456848144531 1.4792000000000001 359.32319999999999 20160 12050 0 0 0 0.0039368239797356571 4096 2048 64 1 16 426 320 0 64 0 874884272 10267008 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 48 25 41 213 99 0 0 1 4 6 0 0 0 0 0 +164 1783857055680858400 REFRESH 9 0 0.78348080718273283 0.27342419080068137 1 6 1 6 0 0 1833 49 406 3988979 56640 221.15327453613281 1.4500999999999999 324.68700000000001 13440 9257 0 0 0.00045683662084148647 0.47178240195912624 4096 2048 64 1 16 406 320 0 64 0 875606616 10989352 1 0 4 2 2 2 6 983040 491520 491520 491698 1497600 27 25 30 34 290 0 0 0 2 47 0 0 0 0 0 +165 1783857056052268100 REFRESH 14 0 0.76624318740358877 0.65587734241908002 0 11 0 11 0 0 1286 21 413 3988952 56640 222.14962768554688 1.4316 307.58659999999998 6720 4939 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 413 320 0 64 0 876336100 11718836 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 28 25 29 26 305 0 0 2 0 19 0 0 0 0 0 +166 1783857056479095400 REFRESH 48 0 0.78234349840559503 0.26575809199318562 2 5 2 5 0 0 1957 30 421 3988943 56640 219.6705322265625 1.5659000000000001 342.98910000000001 13440 9311 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 421 320 0 64 0 877073744 12456480 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 27 25 44 31 294 1 0 3 3 23 0 0 0 0 0 +167 1783857056840648900 REFRESH 58 0 0.76957227563321851 0.92163543441226559 2 12 2 12 0 0 460 17 410 3988969 56640 221.40007019042969 1.4440999999999999 303.8811 6720 5091 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 410 320 0 64 0 877800168 13182904 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 27 28 25 25 305 0 0 0 0 17 0 0 0 0 0 +168 1783857057152354200 REFRESH 19 0 0.73891013000480876 0.8279386712095399 2 11 2 11 0 0 760 21 411 3988962 56640 220.76211547851562 1.4806999999999999 310.20639999999997 6720 4985 0 0 0.026162283138524579 0.38449384479445964 4096 2048 64 1 16 411 320 0 64 0 878527612 13910348 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 25 27 308 0 0 0 0 21 0 0 0 0 0 +169 1783857057452299000 REFRESH 47 0 0.68896559054390005 0.8279386712095399 2 11 2 11 0 0 522 26 412 3988945 56640 219.56198120117188 1.4354 298.25200000000001 6720 4985 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 412 320 0 64 0 879256076 14638812 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 26 310 0 0 0 0 26 0 0 0 0 0 +170 1783857057756083700 REFRESH 55 0 0.71905145061045506 0.8279386712095399 2 11 2 11 1 0 863 24 407 3988946 56640 222.09536743164062 1.4477 302.0147 6720 5001 0 0 0.061227814963762422 0.65855398913720753 4096 2048 64 1 16 407 320 0 64 0 879979440 15362176 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 26 306 0 0 0 1 23 0 0 0 0 1 +171 1783857058113283500 REFRESH 51 0 0.76980475122529013 0.91396933560476989 3 11 3 11 0 0 470 16 407 3988937 56640 220.12016296386719 1.4430000000000001 297.06349999999998 6720 5100 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 407 320 0 64 0 880702804 16085540 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 25 25 25 26 306 0 0 0 0 16 0 0 0 0 0 +172 1783857058526696900 REFRESH 44 0 0.76764934167040844 0.36712095400340705 1 7 1 7 0 0 1683 25 422 3988953 56640 221.78509521484375 1.4375 350.61020000000002 13440 9228 0 0 0.058086188671880992 1.6339388773258507 4096 2048 64 1 16 422 320 0 64 0 881441468 16824204 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 30 47 295 0 0 5 3 17 0 0 0 0 0 +173 1783857058913666300 REFRESH 1 0 0.76770001745054395 0.36712095400340705 1 7 1 7 0 0 2401 52 415 3988946 56640 220.13337707519531 1.4404999999999999 323.1585 13440 9234 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 415 320 0 64 0 882172992 17555728 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 27 25 64 47 252 0 0 11 3 38 0 0 0 0 0 +174 1783857059314732100 REFRESH 25 0 0.76774769241995022 0.4608177172061329 1 8 1 8 0 0 2064 32 409 3988936 56640 221.53932189941406 1.4769000000000001 335.05009999999999 13440 9606 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 409 320 0 64 0 882898396 18281132 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 26 33 299 0 0 0 3 29 0 0 0 0 0 +175 1783857059699866300 REFRESH 30 0 0.76780026195881512 0.4608177172061329 1 8 1 8 0 0 2489 97 415 3988958 56640 219.81901550292969 1.4516 318.20299999999997 6720 4766 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 883629920 19012656 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 30 25 48 35 277 2 0 3 3 89 0 0 0 0 0 +176 1783857060004059500 REFRESH 0 0 0.74935122737609738 0.8279386712095399 2 11 2 11 0 0 755 29 410 3988930 56640 219.17286682128906 1.4601999999999999 302.48520000000002 6720 4942 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 410 320 0 64 0 884356344 19739080 1 0 5 1 2 2 6 1228800 245760 491520 491650 1497600 26 25 25 38 296 0 0 0 4 25 0 0 0 0 0 +177 1783857060368285200 REFRESH 24 0 0.76787783658398379 1 4 11 4 11 0 0 475 11 406 3988935 56640 222.12608337402344 1.4661999999999999 307.39550000000003 6720 5035 0 0 0.049718034260125263 1.3802885951242663 4054 2006 64 1 16 406 320 0 64 0 885078688 20461424 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 27 27 25 25 302 0 0 0 0 11 0 0 0 0 0 +178 1783857060760220700 REFRESH 13 0 0.7829521352288491 0.27342419080068137 1 6 1 6 0 0 3199 58 419 3988967 56640 219.88761901855469 1.4384999999999999 315.94990000000001 13440 9292 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 419 320 0 64 0 885814292 21197028 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 33 34 302 0 0 1 4 53 0 0 0 0 0 +179 1783857061122897500 REFRESH 22 0 0.77026507113478015 0.91396933560476989 3 11 3 11 0 0 436 19 412 3988936 56640 221.43693542480469 1.4379 299.92340000000002 6720 5171 0 0 0.0084510069687565564 0.67421194247655503 4096 2048 64 1 16 412 320 0 64 0 886542756 21925492 1 0 5 1 2 2 6 1228800 245760 491520 491655 1497600 27 28 25 25 307 0 0 0 0 19 0 0 0 0 0 +180 1783857061492200700 REFRESH 12 0 0.76706958476725662 0.63287904599659284 3 8 3 8 0 0 1116 10 424 3988976 56640 219.81082153320312 1.4520999999999999 302.29809999999998 6720 4887 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 424 320 0 64 0 887283460 22666196 1 0 5 1 2 2 6 1228800 245760 491520 491695 1497600 28 25 25 32 314 0 0 0 0 10 0 0 0 0 0 +181 1783857061883906000 REFRESH 32 0 0.76811385527408993 0.4608177172061329 1 8 1 8 0 0 2148 40 413 3988957 56640 219.58758544921875 1.627 313.37119999999999 6720 4678 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 413 320 0 64 0 888012944 23395680 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 29 25 30 28 301 3 0 5 1 31 0 0 0 0 0 +182 1783857062257323600 REFRESH 50 0 0.76717822381084755 0.64054514480408853 2 9 2 9 0 0 926 9 425 3988942 56640 219.69715881347656 1.4309000000000001 313.87950000000001 6720 4882 0 0 0.061518444399238342 2.0460364460936478 4096 2048 64 1 16 425 320 0 64 0 888754668 24137404 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 27 25 27 25 321 1 0 2 0 6 0 0 0 0 0 +183 1783857062567309900 REFRESH 28 0 0.75973240942299214 0.8279386712095399 2 11 2 11 0 0 540 15 409 3988956 56640 221.20140075683594 1.5701000000000001 308.33510000000001 6720 4975 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 409 320 0 64 0 889480072 24862808 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 25 25 26 307 0 0 0 0 15 0 0 0 0 0 +184 1783857062937764500 REFRESH 15 0 0.77054969203045909 0.91396933560476989 3 11 3 11 0 0 293 12 409 3988977 56640 221.23826599121094 1.4167000000000001 311.13740000000001 6720 5118 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 890205476 25588212 1 0 5 1 2 2 6 1228800 245760 491520 491695 1497600 27 27 25 25 305 0 1 0 0 11 0 0 0 0 0 +185 1783857063295078700 REFRESH 5 0 0.75984051424613996 0.8279386712095399 2 11 2 11 0 0 703 20 413 3988963 56640 219.56300354003906 1.4376 296.91309999999999 6720 4946 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 413 320 0 64 0 890934960 26317696 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 25 25 25 33 305 0 0 1 3 16 0 0 0 0 0 +186 1783857063669580400 REFRESH 6 0 0.77066288774570402 0.91396933560476989 3 11 3 11 0 0 360 6 418 3988949 56640 219.54867553710938 1.4547000000000001 313.19600000000003 6720 5106 0 0 0.078490995891016657 0.16637572843653256 3689 1641 64 1 16 418 320 0 64 0 891669544 27052280 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 26 316 0 0 0 1 5 0 0 0 0 0 +187 1783857064075792200 REFRESH 52 0 0.768857117086163 0.36712095400340705 1 7 1 7 0 0 1673 16 421 3988937 56640 219.21894836425781 1.4564999999999999 344.31420000000003 13440 9235 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 421 320 0 64 0 892407188 27789924 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 39 45 286 0 0 0 1 15 0 0 0 0 0 +188 1783857064448346000 REFRESH 3 0 0.76752637621958686 0.64054514480408853 2 9 2 9 0 0 947 26 413 3988940 56640 217.65119934082031 1.4428000000000001 298.80939999999998 6720 4849 0 0 0.007762414124757676 0.23327367927094445 4096 2048 64 1 16 413 320 0 64 0 893136672 28519408 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 32 25 34 28 294 0 0 2 0 24 0 0 0 0 0 +189 1783857064867098600 REFRESH 49 0 0.7600794390966682 0.82027257240204421 3 10 3 10 0 0 944 25 414 3988966 56640 218.93836975097656 1.4619 301.51960000000003 6720 4858 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 414 320 0 64 0 893867176 29249912 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 30 25 26 27 306 0 0 0 0 25 0 0 0 0 0 +190 1783857065204195100 REFRESH 46 0 0.76854880520851632 0.37478705281090291 0 8 0 8 0 0 2391 25 416 3988960 56640 220.95158386230469 1.4381999999999999 335.26139999999998 13440 9192 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 416 320 0 64 0 894599720 29982456 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 27 39 299 0 0 1 0 24 0 0 0 0 0 +191 1783857065569173500 REFRESH 8 0 0.7836172298652716 0.26575809199318562 2 5 2 5 0 0 2097 20 412 3988961 56640 222.19161987304688 1.4381999999999999 306.39080000000001 13440 9327 0 0 0.029786643823038746 0.97392721512911284 4096 2048 64 1 16 412 320 0 64 0 895328184 30710920 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 37 31 293 0 0 1 0 19 0 0 0 0 0 +192 1783857065939821900 REFRESH 4 0 0.77372754052628712 0.8356047700170357 1 12 1 12 0 0 252 11 420 3988956 56640 219.73298645019531 1.4512 303.52120000000002 6720 5129 0 0 0.040411785743191188 1.4510951908289993 4082 2048 64 1 16 420 320 0 64 0 896064808 31447544 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 27 25 26 316 0 1 1 0 9 0 0 0 0 0 +193 1783857066294769300 REFRESH 29 0 0.76026942249272966 0.82027257240204421 3 10 3 10 0 0 1022 24 426 3988963 56640 220.50405883789062 1.4372 299.3938 6720 4919 0 0 0.19917884497934765 1.0177350439861224 4096 2048 64 1 16 426 320 0 64 0 896807552 32190288 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 34 25 26 35 306 1 0 1 2 20 0 0 0 0 0 +194 1783857066709412700 REFRESH 40 0 0.76782264557560465 0.64821124361158422 1 10 1 10 0 0 1408 13 415 3988964 56640 219.80058288574219 1.4743999999999999 354.7878 6720 4913 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 415 320 0 64 0 897539076 32921812 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 26 25 27 31 306 0 0 1 0 12 0 0 0 0 0 +195 1783857067120358700 REFRESH 45 0 0.76883368131273322 0.45315161839863699 2 7 2 7 0 0 1669 56 417 3988945 56640 233.88671875 1.4426000000000001 347.79199999999997 6720 4737 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 417 320 0 64 0 898272640 33655376 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 31 25 38 34 289 1 0 1 2 52 0 0 0 0 0 +196 1783857067514707400 REFRESH 23 0 0.76376216776022543 0.74190800681430991 1 11 1 11 0 0 3216 10 410 3988946 56640 239.88633728027344 1.4339 327.79989999999998 6720 4893 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 410 320 0 64 0 898999064 34381800 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 66 25 29 27 263 0 0 0 0 10 0 0 0 0 0 +197 1783857067876035800 REFRESH 27 0 0.77127892314821433 0.93696763202725719 0 14 0 14 0 0 771 14 413 3988954 56640 221.59359741210938 1.4451000000000001 301.77249999999998 6720 5047 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 413 320 0 64 0 899728548 35111284 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 26 25 25 25 312 0 0 0 0 14 0 0 0 0 0 +198 1783857068255828900 REFRESH 31 0 0.76894015915580072 0.3594548551959113 2 6 2 6 0 0 2078 48 418 3988969 56640 219.71455383300781 1.4380999999999999 316.19159999999999 13440 9381 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 418 320 0 64 0 900463132 35845868 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 26 43 38 286 0 0 7 3 38 0 0 0 0 0 +199 1783857068623668200 REFRESH 37 0 0.76073369181972184 0.8356047700170357 1 12 1 12 1 0 832 30 411 3988943 56640 226.65625 1.4342999999999999 304.57369999999997 6720 4978 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 411 320 0 64 0 901190576 36573312 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 27 25 25 28 306 1 0 0 0 29 0 0 0 0 1 +200 1783857069080807800 REFRESH 54 0 0.76908683225786467 0.4608177172061329 1 8 1 8 0 0 924 29 420 3988961 56640 226.14118957519531 1.4367000000000001 333.88040000000001 6720 4762 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 420 320 0 64 0 901927200 37309936 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 33 25 37 51 274 1 0 2 3 23 0 0 0 0 0 +201 1783857069448024100 REFRESH 10 0 0.7681928179810813 0.64821124361158422 1 10 1 10 0 0 957 13 417 3988958 56640 223.95100402832031 1.4509000000000001 305.25420000000003 6720 4843 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 417 320 0 64 0 902660764 38043500 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 27 25 27 30 308 1 0 2 1 9 0 0 0 0 0 +202 1783857069862916300 REFRESH 11 0 0.76913395624025527 0.37478705281090291 0 8 0 8 0 0 1852 27 414 3988961 56640 223.067138671875 1.5095000000000001 356.553 13440 9293 0 0 0 0.7245092082209259 4096 2048 64 1 16 414 320 0 64 0 903391268 38774004 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 27 25 50 58 254 1 2 3 1 20 0 0 0 0 0 +203 1783857070235869400 REFRESH 38 0 0.77365496435831049 0.55451448040885853 1 9 1 9 0 0 1713 49 414 3988958 56640 224.83251953125 1.4379 311.52699999999999 6720 4877 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 414 320 0 64 0 904121772 39504508 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 35 25 28 27 299 1 0 1 0 47 0 0 0 0 0 +204 1783857070599042200 REFRESH 34 0 0.77439257408102569 0.8356047700170357 1 12 1 12 0 0 565 9 420 3988946 56640 223.97030639648438 1.4384999999999999 302.94389999999999 6720 5083 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 420 320 0 64 0 904858396 40241132 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 27 25 25 25 318 0 1 0 0 8 0 0 0 0 0 +205 1783857070960216600 REFRESH 36 0 0.76090249105377816 0.82027257240204421 3 10 3 10 0 0 1005 20 408 3988944 56640 220.94540405273438 1.4498 305.0258 6720 4922 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 408 320 0 64 0 905582780 40965516 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 30 25 36 28 289 0 0 1 0 19 0 0 0 0 0 +206 1783857071377044800 REFRESH 26 0 0.77450217810873978 0.8356047700170357 1 12 1 12 0 0 912 34 417 3988948 56640 221.25465393066406 1.4414 300.01459999999997 6720 5058 0 0 0.00095608200241023913 0.46793588624263099 4096 2048 64 1 16 417 320 0 64 0 906316344 41699080 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 26 25 25 25 316 0 0 0 0 34 0 0 0 0 0 +207 1783857071790864800 REFRESH 17 0 0.78437447096889534 0.28109028960817717 0 7 0 7 0 0 2934 39 411 3988945 56640 219.52716064453125 1.444 345.2038 13440 9276 0 0 0 0.16424126902321717 4096 2048 64 1 16 411 320 0 64 0 907043788 42426524 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 46 39 275 0 0 2 2 35 0 0 0 0 0 +208 1783857072164783900 REFRESH 41 0 0.77391601653744702 0.55451448040885853 1 9 1 9 0 0 1671 35 412 3988953 56640 218.99583435058594 1.4316 313.26249999999999 6720 4899 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 412 320 0 64 0 907772252 43154988 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 26 25 28 28 305 0 0 4 3 28 0 0 0 0 0 +209 1783857072517592000 REFRESH 35 0 0.76111083688333425 0.8279386712095399 2 11 2 11 0 0 938 17 406 3988940 56640 220.43545532226562 1.4351 294.78519999999997 6720 4965 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 406 320 0 64 0 908494596 43877332 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 28 25 25 27 301 0 0 0 0 17 0 0 0 0 0 +210 1783857072918752100 REFRESH 20 0 0.78451786759220898 0.26575809199318562 2 5 2 5 0 0 1736 25 421 3988936 56640 220.157958984375 1.4330000000000001 341.21449999999999 13440 9297 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 421 320 0 64 0 909232240 44614976 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 33 50 287 1 2 0 1 21 0 0 0 0 0 +211 1783857073364327300 REFRESH 53 0 0.76956551912495774 0.37478705281090291 0 8 0 8 0 0 3892 92 409 3988940 56640 221.06008911132812 1.4461999999999999 319.4572 13440 9322 0 0 0 0.26169361010444037 4096 2048 64 1 16 409 320 0 64 0 909957644 45340380 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 27 25 53 32 272 0 0 13 4 75 0 0 0 0 0 +212 1783857073730354700 REFRESH 21 0 0.77412337682886623 0.56218057921635434 0 10 0 10 0 0 2056 37 413 3988966 56640 218.77043151855469 1.4444999999999999 306.59640000000002 6720 4955 0 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 64 1 16 413 320 0 64 0 910687128 46069864 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 29 25 34 30 295 1 0 2 2 32 0 0 0 0 0 +213 1783857075937626600 DEPTH 42 1 0.966903309618794 0 0 4 0 4 0 0 4096 14 2573 23698621 103680 1279.2105102539062 8.6706999999999983 2151.5641999999998 120960 60619 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2573 1920 0 384 1 915170496 50553232 1 0 4 3 3 2 4 5898240 4423680 4423680 2951023 5990400 178 150 221 1027 997 0 0 0 0 14 0 0 0 0 0 +214 1783857078040132400 DEPTH 9 1 0.7769136414279213 0.27342419080068137 1 6 1 6 0 0 1860 81 2560 23742634 147840 1278.8121948242188 8.7505999999999986 2046.0003999999999 80640 45203 1 0 0.00045683662084148647 0.47178240195912624 4096 2048 384 12 96 2560 1920 0 384 1 919640604 55023340 1 0 4 2 2 2 6 5898240 2949120 2949120 2950941 8985600 151 150 156 158 1945 0 0 3 10 68 0 0 0 0 0 +215 1783857080248947400 DEPTH 57 1 0.77677790026443472 0.27342419080068137 1 6 1 6 0 0 3430 71 2542 23742571 147840 1278.3568115234375 8.7376000000000005 2092.2233999999999 80640 44819 1 0 0.00072285488641214994 0.49252826452705561 4096 2048 384 12 96 2542 1920 0 384 1 924092352 59475088 1 0 4 2 2 2 6 5898240 2949120 2949120 2950875 8985600 156 150 168 162 1906 0 0 9 13 49 0 0 0 0 0 +216 1783857082474530600 DEPTH 56 1 0.77596733339169521 0.26575809199318562 2 5 2 5 0 0 4096 98 2524 23742712 147840 1278.2090911865234 8.6828000000000003 2093.9252000000001 80640 44848 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2524 1920 0 384 1 928525740 63908476 1 0 4 2 2 2 6 5898240 2949120 2949120 2951017 8985600 150 150 153 215 1856 0 0 19 5 74 0 0 0 0 0 +217 1783857085816454200 DEPTH 48 1 0.77593435986553594 0.26575809199318562 2 5 2 5 0 0 1968 40 2579 23742750 147840 1291.8325500488281 8.7538 3272.5497999999998 80640 45223 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2579 1920 0 384 1 933015308 1289272 1 0 4 2 2 2 6 5898240 2949120 2949120 2951057 8985600 157 150 156 150 1966 0 0 0 4 36 0 0 0 0 0 +218 1783857087971808000 DEPTH 13 1 0.77597977395167217 0.27342419080068137 1 6 1 6 0 0 3212 59 2564 23742637 147840 1283.3598175048828 8.723399999999998 2078.6532999999999 80640 44498 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2564 1920 0 384 1 937489496 5763460 1 0 4 2 2 2 6 5898240 2949120 2949120 2950942 8985600 150 150 156 159 1949 0 0 6 8 45 0 0 0 0 0 +219 1783857090160206000 DEPTH 39 1 0.76310198747600233 0.55451448040885853 1 9 1 9 0 0 1394 49 2582 23741986 147840 1280.7546997070312 8.7380999999999993 2127.7388000000001 80640 48399 1 0 0.00024085368487065408 1.8581174850863764 4096 2048 384 12 96 2582 1920 0 384 1 941982044 10256008 1 0 4 2 2 2 6 6881280 2949120 2949120 1967250 8985600 156 150 158 161 1957 2 2 0 0 45 0 0 0 0 0 +220 1783857092095289800 DEPTH 7 1 0.76167707172579935 0.8356047700170357 1 12 1 12 0 0 750 62 2527 23741990 147840 1275.2143402099609 8.9430000000000014 1815.0824 47040 29213 1 0 0.00036830025183520201 0.88322933222718147 4096 2048 384 12 96 2527 1920 0 384 1 946418492 14692456 1 0 5 1 2 2 6 8110080 1720320 2949120 1967255 8985600 156 169 150 150 1902 0 0 0 0 62 0 0 0 0 0 +221 1783857094217748500 DEPTH 42 1 0.79178725957143137 0 0 4 0 4 0 0 4096 16 2585 23691235 96000 1282.0631561279297 8.6793999999999993 2120.7855 120960 48877 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2585 1920 0 384 1 950914100 19188064 1 0 4 3 3 3 3 5898240 4423680 4423680 3442804 5491200 175 150 223 1242 795 0 0 1 0 15 0 0 0 0 0 +222 1783857096256047900 DEPTH 8 1 0.7761780307866083 0.26575809199318562 2 5 2 5 1 0 2104 52 2529 23742609 147840 1305.8652038574219 8.8003999999999998 1975.5371 80640 45187 1 0 0.029786720650497065 0.97356495175084057 4096 2048 384 12 96 2529 1920 0 384 1 955352588 23626552 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 156 150 170 179 1874 0 0 4 0 48 0 0 0 0 1 +223 1783857098169402800 DEPTH 4 1 0.76182982124008225 0.8356047700170357 1 12 1 12 0 0 254 41 2541 23741785 147840 1319.0440979003906 8.626100000000001 1859.1736000000001 47040 26887 1 0 0.040411785743191188 1.4510951908289993 4096 2048 384 12 96 2541 1920 0 384 1 959803316 28077280 1 0 6 1 2 1 6 8601600 1720320 2949120 1475532 8985600 162 153 150 159 1917 0 0 0 1 40 0 0 0 0 0 +224 1783857100347875400 DEPTH 52 1 0.7616615254994068 0.36712095400340705 1 7 1 7 0 0 1687 45 2551 23742671 147840 1265.4467315673828 8.7004000000000001 2019.4458 80640 44486 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2551 1920 0 384 1 964264244 32538208 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 202 246 1797 1 0 0 1 43 0 0 0 0 0 +225 1783857102282217000 DEPTH 16 1 0.76129570500808863 0.3594548551959113 2 6 2 6 0 0 2428 69 2543 23742646 147840 1282.6503295898438 8.8913999999999991 1869.2497000000001 80640 44935 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2543 1920 0 384 1 968717012 36990976 1 0 4 2 2 2 6 5898240 2949120 2949120 2950951 8985600 150 150 160 188 1895 0 0 0 1 68 0 0 0 0 0 +226 1783857104470326700 DEPTH 33 1 0.76134055946098789 0.36712095400340705 1 7 1 7 0 0 2754 73 2521 23742551 147840 1318.2197723388672 8.6929999999999996 2125.1549 80640 45195 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2521 1920 0 384 1 973147340 41421304 1 0 4 2 2 2 6 5898240 2949120 2949120 2950856 8985600 156 150 156 150 1909 0 0 12 8 53 0 0 0 0 0 +227 1783857106618788600 DEPTH 1 1 0.76138534489884568 0.36712095400340705 1 7 1 7 0 0 2415 55 2573 23742638 147840 1308.7514343261719 8.6540999999999997 2086.4917999999998 80640 44855 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2573 1920 0 384 1 977630708 45904672 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 156 150 212 213 1842 0 0 4 5 46 0 0 0 0 0 +228 1783857108943681700 DEPTH 44 1 0.76143006152728177 0.36712095400340705 1 7 1 7 0 0 1694 54 2595 23742664 147840 1375.9879608154297 9.3099000000000007 2253.4722000000002 80640 44729 1 0 0.058086188671880992 1.6339388773258507 4096 2048 384 12 96 2595 1920 0 384 1 982136516 50410480 1 0 4 2 2 2 6 5898240 2949120 2949120 2950970 8985600 150 150 155 195 1945 0 0 9 2 43 0 0 0 0 0 +229 1783857111156163100 DEPTH 42 1 0.78694825159006532 0 0 4 0 4 0 0 4096 16 2595 23677763 81600 1307.4422760009766 8.7294999999999998 2151.2248 120960 39378 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2595 1920 0 384 1 986642324 54916288 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 155 150 208 1461 621 0 0 0 0 16 0 0 0 0 0 +230 1783857113210719800 DEPTH 38 1 0.76342157971123825 0.55451448040885853 1 9 1 9 0 0 1728 72 2535 23742209 147840 1325.1932220458984 8.6442000000000014 1970.7026000000001 80640 47767 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2535 1920 0 384 1 991086932 59360896 1 0 4 2 2 2 6 6635520 2949120 2949120 2213228 8985600 174 164 162 156 1879 3 3 5 6 55 0 0 0 0 0 +231 1783857115319085800 DEPTH 31 1 0.76156380059868145 0.3594548551959113 2 6 2 6 0 0 2087 35 2562 23738825 144000 1272.9143524169922 8.7070000000000007 2025.5730000000001 80640 46808 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2562 1920 0 384 1 995559080 63833044 1 0 5 2 2 2 5 6144000 2949120 2949120 2950967 8736000 150 150 190 219 1853 0 0 0 2 33 0 0 0 0 0 +232 1783857118575949900 DEPTH 46 1 0.76160824402756555 0.37478705281090291 0 8 0 8 0 0 2398 48 2574 23742688 147840 1283.7980194091797 8.6737000000000002 3184.9774000000002 80640 45054 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2574 1920 0 384 1 1000043548 1208692 1 0 4 2 2 2 6 5898240 2949120 2949120 2950991 8985600 156 150 150 151 1967 0 0 7 1 40 0 0 0 0 0 +233 1783857120762287800 DEPTH 11 1 0.76165261966162656 0.37478705281090291 0 8 0 8 1 0 1860 43 2543 23742664 147840 1261.9673767089844 8.7539999999999996 2092.2449000000001 80640 44990 1 0 0 0.79681663764960819 4096 2048 384 12 96 2543 1920 0 384 1 1004496316 5661460 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 156 150 162 151 1924 0 0 1 0 42 0 0 0 0 1 +234 1783857122665932100 DEPTH 34 1 0.76138390129006095 0.8356047700170357 1 12 1 12 0 0 574 53 2561 23741748 147840 1300.5230102539062 8.8684000000000012 1832.2370000000001 47040 26795 1 0 0.00024166908971304853 1.8243527249293958 4096 2048 384 12 96 2561 1920 0 384 1 1008967444 10132588 1 0 6 1 2 1 6 8601600 1720320 2949120 1475492 8985600 162 150 150 150 1949 1 2 0 5 45 0 0 0 0 0 +235 1783857124792970300 DEPTH 2 1 0.76068710420800867 0.45315161839863699 2 7 2 7 1 0 2486 117 2568 23742630 147840 1295.6446685791016 8.6552000000000007 2046.4142999999999 73920 40198 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2568 1920 0 384 1 1013445712 14610856 1 0 4 2 2 2 6 6144000 2703360 2949120 2950932 8985600 152 150 159 156 1951 5 2 16 2 92 1 0 0 0 0 +236 1783857126893753700 DEPTH 45 1 0.76073294516103118 0.45315161839863699 2 7 2 7 0 0 1678 58 2579 23742618 147840 1273.7157745361328 8.6205999999999996 2042.722 67200 40033 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2579 1920 0 384 1 1017935200 19100344 1 0 5 1 2 2 6 6389760 2457600 2949120 2950923 8985600 156 163 177 182 1901 0 3 8 6 41 0 0 0 0 0 +237 1783857128964092800 DEPTH 42 1 0.78234895543194372 0 0 4 0 4 0 0 4096 20 2593 23677527 81600 1262.5224914550781 8.7293000000000003 2068.9501 120960 27426 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2593 1920 0 384 1 1022438968 23604112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426475 4492800 150 150 170 1579 544 0 0 0 0 20 0 0 0 0 0 +238 1783857131041331700 DEPTH 20 1 0.77687348788802413 0.26575809199318562 2 5 2 5 0 0 1746 41 2594 23742650 147840 1270.2340850830078 8.6131999999999991 2011.3091999999999 80640 45420 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2594 1920 0 384 1 1026943756 28108900 1 0 4 2 2 2 6 5898240 2949120 2949120 2950956 8985600 156 150 155 194 1939 0 0 7 0 34 0 0 0 0 0 +239 1783857133148367300 DEPTH 17 1 0.77691746092806224 0.28109028960817717 0 7 0 7 0 0 2954 49 2561 23742648 147840 1264.8958435058594 8.6128999999999998 2037.2357 80640 44515 1 0 0 0.16424126902321717 4096 2048 384 12 96 2561 1920 0 384 1 1031414884 32580028 1 0 4 2 2 2 6 5898240 2949120 2949120 2950953 8985600 156 150 158 158 1939 0 0 3 3 43 0 0 0 0 0 +240 1783857135215859200 DEPTH 41 1 0.76389907893936171 0.55451448040885853 1 9 1 9 0 0 1695 88 2545 23742202 147840 1266.1549224853516 8.6486000000000001 2009.5591999999999 80640 48155 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2545 1920 0 384 1 1035869692 37034836 1 0 4 2 2 2 6 6635520 2949120 2949120 2213220 8985600 150 150 165 161 1919 12 2 12 12 50 0 0 0 0 0 +241 1783857137299332200 DEPTH 21 1 0.76394643199618006 0.56218057921635434 0 10 0 10 0 0 2078 71 2560 23742218 147840 1270.0027008056641 8.6539000000000001 2021.4766999999999 80640 48295 1 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 384 12 96 2560 1920 0 384 1 1040339800 41504944 1 0 4 2 2 2 6 6635520 2949120 2949120 2213243 8985600 156 150 156 151 1947 6 3 6 9 47 0 0 0 0 0 +242 1783857139114724400 DEPTH 26 1 0.76278107250667337 0.8356047700170357 1 12 1 12 0 0 918 52 2559 23741701 147840 1274.7613830566406 8.9292999999999996 1746.0482 47040 27380 1 0 0.00095608200241023913 0.46793588624263099 4096 2048 384 12 96 2559 1920 0 384 1 1044808888 45974032 1 0 6 1 2 1 6 8601600 1720320 2949120 1475445 8985600 156 150 150 150 1953 0 1 0 2 49 0 0 0 0 0 +243 1783857141264357500 DEPTH 53 1 0.76209269388368883 0.37478705281090291 0 8 0 8 0 0 3912 85 2529 23742635 147840 1270.3662109375 8.680299999999999 2005.1003000000001 80640 44728 1 0 0 0.26169361010444037 4096 2048 384 12 96 2529 1920 0 384 1 1049247376 50412520 1 0 4 2 2 2 6 5898240 2949120 2949120 2950939 8985600 162 150 168 156 1893 0 0 9 6 70 0 0 0 0 0 +244 1783857143358543700 DEPTH 54 1 0.76109718681332683 0.4608177172061329 1 8 1 8 0 0 946 72 2556 23742683 147840 1266.183837890625 8.8806999999999992 2029.3578 80640 42656 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2556 1920 0 384 1 1053713404 54878548 1 0 4 2 2 2 6 5898240 2949120 2949120 2950983 8985600 162 150 165 197 1882 8 15 7 0 42 0 0 0 0 0 +245 1783857143722714100 REFRESH 49 0 0.7512993859607846 0.82027257240204421 3 10 3 10 0 0 956 40 410 3988943 56640 219.9091796875 1.4307000000000001 298.1662 6720 4905 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 410 320 0 64 0 1054439828 55604972 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 31 25 26 27 301 0 0 1 0 39 0 0 0 0 0 +246 1783857144091471600 REFRESH 1 0 0.69418280896200968 0.36712095400340705 1 7 1 7 0 0 2430 38 416 3988956 56640 220.05043029785156 1.4314 306.31670000000003 13440 8803 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 416 320 0 64 0 1055172372 56337516 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 27 25 75 52 237 0 0 9 2 27 0 0 0 0 0 +247 1783857144487456200 REFRESH 56 0 0.76929539555639048 0.26575809199318562 2 5 2 5 0 0 4096 81 411 3988935 56640 220.08320617675781 1.4349000000000001 325.39510000000001 13440 8661 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 411 320 0 64 0 1055899816 57064960 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 29 48 284 0 0 4 5 72 0 0 0 0 0 +248 1783857144839489200 REFRESH 27 0 0.7603485527212086 0.93696763202725719 0 14 0 14 0 0 773 12 414 3988961 56640 221.92640686035156 1.4346000000000001 299.8963 6720 4942 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 414 320 0 64 0 1056630320 57795464 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 26 313 0 0 0 0 12 0 0 0 0 0 +249 1783857145236589100 REFRESH 39 0 0.75437252370887942 0.55451448040885853 1 9 1 9 0 0 1396 15 423 3988960 56640 220.83497619628906 1.4332 339.22179999999997 13440 9538 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 423 320 0 64 0 1057370004 58535148 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 45 36 291 0 0 1 0 14 0 0 0 0 0 +250 1783857145592992300 REFRESH 57 0 0.77019145266646183 0.27342419080068137 1 6 1 6 0 0 3436 20 404 3988946 56640 221.06326293945312 1.4375 302.26010000000002 13440 8742 0 0 0.00072285488641214994 0.49252826452705561 4096 2048 64 1 16 404 320 0 64 0 1058090308 59255452 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 48 46 259 0 0 1 1 18 0 0 0 0 0 +251 1783857145895843200 REFRESH 41 0 0.61426947169675328 0.55451448040885853 1 9 1 9 0 0 1708 41 414 3988951 56640 219.34591674804688 1.4354 301.65230000000003 13440 9564 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 1058820812 59985956 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 34 29 300 0 0 3 3 35 0 0 0 0 0 +252 1783857146250351800 REFRESH 23 0 0.75493884471158412 0.74190800681430991 1 11 1 11 0 0 3221 18 411 3988876 56640 223.79930114746094 1.4354 297.536 13440 10004 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 411 320 0 64 0 1059548256 60713400 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 54 25 25 27 280 1 0 0 0 17 0 0 0 0 0 +253 1783857146573758700 REFRESH 54 0 0.59252619755003688 0.4608177172061329 1 8 1 8 0 0 951 20 419 3988945 56640 219.86508178710938 1.4343999999999999 321.6001 13440 9177 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 419 320 0 64 0 1060283860 61449004 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 42 61 265 0 0 3 2 15 0 0 0 0 0 +254 1783857146924333100 REFRESH 16 0 0.75451685541403668 0.3594548551959113 2 6 2 6 0 0 2448 39 415 3988948 56640 221.39494323730469 1.4348000000000001 296.82459999999998 13440 8684 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 415 320 0 64 0 1061015384 62180528 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 27 43 295 0 0 0 1 38 0 0 0 0 0 +255 1783857147271275800 REFRESH 10 0 0.75924483742184679 0.64821124361158422 1 10 1 10 0 0 958 8 418 3988885 56640 221.18194580078125 1.4396 294.24349999999998 13440 9996 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 418 320 0 64 0 1061749968 62915112 1 0 5 2 2 1 6 1228800 491520 491520 245844 1497600 26 25 25 30 312 0 0 0 1 7 0 0 0 0 0 +256 1783857147614817200 REFRESH 12 0 0.7592911422102534 0.63287904599659284 3 8 3 8 0 0 1119 11 424 3988881 56640 220.63821411132812 1.4340999999999999 292.1232 13440 9968 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 424 320 0 64 0 1062490672 63655816 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 31 25 25 41 302 0 0 0 0 11 0 0 0 0 0 +257 1783857147949040900 REFRESH 20 0 0.70964110437469574 0.26575809199318562 2 5 2 5 0 0 1752 23 423 3988962 56640 219.80569458007812 1.4340999999999999 332.99599999999998 13440 8677 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 423 320 0 64 0 1063230356 64395500 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 36 54 282 0 0 3 2 18 0 0 0 0 0 +258 1783857148243698200 REFRESH 26 0 0.66188354712432129 0.8356047700170357 1 12 1 12 0 0 919 21 415 3988873 56640 220.61485290527344 1.5408999999999999 293.41120000000001 6720 4912 0 0 0.00095608200241023913 0.46793588624263099 4096 2048 64 1 16 415 320 0 64 0 1063961880 65127024 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 26 25 25 26 313 0 0 0 2 19 0 0 0 0 0 +259 1783857148607382600 REFRESH 51 0 0.76088214143654176 0.91396933560476989 3 11 3 11 0 0 471 16 407 3988880 56640 221.05191040039062 1.4345000000000001 299.94839999999999 6720 4957 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 407 320 0 64 0 1064685244 65850388 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 25 25 25 26 306 0 0 0 0 16 0 0 0 0 0 +260 1783857148959816800 REFRESH 29 0 0.75197568045084184 0.82027257240204421 3 10 3 10 0 0 1026 15 419 3988982 56640 220.87577819824219 1.4360999999999999 297.33879999999999 6720 4892 0 0 0.19917884497934765 1.0177350439861224 4096 2048 64 1 16 419 320 0 64 0 1065420848 66585992 1 0 5 1 2 2 6 1228800 245760 491520 491702 1497600 31 25 26 35 302 1 0 1 1 12 0 0 0 0 0 +261 1783857150480445700 REFRESH 44 0 0.75480591782478712 0.36712095400340705 1 7 1 7 0 0 1695 12 430 3988968 56640 221.13587951660156 1.4316 1446.7614000000001 13440 8675 0 0 0.058086188671880992 1.6339388773258507 4096 2048 64 1 16 430 320 0 64 0 1066167752 224844 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 33 48 299 0 0 2 3 7 0 0 0 0 0 +262 1783857150857280400 REFRESH 5 0 0.75206754373368079 0.8279386712095399 2 11 2 11 0 0 708 16 413 3988939 56640 219.00288391113281 1.4356 315.32330000000002 6720 4843 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 413 320 0 64 0 1066897236 954328 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 25 25 25 38 300 0 0 0 4 12 0 0 0 0 0 +263 1783857151235710300 REFRESH 30 0 0.76194502054772895 0.4608177172061329 1 8 1 8 0 0 2519 79 413 3988934 56640 220.40792846679688 1.4311 301.70999999999998 6720 4645 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 413 320 0 64 0 1067626720 1683812 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 29 25 46 32 281 2 0 2 3 72 0 0 0 0 0 +264 1783857151616561800 REFRESH 47 0 0.75215913850372751 0.8279386712095399 2 11 2 11 0 0 523 13 411 3988959 56640 219.47801208496094 1.4355 303.76530000000002 6720 4956 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 411 320 0 64 0 1068354164 2411256 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 25 25 27 308 0 0 1 0 12 0 0 0 0 0 +265 1783857151974563500 REFRESH 7 0 0.752204835671344 0.8356047700170357 1 12 1 12 0 0 754 13 406 3988946 56640 221.15533447265625 1.4350000000000001 300.3245 6720 5011 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 406 320 0 64 0 1069076508 3133600 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 30 300 0 0 0 0 13 0 0 0 0 0 +266 1783857152326985200 REFRESH 42 0 0.94866211935221934 0 0 4 0 4 0 0 4096 5 426 3987640 55200 223.20947265625 1.4306000000000001 351.18189999999998 20160 12755 0 0 0 0.0039368239797356571 4096 2048 64 1 16 426 320 0 64 0 1069819252 3876344 1 0 4 3 3 3 3 983040 737280 737280 737531 748800 57 25 40 227 77 0 0 0 0 5 0 0 0 0 0 +267 1783857152676061000 REFRESH 14 0 0.75979603051458855 0.65587734241908002 0 11 0 11 0 0 1292 32 420 3988939 56640 222.94937133789062 1.4298 296.0573 6720 4897 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 420 320 0 64 0 1070555876 4612968 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 29 25 32 26 308 1 0 3 0 28 0 0 0 0 0 +268 1783857153042264700 REFRESH 31 0 0.75509202971088651 0.3594548551959113 2 6 2 6 0 0 2105 43 415 3988458 56160 219.95111083984375 1.4338 311.79730000000001 13440 9872 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 415 320 0 64 0 1071287400 5344492 1 0 5 2 2 2 5 1228800 491520 491520 491657 1248000 25 25 26 92 247 0 0 1 8 34 0 0 0 0 0 +269 1783857153357932600 REFRESH 2 0 0.75322691896793459 0.45315161839863699 2 7 2 7 0 0 2507 43 414 3988949 56640 220.86860656738281 1.4348000000000001 314.50360000000001 13440 9177 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 414 320 0 64 0 1072017904 6074996 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 26 36 29 298 0 0 2 2 39 0 0 0 0 0 +270 1783857153754294200 REFRESH 11 0 0.75519731082831232 0.37478705281090291 0 8 0 8 0 0 1865 23 410 3988969 56640 220.01664733886719 1.4346000000000001 341.7758 13440 8753 0 0 0 0.79681663764960819 4096 2048 64 1 16 410 320 0 64 0 1072744328 6801420 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 27 25 55 64 239 0 0 3 3 17 0 0 0 0 0 +271 1783857154097554400 REFRESH 35 0 0.75247762785224026 0.8279386712095399 2 11 2 11 0 0 941 22 405 3988951 56640 220.59724426269531 1.4594 293.1422 6720 4889 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 405 320 0 64 0 1073465652 7522744 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 27 25 25 29 299 0 0 0 0 22 0 0 0 0 0 +272 1783857154445004400 REFRESH 43 0 0.75252286262762347 0.8279386712095399 2 11 2 11 0 0 698 14 417 3988954 56640 220.42317199707031 1.5682 290.97469999999998 6720 4861 0 0 0.0098917603558251466 1.2583434584708781 4096 2048 64 1 16 417 320 0 64 0 1074199216 8256308 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 27 25 25 33 307 0 0 0 1 13 0 0 0 0 0 +273 1783857154843854200 REFRESH 55 0 0.75265069052247568 0.8279386712095399 2 11 2 11 1 0 863 16 409 3988965 56640 221.9315185546875 1.4422999999999999 296.03210000000001 6720 4846 0 0 0.061062934643973568 0.6495521077874169 4096 2048 64 1 16 409 320 0 64 0 1074924620 8981712 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 25 25 25 26 308 0 0 0 0 16 0 0 0 0 1 +274 1783857155230320900 REFRESH 25 0 0.76242517708135005 0.4608177172061329 1 8 1 8 0 0 2069 21 407 3988971 56640 222.90534973144531 1.4359 333.48570000000001 13440 9511 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 407 320 0 64 0 1075647984 9705076 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 26 33 297 0 0 1 3 17 0 0 0 0 0 +275 1783857155594774000 REFRESH 33 0 0.7553752489297445 0.36712095400340705 1 7 1 7 0 0 2776 43 419 3988959 56640 221.48300170898438 1.4369000000000001 310.63040000000001 13440 8738 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 419 320 0 64 0 1076383588 10440680 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 27 25 28 27 312 0 0 1 2 40 0 0 0 0 0 +276 1783857155948946100 REFRESH 38 0 0.75536880368106174 0.55451448040885853 1 9 1 9 0 0 1742 33 410 3988940 56640 219.65414428710938 1.4368000000000001 296.58300000000003 13440 9513 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 410 320 0 64 0 1077110012 11167104 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 28 27 304 0 0 0 0 33 0 0 0 0 0 +277 1783857156298756400 REFRESH 22 0 0.76173694856651242 0.91396933560476989 3 11 3 11 0 0 436 13 412 3988872 56640 222.561279296875 1.4350000000000001 300.58859999999999 6720 4951 0 0 0.0084510069687565564 0.67421194247655503 4096 2048 64 1 16 412 320 0 64 0 1077838476 11895568 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 28 25 25 26 308 0 0 0 0 13 0 0 0 0 0 +278 1783857156648577100 REFRESH 19 0 0.75279290947122324 0.8279386712095399 2 11 2 11 0 0 766 30 411 3988976 56640 220.36991882324219 1.4350000000000001 293.18939999999998 6720 4836 0 0 0.026162283138524579 0.38449384479445964 4096 2048 64 1 16 411 320 0 64 0 1078565920 12623012 1 0 5 1 2 2 6 1228800 245760 491520 491695 1497600 26 25 25 28 307 0 0 0 0 30 0 0 0 0 0 +279 1783857156986719100 REFRESH 4 0 0.75283769160628 0.8356047700170357 1 12 1 12 0 0 254 7 424 3988885 56640 218.87283325195312 1.4348000000000001 288.3261 6720 4862 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 424 320 0 64 0 1079306624 13363716 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 27 25 25 32 315 0 0 0 0 7 0 0 0 0 0 +280 1783857157339311200 REFRESH 3 0 0.76040433961474685 0.64054514480408853 2 9 2 9 0 0 958 34 411 3988957 56640 218.97421264648438 1.4400999999999999 299.21030000000002 6720 4926 0 0 0.007762414124757676 0.23327367927094445 4096 2048 64 1 16 411 320 0 64 0 1080034068 14091160 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 36 25 45 30 275 0 0 3 0 31 0 0 0 0 0 +281 1783857157684308500 REFRESH 24 0 0.75965118162954093 1 4 11 4 11 0 0 475 9 412 3988938 56640 222.83673095703125 1.4371 295.68560000000002 6720 4900 0 0 0.049718034260125263 1.3802885951242663 4082 2034 64 1 16 412 320 0 64 0 1080762532 14819624 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 27 25 25 25 310 0 0 0 0 9 0 0 0 0 0 +282 1783857158026264100 REFRESH 17 0 0.77065563167239792 0.28109028960817717 0 7 0 7 0 0 2969 31 414 3988959 56640 219.56198120117188 1.4854000000000001 340.84829999999999 13440 8573 0 0 0 0.16424126902321717 4096 2048 64 1 16 414 320 0 64 0 1081493036 15550128 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 42 40 281 0 0 1 1 29 0 0 0 0 0 +283 1783857158374495100 REFRESH 15 0 0.76201698946591367 0.91396933560476989 3 11 3 11 0 0 294 13 411 3988885 56640 221.35090637207031 1.4334 294.47250000000003 6720 4997 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 411 320 0 64 0 1082220480 16277572 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 27 25 25 27 307 0 0 1 0 12 0 0 0 0 0 +284 1783857158723733200 REFRESH 18 0 0.76206343048974867 0.9293015332197615 1 13 1 13 1 0 413 10 417 3988966 56640 222.73945617675781 1.4972000000000001 298.31729999999999 6720 4896 0 0 0.0012150407760339716 1.5464044125342757 4096 2048 64 1 16 417 320 0 64 0 1082954044 17011136 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 26 25 25 25 316 0 0 0 0 10 0 0 0 0 1 +285 1783857159067665000 REFRESH 34 0 0.75220504657377041 0.8356047700170357 1 12 1 12 0 0 576 9 423 3988873 56640 219.81901550292969 1.4411 292.5505 6720 4930 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 423 320 0 64 0 1083693728 17750820 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 27 25 25 31 315 0 0 0 1 8 0 0 0 0 0 +286 1783857159462800200 REFRESH 9 0 0.7718189530474503 0.27342419080068137 1 6 1 6 0 0 1898 65 403 3988973 56640 256.95233154296875 1.4335 340.28019999999998 13440 8728 0 0 0.00045683662084148647 0.47178240195912624 4096 2048 64 1 16 403 320 0 64 0 1084413012 18470104 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 27 25 27 33 291 0 0 0 2 63 0 0 0 0 0 +287 1783857159839057100 REFRESH 45 0 0.75395347629670417 0.45315161839863699 2 7 2 7 0 0 1694 46 411 3988883 56640 225.22572326660156 1.6236999999999999 324.19830000000002 13440 9963 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 411 320 0 64 0 1085140456 19197548 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 34 31 25 47 274 0 1 0 4 41 0 0 0 0 0 +288 1783857160199276000 REFRESH 37 0 0.7533754755408878 0.8356047700170357 1 12 1 12 0 0 842 35 405 3988947 56640 228.44210815429688 1.4353 303.06799999999998 6720 4936 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 405 320 0 64 0 1085861780 19918872 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 27 25 25 28 300 0 0 0 0 35 0 0 0 0 0 +289 1783857160554417500 REFRESH 36 0 0.75328202190428895 0.82027257240204421 3 10 3 10 0 0 1014 30 410 3988970 56640 226.25177001953125 1.4392 299.79419999999999 6720 4854 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 410 320 0 64 0 1086588204 20645296 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 30 25 39 28 288 0 0 1 0 29 0 0 0 0 0 +290 1783857160955142100 REFRESH 40 0 0.76082610965578168 0.64821124361158422 1 10 1 10 0 0 1412 14 414 3988874 56640 219.56402587890625 1.4424999999999999 345.74099999999999 13440 10031 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 414 320 0 64 0 1087318708 21375800 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 26 25 25 32 306 1 0 1 1 11 0 0 0 0 0 +291 1783857161387258300 REFRESH 8 0 0.7710284858520815 0.26575809199318562 2 5 2 5 0 0 2107 12 415 3988959 56640 229.55110168457031 1.4312 315.95979999999997 13440 8567 0 0 0.029786720650497065 0.97356495175084057 4096 2048 64 1 16 415 320 0 64 0 1088050232 22107324 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 42 32 290 0 0 1 0 11 0 0 0 0 0 +292 1783857161737726700 REFRESH 6 0 0.75843260037300642 0.91396933560476989 3 11 3 11 0 0 363 11 421 3988886 56640 220.23782348632812 1.4704999999999999 295.2647 6720 4972 0 0 0.078490995891016657 0.16637572843653256 3716 1668 64 1 16 421 320 0 64 0 1088787876 22844968 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 26 25 25 26 319 0 0 1 2 8 0 0 0 0 0 +293 1783857162243262900 REFRESH 13 0 0.77109063305033743 0.27342419080068137 1 6 1 6 0 0 3248 68 413 3988941 56640 223.67129516601562 1.4614 389.25639999999999 13440 8617 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 413 320 0 64 0 1089517360 23574452 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 31 34 298 0 0 1 3 64 0 0 0 0 0 +294 1783857162585224200 REFRESH 21 0 0.75613615920700783 0.56218057921635434 0 10 0 10 0 0 2090 43 406 3988954 56640 224.6983642578125 1.5018 340.15460000000002 13440 9640 0 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 64 1 16 406 320 0 64 0 1090239704 24296796 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 43 47 266 0 0 3 3 37 0 0 0 0 0 +295 1783857162964186000 REFRESH 28 0 0.75354562042249917 0.8279386712095399 2 11 2 11 0 0 543 16 408 3988960 56640 226.49958801269531 1.4478 318.8143 6720 4847 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 408 320 0 64 0 1090964088 25021180 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 26 25 25 26 306 0 0 0 0 16 0 0 0 0 0 +296 1783857163410414600 REFRESH 50 0 0.76008933815396906 0.64054514480408853 2 9 2 9 0 0 927 9 419 3988969 56640 220.84095764160156 1.4587000000000001 322.40530000000001 6720 4867 0 0 0.061518444399238342 2.0460364460936478 4096 2048 64 1 16 419 320 0 64 0 1091699692 25756784 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 27 25 27 25 315 0 0 2 0 7 0 0 0 0 0 +297 1783857163780108100 REFRESH 0 0 0.75363299480042001 0.8279386712095399 2 11 2 11 0 0 760 26 415 3988944 56640 222.308349609375 1.4469000000000001 310.3306 6720 4905 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 415 320 0 64 0 1092431216 26488308 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 41 298 0 0 0 4 22 0 0 0 0 0 +298 1783857164194975500 REFRESH 52 0 0.75665581518077585 0.36712095400340705 1 7 1 7 0 0 1689 11 422 3988953 56640 219.08377075195312 1.4489000000000001 354.42059999999998 13440 8613 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 422 320 0 64 0 1093169880 27226972 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 43 51 277 0 0 1 0 10 0 0 0 0 0 +299 1783857164616181500 REFRESH 48 0 0.77132508429410129 0.26575809199318562 2 5 2 5 0 0 1975 23 420 3988959 56640 221.58131408691406 1.4610000000000001 356.02859999999998 13440 8697 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 420 320 0 64 0 1093906504 27963596 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 27 25 45 32 291 0 0 1 2 20 0 0 0 0 0 +300 1783857165025500800 REFRESH 46 0 0.75636396896244051 0.37478705281090291 0 8 0 8 0 0 2402 19 418 3988954 56640 220.98226928710938 1.4429000000000001 346.1497 13440 8638 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 418 320 0 64 0 1094641088 28698180 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 29 56 282 0 0 2 0 17 0 0 0 0 0 +301 1783857165464239900 REFRESH 32 0 0.76357221650127383 0.4608177172061329 1 8 1 8 0 0 2168 45 412 3988941 56640 221.37651062011719 1.6115999999999999 316.33730000000003 13440 9651 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 412 320 0 64 0 1095369552 29426644 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 27 25 32 29 299 0 0 5 0 40 0 0 0 0 0 +302 1783857165822788000 REFRESH 58 0 0.76288826792566866 0.92163543441226559 2 12 2 12 0 0 463 13 410 3988877 56640 225.07315063476562 1.6507000000000001 304.27080000000001 6720 5013 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 410 320 0 64 0 1096095976 30153068 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 28 25 25 25 307 0 0 0 0 13 0 0 0 0 0 +303 1783857166145680400 REFRESH 53 0 0.75648030193339189 0.37478705281090291 0 8 0 8 0 0 3938 60 405 3988979 56640 222.99749755859375 1.4649000000000001 321.51310000000001 13440 8716 0 0 0 0.26169361010444037 4096 2048 64 1 16 405 320 0 64 0 1096817300 30874392 1 0 4 2 2 2 6 983040 491520 491520 491698 1497600 27 25 52 32 269 0 0 7 3 50 0 0 0 0 0 +304 1783857168422188300 DEPTH 42 1 0.94037228515355453 0 0 4 0 4 0 0 4096 18 2590 23677556 81600 1303.9415130615234 8.7063000000000006 2208.8294000000001 120960 60130 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2590 1920 0 384 1 1101318008 35375100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 270 150 233 1307 630 0 0 0 0 18 0 0 0 0 0 +305 1783857170548170100 DEPTH 57 1 0.76493681288710424 0.27342419080068137 1 6 1 6 0 0 3469 112 2541 23742722 147840 1287.6033020019531 8.8507999999999996 2060.5126 80640 43057 1 0 0.00072285488641214994 0.49252826452705561 4096 2048 384 12 96 2541 1920 0 384 1 1105768736 39825828 1 0 4 2 2 2 6 5898240 2949120 2949120 2950930 8985600 156 150 178 165 1892 0 0 3 8 101 0 0 0 0 0 +306 1783857172802575300 DEPTH 56 1 0.76428069129630549 0.26575809199318562 2 5 2 5 0 0 4096 89 2552 23731369 136320 1297.8933715820312 8.6404999999999994 2125.7035999999998 100800 52794 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2552 1920 0 384 1 1110230684 44287776 1 0 4 3 2 2 5 5898240 3686400 2949120 2950959 8236800 150 150 152 592 1508 0 0 18 13 58 0 0 0 0 0 +307 1783857174980732200 DEPTH 20 1 0.76425442643063035 0.26575809199318562 2 5 2 5 0 0 1764 39 2608 23731373 136320 1274.9319763183594 8.6148000000000007 2055.0284999999999 100800 53721 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2608 1920 0 384 1 1114749752 48806844 1 0 4 3 2 2 5 5898240 3686400 2949120 2950981 8236800 161 150 160 345 1792 0 0 2 0 37 0 0 0 0 0 +308 1783857177123953700 DEPTH 30 1 0.75480113280709371 0.4608177172061329 1 8 1 8 0 0 2539 101 2548 23742712 147840 1283.4437866210938 8.6166 2067.6930000000002 67200 37356 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2548 1920 0 384 1 1119207620 53264712 1 0 4 2 2 2 6 6389760 2457600 2949120 2951016 8985600 162 150 208 167 1861 21 2 8 6 64 0 0 0 0 0 +309 1783857179295614500 DEPTH 25 1 0.75484088413036976 0.4608177172061329 1 8 1 8 0 0 2076 43 2552 23742675 147840 1280.5945587158203 8.964500000000001 2169.8330999999998 80640 46497 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2552 1920 0 384 1 1123669568 57726660 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 156 150 156 159 1931 0 0 1 9 33 0 0 0 0 0 +310 1783857181176261600 DEPTH 51 1 0.75146777408014165 0.91396933560476989 3 11 3 11 0 0 476 26 2574 23741708 147840 1272.5693054199219 8.6284999999999989 1806.2470000000001 47040 27093 1 0 0.069490736143882334 0.29124129273896787 4096 2048 384 12 96 2574 1920 0 384 1 1128153956 62211048 1 0 6 1 2 1 6 8601600 1720320 2949120 1475454 8985600 150 150 150 156 1968 0 0 0 0 26 0 0 0 0 0 +311 1783857183077381200 DEPTH 22 1 0.75151059260120989 0.91396933560476989 3 11 3 11 1 0 438 46 2546 23741708 147840 1318.2135620117188 8.6555999999999997 1837.7918999999999 47040 27429 1 0 0.0084510407612466993 0.6742119049311508 4096 2048 384 12 96 2546 1920 0 384 1 1132609784 66666876 1 0 6 1 2 1 6 8601600 1720320 2949120 1475451 8985600 168 155 150 169 1904 0 1 0 0 45 0 0 0 0 1 +312 1783857186396767700 DEPTH 42 1 0.76678562329810218 0 0 4 0 4 0 0 4096 24 2606 23677552 81600 1285.6307220458984 8.7279 3198.2656000000002 120960 48611 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2606 1920 0 384 1 1137126892 4075628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 233 150 222 1464 537 0 0 0 0 24 0 0 0 0 0 +313 1783857188395096000 DEPTH 9 1 0.7653809915226697 0.27342419080068137 1 6 1 6 1 0 1929 84 2549 23742827 147840 1277.8513336181641 8.6367999999999991 1997.0521000000001 80640 42981 1 0 0.00045683257879690901 0.45652101664745287 4096 2048 384 12 96 2549 1920 0 384 1 1141585780 8534516 1 0 4 2 2 2 6 5898240 2949120 2949120 2950991 8985600 150 150 156 163 1930 0 0 8 10 66 0 0 0 0 2 +314 1783857190542778500 DEPTH 17 1 0.76451400181566842 0.28109028960817717 0 7 0 7 0 0 2992 57 2572 23731366 136320 1267.9091186523438 8.6253999999999991 2080.3865999999998 100800 52703 1 0 0 0.16424126902321717 4096 2048 384 12 96 2572 1920 0 384 1 1146068128 13016864 1 0 4 3 2 2 5 5898240 3686400 2949120 2950965 8236800 156 150 156 447 1663 0 2 2 1 52 0 0 0 0 0 +315 1783857192413017600 DEPTH 18 1 0.75171644006873151 0.9293015332197615 1 13 1 13 0 0 416 71 2518 23742672 147840 1287.1609649658203 8.6287999999999982 1756.7352000000001 40320 22976 1 0 0.0012150407760339716 1.5464044125342757 4096 2048 384 12 96 2518 1920 0 384 1 1150495396 17444132 1 0 5 1 2 2 6 7372800 1474560 2949120 2950978 8985600 156 150 150 150 1912 1 0 0 0 70 0 0 0 0 0 +316 1783857194249174600 DEPTH 15 1 0.75172380822076323 0.91396933560476989 3 11 3 11 0 0 294 28 2509 23741773 147840 1279.8719177246094 8.6230000000000011 1730.9611 47040 27167 1 0 0.13215737202774189 0.95319511763653475 4096 2048 384 12 96 2509 1920 0 384 1 1154913484 21862220 1 0 6 1 2 1 6 8601600 1720320 2949120 1475518 8985600 156 150 150 161 1892 0 0 2 0 26 0 0 0 0 0 +317 1783857196056074200 DEPTH 27 1 0.75176627702935039 0.93696763202725719 0 14 0 14 0 0 774 73 2502 23742661 147840 1278.3426361083984 8.7123000000000008 1748.7787000000001 40320 22906 1 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 384 12 96 2502 1920 0 384 1 1159324432 26273168 1 0 5 1 2 2 6 7372800 1474560 2949120 2950964 8985600 150 150 150 156 1896 0 0 0 0 73 0 0 0 0 0 +318 1783857198054569400 DEPTH 3 1 0.75179230299751842 0.64054514480408853 2 9 2 9 1 0 972 48 2531 23742353 147840 1260.9091339111328 8.7067999999999994 1936.1594 80640 47089 1 0 0.0077935650784293035 0.15116988268283343 4096 2048 384 12 96 2531 1920 0 384 1 1163764960 30713696 1 0 4 2 2 2 6 6389760 2949120 2949120 2459135 8985600 168 153 153 161 1896 5 0 2 0 41 0 0 0 0 1 +319 1783857199872959200 DEPTH 12 1 0.75181325800463794 0.63287904599659284 3 8 3 8 0 0 1126 46 2591 23741885 147840 1272.9337921142578 8.6050000000000004 1761.3770999999999 80640 47547 1 0 0.0015102624860077482 0.9394486955269914 4096 2048 384 12 96 2591 1920 0 384 1 1168266688 35215424 1 0 5 2 2 1 6 7127040 2949120 2949120 1721391 8985600 150 150 150 160 1981 0 1 4 2 39 0 0 0 0 0 +320 1783857201889758600 DEPTH 8 1 0.76474932530727413 0.26575809199318562 2 5 2 5 0 0 2114 52 2545 23742681 147840 1281.5084533691406 8.6235999999999997 1941.8874000000001 80640 42877 1 0 0.029786720650497065 0.97356495175084057 4096 2048 384 12 96 2545 1920 0 384 1 1172721496 39670232 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 155 150 178 179 1883 0 0 6 2 44 0 0 0 0 0 +321 1783857204025643300 DEPTH 13 1 0.76477110705550211 0.27342419080068137 1 6 1 6 0 0 3257 53 2548 23742906 147840 1270.1643829345703 8.7081000000000017 2009.0959 80640 42937 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2548 1920 0 384 1 1177179364 44128100 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 150 150 156 156 1936 0 0 7 2 44 0 0 0 0 0 +322 1783857206131670200 DEPTH 42 1 0.78336055622600564 0 0 4 0 4 0 0 4096 21 2594 23677623 81600 1271.4667510986328 8.6206000000000014 2104.7447999999999 120960 38995 1 0 0 0.0039368239797356571 4096 2048 384 12 96 2594 1920 0 384 1 1181684152 48632888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 218 150 218 1467 541 0 0 0 0 21 0 0 0 0 0 +323 1783857208227388200 DEPTH 40 1 0.75197547512755014 0.64821124361158422 1 10 1 10 0 0 1430 53 2609 23742189 147840 1269.1377105712891 8.6166 2024.8131000000001 80640 49211 1 0 0.026057215024178938 1.7176440476922248 4096 2048 384 12 96 2609 1920 0 384 1 1186204240 53152976 1 0 5 2 2 1 6 6635520 2949120 2949120 2213214 8985600 151 150 150 164 1994 3 0 1 1 48 0 0 0 0 0 +324 1783857210214971000 DEPTH 14 1 0.75201589251596102 0.65587734241908002 0 11 0 11 0 0 1301 95 2534 23742724 147840 1287.5377349853516 8.7652000000000001 1909.7644 40320 23457 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2534 1920 0 384 1 1190647828 57596564 1 0 5 1 2 2 6 7372800 1474560 2949120 2951030 8985600 163 150 150 156 1915 2 0 5 0 88 0 0 0 0 0 +325 1783857212078513900 DEPTH 10 1 0.75005625543386667 0.64821124361158422 1 10 1 10 0 0 980 78 2552 23742424 147840 1276.6869659423828 8.6102000000000007 1805.3045 80640 46332 1 0 0.0040407710321612731 2.9277816338853699 4096 2048 384 12 96 2552 1920 0 384 1 1195109776 62058512 1 0 4 2 2 2 6 6389760 2949120 2949120 2459211 8985600 156 150 150 168 1928 14 11 0 1 52 0 0 0 0 0 +326 1783857214176458800 DEPTH 11 1 0.74997492819963107 0.37478705281090291 0 8 0 8 0 0 1884 52 2556 23731291 136320 1263.2196502685547 8.607899999999999 2036.1012000000001 100800 52588 1 0 0 0.79681663764960819 4096 2048 384 12 96 2556 1920 0 384 1 1199575804 66524540 1 0 4 3 2 2 5 5898240 3686400 2949120 2950925 8236800 160 150 162 374 1710 0 0 0 0 52 0 0 0 0 0 +327 1783857217352662500 DEPTH 31 1 0.74998955123556366 0.3594548551959113 2 6 2 6 0 0 2120 45 2550 23720525 125760 1272.2217254638672 8.6151999999999997 3117.5841999999998 80640 46471 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2550 1920 0 384 1 1204035792 3875708 1 0 5 2 2 2 5 7372800 2949120 2949120 2950911 7488000 150 150 156 328 1766 0 0 11 0 34 0 0 0 0 0 +328 1783857219461746900 DEPTH 48 1 0.765025787348249 0.26575809199318562 2 5 2 5 0 0 1985 46 2570 23735196 140160 1271.6677398681641 8.6241000000000003 2042.1541 94080 51256 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2570 1920 0 384 1 1208516100 8356016 1 0 4 3 2 2 5 5898240 3440640 2949120 2950984 8486400 156 150 156 249 1859 0 0 0 1 45 0 0 0 0 0 +329 1783857221518504000 DEPTH 32 1 0.75562463232443289 0.4608177172061329 1 8 1 8 0 0 2183 77 2557 23742628 147840 1272.3271636962891 8.6077999999999992 1997.4290000000001 80640 45506 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2557 1920 0 384 1 1212983148 12823064 1 0 4 2 2 2 6 5898240 2949120 2949120 2950934 8985600 150 150 154 150 1953 0 0 13 9 55 0 0 0 0 0 +330 1783857223313781000 DEPTH 58 1 0.75231317132573183 0.92163543441226559 2 12 2 12 0 0 465 22 2551 23741741 147840 1279.9934997558594 8.6258999999999997 1737.3042 47040 26922 1 0 0.012937344408152321 1.9164160603669584 4096 2048 384 12 96 2551 1920 0 384 1 1217444076 17283992 1 0 6 1 2 1 6 8601600 1720320 2949120 1475486 8985600 182 150 150 152 1917 0 0 0 0 22 0 0 0 0 0 +331 1783857225365911300 DEPTH 52 1 0.75046690743012889 0.36712095400340705 1 7 1 7 0 0 1702 41 2547 23727571 132480 1264.1226196289062 8.6047999999999991 1994.4983 107520 54439 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2547 1920 0 384 1 1221900924 21740840 1 0 4 3 2 2 5 5898240 3932160 2949120 2950968 7987200 156 150 232 544 1465 0 0 0 1 40 0 0 0 0 0 +332 1783857227374520200 DEPTH 50 1 0.75043728256428288 0.64054514480408853 2 9 2 9 1 0 939 52 2574 23742416 147840 1268.9622955322266 8.597900000000001 1955.0074 80640 47053 1 1 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2574 1920 0 384 1 1226385312 26225228 1 0 4 2 2 2 6 6389760 2949120 2949120 2459203 8985600 151 150 150 150 1973 7 0 5 4 35 0 0 0 0 1 +333 1783857229481847900 DEPTH 53 1 0.75020624399741775 0.37478705281090291 0 8 0 8 0 0 3962 99 2518 23742736 147840 1270.9004974365234 8.6050000000000004 2021.4421 80640 42595 1 1 0 0.26169361010444037 4096 2048 384 12 96 2518 1920 0 384 1 1230812580 30652496 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 168 150 168 156 1876 0 0 14 5 79 0 0 0 0 0 +334 1783857231402685700 DEPTH 16 1 0.75024218805363296 0.3594548551959113 2 6 2 6 0 0 2457 82 2528 23742746 147840 1282.6623687744141 8.6241000000000003 1857.6159 80640 42465 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2528 1920 0 384 1 1235250048 35089964 1 0 4 2 2 2 6 5898240 2949120 2949120 2951018 8985600 150 150 162 172 1894 0 0 0 5 77 0 0 0 0 0 +335 1783857233493945100 DEPTH 33 1 0.75027808667643381 0.36712095400340705 1 7 1 7 0 0 2793 81 2525 23742678 147840 1282.0032043457031 9.0530999999999988 2026.6555000000001 80640 42794 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2525 1920 0 384 1 1239684456 39524372 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 156 150 156 150 1913 0 0 5 11 65 0 0 0 0 0 +336 1783857233889486700 REFRESH 1 0 0.75031393758367693 0.36712095400340705 1 7 1 7 0 0 2435 20 416 3988936 56640 220.4241943359375 1.4615 340.0068 13440 8659 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 416 320 0 64 0 1240417000 40256916 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 27 25 49 38 277 0 0 1 0 19 0 0 0 0 0 +337 1783857234355252300 REFRESH 2 0 0.74778416291881133 0.45315161839863699 2 7 2 7 0 0 2540 67 417 3988929 56640 220.54815673828125 1.4398 318.01119999999997 13440 8982 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 417 320 0 64 0 1241150564 40990480 1 0 4 2 2 2 6 983040 491520 491520 491649 1497600 25 26 37 30 299 0 0 1 0 66 0 0 0 0 0 +338 1783857234715147300 REFRESH 27 0 0.70234880780020281 0.93696763202725719 0 14 0 14 0 0 776 14 411 3988957 56640 220.49177551269531 1.4498 303.95370000000003 6720 4920 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 411 320 0 64 0 1241878008 41717924 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 25 25 25 26 310 0 0 1 0 13 0 0 0 0 0 +339 1783857235077410500 REFRESH 23 0 0.74844902888036846 0.74190800681430991 1 11 1 11 0 0 3223 10 407 3988882 56640 223.07431030273438 1.4732000000000001 307.9932 13440 9907 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 407 320 0 64 0 1242601372 42441288 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 76 25 25 27 254 0 0 0 0 10 0 0 0 0 0 +340 1783857235377070400 REFRESH 10 0 0.64174678924088724 0.64821124361158422 1 10 1 10 0 0 983 16 421 3988936 56640 220.90956115722656 1.4356 298.39879999999999 13440 9931 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 421 320 0 64 0 1243339016 43178932 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 25 37 309 0 0 0 1 15 0 0 0 0 0 +341 1783857235673451700 REFRESH 58 0 0.60246749581294834 0.92163543441226559 2 12 2 12 0 0 468 11 416 3988877 56640 221.24441528320312 1.4348000000000001 295.07679999999999 6720 4944 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 416 320 0 64 0 1244071560 43911476 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 28 25 25 29 309 0 0 0 0 11 0 0 0 0 0 +342 1783857236033615600 REFRESH 29 0 0.74523422678189088 0.82027257240204421 3 10 3 10 0 0 1029 12 422 3988874 56640 221.38163757324219 1.4390000000000001 302.7808 13440 9940 0 0 0.19917884497934765 1.0177350439861224 4096 2048 64 1 16 422 320 0 64 0 1244810224 44650140 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 33 25 25 26 313 1 0 0 0 11 0 0 0 0 0 +343 1783857236442260700 REFRESH 20 0 0.75875008551412104 0.26575809199318562 2 5 2 5 0 0 1767 9 426 3988487 56160 221.90591430664062 1.5392999999999999 351.87079999999997 20160 14854 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 426 320 0 64 0 1245552968 45392884 1 0 4 3 2 2 5 983040 737280 491520 491686 1248000 26 25 26 181 168 0 0 3 1 5 0 0 0 0 0 +344 1783857236835846600 REFRESH 25 0 0.74802336911563017 0.4608177172061329 1 8 1 8 0 0 2083 15 402 3988948 56640 222.03494262695312 1.4325000000000001 329.30439999999999 13440 8821 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 402 320 0 64 0 1246271232 46111148 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 26 35 290 0 0 0 3 12 0 0 0 0 0 +345 1783857237189108300 REFRESH 34 0 0.74354229008482042 0.8356047700170357 1 12 1 12 0 0 580 24 415 3988872 56640 220.42214965820312 1.5619000000000001 295.5838 6720 4891 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 415 320 0 64 0 1247002756 46842672 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 27 25 25 35 303 0 0 0 1 23 0 0 0 0 0 +346 1783857237558608500 REFRESH 9 0 0.75967312592794201 0.27342419080068137 1 6 1 6 0 0 1963 57 409 3988937 56640 221.29664611816406 1.4523999999999999 309.2097 13440 8424 0 0 0.00045683257879690901 0.45652101664745287 4096 2048 64 1 16 409 320 0 64 0 1247728160 47568076 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 27 25 27 35 295 0 0 0 3 54 0 0 0 0 0 +347 1783857237862716700 REFRESH 32 0 0.67813299150436079 0.4608177172061329 1 8 1 8 0 0 2199 41 416 3988955 56640 219.97465515136719 1.4380999999999999 302.86279999999999 13440 9141 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 416 320 0 64 0 1248460704 48300620 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 27 25 37 33 294 0 0 4 2 35 0 0 0 0 0 +348 1783857238218892200 REFRESH 12 0 0.74384997511762918 0.63287904599659284 3 8 3 8 0 0 1128 9 428 3988963 56640 220.97817993164062 1.4416 300.06760000000003 13440 9937 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 428 320 0 64 0 1249205488 49045404 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 25 50 303 0 0 0 1 8 0 0 0 0 0 +349 1783857238564762400 REFRESH 19 0 0.74550898609407878 0.8279386712095399 2 11 2 11 1 0 770 22 412 3988902 56640 220.50405883789062 1.4356 290.42419999999998 13440 9919 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 412 320 0 64 0 1249933952 49773868 1 0 5 2 2 1 6 1228800 491520 491520 245862 1497600 25 25 25 28 309 0 0 0 0 22 0 0 0 0 1 +350 1783857238919596000 REFRESH 6 0 0.74953623517005186 0.91396933560476989 3 11 3 11 0 0 365 7 418 3988873 56640 219.81797790527344 1.4453 298.69499999999999 13440 9997 0 0 0.078490995891016657 0.16637572843653256 3748 1700 64 1 16 418 320 0 64 0 1250668536 50508452 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 26 25 25 26 316 0 0 0 2 5 0 0 0 0 0 +351 1783857239265361400 REFRESH 55 0 0.74567426766785228 0.8279386712095399 2 11 2 11 0 0 865 15 408 3988951 56640 221.981689453125 1.4382999999999999 295.33670000000001 6720 4928 0 0 0.061062934643973568 0.6495521077874169 4096 2048 64 1 16 408 320 0 64 0 1251392920 51232836 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 25 26 307 0 0 0 0 15 0 0 0 0 0 +352 1783857239630639100 REFRESH 45 0 0.74831474131755316 0.45315161839863699 2 7 2 7 0 0 1712 48 419 3988936 56640 221.623291015625 1.4363999999999999 311.41719999999998 13440 9918 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 419 320 0 64 0 1252128524 51968440 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 25 25 50 294 0 0 0 3 45 0 0 0 0 0 +353 1783857239955420000 REFRESH 53 0 0.69409221004205368 0.37478705281090291 0 8 0 8 0 0 3987 59 408 3988946 56640 220.99455261230469 1.4349000000000001 323.55669999999998 13440 8273 0 0 0 0.26169361010444037 4096 2048 64 1 16 408 320 0 64 0 1252852908 52692824 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 27 25 55 32 269 0 0 7 1 51 0 0 0 0 0 +354 1783857240309706100 REFRESH 41 0 0.74943243148884586 0.55451448040885853 1 9 1 9 0 0 1714 30 411 3988949 56640 219.75039672851562 1.4335 302.23809999999997 13440 9450 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 411 320 0 64 0 1253580352 53420268 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 35 31 294 0 0 3 1 26 0 0 0 0 0 +355 1783857240661694100 REFRESH 43 0 0.74574250046788826 0.8279386712095399 2 11 2 11 0 0 700 13 417 3988870 56640 220.621826171875 1.4352 295.60939999999999 6720 5021 0 0 0.0098917603558251466 1.2583434584708781 4096 2048 64 1 16 417 320 0 64 0 1254313916 54153832 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 26 25 25 35 306 0 0 1 1 11 0 0 0 0 0 +356 1783857241005657800 REFRESH 5 0 0.74578124272063562 0.8279386712095399 2 11 2 11 0 0 712 18 414 3988877 56640 219.31315612792969 1.4353 293.46910000000003 6720 4954 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 414 320 0 64 0 1255044420 54884336 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 25 25 25 42 297 0 0 1 2 15 0 0 0 0 0 +357 1783857241410543200 REFRESH 44 0 0.75105599791842859 0.36712095400340705 1 7 1 7 0 0 1697 10 430 3988954 56640 220.28697204589844 1.4339999999999999 341.64640000000003 13440 8565 0 0 0.058086188671880992 1.6339388773258507 4096 2048 64 1 16 430 320 0 64 0 1255791244 55631160 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 33 45 302 0 0 1 1 8 0 0 0 0 0 +358 1783857241712911100 REFRESH 16 0 0.73426160401596174 0.3594548551959113 2 6 2 6 0 0 2467 34 416 3988963 56640 222.80397033691406 1.4343999999999999 301.10109999999997 13440 8255 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 416 320 0 64 0 1256523788 56363704 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 27 37 302 0 0 0 1 33 0 0 0 0 0 +359 1783857242129511500 REFRESH 14 0 0.74426171231782812 0.65587734241908002 0 11 0 11 0 0 1307 27 414 3988935 56640 222.15373229980469 1.4350000000000001 309.2192 6720 4584 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 414 320 0 64 0 1257254292 57094208 1 0 5 1 2 2 6 1228800 245760 491520 491655 1497600 30 25 33 26 300 0 0 0 0 27 0 0 0 0 0 +360 1783857242435629400 REFRESH 50 0 0.74264350185472106 0.64054514480408853 2 9 2 9 0 0 940 13 422 3988961 56640 219.77804565429688 1.4347000000000001 304.89409999999998 13440 9561 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 422 320 0 64 0 1257992956 57832872 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 28 26 318 0 0 1 0 12 0 0 0 0 0 +361 1783857242783472900 REFRESH 36 0 0.74597420382168311 0.82027257240204421 3 10 3 10 0 0 1023 33 407 3988953 56640 220.31053161621094 1.4431 289.25639999999999 6720 4882 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 407 320 0 64 0 1258716320 58556236 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 31 25 41 30 280 2 0 0 0 31 0 0 0 0 0 +362 1783857243140895300 REFRESH 22 0 0.74328559908176239 0.91396933560476989 3 11 3 11 0 0 438 12 410 3988890 56640 221.78713989257812 1.431 301.33390000000003 6720 4971 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 410 320 0 64 0 1259442744 59282660 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 28 25 25 34 298 0 0 0 0 12 0 0 0 0 0 +363 1783857243451929900 REFRESH 33 0 0.74442990863969927 0.36712095400340705 1 7 1 7 0 0 2809 47 413 3988978 56640 222.15577697753906 1.4369000000000001 308.83499999999998 13440 8292 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 413 320 0 64 0 1260172228 60012144 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 27 25 30 27 304 0 0 0 2 45 0 0 0 0 0 +364 1783857243865889800 REFRESH 17 0 0.75946343978076403 0.28109028960817717 0 7 0 7 0 0 3000 29 419 3988454 56160 222.4322509765625 1.4515 356.21499999999997 20160 14880 0 0 0 0.16424126902321717 4096 2048 64 1 16 419 320 0 64 0 1260907832 60747748 1 0 4 3 2 2 5 983040 737280 491520 491654 1248000 25 25 25 158 186 0 0 0 10 19 0 0 0 0 0 +365 1783857244262883200 REFRESH 54 0 0.74878180661908078 0.4608177172061329 1 8 1 8 0 0 952 11 424 3988936 56640 220.86758422851562 1.5356000000000001 335.43740000000003 13440 9089 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 424 320 0 64 0 1261648536 61488452 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 40 60 273 0 0 0 1 10 0 0 0 0 0 +366 1783857244634667100 REFRESH 21 0 0.74987783605152947 0.56218057921635434 0 10 0 10 0 0 2102 40 416 3988953 56640 219.18310546875 1.4331 314.10210000000001 13440 9456 0 0 6.2079999714948167e-05 1.0104283259367368 4096 2048 64 1 16 416 320 0 64 0 1262381080 62220996 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 44 49 273 0 0 2 0 38 0 0 0 0 0 +367 1783857245053759500 REFRESH 11 0 0.74458327118526191 0.37478705281090291 0 8 0 8 1 0 1887 18 417 3988490 56160 222.3953857421875 1.4443999999999999 349.84649999999999 20160 14986 0 0 0 0.83881893344651315 4096 2048 64 1 16 417 320 0 64 0 1263114644 62954560 1 0 4 3 2 2 5 983040 737280 491520 491689 1248000 25 25 26 210 131 0 0 2 2 14 0 0 0 0 1 +368 1783857245405799000 REFRESH 38 0 0.74995140438325492 0.55451448040885853 1 9 1 9 0 0 1752 33 414 3988963 56640 219.79341125488281 1.4505999999999999 299.88900000000001 13440 9381 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 414 320 0 64 0 1263845148 63685064 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 29 30 304 0 0 0 0 33 0 0 0 0 0 +369 1783857245728851200 REFRESH 31 0 0.74463045247018167 0.3594548551959113 2 6 2 6 0 0 2131 35 424 3988494 56160 220.65254211425781 1.4342999999999999 320.90839999999997 13440 9361 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 424 320 0 64 0 1264585852 64425768 1 0 5 2 2 2 5 1228800 491520 491520 491692 1248000 25 25 26 197 151 0 0 3 15 17 0 0 0 0 0 +370 1783857246058810300 REFRESH 48 0 0.75966372714783625 0.26575809199318562 2 5 2 5 0 0 1993 19 423 3988458 56160 221.59770202636719 1.4456 328.63299999999998 20160 14914 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 423 320 0 64 0 1265325536 65165452 1 0 4 3 2 2 5 983040 737280 491520 491657 1248000 26 25 25 132 215 0 0 1 5 13 0 0 0 0 0 +371 1783857246406618100 REFRESH 47 0 0.74635642480410669 0.8279386712095399 2 11 2 11 0 0 526 24 410 3988882 56640 220.95053100585938 1.4359 293.31229999999999 13440 9982 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 410 320 0 64 0 1266051960 65891876 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 26 25 25 27 307 0 0 0 0 24 0 0 0 0 0 +372 1783857246762780400 REFRESH 7 0 0.74639437905976602 0.8356047700170357 1 12 1 12 0 0 756 15 406 3988883 56640 221.19526672363281 1.4397 302.01420000000002 13440 9943 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 406 320 0 64 0 1266774304 66614220 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 25 25 25 32 299 0 0 0 0 15 0 0 0 0 0 +373 1783857248288137700 REFRESH 15 0 0.74370501237011477 0.91396933560476989 3 11 3 11 0 0 294 8 410 3988878 56640 221.17683410644531 1.4367000000000001 1394.2122999999999 6720 4899 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 410 320 0 64 0 1267500808 231984 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 36 298 0 0 0 0 8 0 0 0 0 0 +374 1783857248665251400 REFRESH 13 0 0.75979640315999408 0.27342419080068137 1 6 1 6 0 0 3270 33 418 3988980 56640 220.24295043945312 1.4439 315.67590000000001 13440 8619 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 418 320 0 64 0 1268235392 966568 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 33 31 304 0 0 3 1 29 0 0 0 0 0 +375 1783857249031851200 REFRESH 8 0 0.75984278526679683 0.26575809199318562 2 5 2 5 1 0 2121 23 414 3988946 56640 221.99507141113281 1.4365000000000001 302.82650000000001 13440 8196 0 0 0.029788203772403089 0.96755961830083115 4096 2048 64 1 16 414 320 0 64 0 1268965896 1697072 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 40 32 291 0 0 1 1 21 0 0 0 0 1 +376 1783857249450274200 REFRESH 37 0 0.74666955837160442 0.8356047700170357 1 12 1 12 0 0 848 41 409 3988877 56640 220.4559326171875 1.4366000000000001 340.8177 13440 9926 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 409 320 0 64 0 1269691300 2422476 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 26 25 25 29 304 0 0 0 1 40 0 0 0 0 0 +377 1783857249855182100 REFRESH 0 0 0.74658342943554723 0.8279386712095399 2 11 2 11 0 0 764 17 417 3988872 56640 220.53683471679688 1.4371 294.83659999999998 13440 9974 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 417 320 0 64 0 1270424864 3156040 1 0 5 2 2 1 6 1228800 491520 491520 245832 1497600 25 25 25 39 303 0 0 0 3 14 0 0 0 0 0 +378 1783857250213822700 REFRESH 51 0 0.74389382342797883 0.91396933560476989 3 11 3 11 0 0 478 18 408 3988884 56640 220.91693115234375 1.4349000000000001 294.28570000000002 6720 4946 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 408 320 0 64 0 1271149248 3880424 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 25 25 25 31 302 0 0 0 0 18 0 0 0 0 0 +379 1783857250615355100 REFRESH 39 0 0.75052618091691758 0.55451448040885853 1 9 1 9 0 0 1401 15 420 3988870 56640 220.12007141113281 1.4359 337.9366 13440 9869 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 420 320 0 64 0 1271885872 4617048 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 25 25 25 37 308 0 0 0 3 12 0 0 0 0 0 +380 1783857250990213400 REFRESH 26 0 0.74669628717442782 0.8356047700170357 1 12 1 12 0 0 924 16 415 3988883 56640 220.24610900878906 1.4470000000000001 303.30619999999999 6720 4790 0 0 0.00095608200241023913 0.46793588624263099 4096 2048 64 1 16 415 320 0 64 0 1272617396 5348572 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 26 25 25 26 313 1 0 0 2 13 0 0 0 0 0 +381 1783857251372568700 REFRESH 46 0 0.75187975543370111 0.37478705281090291 0 8 0 8 0 0 2409 17 418 3988963 56640 221.47789001464844 1.4349000000000001 325.47730000000001 13440 8593 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 418 320 0 64 0 1273351980 6083156 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 30 56 281 0 0 1 0 16 0 0 0 0 0 +382 1783857251794155400 REFRESH 18 0 0.74407565904593453 0.9293015332197615 1 13 1 13 0 0 417 11 410 3988944 56640 221.97657775878906 1.4339999999999999 309.10739999999998 6720 4958 0 0 0.0012150407760339716 1.5464044125342757 4096 2048 64 1 16 410 320 0 64 0 1274078404 6809580 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 25 309 0 0 0 0 11 0 0 0 0 0 +383 1783857252184226400 REFRESH 40 0 0.74514010433585398 0.64821124361158422 1 10 1 10 0 0 1432 7 412 3988970 56640 220.3504638671875 1.429 334.8809 13440 10028 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 412 320 0 64 0 1274806868 7538044 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 33 304 0 0 0 0 7 0 0 0 0 0 +384 1783857252537778800 REFRESH 4 0 0.74384610276964269 0.8356047700170357 1 12 1 12 0 0 254 6 419 3988875 56640 219.0172119140625 1.4447000000000001 292.52359999999999 6720 4909 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 419 320 0 64 0 1275542472 8273648 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 27 25 25 32 310 0 0 0 0 6 0 0 0 0 0 +385 1783857252943911500 REFRESH 56 0 0.76021501654498402 0.26575809199318562 2 5 2 5 0 0 4096 59 423 3988469 56160 221.47715759277344 1.4343999999999999 342.31970000000001 20160 14935 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 423 320 0 64 0 1276282156 9013332 1 0 4 3 2 2 5 983040 737280 491520 491668 1248000 25 25 25 197 151 0 0 0 29 30 0 0 0 0 0 +386 1783857253346397100 REFRESH 52 0 0.74548986181040933 0.36712095400340705 1 7 1 7 0 0 1711 20 426 3988488 56160 223.53919982910156 1.458 346.98180000000002 20160 14880 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 426 320 0 64 0 1277024900 9756076 1 0 4 3 2 2 5 983040 737280 491520 491686 1248000 25 25 25 192 159 0 0 2 6 12 0 0 0 0 0 +387 1783857253713542500 REFRESH 57 0 0.7609043075166062 0.27342419080068137 1 6 1 6 0 0 3493 48 406 3988957 56640 222.27250671386719 1.4285000000000001 303.10090000000002 13440 8368 0 0 0.00072285488641214994 0.49252826452705561 4096 2048 64 1 16 406 320 0 64 0 1277747244 10478420 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 48 43 264 0 0 0 1 47 0 0 0 0 0 +388 1783857254075320500 REFRESH 24 0 0.75136973597259671 1 4 11 4 11 0 0 475 18 408 3988935 56640 221.76870727539062 1.5121 303.47739999999999 6720 4906 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 408 320 0 64 0 1278471628 11202804 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 27 25 25 25 306 0 0 0 0 18 0 0 0 0 0 +389 1783857254432379600 REFRESH 42 0 0.93155113869792205 0 0 4 0 4 1 0 4096 8 425 3987673 55200 222.94117736816406 1.4349000000000001 355.8759 20160 12226 0 0 0 0.0039352657512948782 4096 2048 64 1 16 425 320 0 64 0 1279213352 11944528 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 63 25 52 206 79 0 0 0 0 8 0 0 0 0 1 +390 1783857254817298800 REFRESH 30 0 0.74965852236733554 0.4608177172061329 1 8 1 8 0 0 2579 74 409 3988955 56640 220.9249267578125 1.4318 314.22030000000001 13440 9139 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 409 320 0 64 0 1279938756 12669932 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 51 33 274 0 0 7 1 66 0 0 0 0 0 +391 1783857255175191800 REFRESH 3 0 0.74556266314558106 0.64054514480408853 2 9 2 9 0 0 979 29 414 3988978 56640 219.40325927734375 1.5028999999999999 300.85419999999999 13440 9553 0 0 0.0077935650784293035 0.15116988268283343 4096 2048 64 1 16 414 320 0 64 0 1280669260 13400436 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 26 25 60 32 271 0 0 3 1 25 0 0 0 0 0 +392 1783857255575283300 REFRESH 28 0 0.74714349374188294 0.8279386712095399 2 11 2 11 0 0 544 14 406 3988958 56640 221.56697082519531 1.4334 294.49549999999999 6720 4852 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 406 320 0 64 0 1281391604 14122780 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 25 25 26 304 0 0 0 0 14 0 0 0 0 0 +393 1783857255928789400 REFRESH 35 0 0.74718046013761152 0.8279386712095399 2 11 2 11 0 0 941 15 406 3988886 56640 220.81741333007812 1.4360999999999999 294.67919999999998 13440 9920 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 406 320 0 64 0 1282113948 14845124 1 0 5 2 2 1 6 1228800 491520 491520 245844 1497600 26 25 25 30 300 0 0 0 0 15 0 0 0 0 0 +394 1783857256286833200 REFRESH 49 0 0.74723663611070601 0.82027257240204421 3 10 3 10 0 0 967 30 411 3988896 56640 220.56857299804688 1.4387000000000001 295.32299999999998 13440 9933 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 411 320 0 64 0 1282841392 15572568 1 0 5 2 2 1 6 1228800 491520 491520 245854 1497600 31 25 25 26 304 0 0 2 0 28 0 0 0 0 0 +395 1783857258374644700 DEPTH 9 1 0.75485977069256982 0.27342419080068137 1 6 1 6 0 0 1989 88 2543 23742766 147840 1279.5408325195312 8.7937999999999992 2028.7380000000001 80640 40924 1 0 0.00045683257879690901 0.45652101664745287 4096 2048 384 12 96 2543 1920 0 384 1 1287294160 20025336 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 151 150 156 169 1917 1 0 4 11 72 0 0 0 0 0 +396 1783857260439580500 DEPTH 48 1 0.75415312979266491 0.26575809199318562 2 5 2 5 0 0 2004 57 2580 23720564 125760 1275.2834320068359 8.6130000000000013 2011.3985 120960 69560 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2580 1920 0 384 1 1291784668 24515844 1 0 4 3 2 2 5 5898240 4423680 2949120 2950951 7488000 150 150 150 606 1524 0 0 7 0 50 0 0 0 0 0 +397 1783857262518991600 DEPTH 17 1 0.75418438971643398 0.28109028960817717 0 7 0 7 1 0 3038 72 2565 23720572 125760 1270.7152862548828 8.6950000000000003 2023.2213999999999 120960 69606 1 0 0 0.14445691436992109 4096 2048 384 12 96 2565 1920 0 384 1 1296259876 28991052 1 0 4 3 2 2 5 5898240 4423680 2949120 2950959 7488000 150 150 150 259 1856 0 0 3 3 66 0 0 0 0 1 +398 1783857264635111600 DEPTH 20 1 0.75321561107876722 0.26575809199318562 2 5 2 5 0 0 1778 39 2616 23720558 125760 1277.5423736572266 8.625 2009.3047999999999 120960 69663 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2616 1920 0 384 1 1300787104 33518280 1 0 4 3 2 2 5 5898240 4423680 2949120 2950944 7488000 156 150 152 906 1252 0 0 6 1 32 0 0 0 0 0 +399 1783857266791583900 DEPTH 1 1 0.74561067440453077 0.36712095400340705 1 7 1 7 0 0 2444 47 2580 23727488 132480 1275.1766357421875 8.7345000000000006 2021.9939999999999 107520 54843 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2580 1920 0 384 1 1305277612 38008788 1 0 4 3 2 2 5 5898240 3932160 2949120 2950961 7987200 155 150 229 513 1533 0 0 3 2 42 0 0 0 0 0 +400 1783857268958151200 DEPTH 44 1 0.74564272184685598 0.36712095400340705 1 7 1 7 0 0 1712 59 2603 23742886 147840 1278.7998504638672 8.6061999999999994 2077.9029999999998 80640 42144 1 0 0.058086188671880992 1.6339388773258507 4096 2048 384 12 96 2603 1920 0 384 1 1309791580 42522756 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 150 150 159 211 1933 0 0 4 2 53 0 0 0 0 0 +401 1783857270794196100 DEPTH 38 1 0.74289281543475227 0.55451448040885853 1 9 1 9 0 0 1759 59 2521 23742600 147840 1264.8239135742188 8.6473999999999993 1834.6617000000001 80640 46384 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2521 1920 0 384 1 1314221908 46953084 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 156 150 162 156 1897 0 0 4 3 52 0 0 0 0 0 +402 1783857272912525500 DEPTH 41 1 0.74292684876237569 0.55451448040885853 1 9 1 9 0 0 1730 70 2542 23742276 147840 1266.4544525146484 8.6675000000000004 1993.8303000000001 94080 55876 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2542 1920 0 384 1 1318673656 51404832 1 0 4 3 2 1 6 5898240 3440640 2949120 2459055 8985600 150 150 177 167 1898 1 0 12 4 53 0 0 0 0 0 +403 1783857275088345200 DEPTH 42 1 0.81635816410074469 0 0 4 0 4 1 0 4096 16 2587 23677974 81600 1286.2616271972656 8.6285999999999987 2114.2298000000001 120960 59449 1 0 0 0.003925914822577637 4096 2048 384 12 96 2587 1920 0 384 1 1323171304 55902480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426510 4492800 304 150 261 1295 577 0 0 0 0 16 0 0 0 0 1 +404 1783857277063510000 DEPTH 8 1 0.7544285082426182 0.26575809199318562 2 5 2 5 1 0 2124 37 2530 23742743 147840 1281.5816650390625 8.605599999999999 1903.2917 80640 40396 1 0 0.029802894263159324 0.94143050940108985 4096 2048 384 12 96 2530 1920 0 384 1 1327610812 60341988 1 0 4 2 2 2 6 5898240 2949120 2949120 2950989 8985600 155 150 184 184 1857 0 0 2 2 33 0 0 0 0 2 +405 1783857279285186000 DEPTH 13 1 0.75443308859940028 0.27342419080068137 1 6 1 6 0 0 3285 69 2555 23720646 125760 1268.4752044677734 8.6539999999999999 2061.9499999999998 120960 57781 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2555 1920 0 384 1 1332075820 64806996 1 0 4 3 2 2 5 5898240 4423680 2949120 2950963 7488000 150 150 155 256 1844 0 0 5 3 61 0 0 0 0 0 +406 1783857282615880400 DEPTH 21 1 0.74306256565894846 0.56218057921635434 0 10 0 10 1 0 2110 52 2551 23741732 147840 1267.5574951171875 8.6448 3179.0470999999998 80640 42175 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2551 1920 0 384 1 1336536828 2159116 1 0 5 2 2 1 6 7372800 2949120 2949120 1475478 8985600 150 150 156 156 1939 0 0 3 2 47 0 0 0 0 1 +407 1783857284685725000 DEPTH 2 1 0.74276100117488941 0.45315161839863699 2 7 2 7 0 0 2568 112 2548 23742688 147840 1273.0086059570312 8.7856000000000005 1993.7687000000001 80640 44682 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2548 1920 0 384 1 1340994696 6616984 1 0 4 2 2 2 6 5898240 2949120 2949120 2950994 8985600 150 150 179 156 1913 0 0 8 5 99 0 0 0 0 0 +408 1783857286792004200 DEPTH 45 1 0.74277726921036025 0.45315161839863699 2 7 2 7 0 0 1719 50 2565 23742689 147840 1275.6581878662109 8.6179000000000006 2031.5953 80640 45974 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2565 1920 0 384 1 1345469904 11092192 1 0 4 2 2 2 6 5898240 2949120 2949120 2950994 8985600 150 150 150 207 1908 0 0 0 4 46 0 0 0 0 0 +409 1783857288854092800 DEPTH 54 1 0.74280994093899322 0.4608177172061329 1 8 1 8 0 0 956 41 2549 23742646 147840 1266.2006072998047 8.9925999999999995 2006.7994000000001 80640 44005 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2549 1920 0 384 1 1349928792 15551080 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 156 150 167 227 1849 0 0 3 0 38 0 0 0 0 0 +410 1783857290887502100 DEPTH 32 1 0.74284257291815126 0.4608177172061329 1 8 1 8 0 0 2218 92 2562 23742691 147840 1273.4370727539062 8.6206000000000014 1971.0272 80640 44544 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2562 1920 0 384 1 1354400940 20023228 1 0 4 2 2 2 6 5898240 2949120 2949120 2950996 8985600 150 150 150 150 1962 0 0 9 9 74 0 0 0 0 0 +411 1783857293014807200 DEPTH 56 1 0.75466949784649617 0.26575809199318562 2 5 2 5 0 0 4096 55 2554 23720573 125760 1274.7712707519531 8.7676999999999996 2047.9067 120960 69093 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2554 1920 0 384 1 1358864928 24487216 1 0 4 3 2 2 5 5898240 4423680 2949120 2950958 7488000 150 150 150 751 1353 0 0 4 5 46 0 0 0 0 0 +412 1783857295152201700 DEPTH 42 1 0.76332840056368012 0 0 4 0 4 1 0 4096 26 2592 23677887 81600 1277.8954467773438 8.6317999999999984 2068.4841000000001 120960 48579 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2592 1920 0 384 1 1363367676 28989964 1 0 4 3 3 3 3 5898240 4423680 4423680 4426577 4492800 293 150 244 1383 522 0 0 0 0 26 0 0 0 0 1 +413 1783857297230277100 DEPTH 46 1 0.74605578742637069 0.37478705281090291 0 8 0 8 0 0 2420 44 2565 23742841 147840 1278.0706024169922 8.6063000000000009 2023.1982 80640 42841 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2565 1920 0 384 1 1367842884 33465172 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 156 150 150 156 1953 0 0 6 3 35 0 0 0 0 0 +414 1783857299315479300 DEPTH 57 1 0.75532316170350355 0.27342419080068137 1 6 1 6 1 0 3529 110 2532 23738853 144000 1278.5661773681641 8.6105 2013.7474999999999 80640 40604 1 0 0.00072562879293885376 0.49217738338809647 4096 2048 384 12 96 2532 1920 0 384 1 1372284432 37906720 1 0 4 2 3 2 5 5898240 2949120 3194880 2950943 8736000 156 150 177 200 1849 0 0 6 5 99 0 0 0 0 1 +415 1783857301369049800 DEPTH 39 1 0.7435216525137428 0.55451448040885853 1 9 1 9 0 0 1412 46 2595 23742670 147840 1269.7698669433594 8.6004000000000005 1990.3912 80640 45012 1 0 0.00024085368487065408 1.8581174850863764 4096 2048 384 12 96 2595 1920 0 384 1 1376790240 42412528 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 150 150 150 161 1984 0 0 0 2 44 0 0 0 0 0 +416 1783857303412078900 DEPTH 25 1 0.74303753528124927 0.4608177172061329 1 8 1 8 0 0 2088 35 2534 23742682 147840 1276.8143310546875 8.616299999999999 1984.9677999999999 80640 43757 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2534 1920 0 384 1 1381233828 46856116 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 156 150 156 175 1897 0 0 1 0 34 0 0 0 0 0 +417 1783857305252075300 DEPTH 23 1 0.74217356392145284 0.74190800681430991 1 11 1 11 0 0 3236 50 2515 23742572 147840 1289.4654998779297 8.6166999999999998 1782.5346 80640 45136 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2515 1920 0 384 1 1385658036 51280324 1 0 4 2 2 2 6 6144000 2949120 2949120 2705117 8985600 174 150 150 161 1880 0 0 0 0 50 0 0 0 0 0 +418 1783857307294716800 DEPTH 52 1 0.74010156932181714 0.36712095400340705 1 7 1 7 0 0 1726 46 2562 23720510 125760 1269.4949035644531 8.6388999999999996 1988.0727999999999 120960 69143 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2562 1920 0 384 1 1390130184 55752472 1 0 4 3 2 2 5 5898240 4423680 2949120 2950896 7488000 150 150 150 872 1240 0 0 2 4 40 0 0 0 0 0 +419 1783857309348802100 DEPTH 30 1 0.74313448736545917 0.4608177172061329 1 8 1 8 0 0 2594 75 2530 23742626 147840 1273.1227111816406 8.6052999999999997 1994.5009 80640 44578 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2530 1920 0 384 1 1394569692 60191980 1 0 4 2 2 2 6 5898240 2949120 2949120 2950929 8985600 156 150 241 176 1807 0 0 6 2 67 0 0 0 0 0 +420 1783857311147171700 DEPTH 24 1 0.7422615784138662 1 4 11 4 11 0 0 478 79 2530 23742681 147840 1282.9152679443359 8.6110000000000007 1740.8098 40320 22829 1 0 0.049718034260125263 1.3802885951242663 4096 2048 384 12 96 2530 1920 0 384 1 1399009200 64631488 1 0 5 1 2 2 6 7372800 1474560 2949120 2950984 8985600 157 150 150 150 1923 0 0 0 0 79 0 0 0 0 0 +421 1783857314338714000 DEPTH 42 1 0.76035660452922416 0 0 4 0 4 0 0 4096 24 2603 23677687 81600 1273.3068237304688 8.7592999999999996 3190.1109999999999 120960 38608 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2603 1920 0 384 1 1403523248 2037116 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 281 150 235 1420 517 0 0 0 0 24 0 0 0 0 0 +422 1783857316473874300 DEPTH 11 1 0.7399978310288583 0.37478705281090291 0 8 0 8 0 0 1901 52 2553 23720597 125760 1268.6194305419922 8.6008999999999993 2062.6534000000001 120960 69807 1 0 0 0.83881893344651315 4096 2048 384 12 96 2553 1920 0 384 1 1407986216 6500084 1 0 4 3 2 2 5 5898240 4423680 2949120 2950984 7488000 150 150 150 634 1469 1 0 7 0 44 0 0 0 0 0 +423 1783857318580717200 DEPTH 53 1 0.73998387871615878 0.37478705281090291 0 8 0 8 0 0 4012 84 2527 23735053 140160 1271.2367553710938 8.6123000000000012 2037.4955 80640 40433 1 0 0 0.26169361010444037 4096 2048 384 12 96 2527 1920 0 384 1 1412422664 10936532 1 0 4 2 3 2 5 5898240 2949120 3440640 2950976 8486400 164 150 167 277 1769 0 0 4 3 77 0 0 0 0 0 +424 1783857320631048200 DEPTH 31 1 0.74001412696852142 0.3594548551959113 2 6 2 6 0 0 2143 39 2576 23720585 125760 1272.8751525878906 8.6585000000000001 1992.3916999999999 80640 46116 1 1 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2576 1920 0 384 1 1416909092 15422960 1 0 5 2 2 2 5 7372800 2949120 2949120 2950970 7488000 150 150 156 663 1457 0 0 4 0 34 0 0 0 0 0 +425 1783857322542789200 DEPTH 16 1 0.74004434098721372 0.3594548551959113 2 6 2 6 0 0 2486 71 2538 23735019 140160 1284.2741241455078 8.6263000000000005 1849.1186 80640 40532 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2538 1920 0 384 1 1421356760 19870628 1 0 4 2 3 2 5 5898240 2949120 3440640 2950962 8486400 150 150 162 297 1779 0 0 0 5 66 0 0 0 0 0 +426 1783857324630600700 DEPTH 33 1 0.74007451890767384 0.36712095400340705 1 7 1 7 0 0 2815 56 2540 23735046 140160 1282.9704742431641 8.767100000000001 2023.8131000000001 80640 40803 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2540 1920 0 384 1 1425806468 24320336 1 0 4 2 3 2 5 5898240 2949120 3440640 2950968 8486400 156 150 156 227 1851 0 0 3 5 48 0 0 0 0 0 +427 1783857324985200900 REFRESH 58 0 0.73645658404689596 0.92163543441226559 2 12 2 12 0 0 473 17 411 3988863 56640 220.86860656738281 1.4377 293.7824 6720 4832 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 411 320 0 64 0 1426533912 25047780 1 0 6 1 2 1 6 1474560 245760 491520 245823 1497600 28 25 25 28 305 0 0 0 1 16 0 0 0 0 0 +428 1783857325433112800 REFRESH 7 0 0.73921799374058406 0.8356047700170357 1 12 1 12 0 0 757 12 408 3988869 56640 221.27615356445312 1.4329000000000001 298.60309999999998 13440 9797 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 408 320 0 64 0 1427258296 25772164 1 0 5 2 2 1 6 1228800 491520 491520 245829 1497600 25 25 25 31 302 0 0 0 0 12 0 0 0 0 0 +429 1783857325812691300 REFRESH 21 0 0.71631229803816321 0.56218057921635434 0 10 0 10 0 0 2127 48 412 3988863 56640 220.71714782714844 1.4337 318.20049999999998 13440 9979 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 412 320 0 64 0 1427986760 26500628 1 0 5 2 2 1 6 1228800 491520 491520 245822 1497600 25 25 25 50 287 0 0 0 5 43 0 0 0 0 0 +430 1783857326217596000 REFRESH 9 0 0.74989313051041795 0.27342419080068137 1 6 1 6 1 0 2030 73 416 3988445 56160 222.33395385742188 1.4335 330.82990000000001 13440 8363 0 0 0.00045670297315357592 0.45362074434825139 4096 2048 64 1 16 416 320 0 64 0 1428719304 27233172 1 0 4 2 3 2 5 983040 491520 737280 491643 1248000 26 25 25 91 249 0 0 0 20 53 0 0 0 0 1 +431 1783857326566516400 REFRESH 15 0 0.73459288839901427 0.91396933560476989 3 11 3 11 0 0 297 13 412 3988894 56640 221.01504516601562 1.4347000000000001 291.3211 6720 4924 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 0 64 0 1429447768 27961636 1 0 6 1 2 1 6 1474560 245760 491520 245854 1497600 26 25 25 41 295 0 0 0 0 13 0 0 0 0 0 +432 1783857326906178000 REFRESH 57 0 0.68126727617418492 0.27342419080068137 1 6 1 6 0 0 3542 36 407 3988474 56160 222.41084289550781 2.1240999999999999 338.4015 13440 8146 0 0 0.00072562879293885376 0.49217738338809647 4096 2048 64 1 16 407 320 0 64 0 1430171132 28685000 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 26 25 26 132 198 0 0 0 13 23 0 0 0 0 0 +433 1783857327222692800 REFRESH 33 0 0.55431647681292351 0.36712095400340705 1 7 1 7 0 0 2835 49 416 3988488 56160 222.74765014648438 1.4328000000000001 315.2636 13440 8139 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 416 320 0 64 0 1430903676 29417544 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 26 25 25 70 270 1 0 0 8 40 0 0 0 0 0 +434 1783857327600647000 REFRESH 13 0 0.74934557166678339 0.27342419080068137 1 6 1 6 0 0 3312 42 418 3988460 56160 221.33247375488281 1.4383999999999999 319.34800000000001 20160 14765 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 418 320 0 64 0 1431638260 30152128 1 0 4 3 2 2 5 983040 737280 491520 491660 1248000 25 25 25 141 202 0 0 0 13 29 0 0 0 0 0 +435 1783857327951355500 REFRESH 19 0 0.73945845712192082 0.8279386712095399 2 11 2 11 0 0 770 16 411 3988883 56640 221.35296630859375 1.4378 296.8295 13440 9816 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 411 320 0 64 0 1432365704 30879572 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 25 25 25 28 308 0 0 0 0 16 0 0 0 0 0 +436 1783857328355218400 REFRESH 17 0 0.74944952830522116 0.28109028960817717 0 7 0 7 0 0 3045 25 415 3988471 56160 221.24441528320312 1.4370000000000001 343.85719999999998 20160 13974 0 0 0 0.14445691436992109 4096 2048 64 1 16 415 320 0 64 0 1433097228 31611096 1 0 4 3 2 2 5 983040 737280 491520 491670 1248000 25 25 25 181 159 1 0 1 5 18 0 0 0 0 0 +437 1783857328749228300 REFRESH 54 0 0.73680155024275962 0.4608177172061329 1 8 1 8 0 0 958 16 424 3988950 56640 219.91424560546875 1.4297 333.50740000000002 13440 8565 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 424 320 0 64 0 1433837932 32351800 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 40 69 264 0 0 0 6 10 0 0 0 0 0 +438 1783857329103784000 REFRESH 27 0 0.73682987041016257 0.93696763202725719 0 14 0 14 0 0 778 24 409 3988950 56640 220.57574462890625 1.4451000000000001 299.39609999999999 6720 4772 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 409 320 0 64 0 1434563336 33077204 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 25 26 308 0 0 0 0 24 0 0 0 0 0 +439 1783857329580505600 REFRESH 45 0 0.73686274162209542 0.45315161839863699 2 7 2 7 0 0 1729 29 413 3988941 56640 221.25056457519531 1.4320999999999999 339.02809999999999 13440 9951 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 413 320 0 64 0 1435292820 33806688 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 44 294 0 0 0 2 27 0 0 0 0 0 +440 1783857329938206300 REFRESH 49 0 0.73964182387717026 0.82027257240204421 3 10 3 10 0 0 973 26 416 3988863 56640 219.87532043457031 1.4370000000000001 295.16500000000002 13440 9848 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 416 320 0 64 0 1436025364 34539232 1 0 5 2 2 1 6 1228800 491520 491520 245822 1497600 30 25 25 26 310 0 0 0 1 25 0 0 0 0 0 +441 1783857330296302400 REFRESH 50 0 0.73737558201029563 0.64054514480408853 2 9 2 9 0 0 943 9 423 3988961 56640 220.82969665527344 1.4360999999999999 303.71199999999999 13440 9327 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 423 320 0 64 0 1436765048 35278916 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 36 26 311 0 0 0 1 8 0 0 0 0 0 +442 1783857330695598400 REFRESH 20 0 0.74867709822727413 0.26575809199318562 2 5 2 5 0 0 1781 8 432 3988483 56160 223.42860412597656 1.4602999999999999 344.15649999999999 20160 13991 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 1437513912 36027780 1 0 4 3 2 2 5 983040 737280 491520 491682 1248000 26 25 26 223 132 0 0 1 0 7 0 0 0 0 0 +443 1783857331050028400 REFRESH 26 0 0.73972522243654726 0.8356047700170357 1 12 1 12 0 0 927 23 419 3988868 56640 220.17945861816406 1.4329000000000001 294.60129999999998 13440 9926 0 0 0.00095608200241023913 0.46793588624263099 4096 2048 64 1 16 419 320 0 64 0 1438249516 36763384 1 0 5 2 2 1 6 1228800 491520 491520 245828 1497600 26 25 25 26 317 0 0 0 0 23 0 0 0 0 0 +444 1783857331447063900 REFRESH 48 0 0.7496346404270875 0.26575809199318562 2 5 2 5 0 0 2013 22 428 3988458 56160 221.58642578125 1.4354 342.68560000000002 20160 13970 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 428 320 0 64 0 1438994300 37508168 1 0 4 3 2 2 5 983040 737280 491520 491658 1248000 26 25 25 162 190 0 0 1 2 19 0 0 0 0 0 +445 1783857331805454900 REFRESH 42 0 0.90778098977575783 0 0 4 0 4 0 0 4096 12 427 3987646 55200 222.8214111328125 1.4419 356.98200000000003 20160 12618 0 0 0 0.0086253377849846019 4096 2048 64 1 16 427 320 0 64 0 1439738064 38251932 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 63 25 52 210 77 0 0 0 0 12 0 0 0 0 0 +446 1783857332212574800 REFRESH 1 0 0.74067062338820633 0.36712095400340705 1 7 1 7 0 0 2449 20 422 3988468 56160 223.4439697265625 1.4279999999999999 343.38310000000001 20160 14787 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 422 320 0 64 0 1440476728 38990596 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 182 165 0 0 0 6 14 0 0 0 0 0 +447 1783857332565422000 REFRESH 29 0 0.73985897840639958 0.82027257240204421 3 10 3 10 0 0 1031 11 422 3988877 56640 220.98226928710938 1.4376 297.33010000000002 13440 9884 0 0 0.19917884497934765 1.0177350439861224 4096 2048 64 1 16 422 320 0 64 0 1441215392 39729260 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 33 25 25 26 313 0 0 0 1 10 0 0 0 0 0 +448 1783857332913962300 REFRESH 5 0 0.73989231988108783 0.8279386712095399 2 11 2 11 0 0 717 20 418 3988879 56640 219.87635803222656 1.4340999999999999 294.47289999999998 13440 9952 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 418 320 0 64 0 1441949976 40463844 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 25 25 25 40 303 0 0 0 1 19 0 0 0 0 0 +449 1783857333286551300 REFRESH 0 0 0.7399256225250721 0.8279386712095399 2 11 2 11 0 0 769 20 417 3988872 56640 221.02835083007812 1.4343999999999999 308.13560000000001 13440 9829 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 417 320 0 64 0 1442683540 41197408 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 25 25 25 30 312 0 1 0 1 18 0 0 0 0 0 +450 1783857333638034500 REFRESH 36 0 0.7399588864260388 0.82027257240204421 3 10 3 10 0 0 1027 19 405 3988860 56640 220.06486511230469 1.4359999999999999 294.33300000000003 13440 9864 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 405 320 0 64 0 1443404864 41918732 1 0 5 2 2 1 6 1228800 491520 491520 245820 1497600 32 25 25 28 295 0 0 0 1 18 0 0 0 0 0 +451 1783857333994707100 REFRESH 6 0 0.74028224002377363 0.91396933560476989 3 11 3 11 0 0 365 3 419 3988876 56640 220.15898132324219 1.4622999999999999 303.70370000000003 6720 4882 0 0 0.078490995891016657 0.16637572843653256 3776 1728 64 1 16 419 320 0 64 0 1444140468 42654336 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 26 25 25 26 317 0 0 0 1 2 0 0 0 0 0 +452 1783857334363327000 REFRESH 38 0 0.73703556386255253 0.55451448040885853 1 9 1 9 0 0 1770 35 412 3988974 56640 220.19686889648438 1.4360999999999999 304.17849999999999 13440 8666 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 412 320 0 64 0 1444868932 43382800 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 29 31 301 0 0 0 2 33 0 0 0 0 0 +453 1783857334722861700 REFRESH 2 0 0.73730188856797274 0.45315161839863699 2 7 2 7 0 0 2609 71 413 3988972 56640 220.7232666015625 1.4496 301.51170000000002 13440 8579 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 413 320 0 64 0 1445598416 44112284 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 25 26 38 30 294 0 0 2 2 67 0 0 0 0 0 +454 1783857335095266600 REFRESH 41 0 0.73709754254166815 0.55451448040885853 1 9 1 9 0 0 1742 35 417 3988881 56640 221.4525146484375 1.4570000000000001 316.59989999999999 20160 14897 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 417 320 0 64 0 1446331980 44845848 1 0 4 3 2 1 6 983040 737280 491520 245838 1497600 25 25 25 32 310 0 0 0 1 34 0 0 0 0 0 +455 1783857335433681500 REFRESH 53 0 0.73494873556326668 0.37478705281090291 0 8 0 8 0 0 4019 28 415 3988483 56160 220.49484252929688 1.4390000000000001 337.00450000000001 13440 8112 0 0 0 0.26169361010444037 4096 2048 64 1 16 415 320 0 64 0 1447063504 45577372 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 27 25 25 189 149 0 0 0 5 23 0 0 0 0 0 +456 1783857335842226900 REFRESH 25 0 0.73737712512993581 0.4608177172061329 1 8 1 8 0 0 2090 17 404 3988973 56640 221.57720947265625 1.4329000000000001 335.28309999999999 13440 8156 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 404 320 0 64 0 1447783808 46297676 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 26 25 26 36 291 0 0 0 1 16 0 0 0 0 0 +457 1783857336191246700 REFRESH 23 0 0.73521322036068848 0.74190800681430991 1 11 1 11 0 0 3240 14 411 3988931 56640 223.09580993652344 1.4349000000000001 299.22190000000001 13440 9914 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 411 320 0 64 0 1448511252 47025120 1 0 4 2 2 2 6 983040 491520 491520 491650 1497600 25 25 25 32 304 0 0 0 0 14 0 0 0 0 0 +458 1783857336534875500 REFRESH 52 0 0.73527624277816472 0.36712095400340705 1 7 1 7 0 0 1728 11 425 3988461 56160 221.68576049804688 1.4399 342.3186 20160 14050 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 425 320 0 64 0 1449252976 47766844 1 0 4 3 2 2 5 983040 737280 491520 491660 1248000 25 25 26 248 101 0 0 0 2 9 0 0 0 0 0 +459 1783857336880814400 REFRESH 34 0 0.73862753242294177 0.8356047700170357 1 12 1 12 0 0 595 35 417 3988871 56640 219.85484313964844 1.4349000000000001 294.21300000000002 13440 9856 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 417 320 0 64 0 1449986540 48500408 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 26 25 25 37 304 0 0 0 1 34 0 0 0 0 0 +460 1783857337238690500 REFRESH 8 0 0.75014137206319254 0.26575809199318562 2 5 2 5 0 0 2129 23 415 3988993 56640 223.03436279296875 1.4392 307.14850000000001 13440 7945 0 0 0.029802894263159324 0.94143050940108985 4096 2048 64 1 16 415 320 0 64 0 1450718064 49231932 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 44 32 288 0 0 2 0 21 0 0 0 0 0 +461 1783857337612706200 REFRESH 30 0 0.7375264935502116 0.4608177172061329 1 8 1 8 0 0 2627 73 410 3988988 56640 220.57369995117188 1.4401999999999999 311.88290000000001 13440 8755 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 410 320 0 64 0 1451444488 49958356 1 0 4 2 2 2 6 983040 491520 491520 491708 1497600 26 25 54 37 268 0 0 5 1 67 0 0 0 0 0 +462 1783857337965135200 REFRESH 47 0 0.74035506280339591 0.8279386712095399 2 11 2 11 0 0 530 29 412 3988870 56640 220.87577819824219 1.4330000000000001 294.49180000000001 13440 9943 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 412 320 0 64 0 1452172952 50686820 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 26 25 25 27 309 0 0 0 0 29 0 0 0 0 0 +463 1783857338325259300 REFRESH 55 0 0.74046634736946249 0.8279386712095399 2 11 2 11 1 0 866 14 408 3988946 56640 222.39129638671875 1.4448000000000001 299.98660000000001 6720 4807 0 0 0.056941054157829088 0.65442925821804965 4096 2048 64 1 16 408 320 0 64 0 1452897336 51411204 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 26 307 0 0 0 0 14 0 0 0 0 1 +464 1783857338680104200 REFRESH 12 0 0.73860199655581149 0.63287904599659284 3 8 3 8 0 0 1128 15 425 3988976 56640 220.89932250976562 1.4317 297.21710000000002 13440 9745 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 425 320 0 64 0 1453639060 52152928 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 25 25 25 59 291 0 0 0 0 15 0 0 0 0 0 +465 1783857339014775700 REFRESH 31 0 0.73523082533686268 0.3594548551959113 2 6 2 6 0 0 2148 28 423 3988451 56160 220.06892395019531 1.4347000000000001 333.24360000000001 13440 8439 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 423 320 0 64 0 1454378744 52892612 1 0 5 2 2 2 5 1228800 491520 491520 491651 1248000 25 25 26 226 121 0 0 0 14 14 0 0 0 0 0 +466 1783857339431088500 REFRESH 28 0 0.74048591022074284 0.8279386712095399 2 11 2 11 0 0 547 17 404 3988953 56640 221.59461975097656 1.4348000000000001 300.62150000000003 6720 4870 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 404 320 0 64 0 1455099048 53612916 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 26 302 0 0 0 0 17 0 0 0 0 0 +467 1783857339789905300 REFRESH 43 0 0.74051852862705958 0.8279386712095399 2 11 2 11 0 0 705 15 416 3988875 56640 220.91673278808594 1.4552 304.35840000000002 13440 9961 0 0 0.0098917603558251466 1.2583434584708781 4096 2048 64 1 16 416 320 0 64 0 1455831592 54345460 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 25 25 25 36 305 1 0 0 1 13 0 0 0 0 0 +468 1783857340087295600 REFRESH 24 0 0.7347411098197747 1 4 11 4 11 0 0 478 9 405 3988941 56640 221.96121215820312 1.4296 296.09160000000003 6720 4809 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 405 320 0 64 0 1456552916 55066784 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 27 25 25 25 303 0 0 0 0 9 0 0 0 0 0 +469 1783857340439932200 REFRESH 35 0 0.74058365419611671 0.8279386712095399 2 11 2 11 0 0 945 16 405 3988882 56640 220.86962890625 1.4335 296.85509999999999 13440 9769 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 405 320 0 64 0 1457274240 55788108 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 26 25 25 29 300 1 0 0 0 15 0 0 0 0 0 +470 1783857340836316800 REFRESH 40 0 0.73679096358380369 0.64821124361158422 1 10 1 10 0 0 1435 9 416 3988955 56640 219.62136840820312 1.4361999999999999 339.35140000000001 13440 9708 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 416 320 0 64 0 1458006784 56520652 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 36 305 0 0 0 0 9 0 0 0 0 0 +471 1783857341253866900 REFRESH 3 0 0.7399443976446437 0.64054514480408853 2 9 2 9 0 0 984 20 412 3988973 56640 218.70285034179688 1.4377 296.34930000000003 13440 9489 0 0 0.0077935650784293035 0.15116988268283343 4096 2048 64 1 16 412 320 0 64 0 1458735248 57249116 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 52 33 276 0 0 0 0 20 0 0 0 0 0 +472 1783857341656204600 REFRESH 44 0 0.74142507355940324 0.36712095400340705 1 7 1 7 0 0 1715 9 434 3988947 56640 221.90899658203125 1.4328000000000001 346.10419999999999 13440 8547 0 0 0.058086188671880992 1.6339388773258507 4096 2048 64 1 16 434 320 0 64 0 1459486152 58000020 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 33 53 298 0 0 0 1 8 0 0 0 0 0 +473 1783857341999927500 REFRESH 11 0 0.73549400148391886 0.37478705281090291 0 8 0 8 0 0 1904 14 418 3988477 56160 221.63151550292969 1.5218 342.23989999999998 20160 14134 0 0 0 0.83881893344651315 4096 2048 64 1 16 418 320 0 64 0 1460220736 58734604 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 26 238 104 1 0 4 0 9 0 0 0 0 0 +474 1783857342366831000 REFRESH 14 0 0.7399162262604293 0.65587734241908002 0 11 0 11 0 0 1312 29 421 3988944 56640 223.49107360839844 1.5254000000000001 309.76049999999998 6720 4547 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 421 320 0 64 0 1460958380 59472248 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 30 25 34 27 305 1 0 0 0 28 0 0 0 0 0 +475 1783857342709015100 REFRESH 51 0 0.73805087034233186 0.91396933560476989 3 11 3 11 0 0 481 15 405 3988871 56640 220.71296691894531 1.4353 290.3877 6720 4868 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 405 320 0 64 0 1461679704 60193572 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 25 25 25 32 298 0 0 0 0 15 0 0 0 0 0 +476 1783857343053549900 REFRESH 37 0 0.74092188845080975 0.8356047700170357 1 12 1 12 0 0 858 37 405 3988882 56640 221.07852172851562 1.4351 291.4581 13440 9917 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 405 320 0 64 0 1462401028 60914896 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 26 25 25 29 300 0 0 0 0 37 0 0 0 0 0 +477 1783857343461325700 REFRESH 56 0 0.75061143474116909 0.26575809199318562 2 5 2 5 0 0 4096 44 425 3988476 56160 222.23564147949219 1.4362999999999999 351.3125 20160 14050 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 425 320 0 64 0 1463142752 61656620 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 232 118 0 0 0 15 29 0 0 0 0 0 +478 1783857343854871100 REFRESH 39 0 0.73797080665668302 0.55451448040885853 1 9 1 9 0 0 1413 7 418 3988956 56640 219.90400695800781 1.4358 335.76490000000001 13440 9946 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 418 320 0 64 0 1463877336 62391204 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 33 310 0 0 0 0 7 0 0 0 0 0 +479 1783857344205369700 REFRESH 10 0 0.73845200867082017 0.64821124361158422 1 10 1 10 0 0 986 14 421 3988966 56640 221.22496032714844 1.4343999999999999 297.14999999999998 13440 9794 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 421 320 0 64 0 1464614980 63128848 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 43 303 0 0 0 1 13 0 0 0 0 0 +480 1783857344544009800 REFRESH 4 0 0.73423921117090496 0.8356047700170357 1 12 1 12 0 0 255 9 410 3988884 56640 218.49497985839844 1.48 287.55220000000003 6720 4821 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 410 320 0 64 0 1465341404 63855272 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 27 25 25 34 299 0 0 0 1 8 0 0 0 0 0 +481 1783857344897940900 REFRESH 22 0 0.73824424568638025 0.91396933560476989 3 11 3 11 0 0 440 13 415 3988869 56640 222.18240356445312 1.4543999999999999 293.45499999999998 13440 9932 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 415 320 0 64 0 1466072928 64586796 1 0 5 2 2 1 6 1228800 491520 491520 245827 1497600 27 25 25 31 307 0 0 0 0 13 0 0 0 0 0 +482 1783857345243966200 REFRESH 18 0 0.73830459041062779 0.9293015332197615 1 13 1 13 0 0 418 14 411 3988956 56640 222.62066650390625 1.4467000000000001 295.4205 6720 4782 0 0 0.0012150407760339716 1.5464044125342757 4096 2048 64 1 16 411 320 0 64 0 1466800372 65314240 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 25 25 26 309 0 0 0 0 14 0 0 0 0 0 +483 1783857345645487200 REFRESH 46 0 0.74173758382092037 0.37478705281090291 0 8 0 8 0 0 2424 15 421 3988453 56160 222.75686645507812 1.4335 339.48899999999998 20160 14997 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 421 320 0 64 0 1467538016 66051884 1 0 4 3 2 2 5 983040 737280 491520 491652 1248000 25 25 25 106 240 0 0 1 1 13 0 0 0 0 0 +484 1783857346006622300 REFRESH 32 0 0.73820271262913095 0.4608177172061329 1 8 1 8 0 0 2244 50 409 3988924 56640 221.28349304199219 1.4354 303.06689999999998 13440 8431 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 409 320 0 64 0 1468263420 66777288 1 0 4 2 2 2 6 983040 491520 491520 491644 1497600 26 25 41 36 281 1 0 2 4 43 0 0 0 0 0 +485 1783857347468633400 REFRESH 16 0 0.73578545211199353 0.3594548551959113 2 6 2 6 0 0 2500 28 422 3988485 56160 222.487548828125 1.4307000000000001 1403.9505999999999 13440 8043 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 422 320 0 64 0 1469002164 407424 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 25 25 25 127 220 0 0 0 9 19 0 0 0 0 0 +486 1783857349639512700 DEPTH 42 1 0.9156027846177619 0 0 4 0 4 0 0 4096 25 2596 23677686 81600 1287.0907592773438 8.6533999999999995 2103.1111000000001 120960 61243 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2596 1920 0 384 1 1473508992 4914252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 353 150 287 1262 544 0 0 0 0 25 0 0 0 0 0 +487 1783857351774096300 DEPTH 57 1 0.74697561809660162 0.27342419080068137 1 6 1 6 1 0 3551 59 2549 23720603 125760 1281.7130889892578 8.7462999999999997 2053.8314999999998 80640 39095 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2549 1920 0 384 1 1477967880 9373140 1 0 4 2 3 2 5 5898240 2949120 4423680 2950926 7488000 156 150 156 580 1507 0 0 0 2 57 0 0 0 0 1 +488 1783857353953706400 DEPTH 9 1 0.74582542867501167 0.27342419080068137 1 6 1 6 1 0 2044 65 2567 23720623 125760 1280.9886016845703 8.7081 2123.1233000000002 80640 39933 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2567 1920 0 384 1 1482445128 13850388 1 0 4 2 3 2 5 5898240 2949120 4423680 2950965 7488000 150 150 150 726 1391 0 0 0 0 65 0 0 0 0 2 +489 1783857356067082100 DEPTH 8 1 0.74529302245046747 0.26575809199318562 2 5 2 5 0 0 2135 33 2598 23723528 128640 1281.4585876464844 8.623800000000001 1999.0563 80640 38594 1 0 0.029802894263159324 0.94143050940108985 4096 2048 384 12 96 2598 1920 0 384 1 1486953996 18359256 1 0 4 2 3 2 5 5898240 2949120 4177920 2950898 7737600 152 150 179 852 1265 0 0 1 2 30 0 0 0 0 0 +490 1783857358230145300 DEPTH 17 1 0.74531482874932364 0.28109028960817717 0 7 0 7 0 0 3063 43 2554 23716718 121920 1271.2239990234375 8.7090999999999994 2097.4614999999999 120960 68115 1 0 0 0.14445691436992109 4096 2048 384 12 96 2554 1920 0 384 1 1491417984 22823244 1 0 4 3 3 2 4 5898240 4423680 3194880 2950943 7238400 150 150 150 373 1731 1 1 1 1 39 0 0 0 0 0 +491 1783857360397261100 DEPTH 48 1 0.7453001075054615 0.26575809199318562 2 5 2 5 0 0 2022 32 2590 23712890 118080 1273.8380889892578 8.6981999999999999 2049.3982000000001 120960 68351 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2590 1920 0 384 1 1495918692 27323952 1 0 4 3 3 2 4 5898240 4423680 3440640 2950957 6988800 150 150 151 866 1273 0 0 1 0 31 0 0 0 0 0 +492 1783857362585098400 DEPTH 13 1 0.74532663980075387 0.27342419080068137 1 6 1 6 0 0 3320 52 2560 23712890 118080 1274.9834289550781 8.6113999999999997 2051.9485 120960 69356 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2560 1920 0 384 1 1500388800 31794060 1 0 4 3 3 2 4 5898240 4423680 3440640 2950957 6988800 150 150 150 458 1652 0 0 5 5 42 0 0 0 0 0 +493 1783857364683803300 DEPTH 20 1 0.74254314261737631 0.26575809199318562 2 5 2 5 0 0 1792 30 2623 23712921 118080 1276.4638366699219 9.0617999999999999 2040.8933 120960 69291 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2623 1920 0 384 1 1504923168 36328428 1 0 4 3 3 2 4 5898240 4423680 3440640 2950986 6988800 156 150 156 1064 1097 0 0 4 1 25 0 0 0 0 0 +494 1783857366805555200 DEPTH 42 1 0.74275699012335294 0 0 4 0 4 0 0 4096 22 2594 23677748 81600 1279.5237731933594 8.6193999999999988 2119.9690000000001 120960 49803 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2594 1920 0 384 1 1509427956 40833216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 332 150 273 1328 511 0 0 0 0 22 0 0 0 0 0 +495 1783857368973129100 DEPTH 1 1 0.73605812532148485 0.36712095400340705 1 7 1 7 0 0 2458 42 2596 23720546 125760 1279.8708801269531 8.5982000000000003 2042.6353999999999 120960 69960 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2596 1920 0 384 1 1513934784 45340044 1 0 4 3 2 2 5 5898240 4423680 2949120 2950929 7488000 150 150 150 636 1510 0 0 0 3 39 0 0 0 0 0 +496 1783857370824987100 DEPTH 55 1 0.73317855464093484 0.8279386712095399 2 11 2 10 1 0 886 83 2529 23742619 147840 1283.5524749755859 8.6086000000000009 1782.0317 40320 23225 1 0 0.22035178709193226 0.31253420483756189 4096 2048 384 12 96 2529 1920 0 384 1 1518373272 49778532 1 0 5 1 2 2 6 7372800 1474560 2949120 2950923 8985600 150 150 150 161 1918 0 0 0 0 83 0 0 0 0 4 +497 1783857372643383100 DEPTH 49 1 0.73314124244972401 0.82027257240204421 3 10 3 10 0 0 980 45 2554 23742601 147840 1271.4167022705078 8.6258000000000017 1757.0096000000001 80640 42037 1 0 0.11220515413423167 0.24605864362720831 4096 2048 384 12 96 2554 1920 0 384 1 1522837260 54242520 1 0 4 2 2 2 6 5898240 2949120 2949120 2950906 8985600 150 150 150 162 1942 0 0 0 3 42 0 0 0 0 0 +498 1783857374499631200 DEPTH 19 1 0.73315845251117184 0.8279386712095399 2 11 2 11 0 0 779 37 2559 23742611 147840 1275.07763671875 8.6204999999999998 1782.2546 80640 43425 1 0 0.023775706505965881 0.39358709546121162 4096 2048 384 12 96 2559 1920 0 384 1 1527306348 58711608 1 0 4 2 2 2 6 5898240 2949120 2949120 2950917 8985600 150 150 150 158 1951 1 0 1 0 35 0 0 0 0 0 +499 1783857376340820700 DEPTH 35 1 0.73318647913153367 0.8279386712095399 2 11 2 11 0 0 965 116 2488 23742660 147840 1277.1160736083984 8.6345999999999989 1772.8925999999999 80640 43314 1 0 0.10284194156167628 1.462681166290273 4096 2048 384 12 96 2488 1920 0 384 1 1531703016 63108276 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 156 150 150 150 1882 0 0 1 0 115 0 0 0 0 0 +500 1783857379416595800 DEPTH 36 1 0.73321684543209253 0.82027257240204421 3 10 3 10 0 0 1033 35 2559 23742598 147840 1339.1146545410156 8.5982000000000003 3002.5675999999999 80640 42436 1 0 0.063856168107744679 0.17242192002112078 4096 2048 384 12 96 2559 1920 0 384 1 1536172184 469008 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 163 150 150 150 1946 0 2 1 4 28 0 0 0 0 0 +501 1783857381295332300 DEPTH 29 1 0.73324717855728017 0.82027257240204421 3 10 3 10 1 0 1039 62 2556 23742704 147840 1288.2786102294922 8.6375999999999991 1816.3583000000001 80640 42041 1 0 0.26125994989040291 0.98461494739217958 4096 2048 384 12 96 2556 1920 0 384 1 1540638212 4935036 1 0 4 2 2 2 6 5898240 2949120 2949120 2951006 8985600 170 150 150 166 1920 0 1 0 6 55 0 0 0 0 2 +502 1783857383494221300 DEPTH 56 1 0.74563204791491855 0.26575809199318562 2 5 2 5 0 0 4096 47 2550 23716807 121920 1294.7947540283203 8.9634999999999998 2127.2613000000001 120960 68017 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2550 1920 0 384 1 1545098120 9394944 1 0 4 3 3 2 4 5898240 4423680 3194880 2951032 7238400 150 150 151 1121 978 0 0 2 1 44 0 0 0 0 0 +503 1783857385694464200 DEPTH 42 1 0.74999036094708271 0 0 4 0 4 0 0 4096 14 2604 23678044 81600 1292.9106140136719 8.7233000000000001 2198.8742000000002 120960 39725 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2604 1920 0 384 1 1549613108 13909932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 289 150 266 1390 509 0 0 0 0 14 0 0 0 0 0 +504 1783857388045090100 DEPTH 44 1 0.73530095999454548 0.36712095400340705 1 7 1 7 1 0 1730 56 2624 23731262 136320 1407.3425445556641 8.9992000000000001 2216.5754999999999 80640 40934 1 0 0.012841804315354343 2.1497588459311827 4096 2048 384 12 96 2624 1920 0 384 1 1554148496 18445320 1 0 4 2 3 2 5 5898240 2949120 3686400 2950990 8236800 150 150 162 375 1787 0 0 1 2 53 0 0 1 0 0 +505 1783857389991268000 DEPTH 37 1 0.73346849095721323 0.8356047700170357 1 12 1 12 0 0 862 44 2569 23742040 147840 1351.6309356689453 9.1598000000000006 1887.6303 80640 48487 1 0 0.0085341443355613934 0.56218625238017594 4096 2048 384 12 96 2569 1920 0 384 1 1558627784 22924608 1 0 4 2 2 2 6 6881280 2949120 2949120 1967306 8985600 163 150 150 150 1956 0 0 0 11 33 0 0 0 0 0 +506 1783857392145108900 DEPTH 3 1 0.73341319807099503 0.64054514480408853 2 9 2 9 1 0 985 48 2530 23742614 147840 1333.8521881103516 8.6912000000000003 2090.4650999999999 80640 46296 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2530 1920 0 384 1 1563067292 27364116 1 0 4 2 2 2 6 5898240 2949120 2949120 2950917 8985600 156 150 161 168 1895 0 0 4 1 43 0 0 0 0 1 +507 1783857394028682300 DEPTH 5 1 0.73342847866210159 0.8279386712095399 2 11 2 11 0 0 721 39 2560 23741756 147840 1267.9257354736328 8.6692 1822.1171999999999 80640 45663 1 0 0.013882409877838182 0.46729441044295411 4096 2048 384 12 96 2560 1920 0 384 1 1567537400 31834224 1 0 5 2 2 1 6 7372800 2949120 2949120 1475501 8985600 150 150 150 157 1953 2 2 2 1 32 0 0 0 0 0 +508 1783857395910752200 DEPTH 43 1 0.7334585795651607 0.8279386712095399 2 11 2 11 1 0 714 40 2571 23741766 147840 1277.2145233154297 8.671400000000002 1817.3780999999999 80640 45473 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2571 1920 0 384 1 1572018728 36315552 1 0 5 2 2 1 6 7372800 2949120 2949120 1475508 8985600 150 150 150 198 1923 2 0 1 0 37 0 0 0 0 1 +509 1783857397896050900 DEPTH 47 1 0.73348864757513954 0.8279386712095399 2 11 2 11 0 0 534 20 2598 23742625 147840 1330.6853485107422 8.9699999999999989 1907.3278 80640 43182 1 0 0.031374216798943186 1.3938937060236263 4096 2048 384 12 96 2598 1920 0 384 1 1576527596 40824420 1 0 4 2 2 2 6 5898240 2949120 2949120 2950930 8985600 156 150 150 155 1987 0 1 0 0 19 0 0 0 0 0 +510 1783857400326666300 DEPTH 46 1 0.73646152048297009 0.37478705281090291 0 8 0 8 0 0 2431 36 2573 23720547 125760 1380.9172515869141 9.0355999999999987 2359.0590000000002 120960 68382 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2573 1920 0 384 1 1581010964 45307788 1 0 4 3 2 2 5 5898240 4423680 2949120 2950930 7488000 150 150 150 497 1626 0 0 5 0 31 0 0 0 0 0 +511 1783857402430262800 DEPTH 0 1 0.73354868519449312 0.8279386712095399 2 11 2 11 0 0 777 43 2565 23742650 147840 1384.2667694091797 8.6445999999999987 2030.537 80640 43011 1 0 0.00017817385236690964 2.3450496297959931 4096 2048 384 12 96 2565 1920 0 384 1 1585486172 49782996 1 0 4 2 2 2 6 5898240 2949120 2949120 2950957 8985600 150 150 150 165 1950 1 0 1 0 41 0 0 0 0 0 +512 1783857404479390100 DEPTH 28 1 0.73357865494263919 0.8279386712095399 2 11 2 11 0 0 550 32 2526 23742601 147840 1399.0973510742188 9.0578000000000003 1974.2854 40320 23652 1 0 0.00017781511379253443 2.0677017543935525 4096 2048 384 12 96 2526 1920 0 384 1 1589921600 54218424 1 0 5 1 2 2 6 7372800 1474560 2949120 2950899 8985600 156 150 150 161 1909 0 0 0 0 32 0 0 0 0 0 +513 1783857406519606900 DEPTH 26 1 0.7336085920752502 0.8356047700170357 1 12 0 12 1 0 939 50 2555 23741687 147840 1340.1374816894531 8.6509 1960.3924 80640 45971 1 0 4.3894554368766641e-05 1.5211092473658272 4096 2048 384 12 96 2555 1920 0 384 1 1594386608 58683432 1 0 5 2 2 1 6 7372800 2949120 2949120 1475431 8985600 162 150 150 150 1943 2 1 0 1 46 0 0 0 0 1 +514 1783857408447290800 DEPTH 7 1 0.73363849666116931 0.8356047700170357 1 12 1 12 0 0 760 53 2527 23742029 147840 1318.9213714599609 8.6516999999999999 1855.3436999999999 80640 48110 1 0 0.00036830025183520201 0.88322933222718147 4096 2048 384 12 96 2527 1920 0 384 1 1598823056 63119880 1 0 4 2 2 2 6 6881280 2949120 2949120 1967293 8985600 150 150 150 150 1927 0 0 0 0 53 0 0 0 0 0 +515 1783857411654471000 DEPTH 14 1 0.7335647891429895 0.65587734241908002 0 11 0 11 0 0 1324 127 2526 23742726 147840 1322.0282897949219 8.6539999999999999 3130.8744999999999 80640 42679 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2526 1920 0 384 1 1603258564 446568 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 162 150 155 156 1903 0 0 4 0 123 0 0 0 0 0 +516 1783857413632289800 DEPTH 12 1 0.732693681306541 0.63287904599659284 3 8 3 8 0 0 1129 27 2592 23742669 147840 1300.7750701904297 8.928799999999999 1911.7249999999999 80640 47077 1 0 0.0015102624860077482 0.9394486955269914 4096 2048 384 12 96 2592 1920 0 384 1 1607761312 4949316 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 150 174 1968 0 0 0 3 24 0 0 0 0 0 +517 1783857415810926100 DEPTH 2 1 0.73269299679249267 0.45315161839863699 2 7 2 7 0 0 2624 77 2553 23742831 147840 1311.7033843994141 8.7540999999999993 2101.1088 80640 42587 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2553 1920 0 384 1 1612224280 9412284 1 0 4 2 2 2 6 5898240 2949120 2949120 2951008 8985600 150 150 177 156 1920 0 0 10 2 65 0 0 0 0 0 +518 1783857416187295600 REFRESH 29 0 0.64697234238449153 0.82027257240204421 3 10 3 10 0 0 1041 10 420 3988950 56640 226.59686279296875 1.4298999999999999 307.73579999999998 13440 9952 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 420 320 0 64 0 1612960904 10148908 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 25 28 316 0 1 0 2 7 0 0 0 0 0 +519 1783857416501186500 REFRESH 12 0 0.50588898983059327 0.63287904599659284 3 8 3 8 0 0 1134 16 427 3988951 56640 225.32403564453125 1.5941000000000001 312.16550000000001 13440 9212 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 427 320 0 64 0 1613704668 10892672 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 79 273 0 0 0 1 15 0 0 0 0 0 +520 1783857416915741800 REFRESH 53 0 0.73105780468563242 0.37478705281090291 0 8 0 8 0 0 4022 17 418 3988475 56160 227.52665710449219 1.4459 354.30779999999999 13440 8112 0 0 0 0.26169361010444037 4096 2048 64 1 16 418 320 0 64 0 1614439252 11627256 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 27 25 25 204 137 0 0 0 6 11 0 0 0 0 0 +521 1783857417230092500 REFRESH 2 0 0.51676515709794235 0.45315161839863699 2 7 2 7 0 0 2656 67 415 3988972 56640 226.24563598632812 1.4398 312.64479999999998 13440 8298 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 415 320 0 64 0 1615170776 12358780 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 26 37 30 297 0 0 5 0 62 0 0 0 0 0 +522 1783857417547664600 REFRESH 3 0 0.63688343433697936 0.64054514480408853 2 9 2 9 0 0 992 37 413 3988986 56640 224.31846618652344 1.4456 315.80950000000001 13440 8752 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 413 320 0 64 0 1615900260 13088264 1 0 4 2 2 2 6 983040 491520 491520 491705 1497600 26 25 78 44 240 0 0 8 1 28 0 0 0 0 0 +523 1783857417938262600 REFRESH 13 0 0.74077732625871673 0.27342419080068137 1 6 1 6 0 0 3333 35 417 3987978 55680 227.78675842285156 1.4363999999999999 329.91500000000002 20160 13943 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 417 320 0 64 0 1616633824 13821828 1 0 4 3 3 2 4 983040 737280 737280 491658 998400 25 25 25 149 193 0 0 0 16 19 0 0 0 0 0 +524 1783857418290651800 REFRESH 19 0 0.72632583319753008 0.8279386712095399 2 11 2 11 0 0 781 19 416 3988953 56640 226.1923828125 1.4275 297.11399999999998 13440 9880 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 416 320 0 64 0 1617366368 14554372 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 28 313 0 0 0 0 19 0 0 0 0 0 +525 1783857418696890100 REFRESH 57 0 0.74275346084109684 0.27342419080068137 1 6 1 6 0 0 3563 31 423 3988478 56160 227.10502624511719 1.4535 339.43639999999999 13440 8274 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 423 320 0 64 0 1618106052 15294056 1 0 4 2 3 2 5 983040 491520 737280 491674 1248000 26 25 27 204 141 0 0 0 13 18 0 0 0 0 0 +526 1783857419103168900 REFRESH 25 0 0.73292325156934846 0.4608177172061329 1 8 1 8 0 0 2096 16 404 3988936 56640 226.302978515625 1.4500999999999999 348.81959999999998 13440 8166 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 404 320 0 64 0 1618826356 16014360 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 26 34 293 0 0 0 2 14 0 0 0 0 0 +527 1783857419406782300 REFRESH 43 0 0.6664270950470732 0.8279386712095399 2 11 2 11 0 0 715 7 416 3988874 56640 226.42790222167969 1.4320999999999999 301.94110000000001 13440 9843 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 416 320 0 64 0 1619558900 16746904 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 25 25 25 39 302 0 0 0 2 5 0 0 0 0 0 +528 1783857419778184200 REFRESH 10 0 0.73247996342162225 0.64821124361158422 1 10 1 10 0 0 986 8 421 3988972 56640 227.93830871582031 1.4492 314.0806 13440 9742 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 421 320 0 64 0 1620296544 17484548 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 45 301 0 0 0 0 8 0 0 0 0 0 +529 1783857420139125400 REFRESH 51 0 0.7313559332818842 0.91396933560476989 3 11 3 11 0 0 482 14 407 3988872 56640 225.50630187988281 1.5229999999999999 305.70429999999999 13440 9891 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 407 320 0 64 0 1621019908 18207912 1 0 5 2 2 1 6 1228800 491520 491520 245832 1497600 25 25 25 32 300 0 0 0 1 13 0 0 0 0 0 +530 1783857420451270600 REFRESH 26 0 0.74982824658444114 0.74957410562180571 0 12 0 12 0 0 953 33 414 3988898 56640 225.80438232421875 1.4397 310.25549999999998 13440 9490 0 0 4.3894554368766641e-05 1.5211092473658272 4096 2048 64 1 16 414 320 0 64 0 1621750412 18938416 1 0 5 2 2 1 6 1228800 491520 491520 245858 1497600 26 25 25 29 309 0 0 1 0 32 0 0 0 0 0 +531 1783857420815919300 REFRESH 46 0 0.69133901552782873 0.37478705281090291 0 8 0 8 0 0 2436 13 425 3988481 56160 228.27827453613281 1.5225 362.71949999999998 20160 13935 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 425 320 0 64 0 1622492136 19680140 1 0 4 3 2 2 5 983040 737280 491520 491681 1248000 25 25 25 236 114 0 0 0 4 9 0 0 0 0 0 +532 1783857421228224000 REFRESH 39 0 0.72954307757031134 0.55451448040885853 1 9 1 9 0 0 1414 10 418 3988974 56640 225.86163330078125 1.4548000000000001 353.29590000000002 13440 9792 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 418 320 0 64 0 1623226720 20414724 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 25 25 25 41 302 0 0 0 2 8 0 0 0 0 0 +533 1783857421591742500 REFRESH 22 0 0.73147349939366246 0.91396933560476989 3 11 3 11 0 0 440 14 418 3988872 56640 227.52665710449219 1.4320999999999999 310.0213 13440 9784 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 418 320 0 64 0 1623961304 21149308 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 26 25 25 36 306 0 0 0 1 13 0 0 0 0 0 +534 1783857421960677600 REFRESH 55 0 0.83001682112579311 0.73424190800681421 2 10 2 10 0 0 886 19 404 3988950 56640 227.37408447265625 1.4533 310.54149999999998 13440 9646 0 0 0.22035178709193226 0.31253420483756189 4096 2048 64 1 16 404 320 0 64 0 1624681608 21869612 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 26 303 0 0 0 0 19 0 0 0 0 0 +535 1783857422437965300 REFRESH 11 0 0.73147629127156755 0.37478705281090291 0 8 0 8 1 0 1906 16 420 3988465 56160 226.79466247558594 1.431 366.36259999999999 20160 13784 0 0 0 0.83283265166820764 4096 2048 64 1 16 420 320 0 64 0 1625418232 22606236 1 0 4 3 2 2 5 983040 737280 491520 491665 1248000 25 25 25 241 104 0 0 3 0 13 0 0 0 0 1 +536 1783857422841812100 REFRESH 40 0 0.73046503487975833 0.64821124361158422 1 10 1 10 0 0 1437 6 418 3988961 56640 225.944580078125 1.6035999999999999 343.36110000000002 13440 9781 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 418 320 0 64 0 1626152816 23340820 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 36 307 0 0 0 0 6 0 0 0 0 0 +537 1783857423218626800 REFRESH 41 0 0.73255392524387264 0.55451448040885853 1 9 1 9 0 0 1752 28 419 3988877 56640 226.98291015625 1.4382999999999999 317.77370000000002 20160 14624 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 419 320 0 64 0 1626888420 24076424 1 0 4 3 2 1 6 983040 737280 491520 245837 1497600 25 25 25 32 312 0 0 0 0 28 0 0 0 0 0 +538 1783857423527182000 REFRESH 28 0 0.72672150113742462 0.8279386712095399 2 11 2 11 0 0 552 11 400 3988940 56640 227.22764587402344 1.4549000000000001 306.8963 13440 9402 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 400 320 0 64 0 1627604644 24792648 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 25 26 298 0 0 0 0 11 0 0 0 0 0 +539 1783857423884867300 REFRESH 4 0 0.72734573067862829 0.8356047700170357 1 12 1 12 0 0 255 7 409 3988882 56640 225.12538146972656 1.4321999999999999 297.15030000000002 6720 4867 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 409 320 0 64 0 1628330048 25518052 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 27 25 25 35 297 0 0 0 0 7 0 0 0 0 0 +540 1783857424202785100 REFRESH 14 0 0.72727882224464868 0.65587734241908002 0 11 0 11 0 0 1331 27 415 3988948 56640 228.93363952636719 1.4363999999999999 316.23349999999999 13440 9130 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 415 320 0 64 0 1629061572 26249576 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 27 25 43 27 293 0 0 3 0 24 0 0 0 0 0 +541 1783857424588073400 REFRESH 50 0 0.7319651422301745 0.64054514480408853 2 9 2 9 0 0 946 13 423 3988982 56640 224.85606384277344 1.4441999999999999 323.08170000000001 13440 9252 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 423 320 0 64 0 1629801256 26989260 1 0 4 2 2 2 6 983040 491520 491520 491701 1497600 25 25 35 26 312 0 0 1 1 11 0 0 0 0 0 +542 1783857425002147500 REFRESH 20 0 0.73871882312603043 0.26575809199318562 2 5 2 5 0 0 1793 7 433 3988014 55680 227.86764526367188 1.4985999999999999 355.19439999999997 20160 12714 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 433 320 0 64 0 1630551140 27739144 1 0 4 3 3 2 4 983040 737280 737280 491694 998400 25 25 29 159 195 0 0 0 0 7 0 0 0 0 0 +543 1783857425303762300 REFRESH 7 0 0.72686214438869701 0.8356047700170357 1 12 1 12 0 0 761 14 409 3988966 56640 226.64909362792969 1.4409000000000001 300.08019999999999 13440 9912 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 409 320 0 64 0 1631276544 28464548 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 32 302 0 0 0 0 14 0 0 0 0 0 +544 1783857425671758100 REFRESH 35 0 0.72689018423038987 0.8279386712095399 2 11 2 11 0 0 966 18 405 3988961 56640 226.50265502929688 1.4563999999999999 312.22190000000001 13440 9923 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 405 320 0 64 0 1631997868 29185872 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 32 297 0 0 0 0 18 0 0 0 0 0 +545 1783857426121828100 REFRESH 23 0 0.73025152734917642 0.74190800681430991 1 11 1 11 0 0 3243 14 409 3988961 56640 227.07711791992188 1.4436 312.23149999999998 13440 9636 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 409 320 0 64 0 1632723272 29911276 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 32 302 0 0 0 0 14 0 0 0 0 0 +546 1783857426531363300 REFRESH 1 0 0.73171720801349771 0.36712095400340705 1 7 1 7 0 0 2467 29 424 3988475 56160 227.56147766113281 1.4394 348.3895 20160 13896 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 424 320 0 64 0 1633463976 30651980 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 236 113 0 0 0 11 18 0 0 0 0 0 +547 1783857426894441400 REFRESH 49 0 0.7269881633896953 0.82027257240204421 3 10 3 10 0 0 987 28 408 3988990 56640 226.22114562988281 1.583 301.15010000000001 13440 9985 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 408 320 0 64 0 1634188360 31376364 1 0 4 2 2 2 6 983040 491520 491520 491710 1497600 25 25 25 30 303 0 0 0 1 27 0 0 0 0 0 +548 1783857427308822600 REFRESH 48 0 0.74139444134217092 0.26575809199318562 2 5 2 5 0 0 2026 18 413 3987993 55680 228.44415283203125 1.5129999999999999 355.33909999999997 20160 12752 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 413 320 0 64 0 1634917844 32105848 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 135 203 0 0 0 4 14 0 0 0 0 0 +549 1783857427685568200 REFRESH 45 0 0.73353518034626086 0.45315161839863699 2 7 2 7 0 0 1735 27 413 3988930 56640 226.629638671875 1.4419 317.19639999999998 13440 9763 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 413 320 0 64 0 1635647328 32835332 1 0 4 2 2 2 6 983040 491520 491520 491650 1497600 25 25 25 45 293 0 0 0 2 25 0 0 0 0 0 +550 1783857428102751100 REFRESH 44 0 0.73723006092244636 0.36712095400340705 1 7 1 7 0 0 1738 20 431 3988481 56160 227.272705078125 1.4458 355.16019999999997 13440 8370 0 0 0.012841804315354343 2.1497588459311827 4096 2048 64 1 16 431 320 0 64 0 1636395172 33583176 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 26 26 329 0 0 0 4 16 0 0 0 0 0 +551 1783857428467420700 REFRESH 38 0 0.73293456469397711 0.55451448040885853 1 9 1 9 0 0 1783 33 413 3988977 56640 224.78437805175781 1.4361999999999999 303.71190000000001 13440 8591 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 413 320 0 64 0 1637124656 34312660 1 0 4 2 2 2 6 983040 491520 491520 491697 1497600 26 25 29 32 301 0 0 0 0 33 0 0 0 0 0 +552 1783857428874542100 REFRESH 52 0 0.73208510289323536 0.36712095400340705 1 7 1 7 0 0 1730 11 429 3988485 56160 227.90042114257812 1.4350000000000001 345.75839999999999 20160 13803 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 429 320 0 64 0 1637870460 35058464 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 26 259 94 0 0 1 1 9 0 0 0 0 0 +553 1783857429249856200 REFRESH 16 0 0.73189166006116202 0.3594548551959113 2 6 2 6 0 0 2510 27 417 3988485 56160 227.96287536621094 1.4571000000000001 314.24099999999999 13440 7982 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 417 320 0 64 0 1638604024 35792028 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 25 25 25 180 162 0 0 0 9 18 0 0 0 0 0 +554 1783857429621902400 REFRESH 30 0 0.73366625417415432 0.4608177172061329 1 8 1 8 0 0 2663 79 415 3988955 56640 225.67529296875 1.6203000000000001 312.78120000000001 13440 8622 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 1639335548 36523552 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 61 44 259 0 0 3 1 75 0 0 0 0 0 +555 1783857429992010300 REFRESH 18 0 0.73213574114664115 0.9293015332197615 1 13 1 13 0 0 418 19 412 3988959 56640 227.00953674316406 1.4317 308.84930000000003 6720 4868 0 0 0.0012150407760339716 1.5464044125342757 4096 2048 64 1 16 412 320 0 64 0 1640064012 37252016 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 25 25 26 310 0 0 0 0 19 0 0 0 0 0 +556 1783857430440306100 REFRESH 8 0 0.7416299631283958 0.26575809199318562 2 5 2 5 0 0 2142 22 416 3988502 56160 228.46975708007812 1.4382999999999999 321.01670000000001 13440 8066 0 0 0.029802894263159324 0.94143050940108985 4096 2048 64 1 16 416 320 0 64 0 1640796556 37984560 1 0 4 2 3 2 5 983040 491520 737280 491677 1248000 26 25 26 143 196 0 0 1 8 13 0 0 0 0 0 +557 1783857430824267500 REFRESH 27 0 0.73216727489004352 0.93696763202725719 0 14 0 14 0 0 780 15 415 3988949 56640 226.62860107421875 1.4322999999999999 306.3741 6720 4781 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 415 320 0 64 0 1641528080 38716084 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 25 25 25 26 314 0 0 0 0 15 0 0 0 0 0 +558 1783857431236001300 REFRESH 54 0 0.73377062159637285 0.4608177172061329 1 8 1 8 0 0 969 33 409 3988476 56160 227.18464660644531 1.4361999999999999 341.62020000000001 20160 14979 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 409 320 0 64 0 1642253484 39441488 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 36 298 0 1 0 3 29 0 0 0 0 0 +559 1783857431608719500 REFRESH 5 0 0.72730726573298876 0.8279386712095399 2 11 2 11 0 0 723 16 411 3988878 56640 224.71270751953125 1.4481999999999999 308.9443 13440 9946 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 411 320 0 64 0 1642980928 40168932 1 0 5 2 2 1 6 1228800 491520 491520 245838 1497600 25 25 25 44 292 0 0 1 3 12 0 0 0 0 0 +560 1783857432031671900 REFRESH 17 0 0.74172208101870507 0.28109028960817717 0 7 0 7 0 0 3074 20 424 3987982 55680 228.24652099609375 1.4379 360.50549999999998 20160 12704 0 0 0 0.14445691436992109 4096 2048 64 1 16 424 320 0 64 0 1643721632 40909636 1 0 4 3 3 2 4 983040 737280 737280 491660 998400 25 25 26 184 164 0 0 0 10 10 0 0 0 0 0 +561 1783857432441499300 REFRESH 21 0 0.73320305352554138 0.56218057921635434 0 10 0 10 0 0 2143 36 415 3988895 56640 225.47865295410156 1.4336 337.1241 13440 9690 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 415 320 0 64 0 1644453156 41641160 1 0 5 2 2 1 6 1228800 491520 491520 245855 1497600 25 25 25 60 280 0 0 0 2 34 0 0 0 0 0 +562 1783857432805653100 REFRESH 6 0 0.72811524318658727 0.91396933560476989 3 11 3 11 0 0 365 6 417 3988877 56640 225.40287780761719 1.5529999999999999 306.57240000000002 6720 4882 0 0 0.078490995891016657 0.16637572843653256 3801 1753 64 1 16 417 320 0 64 0 1645186720 42374724 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 25 27 315 0 0 0 0 6 0 0 0 0 0 +563 1783857433238415100 REFRESH 56 0 0.74179450878927378 0.26575809199318562 2 5 2 5 0 0 4096 42 419 3988004 55680 228.01408386230469 1.4468000000000001 355.54730000000001 20160 12592 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 419 320 0 64 0 1645922324 43110328 1 0 4 3 3 2 4 983040 737280 737280 491683 998400 25 25 26 162 181 0 0 0 19 23 0 0 0 0 0 +564 1783857433615872100 REFRESH 58 0 0.73236641704421412 0.92163543441226559 2 12 2 12 0 0 474 13 411 3988890 56640 226.12918090820312 1.4339999999999999 309.15640000000002 13440 9893 0 0 0.012937344408152321 1.9164160603669584 4096 2048 64 1 16 411 320 0 64 0 1646649768 43837772 1 0 5 2 2 1 6 1228800 491520 491520 245850 1497600 26 25 25 30 305 0 1 0 1 11 0 0 0 0 0 +565 1783857434014365500 REFRESH 31 0 0.73218777265293034 0.3594548551959113 2 6 2 6 0 0 2148 8 427 3988471 56160 225.70393371582031 1.4360999999999999 336.7423 13440 8394 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 427 320 0 64 0 1647393532 44581536 1 0 5 2 2 2 5 1228800 491520 491520 491671 1248000 25 25 26 233 118 0 0 1 1 6 0 0 0 0 0 +566 1783857434384230200 REFRESH 37 0 0.72758996683259813 0.8356047700170357 1 12 1 12 0 0 867 22 412 3988955 56640 226.16883850097656 1.4373 304.14350000000002 13440 9968 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 412 320 0 64 0 1648121996 45310000 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 32 304 0 1 0 2 19 0 0 0 0 0 +567 1783857434880917600 REFRESH 42 0 0.90832840875850873 0 0 4 0 4 0 0 4096 10 424 3987668 55200 229.02886962890625 1.4703999999999999 367.88119999999998 20160 12862 0 0 0 0.0086253377849846019 4096 2048 64 1 16 424 320 0 64 0 1648862700 46050704 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 64 25 56 203 76 0 0 0 0 10 0 0 0 0 0 +568 1783857435247664000 REFRESH 15 0 0.73067956659668587 0.91396933560476989 3 11 3 11 0 0 297 3 412 3988873 56640 226.58969116210938 1.4399 307.02289999999999 6720 4793 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 0 64 0 1649591164 46779168 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 26 25 25 39 297 0 0 0 0 3 0 0 0 0 0 +569 1783857435616462000 REFRESH 36 0 0.72758172549283773 0.82027257240204421 3 10 3 10 0 0 1038 28 407 3988954 56640 225.64863586425781 1.4356 305.89049999999997 13440 9925 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 407 320 0 64 0 1650314528 47502532 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 31 300 0 0 0 1 27 0 0 0 0 0 +570 1783857436054392000 REFRESH 9 0 0.74250538803515265 0.27342419080068137 1 6 1 6 0 0 2051 28 427 3988478 56160 227.69049072265625 1.4393 369.25189999999998 13440 8247 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 427 320 0 64 0 1651058292 48246296 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 25 25 25 241 111 0 0 0 15 13 0 0 0 0 0 +571 1783857436433649100 REFRESH 0 0 0.72763627856108626 0.8279386712095399 2 11 2 11 0 0 779 16 418 3988971 56640 225.94355773925781 1.4413 315.20909999999998 13440 9957 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 418 320 0 64 0 1651792876 48980880 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 34 309 0 0 0 1 15 0 0 0 0 0 +572 1783857436898917300 REFRESH 32 0 0.734132518867739 0.4608177172061329 1 8 1 8 0 0 2264 47 411 3988928 56640 226.440185546875 1.5389999999999999 318.56790000000001 13440 8559 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 411 320 0 64 0 1652520320 49708324 1 0 4 2 2 2 6 983040 491520 491520 491648 1497600 26 25 40 35 285 0 0 1 3 43 0 0 0 0 0 +573 1783857437280913800 REFRESH 33 0 0.7323831494388453 0.36712095400340705 1 7 1 7 0 0 2852 47 415 3988483 56160 227.48570251464844 1.4367000000000001 319.18599999999998 13440 8199 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 415 320 0 64 0 1653251844 50439848 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 26 25 25 68 271 0 0 0 6 41 0 0 0 0 0 +574 1783857437653910700 REFRESH 24 0 0.72864669274068583 1 4 11 4 11 0 0 478 7 401 3988941 56640 226.48934936523438 1.4492 310.3707 6720 4779 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 401 320 0 64 0 1653969088 51157092 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 27 25 25 25 299 0 0 0 0 7 0 0 0 0 0 +575 1783857438043647500 REFRESH 34 0 0.73393763411143387 0.8356047700170357 1 12 1 12 0 0 598 13 419 3988872 56640 225.31890869140625 1.4321999999999999 331.05119999999999 13440 9710 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 419 320 0 64 0 1654704692 51892696 1 0 5 2 2 1 6 1228800 491520 491520 245832 1497600 26 25 25 37 306 0 1 0 0 12 0 0 0 0 0 +576 1783857438410959900 REFRESH 47 0 0.7277721725953582 0.8279386712095399 2 11 2 11 0 0 538 17 416 3988950 56640 225.3834228515625 1.4384999999999999 306.51049999999998 13440 9881 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 416 320 0 64 0 1655437236 52625240 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 28 312 0 0 0 0 17 0 0 0 0 0 +577 1783857440343871300 DEPTH 55 1 0.81417061423708637 0.73424190800681421 2 10 2 10 0 0 894 65 2531 23742620 147840 1343.3396148681641 8.7942999999999998 1877.1585 80640 45423 1 0 0.22035178709193226 0.31253420483756189 4096 2048 384 12 96 2531 1920 0 384 1 1659877764 57065768 1 0 4 2 2 2 6 5898240 2949120 2949120 2950924 8985600 150 150 150 162 1919 0 0 0 0 65 0 0 0 0 0 +578 1783857442379987500 DEPTH 26 1 0.81412933851438285 0.74957410562180571 0 12 0 12 1 0 1011 152 2568 23742600 147840 1307.3039398193359 8.7311999999999994 1978.4644000000001 80640 44025 1 0 4.6914341824531002e-06 0.70189124033055872 4096 2048 384 12 96 2568 1920 0 384 1 1664356032 61544036 1 0 4 2 2 2 6 5898240 2949120 2949120 2950905 8985600 154 150 150 150 1964 0 0 0 8 144 0 0 0 0 4 +579 1783857444630478600 DEPTH 42 1 0.77570532225182054 0 0 4 0 4 0 0 4096 25 2589 23677825 81600 1322.8577117919922 8.7810999999999986 2194.0145000000002 120960 60967 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2589 1920 0 384 1 1668855720 66043724 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 347 150 299 1282 511 0 0 0 0 25 0 0 0 0 0 +580 1783857447952808800 DEPTH 57 1 0.73877757243100728 0.27342419080068137 1 6 1 6 0 0 3570 38 2572 23698576 103680 1312.9963531494141 8.6230000000000011 3263.6350000000002 120960 50282 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2572 1920 0 384 1 1673338148 3417544 1 0 4 3 3 2 4 5898240 4423680 4423680 2951018 5990400 156 150 156 1003 1107 0 0 0 7 31 0 0 0 0 0 +581 1783857450105570200 DEPTH 48 1 0.73706704393752398 0.26575809199318562 2 5 2 5 0 0 2032 38 2571 23698424 103680 1311.9324340820312 8.6656999999999993 2093.0246999999999 120960 63193 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2571 1920 0 384 1 1677819476 7898872 1 0 4 3 3 2 4 5898240 4423680 4423680 2950882 5990400 150 150 150 406 1715 0 0 0 0 38 0 0 0 0 0 +582 1783857452335292400 DEPTH 13 1 0.73709003362684977 0.27342419080068137 1 6 1 6 0 0 3342 57 2553 23698500 103680 1311.4788513183594 8.6372 2104.9519 120960 68941 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2553 1920 0 384 1 1682282444 12361840 1 0 4 3 3 2 4 5898240 4423680 4423680 2950964 5990400 150 150 150 723 1380 0 0 0 6 51 0 0 0 0 0 +583 1783857454443112500 DEPTH 44 1 0.73210342107704007 0.36712095400340705 1 7 1 7 0 0 1760 66 2607 23712926 118080 1317.2428741455078 8.7453000000000003 2105.9560000000001 94080 47175 1 0 0.012841804315354343 2.1497588459311827 4096 2048 384 12 96 2607 1920 0 384 1 1686800492 16879888 1 0 4 3 3 2 4 5898240 3440640 4423680 2950932 6988800 150 150 156 317 1834 0 0 17 11 38 0 0 0 0 0 +584 1783857456640679000 DEPTH 20 1 0.73185984301803253 0.26575809199318562 2 5 2 5 0 0 1806 47 2617 23698482 103680 1313.2523498535156 8.6219999999999999 2116.8121999999998 120960 64067 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2617 1920 0 384 1 1691328740 21408136 1 0 4 3 3 2 4 5898240 4423680 4423680 2950944 5990400 150 150 157 1029 1131 0 0 10 1 36 0 0 0 0 0 +585 1783857458814786200 DEPTH 8 1 0.73719617807535553 0.26575809199318562 2 5 2 5 0 0 2147 42 2573 23709586 114240 1319.0533142089844 8.6617999999999995 2040.4392 80640 38834 1 0 0.029802894263159324 0.94143050940108985 4096 2048 384 12 96 2573 1920 0 384 1 1695812108 25891504 1 0 4 2 3 3 4 5898240 2949120 4423680 3688705 6739200 152 150 150 816 1305 0 0 2 4 36 0 0 0 0 0 +586 1783857461007622500 DEPTH 17 1 0.73721519869457164 0.28109028960817717 0 7 0 7 1 0 3090 53 2571 23698499 103680 1306.967041015625 8.644400000000001 2133.1801 120960 63147 1 1 0 0.12975055607268157 4096 2048 384 12 96 2571 1920 0 384 1 1700293436 30372832 1 0 4 3 3 2 4 5898240 4423680 4423680 2950963 5990400 150 150 150 670 1451 0 0 2 0 50 0 0 0 0 1 +587 1783857463227171500 DEPTH 45 1 0.72843344514689679 0.45315161839863699 2 7 2 7 0 0 1739 44 2568 23742689 147840 1310.5157012939453 8.6298999999999992 2096.1080999999999 80640 46682 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2568 1920 0 384 1 1704771704 34851100 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 150 150 150 229 1889 0 0 0 3 41 0 0 0 0 0 +588 1783857465618440500 DEPTH 54 1 0.72845803334074155 0.4608177172061329 1 8 1 8 0 0 976 43 2540 23720566 125760 1391.6241912841797 8.7215000000000007 2263.4693000000002 120960 68183 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2540 1920 0 384 1 1709221412 39300808 1 0 4 3 2 2 5 5898240 4423680 2949120 2950951 7488000 150 150 150 223 1867 0 0 1 1 41 0 0 0 0 0 +589 1783857468051938000 DEPTH 30 1 0.7284825967094013 0.4608177172061329 1 8 1 8 0 0 2674 70 2546 23742828 147840 1400.8433074951172 8.9824000000000019 2294.4326999999998 80640 42266 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2546 1920 0 384 1 1713677240 43756636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 158 150 250 185 1803 0 0 5 8 57 0 0 0 0 0 +590 1783857470391522600 DEPTH 25 1 0.72850713530150535 0.4608177172061329 1 8 1 8 0 0 2107 44 2549 23731285 136320 1413.6105804443359 8.673 2281.0520999999999 100800 49746 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2549 1920 0 384 1 1718136128 48215524 1 0 4 3 2 2 5 5898240 3686400 2949120 2950965 8236800 156 150 156 308 1779 0 0 1 5 38 0 0 0 0 0 +591 1783857472598637100 DEPTH 52 1 0.72761537024907197 0.36712095400340705 1 7 1 7 0 0 1751 55 2576 23709019 114240 1331.5051422119141 8.6241000000000003 2135.9241000000002 120960 67859 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2576 1920 0 384 1 1722622556 52701952 1 0 4 3 3 2 4 5898240 4423680 3686400 2950922 6739200 150 150 159 1185 932 0 3 7 1 44 0 0 0 0 0 +592 1783857474844376500 DEPTH 11 1 0.72748882049349262 0.37478705281090291 0 8 0 8 1 0 1918 53 2540 23720596 125760 1308.0228881835938 8.716899999999999 2180.0437999999999 120960 67742 1 0 0 0.77656064730147123 4096 2048 384 12 96 2540 1920 0 384 1 1727072264 57151660 1 0 4 3 2 2 5 5898240 4423680 2949120 2950983 7488000 150 150 150 813 1277 1 0 7 1 44 0 0 0 0 2 +593 1783857477060774400 DEPTH 42 1 0.79317158841198132 0 0 4 0 4 0 0 4096 25 2596 23677771 81600 1317.4548492431641 8.6677 2214.4773 120960 50003 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2596 1920 0 384 1 1731579092 61658488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426386 4492800 314 150 291 1342 499 0 0 0 0 25 0 0 0 0 0 +594 1783857479273233400 DEPTH 56 1 0.73739787590666483 0.26575809199318562 2 5 2 5 0 0 4096 58 2553 23698518 103680 1314.4504241943359 8.6626999999999992 2141.8045000000002 120960 62680 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2553 1920 0 384 1 1736042060 66121456 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 150 150 156 1120 977 2 0 3 5 48 0 0 0 0 0 +595 1783857482603168000 DEPTH 21 1 0.72757307418164108 0.56218057921635434 0 10 0 10 0 0 2157 31 2563 23720573 125760 1306.0794525146484 8.6431000000000004 3263.2583 80640 47248 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2563 1920 0 384 1 1740515308 3485884 1 0 5 2 2 2 5 7372800 2949120 2949120 2950958 7488000 150 150 150 544 1569 0 0 0 0 31 0 0 0 0 0 +596 1783857484745271800 DEPTH 38 1 0.72759813001166163 0.55451448040885853 1 9 1 9 0 0 1797 56 2537 23723451 128640 1384.0845031738281 9.2322999999999986 2077.8724000000002 114240 55839 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2537 1920 0 384 1 1744961956 7932532 1 0 4 3 2 2 5 5898240 4177920 2949120 2950956 7737600 156 150 162 780 1289 0 0 6 5 45 0 0 0 0 0 +597 1783857487010226100 DEPTH 41 1 0.72762316421683493 0.55451448040885853 1 9 1 9 0 0 1759 47 2543 23720552 125760 1395.0905303955078 9.225200000000001 2201.0261 120960 70235 1 1 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2543 1920 0 384 1 1749414724 12385300 1 0 4 3 2 2 5 5898240 4423680 2949120 2950935 7488000 150 150 150 363 1730 0 0 1 2 43 0 0 0 0 0 +598 1783857489371616000 DEPTH 53 1 0.72758148061439054 0.37478705281090291 0 8 0 8 0 0 4039 75 2561 23720562 125760 1410.4760589599609 8.6418999999999997 2292.5785000000001 80640 38542 1 0 0 0.26169361010444037 4096 2048 384 12 96 2561 1920 0 384 1 1753885852 16856428 1 0 4 2 3 2 5 5898240 2949120 4423680 2950885 7488000 162 150 150 867 1232 0 0 0 2 73 0 0 0 0 0 +599 1783857491413022700 DEPTH 16 1 0.72760461000545318 0.3594548551959113 2 6 2 6 0 0 2522 69 2539 23720635 125760 1339.9070892333984 8.6832000000000011 1972.1850999999999 80640 38411 1 0 0.0083694639206441448 0.49109794333233792 4096 2048 384 12 96 2539 1920 0 384 1 1758334540 21305116 1 0 4 2 3 2 5 5898240 2949120 4423680 2950964 7488000 150 150 150 364 1725 1 0 0 6 62 0 0 0 0 0 +600 1783857493641502100 DEPTH 1 1 0.72762771770499479 0.36712095400340705 1 7 1 7 0 0 2477 47 2609 23709102 114240 1334.4329986572266 8.6402999999999999 2152.0927000000001 120960 68634 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2609 1920 0 384 1 1762854628 25825204 1 0 4 3 3 2 4 5898240 4423680 3686400 2951008 6739200 150 150 150 900 1259 0 0 2 3 42 0 0 0 0 0 +601 1783857495728255500 DEPTH 55 1 0.78926002323458566 0.73424190800681421 2 10 2 9 1 0 899 71 2517 23742661 147840 1398.9284515380859 9.3607000000000014 1940.6174000000001 80640 37880 1 0 0.14255978798549673 0.91638801669695813 4096 2048 384 12 96 2517 1920 0 384 1 1767280876 30251452 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 150 150 150 168 1899 0 0 0 0 71 0 0 0 0 1 +602 1783857498022589700 DEPTH 26 1 0.79068732442173817 0.74957410562180571 0 12 0 12 1 0 1058 134 2569 23742642 147840 1370.5277404785156 8.6740000000000013 2208.0596999999998 80640 36217 1 0 1.2557913710712763e-08 1.0982381371062342 4096 2048 384 12 96 2569 1920 0 384 1 1771760164 34730740 1 0 4 2 2 2 6 5898240 2949120 2949120 2950946 8985600 150 150 150 150 1969 0 2 0 0 132 0 0 0 0 2 +603 1783857500399753100 DEPTH 9 1 0.73809052135531306 0.27342419080068137 1 6 1 6 0 0 2065 45 2600 23716750 121920 1413.4538116455078 8.7006999999999994 2309.9213 87360 43555 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2600 1920 0 384 1 1776271072 39241648 1 0 4 3 3 2 4 5898240 3194880 4423680 2950959 7238400 150 150 151 1252 897 0 0 1 1 43 0 0 0 0 0 +604 1783857502613631500 DEPTH 42 1 0.76063846640374433 0 0 4 0 4 0 0 4096 24 2597 23677781 81600 1335.8714904785156 8.6269000000000009 2212.1525999999999 120960 40387 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2597 1920 0 384 1 1780778920 43749496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 272 150 264 1414 497 0 0 0 0 24 0 0 0 0 0 +605 1783857504747612900 DEPTH 32 1 0.72887227363682672 0.4608177172061329 1 8 1 8 0 0 2282 74 2552 23742922 147840 1315.820556640625 8.6494 2074.6749 80640 42610 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2552 1920 0 384 1 1785240868 48211444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 150 150 156 152 1944 3 0 7 8 56 0 0 0 0 0 +606 1783857506952271000 DEPTH 33 1 0.72776588105144846 0.36712095400340705 1 7 1 7 0 0 2866 67 2540 23716751 121920 1325.9038696289062 8.6714000000000002 2131.0657000000001 87360 44017 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2540 1920 0 384 1 1789690576 52661152 1 0 4 3 3 2 4 5898240 3194880 4423680 2950905 7238400 150 150 151 496 1593 0 0 2 8 57 0 0 0 0 0 +607 1783857509188595200 DEPTH 46 1 0.72778882821473734 0.37478705281090291 0 8 0 8 0 0 2445 25 2588 23709055 114240 1346.6379241943359 8.7697000000000003 2156.1696000000002 120960 69048 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2588 1920 0 384 1 1794189244 57159820 1 0 4 3 3 2 4 5898240 4423680 3686400 2950960 6739200 150 150 151 948 1189 0 0 2 0 23 0 0 0 0 0 +608 1783857511119267000 DEPTH 34 1 0.72730629151840676 0.8356047700170357 1 12 1 12 0 0 610 52 2574 23741697 147840 1307.9419403076172 8.6129999999999995 1858.356 80640 46826 1 0 0.00024166908971304853 1.8243527249293958 4096 2048 384 12 96 2574 1920 0 384 1 1798673632 61644208 1 0 5 2 2 1 6 7372800 2949120 2949120 1475439 8985600 156 150 150 150 1968 0 0 0 1 51 0 0 0 0 0 +609 1783857511485809900 REFRESH 18 0 0.72594781350546878 0.9293015332197615 1 13 1 13 0 0 418 10 412 3988955 56640 228.01203918457031 1.4422999999999999 305.26760000000002 6720 4808 0 0 0.0012150407760339716 1.5464044125342757 4096 2048 64 1 16 412 320 0 64 0 1799402096 62372672 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 26 25 25 26 310 0 0 0 0 10 0 0 0 0 0 +610 1783857511880605400 REFRESH 57 0 0.73439386132369622 0.27342419080068137 1 6 1 6 0 0 3590 46 411 3987984 55680 229.72108459472656 1.6989000000000001 330.9692 20160 14951 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 411 320 0 64 0 1800129540 63100116 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 25 171 165 0 0 0 17 29 0 0 0 0 0 +611 1783857512272929000 REFRESH 51 0 0.72597714248309986 0.91396933560476989 3 11 3 11 0 0 484 18 402 3988876 56640 227.18156433105469 1.4379999999999999 314.62759999999997 13440 9755 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 402 320 0 64 0 1800847804 63818380 1 0 5 2 2 1 6 1228800 491520 491520 245835 1497600 25 25 25 32 295 0 0 0 1 17 0 0 0 0 0 +612 1783857512612334300 REFRESH 53 0 0.6127690729853309 0.37478705281090291 0 8 0 8 0 0 4066 56 409 3988110 55680 228.52096557617188 1.4536 337.79129999999998 13440 8151 0 0 0 0.26169361010444037 4096 2048 64 1 16 409 320 0 64 0 1801573208 64543784 1 0 4 2 3 3 4 983040 491520 737280 737501 998400 26 25 25 60 273 0 0 0 8 48 0 0 0 0 0 +613 1783857512990033100 REFRESH 43 0 0.7187144859863408 0.8279386712095399 2 11 2 11 0 0 717 14 424 3988871 56640 227.34130859375 1.4433 315.61169999999998 13440 9723 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 424 320 0 64 0 1802313912 65284488 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 25 25 25 39 310 0 0 0 2 12 0 0 0 0 0 +614 1783857513391440200 REFRESH 3 0 0.72277853652506896 0.64054514480408853 2 9 2 9 0 0 996 24 413 3988957 56640 225.92521667480469 1.4468000000000001 327.78750000000002 13440 8684 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 413 320 0 64 0 1803043396 66013972 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 86 50 226 0 0 3 1 20 0 0 0 0 0 +615 1783857513707300300 REFRESH 32 0 0.57338327864033134 0.4608177172061329 1 8 1 8 0 0 2293 42 413 3988988 56640 227.48774719238281 1.4404999999999999 314.0761 13440 8553 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 413 320 0 64 0 1803772880 66743456 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 26 25 33 33 296 0 0 1 3 38 0 0 0 0 0 +616 1783857515241633100 REFRESH 46 0 0.56285808723298814 0.37478705281090291 0 8 0 8 0 0 2451 20 422 3987968 55680 229.43136596679688 1.4358 1532.2974999999999 20160 12650 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 422 320 0 64 0 1804511624 373764 1 0 4 3 3 2 4 983040 737280 737280 491646 998400 25 25 25 188 159 0 0 0 3 17 0 0 0 0 0 +617 1783857515632954300 REFRESH 21 0 0.69201763164174046 0.56218057921635434 0 10 0 10 0 0 2163 27 415 3988458 56160 226.76786804199219 1.4370000000000001 330.78899999999999 13440 9078 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 415 320 0 64 0 1805243148 1105288 1 0 5 2 2 2 5 1228800 491520 491520 491658 1248000 25 25 25 162 178 0 0 0 10 17 0 0 0 0 0 +618 1783857516036140600 REFRESH 38 0 0.69204149253861624 0.55451448040885853 1 9 1 9 0 0 1798 16 419 3988492 56160 227.94137573242188 1.4307000000000001 322.90600000000001 20160 14827 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 419 320 0 64 0 1805978752 1840892 1 0 4 3 2 2 5 983040 737280 491520 491692 1248000 25 25 25 212 132 0 0 0 4 12 0 0 0 0 0 +619 1783857516496237600 REFRESH 56 0 0.73305985737437473 0.26575809199318562 2 5 2 5 0 0 4096 8 425 3987993 55680 234.11712646484375 1.5458000000000001 393.8793 20160 11903 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 425 320 0 64 0 1806720476 2582616 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 26 267 82 0 0 0 3 5 0 0 0 0 0 +620 1783857516830637900 REFRESH 33 0 0.61294675310609392 0.36712095400340705 1 7 1 7 0 0 2878 38 420 3987972 55680 230.43788146972656 1.4371 332.39769999999999 20160 14894 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 420 320 0 64 0 1807457100 3319240 1 0 4 3 3 2 4 983040 737280 737280 491650 998400 25 25 25 115 230 0 0 1 8 29 0 0 0 0 0 +621 1783857517205677000 REFRESH 37 0 0.72198178288990589 0.8356047700170357 1 12 1 12 0 0 870 31 401 3988973 56640 226.73817443847656 1.4339 306.07150000000001 13440 9832 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 401 320 0 64 0 1808174344 4036484 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 26 25 25 32 293 0 0 0 2 29 0 0 0 0 0 +622 1783857517616130700 REFRESH 39 0 0.7256548200564118 0.55451448040885853 1 9 1 9 0 0 1414 4 420 3988970 56640 226.24665832519531 1.4427000000000001 347.02749999999997 13440 9751 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 420 320 0 64 0 1808910968 4773108 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 40 305 0 0 0 0 4 0 0 0 0 0 +623 1783857518063770700 REFRESH 35 0 0.72195076495877597 0.8279386712095399 2 11 2 11 0 0 967 11 409 3988946 56640 227.09146118164062 1.4348000000000001 304.76179999999999 13440 9750 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 409 320 0 64 0 1809636372 5498512 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 28 305 0 0 0 0 11 0 0 0 0 0 +624 1783857518438705700 REFRESH 1 0 0.71303507198390093 0.36712095400340705 1 7 1 7 0 0 2488 27 420 3988015 55680 242.45657348632812 1.4328000000000001 373.0213 20160 12700 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 420 320 0 64 0 1810372996 6235136 1 0 4 3 3 2 4 983040 737280 737280 491695 998400 25 25 25 169 176 0 0 0 7 20 0 0 0 0 0 +625 1783857518859748800 REFRESH 45 0 0.72361530825587073 0.45315161839863699 2 7 2 7 0 0 1745 23 421 3988474 56160 250.47756958007812 1.5612999999999999 360.54219999999998 20160 14929 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 421 320 0 64 0 1811110640 6972780 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 25 102 244 0 0 1 5 17 0 0 0 0 0 +626 1783857519251370900 REFRESH 0 0 0.72202593399210002 0.8279386712095399 2 11 2 11 0 0 781 18 416 3988948 56640 242.97369384765625 1.4347000000000001 322.93740000000003 13440 9753 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 416 320 0 64 0 1811843184 7705324 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 31 310 0 0 0 0 18 0 0 0 0 0 +627 1783857519698068200 REFRESH 27 0 0.72639262200949883 0.93696763202725719 0 14 0 14 0 0 786 29 407 3988959 56640 229.60025024414062 1.4824999999999999 318.75290000000001 6720 4741 0 0 8.0397889587065732e-09 1.0603171007975938 4096 2048 64 1 16 407 320 0 64 0 1812566548 8428688 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 26 306 0 0 0 0 29 0 0 0 0 0 +628 1783857520080525900 REFRESH 4 0 0.71981864686144825 0.8356047700170357 1 12 1 12 0 0 255 6 420 3988885 56640 237.25875854492188 1.4346000000000001 315.63749999999999 13440 10018 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 420 320 0 64 0 1813303172 9165312 1 0 6 2 1 1 6 1474560 491520 245760 245845 1497600 27 25 25 41 302 0 0 0 0 6 0 0 0 0 0 +629 1783857520505486400 REFRESH 13 0 0.7332449844539759 0.27342419080068137 1 6 1 6 0 0 3359 37 423 3987985 55680 241.40185546875 1.4533 361.27449999999999 20160 12702 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 423 320 0 64 0 1814042856 9904996 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 25 199 149 0 0 0 16 21 0 0 0 0 0 +630 1783857520816347000 REFRESH 55 0 0.88992360721743535 0.64054514480408853 2 9 2 9 0 0 902 17 405 3988953 56640 228.5875244140625 1.4311 309.44670000000002 13440 8168 0 0 0.14255978798549673 0.91638801669695813 4096 2048 64 1 16 405 320 0 64 0 1814764180 10626320 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 27 303 0 0 0 1 16 0 0 0 0 0 +631 1783857521217693400 REFRESH 11 0 0.72329795741105363 0.37478705281090291 0 8 0 8 0 0 1922 13 421 3988458 56160 228.74214172363281 1.4313 346.81330000000003 20160 12485 0 0 0 0.77656064730147123 4096 2048 64 1 16 421 320 0 64 0 1815501824 11363964 1 0 4 3 2 2 5 983040 737280 491520 491657 1248000 25 25 25 242 104 0 0 3 0 10 0 0 0 0 0 +632 1783857521530109100 REFRESH 26 0 0.78764149426426355 0.74957410562180571 0 12 0 12 0 0 1099 61 414 3988955 56640 227.82975769042969 1.4298 311.03640000000001 13440 9446 0 0 1.2557913710712763e-08 1.0982381371062342 4096 2048 64 1 16 414 320 0 64 0 1816232328 12094468 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 29 309 0 0 0 0 61 0 0 0 0 0 +633 1783857521892390600 REFRESH 12 0 0.72242193132485089 0.63287904599659284 3 8 3 8 0 0 1134 9 427 3988934 56640 227.55430603027344 1.4293 301.33019999999999 13440 8966 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 427 320 0 64 0 1816976092 12838232 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 25 73 279 0 0 0 0 9 0 0 0 0 0 +634 1783857522253576900 REFRESH 16 0 0.72325436824653067 0.3594548551959113 2 6 2 6 0 0 2529 23 411 3988079 55680 230.01907348632812 1.4283999999999999 306.46519999999998 13440 8167 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 411 320 0 64 0 1817703536 13565676 1 0 4 2 3 3 4 983040 491520 737280 737514 998400 25 25 25 47 289 0 0 0 6 17 0 0 0 0 0 +635 1783857522564765600 REFRESH 34 0 0.72106258858716532 0.8356047700170357 1 12 1 12 0 0 613 14 414 3988887 56640 226.77503967285156 1.6173999999999999 309.76859999999999 13440 9254 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 414 320 0 64 0 1818434040 14296180 1 0 5 2 2 1 6 1228800 491520 491520 245847 1497600 26 25 25 44 294 0 0 0 3 11 0 0 0 0 0 +636 1783857522922130400 REFRESH 6 0 0.7189804384597458 0.91396933560476989 3 11 3 11 0 0 365 7 419 3988975 56640 227.01875305175781 1.4298 301.24599999999998 6720 5064 0 0 0.078490995891016657 0.16637572843653256 3829 1781 64 1 16 419 320 0 64 0 1819169644 15031784 1 0 5 1 2 2 6 1228800 245760 491520 491694 1497600 25 25 25 28 316 0 0 0 1 6 0 0 0 0 0 +637 1783857523291569600 REFRESH 8 0 0.73344948375346486 0.26575809199318562 2 5 2 5 0 0 2151 18 409 3988049 55680 228.76876831054688 1.4389000000000001 313.00810000000001 13440 8231 0 0 0.029802894263159324 0.94143050940108985 4096 2048 64 1 16 409 320 0 64 0 1819895048 15757188 1 0 4 2 3 3 4 983040 491520 737280 737486 998400 26 25 26 139 193 0 0 0 8 10 0 0 0 0 0 +638 1783857523741769400 REFRESH 40 0 0.72249442815900666 0.64821124361158422 1 10 1 10 0 0 1440 8 411 3988962 56640 226.07667541503906 1.4309000000000001 337.1173 13440 9587 0 0 0.026057215024178938 1.7176440476922248 4096 2048 64 1 16 411 320 0 64 0 1820622492 16484632 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 33 303 0 0 1 0 7 0 0 0 0 0 +639 1783857524099452600 REFRESH 36 0 0.72234914659680427 0.82027257240204421 3 10 3 10 0 0 1047 28 403 3988951 56640 226.79449462890625 1.4300999999999999 298.35320000000002 13440 9758 0 0 0.063856168107744679 0.17242192002112078 4096 2048 64 1 16 403 320 0 64 0 1821341776 17203916 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 32 295 0 0 0 1 27 0 0 0 0 0 +640 1783857524505038600 REFRESH 20 0 0.72873116337622856 0.26575809199318562 2 5 2 5 0 0 1809 6 434 3988014 55680 228.94181823730469 1.4274 350.20510000000002 20160 12053 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 434 320 0 64 0 1822092680 17954820 1 0 4 3 3 2 4 983040 737280 737280 491694 998400 25 25 27 250 107 0 0 0 0 6 0 0 0 0 0 +641 1783857524927222800 REFRESH 44 0 0.72779115409382134 0.36712095400340705 1 7 1 7 0 0 1767 30 420 3987996 55680 230.05389404296875 1.4316 365.42570000000001 20160 14827 0 0 0.012841804315354343 2.1497588459311827 4096 2048 64 1 16 420 320 0 64 0 1822829304 18691444 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 84 261 0 0 0 2 28 0 0 0 0 0 +642 1783857525284152200 REFRESH 47 0 0.72242315927615453 0.8279386712095399 2 11 2 11 0 0 540 12 410 3988976 56640 227.48057556152344 1.4339 301.39409999999998 13440 9779 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 410 320 0 64 0 1823555728 19417868 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 25 29 305 0 0 0 0 12 0 0 0 0 0 +643 1783857525760816000 REFRESH 30 0 0.72402731194820269 0.4608177172061329 1 8 1 8 0 0 2709 71 412 3988976 56640 228.1871337890625 1.4296 314.31470000000002 13440 8503 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 412 320 0 64 0 1824284192 20146332 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 67 39 255 0 0 5 1 65 0 0 0 0 0 +644 1783857526159090000 REFRESH 54 0 0.7240499919090766 0.4608177172061329 1 8 1 8 0 0 976 22 424 3988468 56160 228.48716735839844 1.4289000000000001 342.26889999999997 20160 14841 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 424 320 0 64 0 1825024896 20887036 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 141 208 0 0 0 6 16 0 0 0 0 0 +645 1783857526520831600 REFRESH 14 0 0.72343905961002464 0.65587734241908002 0 11 0 11 0 0 1345 34 417 3988954 56640 229.76101684570312 1.429 307.30959999999999 13440 9009 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 417 320 0 64 0 1825758460 21620600 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 27 25 38 27 300 0 0 1 0 33 0 0 0 0 0 +646 1783857526922806300 REFRESH 25 0 0.72409528664995237 0.4608177172061329 1 8 1 8 0 0 2111 16 420 3988478 56160 229.56442260742188 1.4550000000000001 348.18700000000001 20160 14869 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 420 320 0 64 0 1826495084 22357224 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 200 145 0 1 0 3 12 0 0 0 0 0 +647 1783857527329766500 REFRESH 17 0 0.73369503012136661 0.28109028960817717 0 7 0 7 0 0 3093 15 424 3987971 55680 228.78924560546875 1.4362999999999999 351.62139999999999 20160 12006 0 0 0 0.12975055607268157 4096 2048 64 1 16 424 320 0 64 0 1827235788 23097928 1 0 4 3 3 2 4 983040 737280 737280 491650 998400 25 25 25 263 86 0 0 0 1 14 0 0 0 0 0 +648 1783857527728101400 REFRESH 52 0 0.72373465536548842 0.36712095400340705 1 7 1 7 0 0 1758 21 426 3987992 55680 228.15437316894531 1.4330000000000001 340.98820000000001 20160 12523 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 426 320 0 64 0 1827978532 23840672 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 28 217 131 0 0 2 3 16 0 0 0 0 0 +649 1783857528142414300 REFRESH 50 0 0.7279882784705245 0.64054514480408853 2 9 2 9 0 0 953 18 418 3988934 56640 226.76710510253906 1.4333 305.41090000000003 13440 9287 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 418 320 0 64 0 1828713116 24575256 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 46 27 295 0 0 1 4 13 0 0 0 0 0 +650 1783857528510749800 REFRESH 28 0 0.72261948820670885 0.8279386712095399 2 11 2 11 0 0 555 16 408 3988965 56640 228.35711669921875 1.5769 313.73129999999998 13440 9296 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 408 320 0 64 0 1829437500 25299640 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 25 26 306 0 0 0 0 16 0 0 0 0 0 +651 1783857528878784600 REFRESH 23 0 0.72597725726275986 0.74190800681430991 1 11 1 11 0 0 3245 9 413 3988942 56640 228.19737243652344 1.4287000000000001 308.19839999999999 13440 9660 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 413 320 0 64 0 1830166984 26029124 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 30 308 0 0 0 0 9 0 0 0 0 0 +652 1783857529249463600 REFRESH 2 0 0.7242414409278406 0.45315161839863699 2 7 2 7 0 0 2690 69 412 3988971 56640 228.13414001464844 1.4317 314.46159999999998 13440 8336 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 412 320 0 64 0 1830895448 26757588 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 26 46 33 282 0 0 2 0 67 0 0 0 0 0 +653 1783857529606162000 REFRESH 5 0 0.72269272558903608 0.8279386712095399 2 11 2 11 0 0 724 17 417 3988877 56640 225.81964111328125 1.4331 299.39870000000002 13440 9733 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 417 320 0 64 0 1831629012 27491152 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 25 25 26 49 292 0 0 1 3 13 0 0 0 0 0 +654 1783857529956204100 REFRESH 15 0 0.71845927375765206 0.91396933560476989 3 11 3 11 0 0 297 18 409 3988867 56640 227.52767944335938 1.4291 298.7004 6720 4771 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 1832354416 28216556 1 0 6 1 2 1 6 1474560 245760 491520 245827 1497600 26 25 25 41 292 0 0 0 1 17 0 0 0 0 0 +655 1783857530312924000 REFRESH 10 0 0.72692923448713975 0.64821124361158422 1 10 1 10 0 0 988 17 419 3988953 56640 227.33824157714844 1.4282999999999999 303.27460000000002 13440 9686 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 419 320 0 64 0 1833090020 28952160 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 40 304 0 0 0 0 17 0 0 0 0 0 +656 1783857530666116700 REFRESH 29 0 0.72350462782313163 0.82027257240204421 3 10 3 10 0 0 1043 14 424 3988977 56640 228.23321533203125 1.4329000000000001 301.60579999999999 13440 9749 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 424 320 0 64 0 1833830724 29692864 1 0 4 2 2 2 6 983040 491520 491520 491697 1497600 26 25 25 28 320 0 0 0 1 13 0 0 0 0 0 +657 1783857531070227400 REFRESH 31 0 0.72690805289449667 0.3594548551959113 2 6 2 6 0 0 2151 19 421 3988477 56160 228.8404541015625 1.637 345.6739 20160 14033 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 1834568368 30430508 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 26 220 125 0 0 0 6 13 0 0 0 0 0 +658 1783857531432258000 REFRESH 42 0 0.8988624312165383 0 0 4 0 4 0 0 4096 10 428 3987684 55200 229.71186828613281 1.4383999999999999 360.69940000000003 20160 12642 0 0 0 0.0086253377849846019 4096 2048 64 1 16 428 320 0 64 0 1835313152 31175292 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 67 25 55 204 77 0 0 0 0 10 0 0 0 0 0 +659 1783857531806504000 REFRESH 19 0 0.722840498124245 0.8279386712095399 2 11 2 11 0 0 783 16 413 3988959 56640 227.90553283691406 1.9752000000000001 319.62670000000003 13440 9798 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 413 320 0 64 0 1836042636 31904776 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 28 310 0 0 0 0 16 0 0 0 0 0 +660 1783857532212237000 REFRESH 9 0 0.73437075138286478 0.27342419080068137 1 6 1 6 0 0 2106 78 420 3987997 55680 230.46144104003906 1.4296 335.34570000000002 20160 14896 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 420 320 0 64 0 1836779260 32641400 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 28 148 194 0 0 1 37 40 0 0 0 0 0 +661 1783857532579612700 REFRESH 22 0 0.72725458355408779 0.91396933560476989 3 11 3 11 0 0 442 18 414 3988883 56640 228.48512268066406 1.4298 306.96969999999999 13440 9728 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 414 320 0 64 0 1837509764 33371904 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 26 25 25 40 298 0 0 0 1 17 0 0 0 0 0 +662 1783857533024110300 REFRESH 48 0 0.73394162664025941 0.26575809199318562 2 5 2 5 0 0 2036 11 420 3988019 55680 228.37248229980469 1.4366000000000001 352.71789999999999 20160 11929 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 420 320 0 64 0 1838246388 34108528 1 0 4 3 3 2 4 983040 737280 737280 491698 998400 25 25 26 178 166 0 0 0 4 7 0 0 0 0 0 +663 1783857533401515900 REFRESH 58 0 0.7273042486063086 0.92163543441226559 2 12 2 12 1 0 475 12 414 3988880 56640 227.378173828125 1.4298 311.21129999999999 13440 9726 0 0 0.012114827852077684 1.7732017149705077 4096 2048 64 1 16 414 320 0 64 0 1838976892 34839032 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 27 25 25 27 310 1 0 0 0 11 0 0 0 0 1 +664 1783857533776889200 REFRESH 41 0 0.7231146167536473 0.55451448040885853 1 9 1 9 0 0 1771 40 416 3988490 56160 228.37248229980469 1.4308000000000001 318.5813 20160 13737 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 416 320 0 64 0 1839709436 35571576 1 0 4 3 2 2 5 983040 737280 491520 491690 1248000 25 25 25 134 207 0 0 0 9 31 0 0 0 0 0 +665 1783857534134504900 REFRESH 24 0 0.72052515648230175 1 4 11 4 11 0 0 478 15 406 3988953 56640 228.04786682128906 1.4333 303.1866 6720 4800 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 406 320 0 64 0 1840431780 36293920 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 27 25 25 25 304 0 0 0 0 15 0 0 0 0 0 +666 1783857534504099400 REFRESH 7 0 0.72300769049882618 0.8356047700170357 1 12 1 12 0 0 768 33 404 3988947 56640 228.15129089355469 1.4359999999999999 314.89109999999999 13440 9763 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 404 320 0 64 0 1841152084 37014224 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 32 297 0 0 0 0 33 0 0 0 0 0 +667 1783857534924870500 REFRESH 49 0 0.72304439281980593 0.82027257240204421 3 10 3 10 0 0 994 28 408 3988967 56640 227.35154724121094 1.431 306.6413 13440 9803 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 408 320 0 64 0 1841876468 37738608 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 42 291 0 0 0 1 27 0 0 0 0 0 +668 1783857536754420000 DEPTH 55 1 0.8677471137592242 0.64054514480408853 2 9 2 9 0 0 917 76 2531 23742689 147840 1322.1785736083984 8.5921000000000003 1828.1521 80640 41004 1 0 0.14255978798549673 0.91638801669695813 4096 2048 384 12 96 2531 1920 0 384 1 1846316996 42179136 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 150 150 150 159 1922 0 0 0 0 76 0 0 0 0 0 +669 1783857538987717300 DEPTH 26 1 0.77525630103378529 0.74957410562180571 0 12 0 12 1 0 1119 105 2550 23742666 147840 1368.8412170410156 8.6290999999999993 2169.2842000000001 80640 45930 1 1 2.1555390870846467e-08 0.90586016598801888 4096 2048 384 12 96 2550 1920 0 384 1 1850776904 46639044 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 150 150 150 150 1950 0 0 0 3 101 0 0 0 0 1 +670 1783857541439757000 DEPTH 42 1 0.76643584799654796 0 0 4 0 4 0 0 4096 27 2586 23677999 81600 1422.8902282714844 8.8532000000000011 2330.8609000000001 120960 61329 1 0 0 0.0086253377849846019 4096 2048 384 12 96 2586 1920 0 384 1 1855273532 51135672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 352 150 315 1266 503 0 0 0 0 27 0 0 0 0 0 +671 1783857543807250700 DEPTH 57 1 0.73082935142611549 0.27342419080068137 1 6 1 6 0 0 3599 50 2552 23698536 103680 1409.4909515380859 8.9908999999999999 2297.0542999999998 120960 69710 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2552 1920 0 384 1 1859735480 55597620 1 0 4 3 3 2 4 5898240 4423680 4423680 2950993 5990400 150 150 150 546 1556 0 0 0 0 50 0 0 0 0 0 +672 1783857545944448100 DEPTH 8 1 0.72947556992712448 0.26575809199318562 2 5 2 5 0 0 2153 33 2547 23699488 103680 1421.6889343261719 8.8626000000000005 2135.0083 80640 38549 1 0 0.029802894263159324 0.94143050940108985 4096 2048 384 12 96 2547 1920 0 384 1 1864192328 60054468 1 0 4 2 3 3 4 5898240 2949120 4423680 4426489 5990400 154 150 150 700 1393 0 0 0 1 32 0 0 0 0 0 +673 1783857548106969800 DEPTH 13 1 0.72946548752573515 0.27342419080068137 1 6 1 6 0 0 3375 61 2560 23694814 99840 1350.9519500732422 8.6425000000000001 2160.8317000000002 120960 63384 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2560 1920 0 384 1 1868662436 64524576 1 0 4 3 3 3 3 5898240 4423680 4423680 3196874 5740800 150 150 154 793 1313 0 2 1 1 57 0 0 0 0 0 +674 1783857551663688100 DEPTH 56 1 0.7275129684665097 0.26575809199318562 2 5 2 5 0 0 4096 67 2575 23694906 99840 1341.1443328857422 8.6281000000000017 3418.4584 120960 57090 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2575 1920 0 384 1 1873147924 1901456 1 0 4 3 3 3 3 5898240 4423680 4423680 3196891 5740800 150 150 156 1307 812 2 0 0 7 58 0 0 0 0 0 +675 1783857553898398100 DEPTH 44 1 0.72315620815095105 0.36712095400340705 1 7 1 7 0 0 1780 61 2591 23698495 103680 1373.9407348632812 8.7934000000000001 2176.8065999999999 120960 69337 1 0 0.012841804315354343 2.1497588459311827 4096 2048 384 12 96 2591 1920 0 384 1 1877649652 6403184 1 0 4 3 3 2 4 5898240 4423680 4423680 2950960 5990400 150 150 150 176 1965 3 0 8 0 50 0 0 0 0 0 +676 1783857556322071400 DEPTH 17 1 0.729586402461885 0.28109028960817717 0 7 0 7 0 0 3110 52 2574 23698576 103680 1328.6973571777344 8.815100000000001 2228.6759000000002 120960 57757 1 0 0 0.12975055607268157 4096 2048 384 12 96 2574 1920 0 384 1 1882134040 10887572 1 0 4 3 3 2 4 5898240 4423680 4423680 2950964 5990400 150 150 150 855 1269 1 0 1 0 50 0 0 0 0 0 +677 1783857558656109500 DEPTH 50 1 0.72229541743338954 0.64054514480408853 2 9 2 9 0 0 970 58 2578 23738757 144000 1311.4982299804688 8.7036999999999995 2121.2060999999999 87360 51163 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2578 1920 0 384 1 1886622508 15376040 1 0 4 3 2 2 5 5898240 3194880 2949120 2950901 8736000 150 150 150 205 1923 0 0 2 11 45 0 0 0 0 0 +678 1783857560873740200 DEPTH 20 1 0.72129227978328792 0.26575809199318562 2 5 2 5 0 0 1822 34 2631 23694922 99840 1328.0061340332031 8.6542000000000012 2155.9776999999999 120960 58531 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2631 1920 0 384 1 1891165036 19918568 1 0 4 3 3 3 3 5898240 4423680 4423680 3196903 5740800 150 150 154 1339 838 0 0 4 0 30 0 0 0 0 0 +679 1783857562850668800 DEPTH 18 1 0.72061231651568147 0.9293015332197615 1 13 1 13 0 0 423 78 2522 23742699 147840 1331.3517303466797 8.6359000000000012 1915.6727000000001 53760 32954 1 0 0.0012150407760339716 1.5464044125342757 4096 2048 384 12 96 2522 1920 0 384 1 1895596384 24349916 1 0 4 2 2 2 6 6881280 1966080 2949120 2951006 8985600 156 150 150 154 1912 0 0 0 0 78 0 0 0 0 0 +680 1783857564789916800 DEPTH 51 1 0.72061533349843243 0.91396933560476989 3 11 3 11 0 0 487 24 2576 23741751 147840 1315.3560638427734 8.7574000000000005 1874.8611000000001 80640 46278 1 0 0.069490736143882334 0.29124129273896787 4096 2048 384 12 96 2576 1920 0 384 1 1900082812 28836344 1 0 5 2 2 1 6 7372800 2949120 2949120 1475497 8985600 150 150 150 158 1968 0 1 0 1 22 0 0 0 0 0 +681 1783857566755152500 DEPTH 27 1 0.72063908918244701 0.93696763202725719 0 14 0 14 1 0 788 79 2508 23742656 147840 1320.0445251464844 8.6589999999999989 1899.1483000000001 53760 32980 1 0 2.7478736633187845e-06 0.92974165693633715 4096 2048 384 12 96 2508 1920 0 384 1 1904499880 33253412 1 0 4 2 2 2 6 6881280 1966080 2949120 2950959 8985600 150 150 150 156 1902 1 0 0 0 78 0 0 0 0 2 +682 1783857569012879900 DEPTH 52 1 0.71951248531763157 0.36712095400340705 1 7 1 7 0 0 1776 58 2571 23698553 103680 1316.6981811523438 8.8169000000000004 2187.1404000000002 120960 61593 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2571 1920 0 384 1 1908981208 37734740 1 0 4 3 3 2 4 5898240 4423680 4423680 2951016 5990400 150 150 168 1147 956 0 0 10 1 47 0 0 0 0 0 +683 1783857571231530800 DEPTH 11 1 0.71947197917479744 0.37478705281090291 0 8 0 8 1 0 1939 65 2550 23709058 114240 1308.6054534912109 8.5884 2148.6300000000001 120960 62392 1 0 0 0.76353516436491276 4096 2048 384 12 96 2550 1920 0 384 1 1913441116 42194648 1 0 4 3 3 2 4 5898240 4423680 3686400 2950961 6739200 150 150 151 995 1104 0 0 15 1 49 0 0 0 0 1 +684 1783857573471341900 DEPTH 42 1 0.78409211161017345 0 0 4 0 4 1 0 4096 24 2595 23678165 81600 1324.5501403808594 8.9106000000000005 2237.9236000000001 120960 50532 1 0 0 0.0086568640254584169 4096 2048 384 12 96 2595 1920 0 384 1 1917946924 46700456 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 288 150 279 1384 494 0 0 0 0 24 0 0 0 0 1 +685 1783857575296900900 DEPTH 55 1 0.76710518764295865 0.64054514480408853 2 9 2 9 0 0 925 60 2531 23742730 147840 1320.0458068847656 8.6020000000000003 1823.7716 80640 33072 1 0 0.14255978798549673 0.91638801669695813 4096 2048 384 12 96 2531 1920 0 384 1 1922387452 51140984 1 0 4 2 2 2 6 5898240 2949120 2949120 2950993 8985600 150 150 150 165 1916 0 0 0 0 60 0 0 0 0 0 +686 1783857577440244700 DEPTH 31 1 0.72256152624798164 0.3594548551959113 2 6 2 6 0 0 2163 39 2587 23705195 110400 1322.9353942871094 8.6417000000000002 2083.0736999999999 120960 65982 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2587 1920 0 384 1 1926885100 55638632 1 0 4 3 3 2 4 5898240 4423680 3932160 2950942 6489600 150 150 158 1135 994 0 0 8 2 29 0 0 0 0 0 +687 1783857579384825100 DEPTH 10 1 0.72144105732865216 0.64821124361158422 1 10 1 10 0 0 999 51 2546 23742628 147840 1336.1616821289062 8.5971999999999991 1874.4852000000001 80640 46874 1 0 0.0040407710321612731 2.9277816338853699 4096 2048 384 12 96 2546 1920 0 384 1 1931340928 60094460 1 0 4 2 2 2 6 5898240 2949120 2949120 2950933 8985600 150 150 150 180 1916 0 0 0 1 50 0 0 0 0 0 +688 1783857581582177700 DEPTH 9 1 0.73018904487074643 0.27342419080068137 1 6 1 6 0 0 2128 86 2551 23698507 103680 1327.4258270263672 8.7355 2130.8045000000002 120960 69533 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2551 1920 0 384 1 1935801856 64555388 1 0 4 3 3 2 4 5898240 4423680 4423680 2950968 5990400 150 150 169 728 1354 0 0 3 4 79 0 0 0 0 0 +689 1783857584922011700 DEPTH 2 1 0.71960656990379945 0.45315161839863699 2 7 2 7 0 0 2701 60 2580 23723482 128640 1316.8190765380859 8.5830000000000002 3259.5572000000002 80640 40739 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2580 1920 0 384 1 1940292444 1937156 1 0 4 2 3 2 5 5898240 2949120 4177920 2950894 7737600 150 150 161 834 1285 0 0 4 5 51 0 0 0 0 0 +690 1783857587221699500 DEPTH 45 1 0.71961805683540581 0.45315161839863699 2 7 2 7 0 0 1751 41 2572 23720573 125760 1319.9595489501953 8.610199999999999 2124.7694999999999 120960 68206 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2572 1920 0 384 1 1944774792 6419504 1 0 4 3 2 2 5 5898240 4423680 2949120 2950958 7488000 150 150 153 683 1436 0 0 4 0 37 0 0 0 0 0 +691 1783857589355676300 DEPTH 54 1 0.71963923400311502 0.4608177172061329 1 8 1 8 0 0 981 33 2553 23720630 125760 1325.6273956298828 8.5779999999999994 2072.3789000000002 120960 69724 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2553 1920 0 384 1 1949237760 10882472 1 0 4 3 2 2 5 5898240 4423680 2949120 2951012 7488000 150 150 150 461 1642 0 0 2 1 30 0 0 0 0 0 +692 1783857591519958000 DEPTH 26 1 0.74402936410574616 0.74957410562180571 0 12 0 12 1 0 1127 71 2541 23742737 147840 1332.0991821289062 8.5878999999999994 2101.6035999999999 80640 38152 1 0 1.7930431369539945e-08 0.64883163624488449 4096 2048 384 12 96 2541 1920 0 384 1 1953688488 15333200 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 150 150 150 150 1941 0 0 0 0 71 0 0 0 0 1 +693 1783857593699723100 DEPTH 48 1 0.72986444031800324 0.26575809199318562 2 5 2 5 0 0 2052 40 2588 23694856 99840 1326.4517211914062 8.6524999999999999 2120.7806999999998 120960 58291 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2588 1920 0 384 1 1958187156 19831868 1 0 4 3 3 3 3 5898240 4423680 4423680 3196862 5740800 150 150 150 617 1521 0 0 2 0 38 0 0 0 0 0 +694 1783857595869484000 DEPTH 42 1 0.74174037439514373 0 0 4 0 4 0 0 4096 17 2613 23677977 81600 1322.7970886230469 8.5966000000000005 2168.4259000000002 120960 40636 1 0 0 0.0086568640254584169 4096 2048 384 12 96 2613 1920 0 384 1 1962711324 24356036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 240 150 252 1479 492 0 0 0 0 17 0 0 0 0 0 +695 1783857597815349300 DEPTH 58 1 0.72106453860861719 0.92163543441226559 2 12 2 12 0 0 477 33 2540 23741759 147840 1322.9415130615234 8.5642999999999994 1887.4825000000001 80640 46503 1 0 0.012114827852077684 1.7732017149705077 4096 2048 384 12 96 2540 1920 0 384 1 1967161032 28805744 1 0 5 2 2 1 6 7372800 2949120 2949120 1475503 8985600 168 150 150 156 1916 0 0 0 2 31 0 0 0 0 0 +696 1783857599733083000 DEPTH 22 1 0.72099294983296547 0.91396933560476989 3 11 3 11 0 0 445 51 2544 23742364 147840 1325.2032165527344 8.6565000000000012 1854.8354999999999 60480 38505 1 0 0.0084510407612466993 0.6742119049311508 4096 2048 384 12 96 2544 1920 0 384 1 1971614820 33259532 1 0 4 2 2 2 6 7127040 2211840 2949120 2459149 8985600 161 150 150 187 1896 0 0 0 1 50 0 0 0 0 0 +697 1783857601934577800 DEPTH 32 1 0.7197658892886063 0.4608177172061329 1 8 1 8 0 0 2306 48 2561 23723548 128640 1311.9326629638672 8.6103000000000005 2139.8154 100800 51390 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2561 1920 0 384 1 1976085948 37730660 1 0 4 3 2 2 5 5898240 3686400 3440640 2950975 7737600 150 150 160 790 1311 0 0 10 1 37 0 0 0 0 0 +698 1783857604148920800 DEPTH 30 1 0.71978693087163204 0.4608177172061329 1 8 1 8 0 0 2717 43 2547 23723507 128640 1316.7902526855469 8.6309000000000005 2141.5920999999998 80640 40821 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2547 1920 0 384 1 1980542796 42187508 1 0 4 2 3 2 5 5898240 2949120 4177920 2950969 7737600 154 150 235 820 1188 0 0 2 2 39 0 0 0 0 0 +699 1783857606322640200 DEPTH 25 1 0.71980795322297308 0.4608177172061329 1 8 1 8 0 0 2121 42 2557 23720525 125760 1321.1760559082031 8.5733999999999995 2113.1812 120960 69704 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2557 1920 0 384 1 1985009844 46654556 1 0 4 3 2 2 5 5898240 4423680 2949120 2950910 7488000 150 150 150 712 1395 0 0 1 0 41 0 0 0 0 0 +700 1783857606678434600 REFRESH 28 0 0.71721858331176436 0.8279386712095399 2 11 2 11 0 0 558 16 403 3988945 56640 229.78559875488281 1.4332 302.20589999999999 13440 9114 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 403 320 0 64 0 1985729128 47373840 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 25 26 301 0 0 0 0 16 0 0 0 0 0 +701 1783857607030838600 REFRESH 25 0 0.48467103043129917 0.4608177172061329 1 8 1 8 0 0 2122 10 425 3988464 56160 230.15628051757812 1.4258999999999999 350.7115 20160 13914 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 425 320 0 64 0 1986470852 48115564 1 0 4 3 2 2 5 983040 737280 491520 491664 1248000 25 25 25 248 102 0 0 1 0 9 0 0 0 0 0 +702 1783857607464576100 REFRESH 21 0 0.71818664335571247 0.56218057921635434 0 10 0 10 0 0 2167 17 415 3988503 56160 226.89689636230469 1.4258 332.29469999999998 13440 9037 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 415 320 0 64 0 1987202376 48847088 1 0 5 2 2 2 5 1228800 491520 491520 491701 1248000 25 25 25 153 187 0 0 0 4 13 0 0 0 0 0 +703 1783857607766736100 REFRESH 55 0 0.75829595643354986 0.64054514480408853 2 9 2 9 0 0 926 10 406 3988999 56640 229.15277099609375 1.4327000000000001 300.7312 13440 7967 0 0 0.14255978798549673 0.91638801669695813 4096 2048 64 1 16 406 320 0 64 0 1987924720 49569432 1 0 4 2 2 2 6 983040 491520 491520 491701 1497600 25 25 25 27 304 0 0 0 0 10 0 0 0 0 0 +704 1783857608183550800 REFRESH 46 0 0.71979752789151075 0.37478705281090291 0 8 0 8 0 0 2451 11 421 3988018 55680 229.61868286132812 1.4330000000000001 356.90769999999998 20160 12463 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 421 320 0 64 0 1988662364 50307076 1 0 4 3 3 2 4 983040 737280 737280 491697 998400 25 25 25 194 152 0 0 0 1 10 0 0 0 0 0 +705 1783857608537754900 REFRESH 29 0 0.71799668976223718 0.82027257240204421 3 10 3 10 0 0 1043 7 420 3988971 56640 226.68185424804688 1.5647 301.64760000000001 13440 9745 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 420 320 0 64 0 1989398988 51043700 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 26 25 25 30 314 0 0 0 1 6 0 0 0 0 0 +706 1783857608854965000 REFRESH 22 0 0.564627125994554 0.91396933560476989 3 11 3 11 0 0 445 13 411 3988971 56640 229.21522521972656 1.4346000000000001 315.45780000000002 13440 9991 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 411 320 0 64 0 1990126432 51771144 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 26 25 25 35 300 0 0 0 0 13 0 0 0 0 0 +707 1783857609169274400 REFRESH 58 0 0.58473518411332526 0.92163543441226559 2 12 2 12 0 0 478 12 409 3988886 56640 228.47795104980469 1.4388000000000001 312.72390000000001 13440 9343 0 0 0.012114827852077684 1.7732017149705077 4096 2048 64 1 16 409 320 0 64 0 1990851836 52496548 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 26 25 25 32 301 0 0 0 0 12 0 0 0 0 0 +708 1783857609548451700 REFRESH 49 0 0.71741069973529104 0.82027257240204421 3 10 3 10 0 0 998 23 411 3988959 56640 227.68844604492188 1.4298999999999999 305.98259999999999 13440 9792 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 411 320 0 64 0 1991579280 53223992 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 33 303 0 0 0 2 21 0 0 0 0 0 +709 1783857609981625300 REFRESH 17 0 0.7257099727589007 0.28109028960817717 0 7 0 7 0 0 3114 13 422 3988055 55680 229.91279602050781 1.4278 373.21140000000003 20160 12166 0 0 0 0.12975055607268157 4096 2048 64 1 16 422 320 0 64 0 1992317944 53962656 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 25 261 86 0 0 1 0 12 0 0 0 0 0 +710 1783857610386941300 REFRESH 50 0 0.71707860328253381 0.64054514480408853 2 9 2 9 0 0 970 5 433 3988463 56160 229.01350402832031 1.4338 336.59660000000002 20160 14954 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 433 320 0 64 0 1993067828 54712540 1 0 4 3 2 2 5 983040 737280 491520 491663 1248000 25 25 25 154 204 0 0 0 0 5 0 0 0 0 0 +711 1783857610748312700 REFRESH 35 0 0.71746677139045179 0.8279386712095399 2 11 2 11 0 0 968 11 406 3988960 56640 227.420166015625 1.4314 303.99970000000002 13440 9668 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 406 320 0 64 0 1993790172 55434884 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 31 299 0 0 0 0 11 0 0 0 0 0 +712 1783857611086677000 REFRESH 2 0 0.69490405979504788 0.45315161839863699 2 7 2 7 0 0 2709 36 420 3988473 56160 229.41290283203125 1.4235 336.69110000000001 13440 8200 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 420 320 0 64 0 1994526796 56171508 1 0 4 2 3 2 5 983040 491520 737280 491670 1248000 25 25 25 208 137 0 0 0 15 21 0 0 0 0 0 +713 1783857611481613800 REFRESH 57 0 0.72699538406977093 0.27342419080068137 1 6 1 6 0 0 3615 37 419 3987989 55680 229.46815490722656 1.431 333.56799999999998 20160 13982 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 419 320 0 64 0 1995262400 56907112 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 25 204 140 0 0 0 16 21 0 0 0 0 0 +714 1783857611885535500 REFRESH 31 0 0.71837649470838882 0.3594548551959113 2 6 2 6 0 0 2170 32 423 3987984 55680 229.20909118652344 1.4365000000000001 335.28620000000001 20160 13818 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 423 320 0 64 0 1996002084 57646796 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 25 25 27 232 114 0 0 0 22 10 0 0 0 0 0 +715 1783857612244289300 REFRESH 34 0 0.71648762287137413 0.8356047700170357 1 12 1 12 0 0 621 29 418 3988884 56640 227.69366455078125 1.5680000000000001 303.91289999999998 13440 9163 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 418 320 0 64 0 1996736668 58381380 1 0 5 2 2 1 6 1228800 491520 491520 245844 1497600 26 25 25 47 295 0 0 0 3 26 0 0 0 0 0 +716 1783857612576303200 REFRESH 48 0 0.70578860074037042 0.26575809199318562 2 5 2 5 0 0 2071 52 414 3987668 55200 231.13011169433594 1.4673 330.15800000000002 20160 11994 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 414 320 0 64 0 1997467172 59111884 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 70 266 0 0 1 9 42 0 0 0 0 0 +717 1783857612998091700 REFRESH 20 0 0.71836127914173376 0.26575809199318562 2 5 2 5 0 0 1825 14 426 3987670 55200 229.32275390625 1.4613 355.33580000000001 20160 11985 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 426 320 0 64 0 1998209916 59854628 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 39 84 253 0 0 1 1 12 0 0 0 0 0 +718 1783857613378075800 REFRESH 14 0 0.71895941009972919 0.65587734241908002 0 11 0 11 0 0 1360 37 416 3988973 56640 229.67398071289062 1.4156 318.00029999999998 13440 8935 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 416 320 0 64 0 1998942460 60587172 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 27 25 43 27 294 0 0 0 0 37 0 0 0 0 0 +719 1783857613746148300 REFRESH 42 0 0.88965673675593104 0 0 4 0 4 0 0 4096 3 429 3987730 55200 230.74201965332031 1.4301999999999999 366.63600000000002 20160 13154 0 0 0 0.0086568640254584169 4096 2048 64 1 16 429 320 0 64 0 1999688264 61332976 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 64 25 55 211 74 0 0 0 0 3 0 0 0 0 0 +720 1783857614167762400 REFRESH 40 0 0.71657100468778379 0.64821124361158422 1 10 1 10 1 0 1441 8 418 3988956 56640 226.6982421875 1.4298 347.44229999999999 13440 9643 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 418 320 0 64 0 2000422848 62067560 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 25 36 307 0 0 0 0 8 0 0 0 0 1 +721 1783857614532490700 REFRESH 19 0 0.71769199406383111 0.8279386712095399 2 11 2 11 0 0 788 24 414 3988939 56640 226.36953735351562 1.4302999999999999 305.5566 13440 9660 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 414 320 0 64 0 2001153352 62798064 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 25 28 311 0 0 0 0 24 0 0 0 0 0 +722 1783857614895237700 REFRESH 36 0 0.71771250252329233 0.82027257240204421 3 10 3 10 1 0 1051 20 404 3988941 56640 226.37773132324219 1.4321999999999999 300.59949999999998 13440 9720 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 404 320 0 64 0 2001873656 63518368 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 25 31 297 0 1 0 1 18 0 0 0 0 1 +723 1783857615322710700 REFRESH 54 0 0.71511739350083237 0.4608177172061329 1 8 1 8 0 0 984 19 428 3988479 56160 228.86604309082031 1.4317 350.35000000000002 20160 13717 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 428 320 0 64 0 2002618440 64263152 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 25 172 181 0 1 0 6 12 0 0 0 0 0 +724 1783857615691243200 REFRESH 37 0 0.71783004892277313 0.8356047700170357 1 12 1 12 0 0 878 34 402 3988944 56640 227.704833984375 1.4371 309.51209999999998 13440 9627 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 402 320 0 64 0 2003336704 64981416 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 25 34 292 0 0 0 1 33 0 0 0 0 0 +725 1783857616067169200 REFRESH 10 0 0.71642804915793024 0.64821124361158422 1 10 1 10 0 0 1001 9 422 3988946 56640 228.48410034179688 1.4892000000000001 317.20319999999998 13440 8804 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 422 320 0 64 0 2004075368 65720080 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 51 296 0 1 0 0 8 0 0 0 0 0 +726 1783857616425127700 REFRESH 24 0 0.71531265681251099 1 4 11 4 11 0 0 479 8 399 3988947 56640 228.24755859375 1.4459 303.47190000000001 6720 4759 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 399 320 0 64 0 2004790572 66435284 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 27 25 25 25 297 0 0 0 0 8 0 0 0 0 0 +727 1783857618026374300 REFRESH 51 0 0.71509612648968057 0.91396933560476989 3 11 3 11 0 0 488 17 398 3988891 56640 227.73146057128906 1.4319 1440.3598 13440 9342 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 398 320 0 64 0 2005504836 42056 1 0 5 2 2 1 6 1228800 491520 491520 245850 1497600 25 25 25 36 287 0 0 0 0 17 0 0 0 0 0 +728 1783857618420551300 REFRESH 39 0 0.71620516062937467 0.55451448040885853 1 9 1 9 0 0 1415 9 421 3988957 56640 227.77548217773438 1.4287000000000001 340.99189999999999 13440 9601 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 421 320 0 64 0 2006242480 779700 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 39 307 0 0 0 0 9 0 0 0 0 0 +729 1783857618787017100 REFRESH 43 0 0.71518191783496277 0.8279386712095399 2 11 2 11 0 0 718 13 425 3988878 56640 227.4334716796875 1.4293 307.61720000000003 13440 9683 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 425 320 0 64 0 2006984204 1521424 1 0 5 2 2 1 6 1228800 491520 491520 245838 1497600 25 25 25 44 306 0 0 0 2 11 0 0 0 0 0 +730 1783857619179787500 REFRESH 38 0 0.71878033299553146 0.55451448040885853 1 9 1 9 0 0 1800 17 421 3988486 56160 229.60231018066406 1.4309000000000001 324.29849999999999 20160 14545 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 421 320 0 64 0 2007721848 2259068 1 0 4 3 2 2 5 983040 737280 491520 491685 1248000 25 25 25 210 136 0 0 0 3 14 0 0 0 0 0 +731 1783857619587991700 REFRESH 12 0 0.71758395389447027 0.63287904599659284 3 8 3 8 0 0 1134 8 426 3988955 56640 228.15948486328125 1.4287000000000001 302.45609999999999 13440 9058 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 426 320 0 64 0 2008464592 3001812 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 25 74 277 0 0 0 0 8 0 0 0 0 0 +732 1783857619985424900 REFRESH 53 0 0.72035015476746111 0.37478705281090291 0 8 0 8 0 0 4092 62 411 3988097 55680 230.614013671875 1.4804999999999999 328.4008 13440 8251 0 0 0 0.26169361010444037 4096 2048 64 1 16 411 320 0 64 0 2009192036 3729256 1 0 4 2 3 3 4 983040 491520 737280 737524 998400 26 25 25 83 252 0 0 0 11 51 0 0 0 0 0 +733 1783857620312702300 REFRESH 30 0 0.71531738830778724 0.4608177172061329 1 8 1 8 0 0 2733 54 415 3988489 56160 228.4031982421875 1.4479 325.79000000000002 13440 8368 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 2009923560 4460780 1 0 4 2 3 2 5 983040 491520 737280 491688 1248000 25 25 25 151 189 0 0 0 20 34 0 0 0 0 0 +734 1783857620734027700 REFRESH 45 0 0.71533729008039204 0.45315161839863699 2 7 2 7 0 0 1754 12 430 3988489 56160 230.22285461425781 1.4381999999999999 352.4513 20160 14029 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 430 320 0 64 0 2010670384 5207604 1 0 4 3 2 2 5 983040 737280 491520 491689 1248000 25 25 26 222 132 0 0 0 1 11 0 0 0 0 0 +735 1783857621135033300 REFRESH 13 0 0.72614586517050395 0.27342419080068137 1 6 1 6 0 0 3416 66 415 3987593 55200 229.88502502441406 1.4279999999999999 330.41829999999999 20160 12026 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 415 320 0 64 0 2011401908 5939128 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 84 254 0 0 0 11 55 0 0 0 0 0 +736 1783857621553264700 REFRESH 1 0 0.7204279764370316 0.36712095400340705 1 7 1 7 0 0 2493 16 422 3988000 55680 230.62016296386719 1.4308000000000001 349.30840000000001 20160 12652 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 422 320 0 64 0 2012140572 6677792 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 180 167 0 0 0 1 15 0 0 0 0 0 +737 1783857621971384700 REFRESH 9 0 0.72656440823153889 0.27342419080068137 1 6 1 6 0 0 2139 39 424 3987993 55680 230.42559814453125 1.5118 357.69560000000001 20160 13898 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 424 320 0 64 0 2012881276 7418496 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 30 232 112 0 0 0 23 16 0 0 0 0 0 +738 1783857622343401600 REFRESH 23 0 0.72039897393961427 0.74190800681430991 1 11 1 11 0 0 3251 16 412 3988934 56640 229.48147583007812 1.4327000000000001 313.66579999999999 13440 9732 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 412 320 0 64 0 2013609740 8146960 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 29 308 0 0 0 0 16 0 0 0 0 0 +739 1783857622719450400 REFRESH 15 0 0.71422246010890977 0.91396933560476989 3 11 3 11 0 0 298 14 409 3988877 56640 228.56294250488281 1.4416 313.24299999999999 13440 9813 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 2014335144 8872364 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 42 292 0 0 0 1 13 0 0 0 0 0 +740 1783857623091697400 REFRESH 26 0 0.75395038065950271 0.74957410562180571 0 12 0 12 0 0 1147 40 417 3988963 56640 226.73408508300781 1.4466000000000001 311.24160000000001 13440 8095 0 0 1.7930431369539945e-08 0.64883163624488449 4096 2048 64 1 16 417 320 0 64 0 2015068708 9605928 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 29 312 0 0 0 0 40 0 0 0 0 0 +741 1783857623521226300 REFRESH 11 0 0.71591416872264912 0.37478705281090291 0 8 0 8 0 0 1942 10 420 3987977 55680 229.64224243164062 1.4327000000000001 359.40269999999998 20160 11928 0 0 0 0.76353516436491276 4096 2048 64 1 16 420 320 0 64 0 2015805332 10342552 1 0 4 3 3 2 4 983040 737280 737280 491657 998400 25 25 27 230 113 0 0 0 1 9 0 0 0 0 0 +742 1783857623950940300 REFRESH 27 0 0.7154524293542428 0.93696763202725719 0 14 0 14 0 0 790 20 410 3988956 56640 228.69606018066406 1.4409000000000001 308.37830000000002 13440 9288 0 0 2.7478736633187845e-06 0.92974165693633715 4096 2048 64 1 16 410 320 0 64 0 2016531756 11068976 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 26 309 0 0 0 0 20 0 0 0 0 0 +743 1783857624446207400 REFRESH 6 0 0.7124049502604648 0.91396933560476989 3 11 3 11 0 0 365 9 421 3988977 56640 227.59628295898438 1.4337 423.0301 6720 4911 0 0 0.078490995891016657 0.16637572843653256 3857 1809 64 1 16 421 320 0 64 0 2017269400 11806620 1 0 5 1 2 2 6 1228800 245760 491520 491696 1497600 25 25 25 29 317 0 0 0 0 9 0 0 0 0 0 +744 1783857624822146900 REFRESH 47 0 0.71819678149526534 0.8279386712095399 2 11 2 11 0 0 544 27 412 3988976 56640 228.84658813476562 1.4303999999999999 308.67250000000001 13440 9646 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 412 320 0 64 0 2017997864 12535084 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 26 25 25 30 306 0 0 0 0 27 0 0 0 0 0 +745 1783857625210567900 REFRESH 16 0 0.72060207470529014 0.3594548551959113 2 6 2 6 0 0 2549 42 417 3988079 55680 230.23922729492188 1.4444999999999999 324.41039999999998 13440 8067 0 0 0.0083694639206441448 0.49109794333233792 4096 2048 64 1 16 417 320 0 64 0 2018731428 13268648 1 0 4 2 3 3 4 983040 491520 737280 737515 998400 25 25 25 49 293 0 0 0 4 38 0 0 0 0 0 +746 1783857625622026100 REFRESH 52 0 0.71603043119705501 0.36712095400340705 1 7 1 7 0 0 1779 16 423 3987992 55680 228.2373046875 1.4348000000000001 347.87099999999998 20160 11808 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 423 320 0 64 0 2019471112 14008332 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 29 264 80 1 0 2 2 11 0 0 0 0 0 +747 1783857626001564400 REFRESH 18 0 0.71555350463274103 0.9293015332197615 1 13 1 13 1 0 423 12 413 3988951 56640 229.823486328125 1.4237 310.00700000000001 13440 9319 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 413 320 0 64 0 2020200596 14737816 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 29 308 0 0 1 0 11 0 0 0 0 1 +748 1783857626390531600 REFRESH 3 0 0.71968385009318347 0.64054514480408853 2 9 2 9 0 0 1000 20 409 3988482 56160 227.99052429199219 1.4368000000000001 320.10840000000002 20160 14858 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 409 320 0 64 0 2020926000 15463220 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 25 34 300 0 0 0 0 20 0 0 0 0 0 +749 1783857626832558400 REFRESH 8 0 0.72643248757953693 0.26575809199318562 2 5 2 5 0 0 2159 21 418 3988090 55680 247.41171264648438 1.5285 362.05540000000002 13440 8192 0 0 0.029802894263159324 0.94143050940108985 4096 2048 64 1 16 418 320 0 64 0 2021660584 16197804 1 0 4 2 3 3 4 983040 491520 737280 737524 998400 26 25 25 166 176 0 0 0 7 14 0 0 0 0 0 +750 1783857627191260500 REFRESH 32 0 0.71565333950439269 0.4608177172061329 1 8 1 8 0 0 2320 33 421 3988486 56160 244.05197143554688 1.4331 356.81909999999999 20160 14917 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 421 320 0 64 0 2022398228 16935448 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 25 152 194 0 0 0 12 21 0 0 0 0 0 +751 1783857627579109900 REFRESH 0 0 0.7183489073180529 0.8279386712095399 2 11 2 11 0 0 783 17 414 3988965 56640 242.00909423828125 1.4305000000000001 329.49020000000002 13440 9741 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 414 320 0 64 0 2023128732 17665952 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 25 34 305 0 0 1 0 16 0 0 0 0 0 +752 1783857628021393800 REFRESH 7 0 0.71837056353768625 0.8356047700170357 1 12 1 12 0 0 771 22 409 3988957 56640 241.7049560546875 1.4338 320.59960000000001 13440 9656 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 409 320 0 64 0 2023854136 18391356 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 33 301 0 0 0 0 22 0 0 0 0 0 +753 1783857628417004600 REFRESH 41 0 0.71925704710302829 0.55451448040885853 1 9 1 9 0 0 1778 22 415 3988454 56160 243.65670776367188 1.6274 339.66969999999998 20160 13691 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 415 320 0 64 0 2024585660 19122880 1 0 4 3 2 2 5 983040 737280 491520 491652 1248000 25 25 25 121 219 0 0 0 1 21 0 0 0 0 0 +754 1783857628848090000 REFRESH 56 0 0.7247217855621042 0.26575809199318562 2 5 2 5 0 0 4096 71 418 3987649 55200 245.92384338378906 1.4976 361.95150000000001 20160 12034 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 418 320 0 64 0 2025320244 19857464 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 28 140 200 0 0 1 12 58 0 0 0 0 0 +755 1783857629243777200 REFRESH 5 0 0.7184354188444847 0.8279386712095399 2 11 2 11 0 0 726 18 421 3988870 56640 240.63385009765625 1.4356 325.51679999999999 13440 9699 0 0 0.013882409877838182 0.46729441044295411 4096 2048 64 1 16 421 320 0 64 0 2026057888 20595108 1 0 5 2 2 1 6 1228800 491520 491520 245829 1497600 25 25 25 48 298 0 0 0 1 17 0 0 0 0 0 +756 1783857629679499400 REFRESH 33 0 0.72081300097103784 0.36712095400340705 1 7 1 7 0 0 2884 32 415 3987972 55680 247.53663635253906 1.4624999999999999 374.43020000000001 20160 14679 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 415 320 0 64 0 2026789412 21326632 1 0 4 3 3 2 4 983040 737280 737280 491651 998400 25 25 25 156 184 0 0 2 7 23 0 0 0 0 0 +757 1783857630135734000 REFRESH 4 0 0.71271578489860521 0.8356047700170357 1 12 1 12 0 0 256 4 420 3988872 56640 245.39750671386719 1.4560999999999999 327.71499999999997 13440 9808 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 420 320 0 64 0 2027526036 22063256 1 0 6 2 1 1 6 1474560 491520 245760 245831 1497600 27 25 25 40 303 0 0 0 0 4 0 0 0 0 0 +758 1783857630570242000 REFRESH 44 0 0.71966365066064486 0.36712095400340705 1 7 1 7 1 0 1789 31 428 3988001 55680 249.49760437011719 1.4332 374.02929999999998 20160 13872 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 428 320 0 64 0 2028270820 22808040 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 147 206 1 0 0 12 18 0 0 0 1 0 +759 1783857632920949400 DEPTH 42 1 0.88082025966183286 0 0 4 0 4 0 0 4096 20 2608 23678077 81600 1417.3994598388672 8.6695000000000011 2281.5529000000001 120960 63842 1 0 0 0.0086568640254584169 4096 2048 384 12 96 2608 1920 0 384 1 2032789888 27327108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426506 4492800 317 150 308 1342 491 0 0 0 0 20 0 0 0 0 0 +760 1783857634935804000 DEPTH 55 1 0.81186478195665746 0.64054514480408853 2 9 2 9 0 0 941 65 2529 23742874 147840 1413.4773864746094 8.7742000000000004 1933.8744999999999 80640 38244 1 0 0.14255978798549673 0.91638801669695813 4096 2048 384 12 96 2529 1920 0 384 1 2037228376 31765596 1 0 4 2 2 2 6 5898240 2949120 2949120 2951004 8985600 150 150 150 167 1912 0 0 0 0 65 0 0 0 0 0 +761 1783857637172772800 DEPTH 57 1 0.72339832170714446 0.27342419080068137 1 6 1 6 0 0 3623 45 2551 23677375 81600 1409.8647155761719 8.7653999999999996 2181.2181 120960 68451 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2551 1920 0 384 1 2041689304 36226524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 150 1006 1095 0 0 0 3 42 0 0 0 0 0 +762 1783857639400044300 DEPTH 17 1 0.72232789300220146 0.28109028960817717 0 7 0 7 1 0 3135 53 2593 23683875 88320 1400.8364868164062 8.6365999999999996 2225.2646 120960 57035 1 1 1.7385079409068751e-05 0.10530030210765323 4096 2048 384 12 96 2593 1920 0 384 1 2046193072 40730292 1 0 4 3 3 3 3 5898240 4423680 4423680 3934684 4992000 150 150 150 1180 963 2 0 3 0 47 0 0 0 0 1 +763 1783857641751177200 DEPTH 48 1 0.72229665538322141 0.26575809199318562 2 5 2 5 0 0 2091 60 2564 23677487 81600 1410.5398406982422 8.6478999999999999 2224.6559000000002 120960 57906 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2564 1920 0 384 1 2050667260 45204480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 150 150 150 412 1702 0 0 4 1 55 0 0 0 0 0 +764 1783857643931536500 DEPTH 53 1 0.71622377861506603 0.37478705281090291 0 8 0 8 0 0 4096 61 2532 23699509 103680 1406.2164306640625 8.7257999999999996 2176.5691999999999 80640 38981 1 0 0 0.26169361010444037 4096 2048 384 12 96 2532 1920 0 384 1 2055108808 49646028 1 0 4 2 3 3 4 5898240 2949120 4423680 4426510 5990400 156 150 150 315 1761 0 0 0 1 60 0 0 0 0 0 +765 1783857646191355300 DEPTH 46 1 0.71624232162915047 0.37478705281090291 0 8 0 8 0 0 2461 34 2573 23698503 103680 1406.8172912597656 8.9031000000000002 2189.6055000000001 120960 62903 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2573 1920 0 384 1 2059592176 54129396 1 0 4 3 3 2 4 5898240 4423680 4423680 2950964 5990400 150 150 150 701 1422 0 0 0 0 34 0 0 0 0 0 +766 1783857648587836200 DEPTH 20 1 0.71564845583872638 0.26575809199318562 2 5 2 5 0 0 1836 33 2589 23677493 81600 1413.0138854980469 8.6606000000000005 2204.9980999999998 120960 57025 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2589 1920 0 384 1 2064091864 58629084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426534 4492800 150 150 214 475 1600 0 0 3 0 30 0 0 0 0 0 +767 1783857650863048200 DEPTH 26 1 0.7439998940619883 0.74957410562180571 0 12 0 12 0 0 1164 74 2551 23742691 147840 1413.7897033691406 8.7805 2207.415 80640 39621 1 0 1.7930431369539945e-08 0.64883163624488449 4096 2048 384 12 96 2551 1920 0 384 1 2068552792 63090012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 150 150 150 150 1951 0 0 0 4 70 0 0 0 0 0 +768 1783857654432450100 DEPTH 9 1 0.72272881926611654 0.27342419080068137 1 6 1 6 0 0 2158 65 2576 23687517 92160 1408.5324859619141 8.6804999999999986 3356.0403000000001 120960 69307 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2576 1920 0 384 1 2073039300 467988 1 0 4 3 3 3 3 5898240 4423680 4423680 3688767 5241600 150 150 166 1125 985 0 0 6 4 55 0 0 0 0 0 +769 1783857656720568500 DEPTH 13 1 0.72240341638952255 0.27342419080068137 1 6 1 6 0 0 3430 74 2551 23677352 81600 1408.9430847167969 8.8899000000000008 2214.8029999999999 120960 58059 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2551 1920 0 384 1 2077500228 4928916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 150 150 155 466 1630 0 0 7 2 65 0 0 0 0 0 +770 1783857659005397400 DEPTH 1 1 0.71633480205624434 0.36712095400340705 1 7 1 7 0 0 2502 44 2580 23698494 103680 1404.7356872558594 8.6786999999999992 2212.0594000000001 120960 62375 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2580 1920 0 384 1 2081990736 9419424 1 0 4 3 3 2 4 5898240 4423680 4423680 2950955 5990400 150 150 150 832 1298 0 0 2 1 41 0 0 0 0 0 +771 1783857661013192400 DEPTH 23 1 0.71501698403763292 0.74190800681430991 1 11 1 11 0 0 3264 42 2519 23742676 147840 1413.2295684814453 8.7036999999999995 1948.5116 80640 46969 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2519 1920 0 384 1 2086419024 13847712 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 179 1890 1 0 0 0 41 0 0 0 0 0 +772 1783857663288636600 DEPTH 31 1 0.71491368280969414 0.3594548551959113 2 6 2 6 0 0 2181 47 2593 23698549 103680 1411.7808074951172 8.7929999999999993 2207.3009000000002 120960 65825 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2593 1920 0 384 1 2090922792 18351480 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 150 150 150 841 1302 0 0 10 0 37 0 0 0 0 0 +773 1783857665446183300 DEPTH 14 1 0.71430672157323571 0.65587734241908002 0 11 0 11 0 0 1372 104 2537 23742697 147840 1412.9080505371094 8.6867999999999981 2087.1264000000001 80640 43605 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2537 1920 0 384 1 2095369440 22798128 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 162 150 166 159 1900 0 0 3 1 100 0 0 0 0 0 +774 1783857667766244100 DEPTH 21 1 0.7141893448142953 0.56218057921635434 0 10 0 10 0 0 2172 32 2555 23720625 125760 1381.9924621582031 8.6806000000000001 2260.8361 107520 56721 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2555 1920 0 384 1 2099834448 27263136 1 0 4 3 2 2 5 6389760 3932160 2949120 2951010 7488000 150 150 150 458 1647 0 0 0 1 31 0 0 0 0 0 +775 1783857669979271500 DEPTH 42 1 0.78938815897257186 0 0 4 0 4 0 0 4096 26 2604 23678057 81600 1327.1486206054688 8.6711999999999989 2211.4515999999999 120960 52921 1 1 0 0.0086568640254584169 4096 2048 384 12 96 2604 1920 0 384 1 2104349436 31778124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 263 150 262 1434 495 0 0 0 0 25 0 0 0 0 0 +776 1783857672155979500 DEPTH 8 1 0.72255175802105942 0.26575809199318562 2 5 2 5 0 0 2164 44 2577 23684135 88320 1344.2467803955078 8.7320999999999991 2113.0259000000001 107520 46588 1 0 0.029802894263159324 0.94143050940108985 4096 2048 384 12 96 2577 1920 0 384 1 2108836884 36265572 1 0 4 3 3 3 3 5898240 3932160 4423680 4426475 4992000 152 150 164 1168 943 0 0 2 8 34 0 0 0 0 0 +777 1783857674175949400 DEPTH 16 1 0.71646360800600695 0.3594548551959113 2 6 2 6 1 0 2571 105 2546 23699426 103680 1357.8619842529297 8.6638000000000002 1952.8913 80640 38063 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2546 1920 0 384 1 2113292712 40721400 1 0 4 2 3 3 4 5898240 2949120 4423680 4426436 5990400 150 150 150 349 1747 0 0 0 6 99 0 0 0 0 1 +778 1783857676392284900 DEPTH 3 1 0.71448082452568684 0.64054514480408853 2 9 2 9 0 0 1008 74 2523 23720584 125760 1400.1941680908203 9.0121999999999982 2155.2647999999999 120960 68644 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2523 1920 0 384 1 2117725080 45153768 1 0 4 3 2 2 5 5898240 4423680 2949120 2950969 7488000 150 150 150 259 1814 0 1 0 2 71 0 0 0 0 0 +779 1783857678423757400 DEPTH 38 1 0.71428744612167328 0.55451448040885853 1 9 1 9 0 0 1810 48 2550 23720545 125760 1290.9640197753906 9.0652000000000008 1965.6641999999999 120960 70709 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2550 1920 0 384 1 2122184988 49613676 1 0 4 3 2 2 5 5898240 4423680 2949120 2950929 7488000 150 150 150 893 1207 0 0 1 4 43 0 0 0 0 0 +780 1783857680343526000 DEPTH 37 1 0.71283527433006399 0.8356047700170357 1 12 1 12 0 0 882 45 2548 23742568 147840 1278.4650268554688 8.7304999999999993 1798.6762000000001 80640 47104 1 0 0.0085341443355613934 0.56218625238017594 4096 2048 384 12 96 2548 1920 0 384 1 2126642856 54071544 1 0 4 2 2 2 6 5898240 2949120 2949120 2950874 8985600 156 150 150 150 1942 0 1 0 8 36 0 0 0 0 0 +781 1783857682217578400 DEPTH 36 1 0.71280403901227507 0.82027257240204421 3 10 3 10 0 0 1056 43 2561 23742687 147840 1272.9108428955078 8.6634999999999991 1808.6768 80640 47156 1 0 0.06306909641165509 0.16426465714391286 4096 2048 384 12 96 2561 1920 0 384 1 2131113984 58542672 1 0 4 2 2 2 6 5898240 2949120 2949120 2950993 8985600 159 150 150 150 1952 0 0 1 5 37 0 0 0 0 0 +782 1783857684252973100 DEPTH 49 1 0.71282078916942637 0.82027257240204421 3 10 3 10 0 0 1002 44 2557 23742653 147840 1347.7580718994141 9.6964000000000006 1968.8107 80640 47097 1 0 0.11220515413423167 0.24605864362720831 4096 2048 384 12 96 2557 1920 0 384 1 2135581032 63009720 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 150 150 150 160 1947 0 0 0 4 40 0 0 0 0 0 +783 1783857687511592100 DEPTH 55 1 0.77620142320248264 0.64054514480408853 2 9 2 9 1 0 951 70 2520 23742770 147840 1342.3493041992188 8.6509999999999998 3197.6541999999999 80640 31256 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2520 1920 0 384 1 2140010420 330288 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 150 150 150 168 1902 0 0 0 0 70 0 0 0 0 1 +784 1783857689793709000 DEPTH 56 1 0.72107008133207517 0.26575809199318562 2 5 2 5 0 0 4096 70 2534 23677415 81600 1356.5040893554688 8.8017000000000003 2208.1122 120960 56788 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2534 1920 0 384 1 2144454008 4773876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 163 891 1180 2 0 0 5 63 0 0 0 0 0 +785 1783857692052377500 DEPTH 33 1 0.71660987297311141 0.36712095400340705 1 7 1 7 0 0 2895 65 2557 23698501 103680 1374.6319274902344 8.9566999999999997 2185.5248999999999 120960 70623 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2557 1920 0 384 1 2148921056 9240924 1 0 4 3 3 2 4 5898240 4423680 4423680 2950962 5990400 150 150 153 784 1320 0 0 8 9 48 0 0 0 0 0 +786 1783857694374287500 DEPTH 44 1 0.71659249116670543 0.36712095400340705 1 7 1 7 0 0 1802 46 2612 23680225 84480 1389.3470458984375 9.3457000000000008 2243.7761 114240 62677 1 1 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2612 1920 0 384 1 2153444204 13764072 1 0 4 3 3 3 3 5898240 4177920 4423680 4426441 4742400 150 150 150 1029 1133 3 0 3 0 39 0 0 0 0 0 +787 1783857696608916100 DEPTH 41 1 0.71444354352614892 0.55451448040885853 1 9 1 9 0 0 1791 53 2554 23720651 125760 1344.3696441650391 9.0118000000000009 2168.3398000000002 120960 68094 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2554 1920 0 384 1 2157908192 18228060 1 0 4 3 2 2 5 5898240 4423680 2949120 2951029 7488000 150 150 150 461 1643 0 1 5 0 47 0 0 0 0 0 +788 1783857698583529800 DEPTH 19 1 0.71293498420451218 0.8279386712095399 2 11 2 11 0 0 792 32 2557 23742687 147840 1338.9650115966797 9.0967999999999982 1912.0174999999999 80640 46834 1 0 0.023775706505965881 0.39358709546121162 4096 2048 384 12 96 2557 1920 0 384 1 2162375240 22695108 1 0 4 2 2 2 6 5898240 2949120 2949120 2950993 8985600 150 150 150 156 1951 0 0 1 0 31 0 0 0 0 0 +789 1783857700447955700 DEPTH 35 1 0.71295384463499267 0.8279386712095399 2 11 2 11 0 0 980 89 2488 23742662 147840 1277.9704437255859 8.8038000000000007 1801.3664000000001 80640 46924 1 0 0.10284194156167628 1.462681166290273 4096 2048 384 12 96 2488 1920 0 384 1 2166771908 27091776 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 151 150 150 155 1882 0 0 0 0 89 0 0 0 0 0 +790 1783857702309217600 DEPTH 5 1 0.71297424482462468 0.8279386712095399 2 11 2 11 1 0 730 33 2555 23742560 147840 1266.2096252441406 8.8864000000000001 1790.6423 80640 45351 1 0 0.013882121795455482 0.46345450206338867 4096 2048 384 12 96 2555 1920 0 384 1 2171236916 31556784 1 0 4 2 2 2 6 6144000 2949120 2949120 2705105 8985600 150 150 150 199 1906 1 0 2 1 29 0 0 0 0 1 +791 1783857702644092700 REFRESH 16 0 0.60220755497936274 0.3594548551959113 2 6 2 6 0 0 2585 35 411 3988057 55680 223.16441345214844 1.4291 332.7405 13440 8087 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 411 320 0 64 0 2171964360 32284228 1 0 4 2 3 3 4 983040 491520 737280 737491 998400 25 25 25 106 230 0 0 0 4 31 0 0 0 0 0 +792 1783857703069965500 REFRESH 45 0 0.71148943896477146 0.45315161839863699 2 7 2 7 0 0 1757 10 425 3988483 56160 222.68832397460938 1.4677 361.70609999999999 20160 13854 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 425 320 0 64 0 2172706084 33025952 1 0 4 3 2 2 5 983040 737280 491520 491683 1248000 25 25 27 213 135 0 0 0 1 9 0 0 0 0 0 +793 1783857703494963200 REFRESH 1 0 0.69220036023324039 0.36712095400340705 1 7 1 7 0 0 2507 20 425 3988001 55680 222.33702087402344 1.4406000000000001 346.68549999999999 20160 11915 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 425 320 0 64 0 2173447808 33767676 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 214 136 0 0 0 4 16 0 0 0 0 0 +794 1783857703897550600 REFRESH 57 0 0.71965435817804102 0.27342419080068137 1 6 1 6 0 0 3633 18 405 3987615 55200 224.34201049804688 1.7295 339.5111 20160 12565 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 405 320 0 64 0 2174169132 34489000 1 0 4 3 3 3 3 983040 737280 737280 737530 748800 25 25 25 106 224 0 0 0 1 17 0 0 0 0 0 +795 1783857704341098900 REFRESH 26 0 0.73480482413098858 0.74957410562180571 0 12 0 12 0 0 1189 46 415 3988966 56640 222.055419921875 1.4651000000000001 318.16129999999998 13440 7950 0 0 1.7930431369539945e-08 0.64883163624488449 4096 2048 64 1 16 415 320 0 64 0 2174900656 35220524 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 30 309 0 0 0 0 46 0 0 0 0 0 +796 1783857704734048100 REFRESH 42 0 0.8379973706945385 0 0 4 0 4 0 0 4096 8 426 3987740 55200 224.02252197265625 1.4661999999999999 391.33179999999999 20160 12900 0 0 0 0.0086568640254584169 4096 2048 64 1 16 426 320 0 64 0 2175643400 35963268 1 0 4 3 3 3 3 983040 737280 737280 737543 748800 63 25 55 212 71 0 0 0 0 8 0 0 0 0 0 +797 1783857705047062700 REFRESH 55 0 0.67172666689610239 0.64054514480408853 2 9 2 9 0 0 952 18 409 3988980 56640 222.80703735351562 1.4462999999999999 311.20299999999997 13440 8175 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 2176368804 36688672 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 28 306 0 0 0 0 18 0 0 0 0 0 +798 1783857705455620000 REFRESH 40 0 0.71104272762346066 0.64821124361158422 1 10 1 10 0 0 1443 8 416 3988936 56640 219.76882934570312 1.4892000000000001 349.27609999999999 13440 9555 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 416 320 0 64 0 2177101348 37421216 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 25 25 36 305 0 0 0 0 8 0 0 0 0 0 +799 1783857705754394400 REFRESH 5 0 0.54733123566993436 0.8279386712095399 2 11 2 11 0 0 734 30 417 3988930 56640 219.78111267089844 1.4490000000000001 296.9819 13440 10011 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 417 320 0 64 0 2177834912 38154780 1 0 4 2 2 2 6 983040 491520 491520 491648 1497600 25 25 25 68 274 0 0 0 6 24 0 0 0 0 0 +800 1783857706156144000 REFRESH 32 0 0.7116369607867481 0.4608177172061329 1 8 1 8 0 0 2327 31 418 3988477 56160 222.22848510742188 1.4555 340.8177 20160 14534 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 418 320 0 64 0 2178569496 38889364 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 158 185 0 0 0 5 26 0 0 0 0 0 +801 1783857706456224100 REFRESH 37 0 0.66742391018342406 0.8356047700170357 1 12 1 12 0 0 889 32 403 3988945 56640 220.38117980957031 1.4430000000000001 298.1748 13440 9032 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 403 320 0 64 0 2179288780 39608648 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 25 36 291 0 0 0 1 31 0 0 0 0 0 +802 1783857706829952500 REFRESH 30 0 0.71167368626909 0.4608177172061329 1 8 1 8 0 0 2746 38 415 3988467 56160 221.19424438476562 1.4435 313.14609999999999 13440 8223 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 2180020304 40340172 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 174 166 0 0 0 8 30 0 0 0 0 0 +803 1783857707229089900 REFRESH 50 0 0.70836820571235404 0.64054514480408853 2 9 2 9 0 0 970 5 432 3988458 56160 222.78451538085938 1.4338 337.42779999999999 20160 14655 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 432 320 0 64 0 2180769168 41089036 1 0 4 3 2 2 5 983040 737280 491520 491658 1248000 25 25 25 182 175 0 0 0 0 5 0 0 0 0 0 +804 1783857707528809800 REFRESH 36 0 0.68743629819047014 0.82027257240204421 3 10 3 10 0 0 1059 27 405 3988963 56640 219.578369140625 1.5053000000000001 297.96069999999997 13440 9012 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 405 320 0 64 0 2181490492 41810360 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 33 296 0 0 0 1 26 0 0 0 0 0 +805 1783857707863183200 REFRESH 33 0 0.66241207258323098 0.36712095400340705 1 7 1 7 0 0 2901 18 430 3987997 55680 223.40824890136719 1.4423999999999999 332.78800000000001 20160 13753 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 430 320 0 64 0 2182237316 42557184 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 26 218 136 0 0 1 6 11 0 0 0 0 0 +806 1783857708267660300 REFRESH 52 0 0.71255851505524592 0.36712095400340705 1 7 1 7 0 0 1782 9 427 3987999 55680 221.85267639160156 1.4705999999999999 346.31049999999999 20160 11791 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 427 320 0 64 0 2182981080 43300948 1 0 4 3 3 2 4 983040 737280 737280 491678 998400 25 25 29 257 91 1 0 2 1 5 0 0 0 0 0 +807 1783857708574305900 REFRESH 49 0 0.70749174079336374 0.82027257240204421 3 10 3 10 0 0 1005 22 409 3988984 56640 220.26034545898438 1.4597 304.81810000000002 13440 9090 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 409 320 0 64 0 2183706484 44026352 1 0 4 2 2 2 6 983040 491520 491520 491701 1497600 25 25 25 42 292 0 0 0 1 21 0 0 0 0 0 +808 1783857708982024800 REFRESH 2 0 0.71179135889849166 0.45315161839863699 2 7 2 7 0 0 2713 18 423 3988471 56160 236.77030944824219 1.4540999999999999 350.43650000000002 13440 8191 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 423 320 0 64 0 2184446168 44766036 1 0 4 2 3 2 5 983040 491520 737280 491670 1248000 25 25 25 217 131 0 0 0 4 14 0 0 0 0 0 +809 1783857709398352200 REFRESH 31 0 0.71116997105015956 0.3594548551959113 2 6 2 6 0 0 2186 17 425 3988031 55680 237.36729431152344 1.4504999999999999 357.24000000000001 20160 13291 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 425 320 0 64 0 2185187892 45507760 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 252 98 0 0 0 7 10 0 0 0 0 0 +810 1783857709847356500 REFRESH 54 0 0.71181997434601563 0.4608177172061329 1 8 1 8 0 0 986 10 424 3988486 56160 233.30508422851562 1.6037999999999999 370.5138 20160 13521 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 424 320 0 64 0 2185928596 46248464 1 0 4 3 2 2 5 983040 737280 491520 491685 1248000 25 25 25 157 192 0 0 0 0 10 0 0 0 0 0 +811 1783857710240669800 REFRESH 34 0 0.71243679700830631 0.8356047700170357 1 12 1 12 0 0 622 16 416 3988869 56640 234.68952941894531 1.4422999999999999 331.1311 13440 9164 0 0 0.00024166908971304853 1.8243527249293958 4096 2048 64 1 16 416 320 0 64 0 2186661140 46981008 1 0 5 2 2 1 6 1228800 491520 491520 245828 1497600 26 25 25 45 295 0 0 0 3 13 0 0 0 0 0 +812 1783857710754937600 REFRESH 12 0 0.71158980200413358 0.63287904599659284 3 8 3 8 0 0 1137 19 428 3988945 56640 234.76121520996094 1.4491000000000001 328.49919999999997 13440 8845 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 428 320 0 64 0 2187405924 47725792 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 77 276 0 0 0 0 19 0 0 0 0 0 +813 1783857711187380500 REFRESH 46 0 0.71255203590903538 0.37478705281090291 0 8 0 8 0 0 2463 12 430 3987983 55680 236.97322082519531 1.4389000000000001 370.84710000000001 20160 11879 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 430 320 0 64 0 2188152748 48472616 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 25 25 25 245 110 0 0 0 1 11 0 0 0 0 0 +814 1783857711630716500 REFRESH 11 0 0.71267871653329928 0.37478705281090291 0 8 0 8 0 0 1945 11 422 3987986 55680 227.40684509277344 1.4408000000000001 377.62779999999998 20160 11964 0 0 0 0.76353516436491276 4096 2048 64 1 16 422 320 0 64 0 2188891412 49211280 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 27 226 119 1 0 0 0 10 0 0 0 0 0 +815 1783857712030562500 REFRESH 28 0 0.71347871237400529 0.8279386712095399 2 11 2 11 0 0 563 16 404 3988966 56640 221.28434753417969 1.4419 332.30349999999999 13440 9083 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 404 320 0 64 0 2189611716 49931584 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 26 25 25 26 302 0 0 0 0 16 0 0 0 0 0 +816 1783857712474260100 REFRESH 44 0 0.71228604900613135 0.36712095400340705 1 7 1 7 0 0 1803 9 430 3987611 55200 223.06509399414062 1.4486000000000001 373.03339999999997 20160 12532 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 430 320 0 64 0 2190358540 50678408 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 25 188 167 0 0 1 1 7 0 0 0 0 0 +817 1783857712794808100 REFRESH 19 0 0.7076790489156366 0.8279386712095399 2 11 2 11 0 0 797 26 411 3988956 56640 222.98828125 1.4779 318.53050000000002 13440 9048 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 411 320 0 64 0 2191085984 51405852 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 28 308 0 0 0 0 26 0 0 0 0 0 +818 1783857713192959200 REFRESH 18 0 0.71082809397017699 0.9293015332197615 1 13 1 13 0 0 426 15 412 3988959 56640 237.76153564453125 1.4501999999999999 334.28980000000001 13440 9218 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 412 320 0 64 0 2191814448 52134316 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 25 27 309 0 0 0 0 15 0 0 0 0 0 +819 1783857713583750000 REFRESH 15 0 0.71007051694756496 0.91396933560476989 3 11 3 11 0 0 298 8 413 3988884 56640 221.22393798828125 1.4532 327.2559 13440 9564 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 413 320 0 64 0 2192543932 52863800 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 25 25 25 44 294 0 0 0 1 7 0 0 0 0 0 +820 1783857714068424900 REFRESH 17 0 0.71919568578388526 0.28109028960817717 0 7 0 7 0 0 3147 29 419 3987622 55200 222.88485717773438 1.4434 377.41120000000001 20160 12143 0 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 64 1 16 419 320 0 64 0 2193279536 53599404 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 28 184 157 0 0 1 6 22 0 0 0 0 0 +821 1783857714551568200 REFRESH 39 0 0.71211757907955009 0.55451448040885853 1 9 1 9 0 0 1416 6 417 3988951 56640 220.30438232421875 1.5425 344.62560000000002 13440 9602 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 417 320 0 64 0 2194013100 54332968 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 38 304 0 0 1 0 5 0 0 0 0 0 +822 1783857714929042400 REFRESH 51 0 0.71089081462939929 0.91396933560476989 3 11 3 11 0 0 491 20 402 3988873 56640 219.79238891601562 1.4514 309.87110000000001 13440 9168 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 402 320 0 64 0 2194731364 55051232 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 25 25 25 35 292 0 0 0 0 20 0 0 0 0 0 +823 1783857715301978700 REFRESH 22 0 0.71091077906297795 0.91396933560476989 3 11 3 11 0 0 445 9 411 3988943 56640 221.73286437988281 1.4449000000000001 303.96449999999999 13440 9795 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 411 320 0 64 0 2195458808 55778676 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 25 36 299 0 0 0 1 8 0 0 0 0 0 +824 1783857715697770100 REFRESH 13 0 0.71913579217418322 0.27342419080068137 1 6 1 6 0 0 3454 48 417 3987609 55200 222.34725952148438 1.5105999999999999 330.72320000000002 20160 11900 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 417 320 0 64 0 2196192372 56512240 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 26 138 203 0 0 1 6 41 0 0 0 0 0 +825 1783857716098624300 REFRESH 29 0 0.71127606054762094 0.82027257240204421 3 10 3 10 0 0 1044 14 419 3988948 56640 225.95071411132812 1.4852000000000001 339.74979999999999 13440 9655 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 419 320 0 64 0 2196927976 57247844 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 25 31 312 0 0 0 1 13 0 0 0 0 0 +826 1783857716522830000 REFRESH 21 0 0.70995364949758244 0.56218057921635434 0 10 0 10 0 0 2180 26 422 3988456 56160 223.24531555175781 1.4505999999999999 353.89030000000002 20160 14018 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 422 320 0 64 0 2197666640 57986508 1 0 4 3 2 2 5 983040 737280 491520 491656 1248000 25 25 25 205 142 0 0 0 13 13 0 0 0 0 0 +827 1783857716918318600 REFRESH 3 0 0.70991744741887775 0.64054514480408853 2 9 2 9 0 0 1014 29 413 3988465 56160 222.58790588378906 1.5078 319.06380000000001 20160 14770 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 413 320 0 64 0 2198396124 58715992 1 0 4 3 2 2 5 983040 737280 491520 491665 1248000 25 25 25 148 190 0 0 0 6 23 0 0 0 0 0 +828 1783857717347017800 REFRESH 25 0 0.71214558527034488 0.4608177172061329 1 8 1 8 0 0 2124 10 420 3988490 56160 225.49197387695312 1.4529000000000001 364.05880000000002 20160 13789 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 420 320 0 64 0 2199132748 59452616 1 0 4 3 2 2 5 983040 737280 491520 491689 1248000 25 25 25 255 90 0 0 1 0 9 0 0 0 0 0 +829 1783857717799379400 REFRESH 6 0 0.70779444618083787 0.91396933560476989 3 11 3 11 0 0 366 8 426 3988953 56640 224.22425842285156 1.4387000000000001 309.70209999999997 6720 4970 0 0 0.078490995891016657 0.16637572843653256 3887 1839 64 1 16 426 320 0 64 0 2199875492 60195360 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 25 25 25 30 321 0 0 1 0 7 0 0 0 0 0 +830 1783857718212151700 REFRESH 10 0 0.71201429967920382 0.64821124361158422 1 10 1 10 0 0 1006 21 417 3988934 56640 229.06573486328125 1.4547000000000001 321.27870000000001 13440 8836 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 417 320 0 64 0 2200609056 60928924 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 25 50 292 0 0 1 0 20 0 0 0 0 0 +831 1783857718578703000 REFRESH 56 0 0.71781378747728763 0.26575809199318562 2 5 2 5 0 0 4096 28 425 3987590 55200 226.5263671875 1.4525999999999999 364.7704 20160 12161 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 425 320 0 64 0 2201350780 61670648 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 27 241 107 1 0 0 7 20 0 0 0 0 0 +832 1783857718974982000 REFRESH 27 0 0.7111124313887367 0.93696763202725719 0 14 0 14 0 0 792 16 408 3988943 56640 228.98381042480469 1.4367000000000001 326.54020000000003 13440 9204 0 0 2.7478736633187845e-06 0.92974165693633715 4096 2048 64 1 16 408 320 0 64 0 2202075164 62395032 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 28 305 0 0 0 0 16 0 0 0 0 0 +833 1783857719397563400 REFRESH 48 0 0.71928487977101163 0.26575809199318562 2 5 2 5 0 0 2098 22 417 3987618 55200 223.9129638671875 1.4510000000000001 343.24619999999999 20160 12368 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 417 320 0 64 0 2202808728 63128596 1 0 4 3 3 3 3 983040 737280 737280 737532 748800 25 25 27 110 230 0 0 0 7 15 0 0 0 0 0 +834 1783857719859547600 REFRESH 43 0 0.71143801974989485 0.8279386712095399 2 11 2 11 0 0 722 20 421 3988876 56640 222.37388610839844 1.4439 326.34570000000002 13440 9437 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 421 320 0 64 0 2203546372 63866240 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 25 25 25 43 303 0 0 0 1 19 0 0 0 0 0 +835 1783857720241287800 REFRESH 14 0 0.71000126407066866 0.65587734241908002 0 11 0 11 0 0 1378 30 419 3988974 56640 224.70553588867188 1.4568000000000001 319.17219999999998 13440 8461 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 419 320 0 64 0 2204281976 64601844 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 27 25 44 27 296 0 0 1 0 29 0 0 0 0 0 +836 1783857720603124000 REFRESH 58 0 0.71124424683783327 0.92163543441226559 2 12 2 12 1 0 482 16 407 3988891 56640 221.17683410644531 1.4369000000000001 302.35739999999998 13440 9205 0 0 0.012044042525304999 1.7719068934024012 4096 2048 64 1 16 407 320 0 64 0 2205005340 65325208 1 0 5 2 2 1 6 1228800 491520 491520 245851 1497600 26 25 25 32 299 0 0 0 0 16 0 0 0 0 1 +837 1783857720987186000 REFRESH 24 0 0.7094548922122893 1 4 11 4 11 0 0 480 8 405 3988966 56640 220.90034484863281 1.4500999999999999 308.0566 6720 4691 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 405 320 0 64 0 2205726664 66046532 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 27 25 25 25 303 0 0 0 0 8 0 0 0 0 0 +838 1783857721354574900 REFRESH 23 0 0.7106055106592758 0.74190800681430991 1 11 1 11 0 0 3266 13 409 3988937 56640 222.62786865234375 1.4488000000000001 305.38819999999998 13440 8892 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 409 320 0 64 0 2206452068 66771936 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 25 30 304 0 0 0 0 13 0 0 0 0 0 +839 1783857722999500000 REFRESH 41 0 0.71019143489743586 0.55451448040885853 1 9 1 9 0 0 1796 24 419 3988476 56160 221.30073547363281 1.4456 1564.0418999999999 20160 12377 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 419 320 0 64 0 2207187752 399264 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 141 203 0 0 0 3 21 0 0 0 0 0 +840 1783857723383381800 REFRESH 38 0 0.71020962176103075 0.55451448040885853 1 9 1 9 0 0 1812 8 421 3988484 56160 223.91091918945312 1.4483999999999999 326.95409999999998 20160 13679 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 421 320 0 64 0 2207925396 1136908 1 0 4 3 2 2 5 983040 737280 491520 491683 1248000 25 25 25 259 87 0 0 0 2 6 0 0 0 0 0 +841 1783857723745023100 REFRESH 7 0 0.71399236568696145 0.8356047700170357 1 12 1 12 0 0 776 23 408 3988971 56640 220.25523376464844 1.4570000000000001 306.0489 13440 9656 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 408 320 0 64 0 2208649780 1861292 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 32 301 0 0 0 0 23 0 0 0 0 0 +842 1783857724155263900 REFRESH 20 0 0.7134013881043143 0.26575809199318562 2 5 2 5 0 0 1841 14 427 3987580 55200 222.47013854980469 1.4413 350.12790000000001 20160 12083 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 427 320 0 64 0 2209393544 2605056 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 38 140 199 0 0 3 0 11 0 0 0 0 0 +843 1783857724627773500 REFRESH 9 0 0.71975809130171786 0.27342419080068137 1 6 1 6 0 0 2193 66 414 3987583 55200 223.22380065917969 1.452 332.99329999999998 20160 12711 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 414 320 0 64 0 2210124048 3335560 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 31 123 210 0 0 0 23 43 0 0 0 0 0 +844 1783857725027247100 REFRESH 8 0 0.71948764680022914 0.26575809199318562 2 5 2 5 0 0 2172 17 411 3987584 55200 223.7470703125 1.5136000000000001 336.0736 20160 14979 0 0 0.029802894263159324 0.94143050940108985 4096 2048 64 1 16 411 320 0 64 0 2210851492 4063004 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 26 101 234 0 0 0 5 12 0 0 0 0 0 +845 1783857725389632600 REFRESH 47 0 0.71407042335664106 0.8279386712095399 2 11 2 11 0 0 553 22 415 3988919 56640 221.39187622070312 1.4366000000000001 303.86739999999998 13440 9581 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 415 320 0 64 0 2211583016 4794528 1 0 4 2 2 2 6 983040 491520 491520 491638 1497600 26 25 25 29 310 0 0 0 0 22 0 0 0 0 0 +846 1783857725725093200 REFRESH 35 0 0.70823446406771218 0.8279386712095399 2 11 2 11 0 0 984 24 402 3988984 56640 229.06777954101562 1.4433 333.49439999999998 13440 9025 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 402 320 0 64 0 2212301280 5512792 1 0 4 2 2 2 6 983040 491520 491520 491704 1497600 25 25 25 36 291 0 0 0 0 24 0 0 0 0 0 +847 1783857726129828700 REFRESH 4 0 0.703191118779387 0.8356047700170357 1 12 1 12 0 0 256 5 414 3988866 56640 239.43168640136719 1.4452 335.28809999999999 13440 9846 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 414 320 0 64 0 2213031784 6243296 1 0 6 2 1 1 6 1474560 491520 245760 245826 1497600 27 25 25 41 296 0 0 0 0 5 0 0 0 0 0 +848 1783857726565997600 REFRESH 53 0 0.71315361583426373 0.37478705281090291 0 8 0 8 0 0 4096 50 412 3988095 55680 237.33148193359375 1.5840000000000001 364.07549999999998 13440 8209 0 0 0 0.26169361010444037 4096 2048 64 1 16 412 320 0 64 0 2213760248 6971760 1 0 4 2 3 3 4 983040 491520 737280 737531 998400 26 25 25 135 201 0 0 0 20 30 0 0 0 0 0 +849 1783857727056375300 REFRESH 0 0 0.71414822805106659 0.8279386712095399 2 11 2 11 0 0 783 5 419 3988954 56640 229.4599609375 1.6651 370.32549999999998 13440 9605 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 419 320 0 64 0 2214495852 7707364 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 35 309 0 0 0 0 5 0 0 0 0 0 +850 1783857729265491600 DEPTH 42 1 0.87499797713760064 0 0 4 0 4 0 0 4096 25 2604 23678153 81600 1293.1358795166016 8.7445000000000004 2145.3793000000001 120960 63310 1 0 0 0.0086568640254584169 4096 2048 384 12 96 2604 1920 0 384 1 2219010840 12222352 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 295 150 286 1392 481 0 0 0 0 25 0 0 0 0 0 +851 1783857731156395100 DEPTH 55 1 0.76906948374744277 0.64054514480408853 2 9 2 9 0 0 955 66 2509 23742775 147840 1317.5079498291016 8.6832999999999991 1815.4970000000001 80640 39083 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2509 1920 0 384 1 2223428928 16640440 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 150 150 150 162 1897 0 0 0 0 66 0 0 0 0 0 +852 1783857733330198700 DEPTH 26 1 0.72676677429858416 0.74957410562180571 0 12 0 12 1 0 1203 74 2566 23727941 132480 1290.2932739257812 8.6542999999999992 2094.5668000000001 80640 37412 1 0 0 0.82876704698988246 4096 2048 384 12 96 2566 1920 0 384 1 2227905156 21116668 1 0 4 2 2 3 5 5898240 2949120 2949120 3934585 7987200 150 150 150 526 1590 0 1 0 4 69 0 0 0 0 1 +853 1783857735470596200 DEPTH 57 1 0.71645528202334607 0.27342419080068137 1 6 1 6 0 0 3665 120 2531 23677356 81600 1286.8003997802734 8.6491000000000007 2007.347 120960 63301 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2531 1920 0 384 1 2232345684 25557196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 442 1639 0 0 0 5 115 0 0 0 0 0 +854 1783857737552292100 DEPTH 17 1 0.71566380530713203 0.28109028960817717 0 7 0 7 0 0 3177 82 2568 23677457 81600 1282.5001373291016 8.6313999999999993 2080.3184999999999 120960 57102 1 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 384 12 96 2568 1920 0 384 1 2236823952 30035464 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 150 808 1310 0 1 9 3 69 0 0 0 0 0 +855 1783857739715906400 DEPTH 13 1 0.71556587214819301 0.27342419080068137 1 6 1 6 0 0 3477 92 2572 23677486 81600 1334.6300506591797 8.9513000000000016 2161.9468999999999 120960 56061 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2572 1920 0 384 1 2241306300 34517812 1 0 4 3 3 3 3 5898240 4423680 4423680 4426533 4492800 150 150 153 616 1503 0 0 8 5 79 0 0 0 0 0 +856 1783857742062568900 DEPTH 11 1 0.70899056465050547 0.37478705281090291 0 8 0 8 1 0 1958 57 2548 23698630 103680 1378.0185852050781 8.6946999999999992 2217.9585000000002 120960 57077 1 0 0 0.76942134828729503 4096 2048 384 12 96 2548 1920 0 384 1 2245764168 38975680 1 0 4 3 3 2 4 5898240 4423680 4423680 2950930 5990400 150 150 156 912 1180 1 0 8 0 48 0 0 0 0 2 +857 1783857744163433900 DEPTH 16 1 0.7089471597039616 0.3594548551959113 2 6 2 6 0 0 2620 95 2537 23695559 99840 1385.3491821289062 8.9177999999999997 1967.9085 87360 41942 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2537 1920 0 384 1 2250210816 43422328 1 0 4 3 3 3 3 5898240 3194880 4423680 4426391 5740800 150 150 150 575 1512 0 0 0 6 89 0 0 0 0 0 +858 1783857746535673200 DEPTH 48 1 0.71561357382704527 0.26575809199318562 2 5 2 5 0 0 2107 48 2567 23677301 81600 1422.9679107666016 9.3246000000000002 2300.7820000000002 120960 58251 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2567 1920 0 384 1 2254688064 47899576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426359 4492800 150 150 150 466 1651 0 0 2 0 46 0 0 0 0 0 +859 1783857748937413600 DEPTH 56 1 0.71433519763022391 0.26575809199318562 2 5 2 5 0 0 4096 65 2555 23677432 81600 1398.629638671875 9.0716000000000001 2341.0234 120960 56712 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2555 1920 0 384 1 2259153072 52364584 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 161 1183 911 0 0 2 3 60 0 0 0 0 0 +860 1783857751276449300 DEPTH 33 1 0.70895816262522016 0.36712095400340705 1 7 1 7 0 0 2909 42 2567 23687441 92160 1387.9183349609375 8.7512000000000008 2208.0994000000001 120960 68305 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2567 1920 0 384 1 2263630320 56841832 1 0 4 3 3 3 3 5898240 4423680 4423680 3688694 5241600 150 150 156 1034 1077 0 0 2 6 34 0 0 0 0 0 +861 1783857753601319900 DEPTH 1 1 0.7089746104781165 0.36712095400340705 1 7 1 7 0 0 2517 48 2596 23687536 92160 1351.6390228271484 8.8087 2177.1196 120960 57776 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2596 1920 0 384 1 2268137148 61348660 1 0 4 3 3 3 3 5898240 4423680 4423680 3688693 5241600 150 150 150 1078 1068 1 0 2 0 45 0 0 0 0 0 +862 1783857755788040700 DEPTH 46 1 0.70899104514985622 0.37478705281090291 0 8 0 8 0 0 2470 30 2581 23687494 92160 1299.1302490234375 8.6414000000000009 2123.8969000000002 120960 58475 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2581 1920 0 384 1 2272628676 65840188 1 0 4 3 3 3 3 5898240 4423680 4423680 3688689 5241600 150 150 150 941 1190 0 0 0 0 30 0 0 0 0 0 +863 1783857758834819700 DEPTH 28 1 0.70855481853284163 0.8279386712095399 2 11 2 11 0 0 566 48 2511 23742618 147840 1282.9785766601562 8.8798999999999992 2986.4193 80640 45232 1 0 0.00017781511379253443 2.0677017543935525 4096 2048 384 12 96 2511 1920 0 384 1 2277048884 3152344 1 0 4 2 2 2 6 5898240 2949120 2949120 2950920 8985600 156 150 150 156 1899 0 0 0 0 48 0 0 0 0 0 +864 1783857760970390100 DEPTH 52 1 0.70813988131623073 0.36712095400340705 1 7 1 7 0 0 1796 53 2590 23687647 92160 1278.3766937255859 8.8826999999999998 2066.6217999999999 120960 56873 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2590 1920 0 384 1 2281549592 7653052 1 0 4 3 3 3 3 5898240 4423680 4423680 3688828 5241600 150 150 166 1415 709 3 0 5 0 45 0 0 0 0 0 +865 1783857763394617900 DEPTH 2 1 0.70802710780914668 0.45315161839863699 2 7 2 7 0 0 2726 81 2562 23705849 110400 1420.6116027832031 8.6425000000000001 2344.6293000000001 80640 39276 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2562 1920 0 384 1 2286021740 12125200 1 0 4 2 3 3 4 5898240 2949120 4423680 3934577 6489600 150 150 150 1096 1016 0 0 0 11 70 0 0 0 0 0 +866 1783857765646440500 DEPTH 42 1 0.78369893201446417 0 0 4 0 4 1 0 4096 25 2597 23678330 81600 1345.7397613525391 8.7656000000000009 2249.7440000000001 120960 52646 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2597 1920 0 384 1 2290529588 16633048 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 250 150 252 1449 496 0 0 0 0 25 0 0 0 0 1 +867 1783857767537582900 DEPTH 7 1 0.70862956255791498 0.8356047700170357 1 12 1 12 0 0 781 69 2529 23742627 147840 1314.1700744628906 8.7006999999999994 1828.1954000000001 80640 46963 1 0 0.00036830025183520201 0.88322933222718147 4096 2048 384 12 96 2529 1920 0 384 1 2294968076 21071536 1 0 4 2 2 2 6 5898240 2949120 2949120 2950929 8985600 150 150 150 150 1929 0 0 0 4 65 0 0 0 0 0 +868 1783857769740722400 DEPTH 45 1 0.70807114184006981 0.45315161839863699 2 7 2 7 0 0 1760 22 2589 23698500 103680 1317.0546112060547 8.8256999999999994 2142.7341000000001 120960 68823 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2589 1920 0 384 1 2299467764 25571224 1 0 4 3 3 2 4 5898240 4423680 4423680 2950966 5990400 150 150 172 1218 899 0 0 3 0 19 0 0 0 0 0 +869 1783857771881733600 DEPTH 54 1 0.70808815214817189 0.4608177172061329 1 8 1 8 0 0 996 35 2570 23698456 103680 1307.7813720703125 8.851799999999999 2080.8348999999998 120960 67102 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2570 1920 0 384 1 2303948072 30051532 1 0 4 3 3 2 4 5898240 4423680 4423680 2950920 5990400 150 150 150 935 1185 0 1 1 1 32 0 0 0 0 0 +870 1783857774110180900 DEPTH 32 1 0.70810514890633258 0.4608177172061329 1 8 1 8 0 0 2344 65 2578 23698488 103680 1313.8729400634766 8.7765000000000022 2107.8800000000001 120960 69590 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2578 1920 0 384 1 2308436540 34540000 1 0 4 3 3 2 4 5898240 4423680 4423680 2950953 5990400 150 150 150 705 1423 0 0 4 3 58 0 0 0 0 0 +871 1783857776453876300 DEPTH 30 1 0.70812213213551334 0.4608177172061329 1 8 1 8 0 0 2758 43 2547 23709643 114240 1379.4192199707031 8.9602000000000004 2272.3647999999998 80640 39531 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2547 1920 0 384 1 2312893388 38996848 1 0 4 2 3 3 4 5898240 2949120 4423680 3688753 6739200 150 150 150 764 1333 0 0 0 1 42 0 0 0 0 0 +872 1783857778772756100 DEPTH 25 1 0.70813910185662743 0.4608177172061329 1 8 1 8 0 0 2129 29 2557 23698460 103680 1418.419189453125 8.7812999999999981 2259.1372000000001 120960 68214 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2557 1920 0 384 1 2317360436 43463896 1 0 4 3 3 2 4 5898240 4423680 4423680 2950920 5990400 150 150 150 1211 896 0 0 1 1 27 0 0 0 0 0 +873 1783857781132031500 DEPTH 31 1 0.70798998241597566 0.3594548551959113 2 6 2 6 0 0 2195 43 2605 23687441 92160 1422.1301574707031 9.0749999999999993 2267.7168000000001 120960 64398 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2605 1920 0 384 1 2321876444 47979904 1 0 4 3 3 3 3 5898240 4423680 4423680 3688701 5241600 150 150 150 1251 904 0 0 2 2 39 0 0 0 0 0 +874 1783857783255092000 DEPTH 55 1 0.7369343836656842 0.64054514480408853 2 9 2 9 0 0 956 51 2538 23721604 125760 1434.111083984375 9.0719999999999992 2059.4254000000001 80640 31330 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2538 1920 0 384 1 2326324112 52427572 1 0 4 2 2 3 5 5898240 2949120 2949120 4426406 7488000 150 150 150 702 1386 0 0 0 4 47 0 0 0 0 0 +875 1783857785545017900 DEPTH 9 1 0.71615968755482906 0.27342419080068137 1 6 1 6 0 0 2234 132 2537 23677304 81600 1363.3907623291016 8.7068999999999992 2213.0925999999999 120960 63663 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2537 1920 0 384 1 2330770760 56874220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 185 598 1454 0 0 0 8 124 0 0 0 0 0 +876 1783857787648539900 DEPTH 8 1 0.71591722151570403 0.26575809199318562 2 5 2 5 1 0 2183 59 2529 23681192 85440 1328.1146850585938 8.6582000000000008 2032.4281000000001 114240 72046 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2529 1920 0 384 1 2335209248 61312708 1 0 4 3 3 3 3 5898240 4177920 4423680 4426440 4742400 150 150 156 533 1540 0 0 0 1 58 0 0 0 0 2 +877 1783857790040128700 DEPTH 20 1 0.71048470346217152 0.26575809199318562 2 5 2 5 0 0 1853 39 2591 23677482 81600 1424.7516479492188 9.555299999999999 2315.2781 120960 57628 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2591 1920 0 384 1 2339710976 65814436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426516 4492800 150 150 210 537 1544 2 0 5 1 31 0 0 0 0 0 +878 1783857793473041400 DEPTH 53 1 0.70925222469487115 0.37478705281090291 0 8 0 8 0 0 4096 79 2527 23687974 92160 1354.3905487060547 8.7678000000000011 3364.5286000000001 100800 45249 1 0 0 0.26169361010444037 4096 2048 384 12 96 2527 1920 0 384 1 2344147504 3142144 1 0 4 3 3 3 3 5898240 3686400 4423680 4426492 5241600 156 150 151 674 1396 0 0 0 13 66 0 0 0 0 0 +879 1783857795499574200 DEPTH 47 1 0.70885237112564514 0.8279386712095399 2 11 2 11 0 0 555 18 2605 23742602 147840 1371.5599517822266 8.9907000000000004 1962.2102 80640 47051 1 0 0.031374216798943186 1.3938937060236263 4096 2048 384 12 96 2605 1920 0 384 1 2348663512 7658152 1 0 4 2 2 2 6 5898240 2949120 2949120 2950905 8985600 156 150 150 163 1986 0 0 0 0 18 0 0 0 0 0 +880 1783857797575615200 DEPTH 34 1 0.70800512557445583 0.8356047700170357 1 12 1 12 1 0 630 44 2567 23742653 147840 1408.1454010009766 9.1724999999999994 2014.5941 80640 42551 1 0 0.00023024345301839657 1.8126365902537824 4096 2048 384 12 96 2567 1920 0 384 1 2353140760 12135400 1 0 4 2 2 2 6 5898240 2949120 2949120 2950957 8985600 156 150 150 151 1960 0 0 0 0 44 0 0 0 0 1 +881 1783857799570923900 DEPTH 10 1 0.70777178235827343 0.64821124361158422 1 10 1 10 0 0 1016 51 2568 23742681 147840 1370.942626953125 8.7754000000000012 1931.1500000000001 80640 43985 1 0 0.0040407710321612731 2.9277816338853699 4096 2048 384 12 96 2568 1920 0 384 1 2357619028 16613668 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 150 150 150 210 1908 1 2 1 2 45 0 0 0 0 0 +882 1783857799987782500 REFRESH 17 0 0.71214837282893817 0.28109028960817717 0 7 0 7 0 0 3183 16 423 3987611 55200 228.88447570800781 1.4389000000000001 356.19389999999999 20160 11991 0 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 64 1 16 423 320 0 64 0 2358358712 17353352 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 241 107 0 0 2 1 13 0 0 0 0 0 +883 1783857800370968900 REFRESH 13 0 0.71206120315237886 0.27342419080068137 1 6 1 6 0 0 3496 47 420 3987599 55200 229.56851196289062 1.4388000000000001 326.32150000000001 20160 11912 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 420 320 0 64 0 2359095336 18089976 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 26 158 186 0 0 2 8 37 0 0 0 0 0 +884 1783857800752098500 REFRESH 25 0 0.57375485190954723 0.4608177172061329 1 8 1 8 0 0 2135 17 415 3988004 55680 229.99449157714844 1.4569000000000001 379.05650000000003 20160 12451 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 415 320 0 64 0 2359826860 18821500 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 25 185 155 0 0 0 4 13 0 0 0 0 0 +885 1783857801178794500 REFRESH 56 0 0.71092694834222758 0.26575809199318562 2 5 2 5 0 0 4096 15 422 3987608 55200 229.15379333496094 1.4383999999999999 367.37670000000003 20160 12093 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 422 320 0 64 0 2360565524 19560164 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 27 256 89 0 0 0 3 12 0 0 0 0 0 +886 1783857801556892800 REFRESH 26 0 0.71890884159487833 0.74957410562180571 0 12 0 12 0 0 1225 50 422 3988559 56160 229.14047241210938 1.4334 319.79180000000002 13440 7961 0 0 0 0.82876704698988246 4096 2048 64 1 16 422 320 0 64 0 2361304188 20298828 1 0 4 2 2 3 5 983040 491520 491520 737511 1248000 26 25 25 139 207 0 0 0 24 26 0 0 0 0 0 +887 1783857801938558300 REFRESH 29 0 0.70683837728972587 0.82027257240204421 3 10 3 10 0 0 1045 10 424 3988949 56640 226.51493835449219 1.4521999999999999 320.12060000000002 13440 9565 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 424 320 0 64 0 2362044892 21039532 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 25 33 315 0 0 0 0 10 0 0 0 0 0 +888 1783857802307047300 REFRESH 28 0 0.70347060681962248 0.8279386712095399 2 11 2 11 0 0 567 10 410 3988945 56640 228.87525939941406 1.4893000000000001 311.51299999999998 13440 8353 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 410 320 0 64 0 2362771316 21765956 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 25 26 308 0 0 0 0 10 0 0 0 0 0 +889 1783857802673256800 REFRESH 37 0 0.70354181656693715 0.8356047700170357 1 12 1 12 0 0 893 25 400 3988955 56640 227.43756103515625 1.4495 307.7636 13440 8918 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 400 320 0 64 0 2363487540 22482180 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 38 286 0 0 0 1 24 0 0 0 0 0 +890 1783857803057982900 REFRESH 45 0 0.67385339790593468 0.45315161839863699 2 7 2 7 0 0 1778 44 420 3987988 55680 229.45893859863281 1.4436 326.68079999999998 20160 12342 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 420 320 0 64 0 2364224164 23218804 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 26 175 169 0 0 0 18 26 0 0 0 0 0 +891 1783857803415080200 REFRESH 20 0 0.59729769793013388 0.26575809199318562 2 5 2 5 0 0 1853 4 425 3987594 55200 228.82099914550781 1.4332 355.25920000000002 20160 12151 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 425 320 0 64 0 2364965888 23960528 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 40 141 194 0 0 0 0 4 0 0 0 0 0 +892 1783857803822529500 REFRESH 40 0 0.70595668250657806 0.64821124361158422 1 10 1 10 0 0 1447 12 416 3988943 56640 226.408447265625 1.4392 351.12209999999999 13440 9457 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 416 320 0 64 0 2365698432 24693072 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 39 302 0 0 0 0 12 0 0 0 0 0 +893 1783857804231615600 REFRESH 33 0 0.70525154573251747 0.36712095400340705 1 7 1 7 0 0 2934 53 415 3987602 55200 230.78195190429688 1.4323999999999999 328.83640000000003 20160 12523 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 415 320 0 64 0 2366429956 25424596 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 29 109 227 0 0 1 13 39 0 0 0 0 0 +894 1783857804671192100 REFRESH 11 0 0.70537897363244118 0.37478705281090291 0 8 0 8 1 0 1960 16 427 3988009 55680 227.96185302734375 1.4813000000000001 376.1499 20160 12090 0 0 0 0.76631532117866663 4096 2048 64 1 16 427 320 0 64 0 2367173720 26168360 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 26 246 105 0 0 1 4 11 0 0 0 0 1 +895 1783857804999120000 REFRESH 8 0 0.65228950564374111 0.26575809199318562 2 5 2 5 0 0 2186 21 413 3987602 55200 230.44096374511719 1.4315 326.45420000000001 20160 13950 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 413 320 0 64 0 2367903204 26897844 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 26 98 239 0 0 0 2 19 0 0 0 0 0 +896 1783857805350237700 REFRESH 53 0 0.63529868139348267 0.37478705281090291 0 8 0 8 0 0 4096 51 414 3987605 55200 230.94169616699219 1.4424999999999999 348.89980000000003 20160 14897 0 0 0 0.26169361010444037 4096 2048 64 1 16 414 320 0 64 0 2368633708 27628348 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 158 181 0 0 0 14 37 0 0 0 0 0 +897 1783857805780413900 REFRESH 52 0 0.70451877339117908 0.36712095400340705 1 7 1 7 0 0 1802 20 423 3987625 55200 228.9776611328125 1.4473 363.63 20160 11910 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 423 320 0 64 0 2369373392 28368032 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 30 178 165 0 0 3 3 14 0 0 0 0 0 +898 1783857806143829100 REFRESH 7 0 0.70364897000936899 0.8356047700170357 1 12 1 12 0 0 787 19 407 3988951 56640 227.61062622070312 1.4409000000000001 307.35120000000001 13440 8879 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 407 320 0 64 0 2370096756 29091396 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 34 298 0 0 0 0 19 0 0 0 0 0 +899 1783857806554841900 REFRESH 21 0 0.70624169821867322 0.56218057921635434 0 10 0 10 0 0 2185 19 425 3988500 56160 227.89018249511719 1.4379999999999999 333.10989999999998 20160 13879 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 425 320 0 64 0 2370838480 29833120 1 0 4 3 2 2 5 983040 737280 491520 491698 1248000 25 25 25 217 133 0 0 0 7 12 0 0 0 0 0 +900 1783857806926889900 REFRESH 27 0 0.70653148314626646 0.93696763202725719 0 14 0 14 1 0 797 20 408 3988960 56640 227.21945190429688 1.5173000000000001 309.2842 13440 9142 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 408 320 0 64 0 2371562864 30557504 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 26 307 0 0 0 0 20 0 0 0 0 1 +901 1783857807292617600 REFRESH 5 0 0.70370758633955366 0.8279386712095399 2 11 2 11 0 0 739 18 418 3988948 56640 227.27987670898438 1.4348000000000001 307.3784 13440 9838 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 418 320 0 64 0 2372297448 31292088 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 62 281 0 0 0 2 16 0 0 0 0 0 +902 1783857807664640600 REFRESH 6 0 0.70217068066162225 0.91396933560476989 3 11 3 11 0 0 366 8 420 3988967 56640 226.60914611816406 1.4450000000000001 310.69970000000001 6720 4898 0 0 0.078490995891016657 0.16637572843653256 3914 1866 64 1 16 420 320 0 64 0 2373034072 32028712 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 25 25 25 31 314 0 0 0 0 8 0 0 0 0 0 +903 1783857808091682400 REFRESH 38 0 0.70430944432641396 0.55451448040885853 1 9 1 9 0 0 1814 12 426 3988479 56160 246.89152526855469 1.6408 357.26870000000002 20160 13676 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 426 320 0 64 0 2373776816 32771456 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 25 238 113 0 0 0 1 11 0 0 0 0 0 +904 1783857808483352700 REFRESH 35 0 0.70375532162966958 0.8279386712095399 2 11 2 11 0 0 987 16 409 3988953 56640 244.43289184570312 2.0164 332.5951 13440 8943 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 409 320 0 64 0 2374502220 33496860 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 38 296 0 0 0 0 16 0 0 0 0 0 +905 1783857809000810600 REFRESH 39 0 0.70498481693191462 0.55451448040885853 1 9 1 9 0 0 1416 9 422 3988950 56640 244.463623046875 1.4618 399.26850000000002 13440 9439 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 422 320 0 64 0 2375240884 34235524 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 40 307 0 0 0 1 8 0 0 0 0 0 +906 1783857809429643300 REFRESH 1 0 0.70545500309610265 0.36712095400340705 1 7 1 7 0 0 2529 43 418 3987575 55200 246.0631103515625 1.4356 362.142 20160 12056 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 418 320 0 64 0 2375975468 34970108 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 26 134 208 0 0 0 6 37 0 0 0 0 0 +907 1783857809819542200 REFRESH 43 0 0.7071887202506284 0.8279386712095399 2 11 2 11 0 0 724 17 414 3988952 56640 245.93714904785156 1.4401999999999999 326.06959999999998 13440 9797 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 414 320 0 64 0 2376705972 35700612 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 41 298 0 0 0 1 16 0 0 0 0 0 +908 1783857810154572400 REFRESH 10 0 0.70328980196725988 0.64821124361158422 1 10 1 10 0 0 1017 17 424 3988948 56640 244.74111938476562 1.5059 333.339 13440 8125 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 424 320 0 64 0 2377446676 36441316 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 55 294 1 0 0 2 14 0 0 0 0 0 +909 1783857810538394700 REFRESH 24 0 0.7031645906646109 1 4 11 4 11 0 0 480 11 399 3988965 56640 244.75135803222656 1.4337 326.64330000000001 6720 4576 0 0 0.049718034260125263 1.3802885951242663 4096 2048 64 1 16 399 320 0 64 0 2378161880 37156520 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 27 25 25 25 297 0 0 0 0 11 0 0 0 0 0 +910 1783857810864342600 REFRESH 34 0 0.70308367104537906 0.8356047700170357 1 12 1 12 1 0 633 21 415 3988944 56640 238.16192626953125 1.4545999999999999 324.54930000000002 13440 9942 0 0 0.00024712413670781135 1.8115702249713992 4096 2048 64 1 16 415 320 0 64 0 2378893404 37888044 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 25 48 291 0 0 0 4 17 0 0 0 0 1 +911 1783857811250916500 REFRESH 32 0 0.70419469203966556 0.4608177172061329 1 8 1 8 0 0 2356 31 416 3988005 55680 231.97900390625 1.4447000000000001 327.5034 20160 13767 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 416 320 0 64 0 2379625948 38620588 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 25 151 190 0 0 1 13 17 0 0 0 0 0 +912 1783857811575243400 REFRESH 47 0 0.70389635527757688 0.8279386712095399 2 11 2 11 0 0 561 25 413 3988971 56640 236.62489318847656 1.4709000000000001 322.2022 13440 8953 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 413 320 0 64 0 2380355432 39350072 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 26 25 25 31 306 0 0 0 0 25 0 0 0 0 0 +913 1783857811971500400 REFRESH 14 0 0.70614157591930282 0.65587734241908002 0 11 0 11 0 0 1385 27 415 3988961 56640 240.2713623046875 1.4524999999999999 328.94439999999997 13440 8434 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 415 320 0 64 0 2381086956 40081596 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 27 25 51 27 285 0 0 3 0 24 0 0 0 0 0 +914 1783857812330812300 REFRESH 9 0 0.71277988737020515 0.27342419080068137 1 6 1 6 0 0 2256 45 421 3987606 55200 241.03117370605469 1.4995000000000001 357.78769999999997 20160 12017 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 421 320 0 64 0 2381824600 40819240 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 31 144 196 0 0 0 11 34 0 0 0 0 0 +915 1783857812753085300 REFRESH 30 0 0.70425907245522623 0.4608177172061329 1 8 1 8 0 0 2771 42 410 3988068 55680 227.75910949707031 1.4578 345.36000000000001 13440 8256 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 410 320 0 64 0 2382551024 41545664 1 0 4 2 3 3 4 983040 491520 737280 737505 998400 25 25 25 160 175 0 0 0 13 29 0 0 0 0 0 +916 1783857813127759900 REFRESH 0 0 0.70452628053466926 0.8279386712095399 2 11 2 11 0 0 788 28 417 3988939 56640 226.36647033691406 1.4351 311.53059999999999 13440 9541 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 417 320 0 64 0 2383284588 42279228 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 46 296 0 0 2 5 21 0 0 0 0 0 +917 1783857813539091900 REFRESH 57 0 0.7134036182293666 0.27342419080068137 1 6 1 6 0 0 3671 26 407 3987575 55200 230.03468322753906 1.4375 343.35300000000001 20160 11830 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 407 320 0 64 0 2384007952 43002592 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 115 217 0 0 0 3 23 0 0 0 0 0 +918 1783857813922520600 REFRESH 22 0 0.70583499440034325 0.91396933560476989 3 11 3 11 0 0 445 5 412 3988951 56640 233.20268249511719 1.5885 323.9307 13440 9701 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 2384736416 43731056 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 25 37 299 0 0 0 1 4 0 0 0 0 0 +919 1783857814311649000 REFRESH 12 0 0.70837760624395596 0.63287904599659284 3 8 3 8 0 0 1138 13 424 3988950 56640 246.90483093261719 1.4336 329.7312 13440 8776 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 424 320 0 64 0 2385477120 44471760 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 72 277 0 0 0 1 12 0 0 0 0 0 +920 1783857814705628300 REFRESH 19 0 0.70403778232910375 0.8279386712095399 2 11 2 11 0 0 800 16 412 3988967 56640 245.00633239746094 1.5085999999999999 328.49380000000002 13440 8930 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 412 320 0 64 0 2386205584 45200224 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 28 309 0 0 0 0 16 0 0 0 0 0 +921 1783857815098894500 REFRESH 55 0 0.74612513604312736 0.64054514480408853 2 9 2 9 0 0 959 18 406 3988119 55680 248.55654907226562 1.4321999999999999 333.02820000000003 13440 8067 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 406 320 0 64 0 2386927928 45922568 1 0 4 2 3 3 4 983040 491520 737280 737552 998400 25 25 26 80 250 0 0 0 6 12 0 0 0 0 0 +922 1783857815495045000 REFRESH 58 0 0.70697778848921689 0.92163543441226559 2 12 2 12 0 0 488 14 413 3988981 56640 245.81529235839844 1.4384999999999999 330.404 13440 9725 0 0 0.012044042525304999 1.7719068934024012 4096 2048 64 1 16 413 320 0 64 0 2387657412 46652052 1 0 4 2 2 2 6 983040 491520 491520 491701 1497600 26 25 25 33 304 0 0 0 0 14 0 0 0 0 0 +923 1783857815946242300 REFRESH 18 0 0.70693948449260202 0.9293015332197615 1 13 1 13 0 0 427 8 412 3988961 56640 246.9908447265625 1.4443999999999999 331.26299999999998 13440 9151 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 412 320 0 64 0 2388385876 47380516 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 27 309 0 0 0 0 8 0 0 0 0 0 +924 1783857816372228500 REFRESH 49 0 0.70411457032037694 0.82027257240204421 3 10 3 10 0 0 1007 23 405 3988953 56640 244.39910888671875 1.4817 353.18610000000001 13440 8963 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 405 320 0 64 0 2389107200 48101840 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 43 287 0 0 0 2 21 0 0 0 0 0 +925 1783857816813985100 REFRESH 50 0 0.7007414488110042 0.64054514480408853 2 9 2 9 0 0 971 7 430 3988478 56160 246.92247009277344 1.4693000000000001 376.2208 20160 14576 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 430 320 0 64 0 2389854024 48848664 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 198 157 0 0 0 0 7 0 0 0 0 0 +926 1783857817210087600 REFRESH 3 0 0.70642303843574872 0.64054514480408853 2 9 2 9 0 0 1015 21 413 3988476 56160 235.23635864257812 1.4441999999999999 324.37900000000002 20160 14666 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 413 320 0 64 0 2390583508 49578148 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 162 176 0 0 1 4 16 0 0 0 0 0 +927 1783857817600912100 REFRESH 15 0 0.70460578509201799 0.91396933560476989 3 11 3 11 0 0 298 14 412 3988878 56640 227.67103576660156 1.4467000000000001 321.08390000000003 13440 9617 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 0 64 0 2391311972 50306612 1 0 5 2 2 1 6 1228800 491520 491520 245838 1497600 25 25 25 45 292 0 0 0 1 13 0 0 0 0 0 +928 1783857818055863500 REFRESH 31 0 0.70473180601565311 0.3594548551959113 2 6 2 6 0 0 2209 30 417 3987588 55200 228.71653747558594 1.4494 329.91980000000001 20160 12481 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 417 320 0 64 0 2392045536 51040176 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 29 153 185 0 0 0 6 24 0 0 0 0 0 +929 1783857818425046800 REFRESH 36 0 0.70420454060320481 0.82027257240204421 3 10 3 10 0 0 1064 25 408 3988973 56640 227.21434020996094 1.4397 308.97579999999999 13440 8983 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 408 320 0 64 0 2392769920 51764560 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 25 33 299 0 0 0 0 25 0 0 0 0 0 +930 1783857818795534900 REFRESH 51 0 0.70704900933331638 0.91396933560476989 3 11 3 11 0 0 493 20 408 3988936 56640 227.1436767578125 1.452 310.71749999999997 13440 9851 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 408 320 0 64 0 2393494304 52488944 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 25 35 298 0 0 0 0 20 0 0 0 0 0 +931 1783857819201845400 REFRESH 41 0 0.70677786475134852 0.55451448040885853 1 9 1 9 0 0 1805 19 417 3988482 56160 228.15744018554688 1.4629000000000001 341.54590000000002 20160 12254 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 417 320 0 64 0 2394227868 53222508 1 0 4 3 2 2 5 983040 737280 491520 491681 1248000 25 25 25 136 206 0 0 0 0 19 0 0 0 0 0 +932 1783857819587164700 REFRESH 16 0 0.70589041389197349 0.3594548551959113 2 6 2 6 0 0 2630 31 412 3987581 55200 229.79379272460938 1.4977 324.3107 20160 14815 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 412 320 0 64 0 2394956332 53950972 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 59 278 0 0 0 0 31 0 0 0 0 0 +933 1783857820024750300 REFRESH 44 0 0.70852955908192139 0.36712095400340705 1 7 1 7 0 0 1808 12 434 3987574 55200 230.24639892578125 1.4496 358.69229999999999 20160 12644 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 434 320 0 64 0 2395707236 54701876 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 25 199 160 1 0 0 1 10 0 0 0 0 0 +934 1783857820472568800 REFRESH 2 0 0.70456856540097523 0.45315161839863699 2 7 2 7 0 0 2739 52 417 3988046 55680 227.91270446777344 1.4419 323.04719999999998 13440 8146 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 417 320 0 64 0 2396440800 55435440 1 0 4 2 3 3 4 983040 491520 737280 737482 998400 25 26 25 110 231 0 0 0 10 42 0 0 0 0 0 +935 1783857820892918000 REFRESH 48 0 0.71284079391735933 0.26575809199318562 2 5 2 5 0 0 2115 33 424 3987596 55200 229.5889892578125 1.4353 357.05790000000002 20160 12290 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 424 320 0 64 0 2397181504 56176144 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 27 140 207 1 0 1 3 28 0 0 0 0 0 +936 1783857821261049700 REFRESH 23 0 0.70691862152747076 0.74190800681430991 1 11 1 11 0 0 3270 19 408 3988966 56640 229.58592224121094 1.4408000000000001 312.04320000000001 13440 8835 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 408 320 0 64 0 2397905888 56900528 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 34 299 0 0 0 0 19 0 0 0 0 0 +937 1783857821629160400 REFRESH 4 0 0.69535961119933476 0.8356047700170357 1 12 1 12 0 0 256 7 416 3988876 56640 226.11865234375 1.4512 310.23829999999998 13440 9844 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 416 320 0 64 0 2398638432 57633072 1 0 6 2 1 1 6 1474560 491520 245760 245836 1497600 27 25 25 48 291 0 0 0 0 7 0 0 0 0 0 +938 1783857822038592400 REFRESH 46 0 0.70594720980498016 0.37478705281090291 0 8 0 8 0 0 2471 16 417 3987653 55200 230.08460998535156 1.4355 348.37450000000001 20160 11929 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 417 320 0 64 0 2399371996 58366636 1 0 4 3 3 3 3 983040 737280 737280 737533 748800 25 25 27 152 188 0 0 0 4 12 0 0 0 0 0 +939 1783857822455800800 REFRESH 54 0 0.70464123685563473 0.4608177172061329 1 8 1 8 0 0 999 14 424 3987982 55680 227.9342041015625 1.4724999999999999 348.1739 20160 12356 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 424 320 0 64 0 2400112700 59107340 1 0 4 3 3 2 4 983040 737280 737280 491661 998400 25 25 25 158 191 0 0 1 2 11 0 0 0 0 0 +940 1783857822887800400 REFRESH 42 0 0.87304810831030033 0 0 4 0 4 0 0 4096 9 429 3987712 55200 230.80242919921875 1.4470000000000001 372.46179999999998 20160 13384 0 0 0 0.0063417300788251949 4096 2048 64 1 16 429 320 0 64 0 2400858504 59853144 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 58 25 56 212 78 0 0 0 0 9 0 0 0 0 0 +941 1783857825114637900 DEPTH 26 1 0.71190061386498837 0.74957410562180571 0 12 0 12 1 0 1247 88 2558 23717746 121920 1319.0021057128906 8.6898 2163.6727999999998 87360 42175 1 0 0 0.81613495132173064 4096 2048 384 12 96 2558 1920 0 384 1 2405326572 64321212 1 0 4 3 2 3 4 5898240 3194880 2949120 4426475 7238400 150 150 150 497 1611 0 0 2 5 81 0 0 0 0 1 +942 1783857828567211500 DEPTH 9 1 0.70934022073503145 0.27342419080068137 1 6 1 6 0 0 2278 110 2552 23677433 81600 1327.8700561523438 8.6455000000000002 3338.0736999999999 120960 58765 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2552 1920 0 384 1 2409788600 1675016 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 183 646 1423 0 0 5 13 92 0 0 0 0 0 +943 1783857830873791800 DEPTH 17 1 0.70922166647266383 0.28109028960817717 0 7 0 7 0 0 3204 63 2575 23677465 81600 1320.4213714599609 8.9034999999999993 2185.9694 120960 57101 1 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 384 12 96 2575 1920 0 384 1 2414274008 6160424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 984 1141 0 0 8 0 55 0 0 0 0 0 +944 1783857832916150900 DEPTH 8 1 0.70918482936618643 0.26575809199318562 2 5 2 5 0 0 2195 54 2510 23677376 81600 1329.1182098388672 8.7289999999999992 1980.0029 120960 69423 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2510 1920 0 384 1 2418693116 10579532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 156 334 1720 0 0 0 1 53 0 0 0 0 0 +945 1783857835122236500 DEPTH 13 1 0.70915813918427917 0.27342419080068137 1 6 1 6 0 0 3513 86 2563 23677395 81600 1326.2101440429688 8.8378999999999994 2134.8894 120960 55546 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2563 1920 0 384 1 2423166284 15052700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 153 687 1423 0 0 1 3 82 0 0 0 0 0 +946 1783857837332585700 DEPTH 56 1 0.70812412887187248 0.26575809199318562 2 5 2 5 0 0 4096 65 2560 23677460 81600 1320.2392272949219 8.6527999999999992 2139.4241000000002 120960 56601 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2560 1920 0 384 1 2427636392 19522808 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 161 1365 734 2 0 2 3 58 0 0 0 0 0 +947 1783857839232169900 DEPTH 29 1 0.70255807936722059 0.82027257240204421 3 10 3 10 0 0 1054 54 2566 23742619 147840 1312.6402435302734 8.7136999999999993 1839.0247999999999 80640 46989 1 0 0.26125994989040291 0.98461494739217958 4096 2048 384 12 96 2566 1920 0 384 1 2432112620 23999036 1 0 4 2 2 2 6 5898240 2949120 2949120 2950924 8985600 157 150 150 176 1933 0 0 1 4 49 0 0 0 0 0 +948 1783857841116782100 DEPTH 43 1 0.70256253356535292 0.8279386712095399 2 11 2 11 0 0 728 55 2579 23742564 147840 1317.4026336669922 8.7415000000000003 1822.9078 80640 45314 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2579 1920 0 384 1 2436602108 28488524 1 0 4 2 2 2 6 5898240 2949120 2949120 2950866 8985600 150 150 150 222 1907 0 0 0 5 50 0 0 0 0 0 +949 1783857842962875400 DEPTH 55 1 0.73587743250044058 0.64054514480408853 2 9 2 9 0 0 986 96 2514 23699501 103680 1332.8067932128906 8.8070000000000004 1844.3368 80640 38501 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2514 1920 0 384 1 2441025296 32911712 1 0 4 2 3 3 4 5898240 2949120 4423680 4426478 5990400 150 150 150 282 1782 0 0 0 5 91 0 0 0 0 0 +950 1783857845248971800 DEPTH 42 1 0.72061902548885992 0 0 4 0 4 0 0 4096 20 2600 23678191 81600 1332.5487670898438 8.6375999999999991 2216.5517 120960 64879 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2600 1920 0 384 1 2445536204 37422620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 300 150 293 1356 501 0 0 0 0 20 0 0 0 0 0 +951 1783857847520014400 DEPTH 57 1 0.70999020940655744 0.27342419080068137 1 6 1 6 0 0 3707 107 2530 23677356 81600 1328.7382965087891 8.6830999999999996 2107.6792999999998 120960 58514 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2530 1920 0 384 1 2449975712 41862128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426410 4492800 150 150 150 404 1676 0 0 0 4 103 0 0 0 0 0 +952 1783857849476165800 DEPTH 12 1 0.7039735456347328 0.63287904599659284 3 8 3 8 0 0 1141 28 2593 23742587 147840 1314.2497406005859 8.9852000000000007 1828.7402999999999 80640 43632 1 0 0.0015102624860077482 0.9394486955269914 4096 2048 384 12 96 2593 1920 0 384 1 2454479480 46365896 1 0 4 2 2 2 6 5898240 2949120 2949120 2950889 8985600 150 150 150 193 1950 0 0 0 0 28 0 0 0 0 0 +953 1783857851668490100 DEPTH 40 1 0.70253452411174833 0.64821124361158422 1 10 1 10 0 0 1468 46 2584 23742680 147840 1307.2856140136719 8.6507999999999985 2130.6113999999998 80640 46851 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2584 1920 0 384 1 2458974068 50860484 1 0 4 2 2 2 6 5898240 2949120 2949120 2950986 8985600 150 150 150 175 1959 0 2 0 0 44 0 0 0 0 0 +954 1783857853956999000 DEPTH 21 1 0.70234369594978507 0.56218057921635434 0 10 0 10 0 0 2198 44 2561 23720560 125760 1343.5432891845703 8.7438000000000002 2156.7233999999999 120960 67875 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2561 1920 0 384 1 2463445196 55331612 1 0 4 3 2 2 5 5898240 4423680 2949120 2950946 7488000 150 150 150 619 1492 0 0 5 1 38 0 0 0 0 0 +955 1783857856218419700 DEPTH 11 1 0.70220292707490972 0.37478705281090291 0 8 0 8 1 0 1975 50 2552 23698572 103680 1311.2483978271484 8.6479999999999997 2141.3452000000002 120960 56893 1 0 0 0.6639611011928872 4096 2048 384 12 96 2552 1920 0 384 1 2467907144 59793560 1 0 4 3 3 2 4 5898240 4423680 4423680 2951001 5990400 150 150 156 1050 1046 1 0 4 0 45 0 0 0 0 2 +956 1783857858437997000 DEPTH 53 1 0.70211162962565288 0.37478705281090291 0 8 0 8 1 0 4096 72 2539 23677361 81600 1319.5376586914062 8.8087 2150.0967000000001 120960 69270 1 0 0 0.25204364054906236 4096 2048 384 12 96 2539 1920 0 384 1 2472355832 64242248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 551 1538 0 0 0 8 64 0 0 0 0 1 +957 1783857861896494200 DEPTH 41 1 0.70239140938442013 0.55451448040885853 1 9 1 9 0 0 1819 53 2571 23716714 121920 1342.2458801269531 8.6905000000000001 3370.9349999999999 120960 61074 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2571 1920 0 384 1 2476837240 1614836 1 0 4 3 3 2 4 5898240 4423680 3194880 2950938 7238400 150 150 151 568 1552 0 0 4 0 49 0 0 0 0 0 +958 1783857864018476100 DEPTH 16 1 0.70217216658030135 0.3594548551959113 2 6 2 6 0 0 2669 126 2537 23677347 81600 1418.6567687988281 8.8875999999999991 2055.2815999999998 120960 68930 1 1 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2537 1920 0 384 1 2481283888 6061484 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 150 315 1772 0 0 0 6 119 0 0 0 0 0 +959 1783857866192903700 DEPTH 33 1 0.70215573870750791 0.36712095400340705 1 7 1 7 0 0 2948 68 2532 23677399 81600 1328.8048706054688 8.7049000000000003 2087.7073999999998 120960 62848 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2532 1920 0 384 1 2485725436 10503032 1 0 4 3 3 3 3 5898240 4423680 4423680 4426484 4492800 150 150 157 396 1679 0 1 1 2 64 0 0 0 0 0 +960 1783857868391902000 DEPTH 1 1 0.7021704200163732 0.36712095400340705 1 7 1 7 0 0 2542 62 2566 23677347 81600 1324.0637359619141 8.7199000000000009 2136.6194 120960 56699 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2566 1920 0 384 1 2490201664 14979260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 151 589 1526 0 0 6 0 56 0 0 0 0 0 +961 1783857870303089200 DEPTH 58 1 0.70207852477515953 0.92163543441226559 2 12 2 12 1 0 489 29 2553 23742649 147840 1314.4832763671875 8.6210000000000004 1848.6581000000001 80640 45644 1 0 0.011633049076434457 1.7487616260036116 4096 2048 384 12 96 2553 1920 0 384 1 2494664632 19442228 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 156 150 150 162 1935 0 0 0 0 29 0 0 0 0 1 +962 1783857872221592200 DEPTH 27 1 0.70206094492298066 0.93696763202725719 0 14 0 14 0 0 800 55 2512 23742715 147840 1336.7869415283203 8.6499000000000006 1858.6829 80640 44960 1 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 384 12 96 2512 1920 0 384 1 2499085780 23863376 1 0 4 2 2 2 6 5898240 2949120 2949120 2951020 8985600 150 150 150 159 1903 0 0 0 0 55 0 0 0 0 0 +963 1783857874260232400 DEPTH 51 1 0.70204818875598329 0.91396933560476989 3 11 3 11 0 0 495 31 2558 23742679 147840 1410.4452819824219 8.780899999999999 1978.7646 80640 45412 1 0 0.069490736143882334 0.29124129273896787 4096 2048 384 12 96 2558 1920 0 384 1 2503553848 28331444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950981 8985600 150 150 150 156 1952 0 0 0 1 30 0 0 0 0 0 +964 1783857876602233500 DEPTH 3 1 0.70201370801852825 0.64054514480408853 2 9 2 9 0 0 1020 47 2533 23720600 125760 1411.3576812744141 8.7317 2278.3346000000001 120960 70484 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2533 1920 0 384 1 2507996416 32774012 1 0 4 3 2 2 5 5898240 4423680 2949120 2950986 7488000 150 150 150 406 1677 0 0 4 0 43 0 0 0 0 0 +965 1783857878930312100 DEPTH 42 1 0.76933178030532445 0 0 4 0 4 0 0 4096 19 2599 23678221 81600 1361.70703125 8.6352999999999991 2326.692 120960 54575 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2599 1920 0 384 1 2512506304 37283900 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 253 150 258 1443 495 0 0 0 0 19 0 0 0 0 0 +966 1783857881117582200 DEPTH 48 1 0.70945688998526046 0.26575809199318562 2 5 2 5 0 0 2126 46 2576 23677371 81600 1346.4524993896484 8.5870999999999995 2122.7764000000002 120960 58232 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2576 1920 0 384 1 2516992732 41770328 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 539 1587 1 1 8 0 36 0 0 0 0 0 +967 1783857883440480700 DEPTH 44 1 0.70466550227449853 0.36712095400340705 1 7 1 7 0 0 1821 49 2628 23677278 81600 1411.0177307128906 8.7750000000000004 2259.3434000000002 120960 62367 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2628 1920 0 384 1 2521532200 46309796 1 0 4 3 3 3 3 5898240 4423680 4423680 4426363 4492800 150 150 150 1186 992 2 0 3 0 44 0 0 0 0 0 +968 1783857885734864100 DEPTH 46 1 0.70228747776106171 0.37478705281090291 0 8 0 8 0 0 2480 47 2570 23677535 81600 1316.9194946289062 9.0078000000000014 2173.5823999999998 120960 57851 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2570 1920 0 384 1 2526012508 50790104 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 670 1450 0 0 1 0 46 0 0 0 0 0 +969 1783857887716584100 DEPTH 23 1 0.7022594363417326 0.74190800681430991 1 11 1 11 0 0 3273 35 2526 23742653 147840 1315.3004302978516 8.7157 1914.7998 80640 44311 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2526 1920 0 384 1 2530447936 55225532 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 150 150 150 168 1908 0 0 0 0 35 0 0 0 0 0 +970 1783857889768239200 DEPTH 14 1 0.70205678498037427 0.65587734241908002 0 11 0 11 0 0 1393 81 2540 23734994 140160 1292.7889709472656 8.9261999999999997 1986.9007999999999 80640 41089 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2540 1920 0 384 1 2534897644 59675240 1 0 4 2 3 2 5 5898240 2949120 3440640 2950944 8486400 162 150 165 205 1858 0 0 3 2 76 0 0 0 0 0 +971 1783857891949570900 DEPTH 52 1 0.70161516054349193 0.36712095400340705 1 7 1 7 0 0 1815 44 2560 23677412 81600 1299.0330810546875 8.8105000000000011 2113.6401999999998 120960 55773 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2560 1920 0 384 1 2539367752 64145348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 150 150 180 980 1100 2 1 5 0 36 0 0 0 0 0 +972 1783857895463082000 DEPTH 31 1 0.70138915264968327 0.3594548551959113 2 6 2 6 0 0 2222 39 2554 23677317 81600 1414.0819702148438 9.5202999999999989 3434.4733000000001 120960 61152 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2554 1920 0 384 1 2543831820 1501072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 150 150 159 497 1598 0 0 1 1 37 0 0 0 0 0 +973 1783857895867153100 REFRESH 34 0 0.69894944947067283 0.8356047700170357 1 12 1 12 0 0 637 10 421 3988957 56640 244.97970581054688 1.4587000000000001 331.2124 13440 9794 0 0 0.00024712413670781135 1.8115702249713992 4096 2048 64 1 16 421 320 0 64 0 2544569464 2238716 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 25 48 297 0 0 0 1 9 0 0 0 0 0 +974 1783857896321469600 REFRESH 13 0 0.70585828265977923 0.27342419080068137 1 6 1 6 0 0 3525 33 417 3987604 55200 249.25286865234375 1.7967 369.19380000000001 20160 11940 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 417 320 0 64 0 2545303028 2972280 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 26 156 185 1 0 1 8 23 0 0 0 0 0 +975 1783857896712684200 REFRESH 36 0 0.69969088388411826 0.82027257240204421 3 10 3 10 0 0 1067 14 401 3988967 56640 246.11634826660156 1.4352 331.84249999999997 13440 8885 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 401 320 0 64 0 2546020272 3689524 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 25 33 292 0 0 0 2 12 0 0 0 0 0 +976 1783857897132625100 REFRESH 57 0 0.70655747875512109 0.27342419080068137 1 6 1 6 0 0 3720 32 415 3987591 55200 247.44447326660156 1.5023 346.1096 20160 11866 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 415 320 0 64 0 2546751796 4421048 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 25 129 211 0 0 0 5 27 0 0 0 0 0 +977 1783857897498349400 REFRESH 48 0 0.56589964726100284 0.26575809199318562 2 5 2 5 0 0 2134 27 423 3987634 55200 249.57548522949219 1.4380999999999999 364.15539999999999 20160 12115 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 423 320 0 64 0 2547491480 5160732 1 0 4 3 3 3 3 983040 737280 737280 737539 748800 25 25 27 155 191 1 0 1 6 19 0 0 0 0 0 +978 1783857897892919300 REFRESH 22 0 0.69640050534071496 0.91396933560476989 3 11 3 11 0 0 445 14 412 3988974 56640 247.70661926269531 1.5394000000000001 331.6069 13440 9744 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 2548219944 5889196 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 25 37 299 0 0 0 0 14 0 0 0 0 0 +979 1783857898254570400 REFRESH 3 0 0.59742915977470878 0.64054514480408853 2 9 2 9 0 0 1022 22 417 3988488 56160 246.2423095703125 1.4369000000000001 360.25470000000001 20160 13592 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 417 320 0 64 0 2548953508 6622760 1 0 4 3 2 2 5 983040 737280 491520 491688 1248000 25 25 25 200 142 0 0 0 11 11 0 0 0 0 0 +980 1783857898718011800 REFRESH 17 0 0.70602392395754188 0.28109028960817717 0 7 0 7 0 0 3207 15 423 3987596 55200 246.51469421386719 1.5581 394.70620000000002 20160 12140 0 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 64 1 16 423 320 0 64 0 2549693192 7362444 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 250 98 0 0 1 1 13 0 0 0 0 0 +981 1783857899112125200 REFRESH 37 0 0.69982666370800239 0.8356047700170357 1 12 1 12 0 0 896 24 403 3988947 56640 244.48818969726562 1.5568 329.11250000000001 13440 8861 0 0 0.0085341443355613934 0.56218625238017594 4096 2048 64 1 16 403 320 0 64 0 2550412476 8081728 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 36 291 0 0 0 0 24 0 0 0 0 0 +982 1783857899494759200 REFRESH 31 0 0.54765845362760623 0.3594548551959113 2 6 2 6 0 0 2229 24 417 3987586 55200 247.86738586425781 1.4334 380.6327 20160 12041 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 417 320 0 64 0 2551146040 8815292 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 28 151 188 0 0 0 5 19 0 0 0 0 0 +983 1783857899900465500 REFRESH 8 0 0.70601903351695916 0.26575809199318562 2 5 2 5 0 0 2200 20 415 3987600 55200 247.90220642089844 1.4357 344.93079999999998 20160 12644 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 415 320 0 64 0 2551877564 9546816 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 26 121 218 0 0 0 9 11 0 0 0 0 0 +984 1783857900328348900 REFRESH 50 0 0.69453351864679691 0.64054514480408853 2 9 2 9 0 0 971 8 430 3988472 56160 237.21165466308594 1.4341999999999999 365.69510000000002 20160 14503 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 430 320 0 64 0 2552624388 10293640 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 217 138 0 0 0 0 8 0 0 0 0 0 +985 1783857900748538800 REFRESH 41 0 0.69821182968834838 0.55451448040885853 1 9 1 9 0 0 1837 36 416 3988000 55680 251.89068603515625 1.5202 357.20549999999997 20160 11830 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 416 320 0 64 0 2553356932 11026184 1 0 4 3 3 2 4 983040 737280 737280 491678 998400 25 25 27 121 218 1 0 0 11 24 0 0 0 0 0 +986 1783857901177817300 REFRESH 54 0 0.70093302676033842 0.4608177172061329 1 8 1 8 0 0 1001 11 421 3988006 55680 244.53324890136719 1.4319999999999999 361.5976 20160 12296 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 421 320 0 64 0 2554094576 11763828 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 25 179 167 0 0 0 0 11 0 0 0 0 0 +987 1783857901615788600 REFRESH 11 0 0.69872647964642831 0.37478705281090291 0 8 0 8 0 0 1981 12 430 3987988 55680 244.30592346191406 1.4998 377.15089999999998 20160 12102 0 0 0 0.6639611011928872 4096 2048 64 1 16 430 320 0 64 0 2554841400 12510652 1 0 4 3 3 2 4 983040 737280 737280 491659 998400 25 25 27 248 105 0 0 2 0 10 0 0 0 0 0 +988 1783857901999501800 REFRESH 35 0 0.6998924998368391 0.8279386712095399 2 11 2 11 0 0 991 16 403 3988951 56640 241.93228149414062 1.4341999999999999 318.54300000000001 13440 8988 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 403 320 0 64 0 2555560684 13229936 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 33 295 0 0 0 1 15 0 0 0 0 0 +989 1783857902384433400 REFRESH 47 0 0.69990871146312517 0.8279386712095399 2 11 2 11 0 0 564 22 410 3988969 56640 242.27430725097656 1.4792000000000001 323.2373 13440 8905 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 410 320 0 64 0 2556287108 13956360 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 26 25 25 30 304 0 0 0 0 22 0 0 0 0 0 +990 1783857902776492000 REFRESH 7 0 0.69992491137973711 0.8356047700170357 1 12 1 12 0 0 791 23 406 3988962 56640 243.79289245605469 1.4335 325.71140000000003 13440 8779 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 406 320 0 64 0 2557009452 14678704 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 34 297 0 0 0 0 23 0 0 0 0 0 +991 1783857903159508900 REFRESH 15 0 0.70065245539511123 0.91396933560476989 3 11 3 11 0 0 299 14 409 3988864 56640 244.42573547363281 1.4358 325.52609999999999 13440 9432 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 2557734856 15404108 1 0 5 2 2 1 6 1228800 491520 491520 245824 1497600 25 25 25 49 285 0 1 0 1 12 0 0 0 0 0 +992 1783857903547130200 REFRESH 42 0 0.86815145127774684 0 0 4 0 4 0 0 4096 6 431 3987737 55200 246.55462646484375 1.5746 385.92360000000002 20160 13350 0 0 0 0.0063417300788251949 4096 2048 64 1 16 431 320 0 64 0 2558482700 16151952 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 55 25 54 219 78 0 0 0 0 6 0 0 0 0 0 +993 1783857903948871900 REFRESH 58 0 0.69733309452709702 0.92163543441226559 2 12 2 12 0 0 492 21 410 3988947 56640 242.30195617675781 1.4614 335.09739999999999 13440 9908 0 0 0.011633049076434457 1.7487616260036116 4096 2048 64 1 16 410 320 0 64 0 2559209124 16878376 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 32 302 0 0 0 0 21 0 0 0 0 0 +994 1783857904378483500 REFRESH 21 0 0.69834860364789897 0.56218057921635434 0 10 0 10 0 0 2211 30 419 3987995 55680 244.19430541992188 1.4625999999999999 346.51889999999997 20160 13188 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 419 320 0 64 0 2559944728 17613980 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 26 125 218 0 0 0 7 23 0 0 0 0 0 +995 1783857904754697400 REFRESH 51 0 0.69727846114433722 0.91396933560476989 3 11 3 11 0 0 499 13 396 3988957 56640 242.21490478515625 1.5572999999999999 321.5258 13440 9869 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 396 320 0 64 0 2560656872 18326124 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 38 283 0 0 0 0 13 0 0 0 0 0 +996 1783857905141651300 REFRESH 16 0 0.69874500917692273 0.3594548551959113 2 6 2 6 0 0 2676 22 416 3987607 55200 246.30886840820312 1.4460999999999999 328.91379999999998 20160 14055 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 416 320 0 64 0 2561389416 19058668 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 25 105 236 0 0 0 3 19 0 0 0 0 0 +997 1783857905516922500 REFRESH 44 0 0.70088439600235086 0.36712095400340705 1 7 1 7 0 0 1827 21 437 3987565 55200 244.30490112304688 1.4712000000000001 373.31299999999999 20160 11884 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 437 320 0 64 0 2562143380 19812632 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 25 244 118 1 0 1 3 16 0 0 0 0 0 +998 1783857905936327300 REFRESH 39 0 0.7014304371285871 0.55451448040885853 1 9 1 9 0 0 1416 14 419 3988949 56640 242.02044677734375 1.4322999999999999 362.92259999999999 13440 9349 0 0 0.00024085368487065408 1.8581174850863764 4096 2048 64 1 16 419 320 0 64 0 2562878984 20548236 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 40 304 0 0 0 3 11 0 0 0 0 0 +999 1783857906315829700 REFRESH 46 0 0.69875908484218707 0.37478705281090291 0 8 0 8 0 0 2483 13 418 3987583 55200 246.73382568359375 1.4513 377.97480000000002 20160 12526 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 418 320 0 64 0 2563613568 21282820 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 27 196 145 0 0 0 3 10 0 0 0 0 0 +1000 1783857906800958500 REFRESH 53 0 0.69879636961701785 0.37478705281090291 0 8 0 8 0 0 4096 45 417 3987590 55200 246.58534240722656 1.4475 360.19220000000001 20160 13913 0 0 0 0.25204364054906236 4096 2048 64 1 16 417 320 0 64 0 2564347132 22016384 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 25 187 155 0 0 0 13 32 0 0 0 0 0 +1001 1783857907210913600 REFRESH 45 0 0.70115590379973036 0.45315161839863699 2 7 2 7 0 0 1785 21 424 3987987 55680 244.71757507324219 1.4319 351.06 20160 12494 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 424 320 0 64 0 2565087836 22757088 1 0 4 3 3 2 4 983040 737280 737280 491667 998400 25 25 26 175 173 0 0 0 6 15 0 0 0 0 0 +1002 1783857907584668700 REFRESH 49 0 0.70012585274005668 0.82027257240204421 3 10 3 10 0 0 1014 31 409 3988959 56640 242.14016723632812 1.4767999999999999 318.59870000000001 13440 8833 0 0 0.11220515413423167 0.24605864362720831 4096 2048 64 1 16 409 320 0 64 0 2565813240 23482492 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 35 299 0 0 0 3 28 0 0 0 0 0 +1003 1783857907991939700 REFRESH 1 0 0.69881505422678902 0.36712095400340705 1 7 1 7 0 0 2548 32 423 3987597 55200 244.780029296875 1.6808000000000001 347.7604 20160 12062 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 423 320 0 64 0 2566552924 24222176 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 26 185 162 0 0 1 9 22 0 0 0 0 0 +1004 1783857908326574100 REFRESH 23 0 0.69783933138331666 0.74190800681430991 1 11 1 11 0 0 3275 12 409 3988969 56640 243.80021667480469 1.5046999999999999 332.74779999999998 13440 8072 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 409 320 0 64 0 2567278328 24947580 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 25 30 304 0 0 0 0 12 0 0 0 0 0 +1005 1783857908722109900 REFRESH 26 0 0.70549037734168607 0.74957410562180571 0 12 0 12 0 0 1263 45 419 3988085 55680 246.67750549316406 1.5245 333.459 20160 14857 0 0 0 0.81613495132173064 4096 2048 64 1 16 419 320 0 64 0 2568013932 25683184 1 0 4 3 2 3 4 983040 737280 491520 737523 998400 25 25 25 97 247 0 0 0 13 32 0 0 0 0 0 +1006 1783857909105660600 REFRESH 55 0 0.72681206459358838 0.64054514480408853 2 9 2 9 0 0 986 10 414 3988108 55680 245.43846130371094 1.4492 324.48349999999999 13440 8068 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 414 320 0 64 0 2568744436 26413688 1 0 4 2 3 3 4 983040 491520 737280 737529 998400 25 25 26 174 164 0 0 0 0 10 0 0 0 0 0 +1007 1783857909492853900 REFRESH 0 0 0.7010074999631144 0.8279386712095399 2 11 2 11 0 0 793 14 416 3988967 56640 242.22207641601562 1.4428000000000001 326.41359999999997 13440 9469 0 0 0.00017817385236690964 2.3450496297959931 4096 2048 64 1 16 416 320 0 64 0 2569476980 27146232 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 47 294 0 0 0 0 14 0 0 0 0 0 +1008 1783857909882638700 REFRESH 4 0 0.68972661382492784 0.8356047700170357 1 12 1 12 0 0 256 5 414 3988891 56640 242.57945251464844 1.4369000000000001 322.79849999999999 13440 9849 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 414 320 0 64 0 2570207484 27876736 1 0 6 2 1 1 6 1474560 491520 245760 245851 1497600 27 25 25 38 299 0 0 0 0 5 0 0 0 0 0 +1009 1783857910332532400 REFRESH 25 0 0.70127378271684715 0.4608177172061329 1 8 1 8 0 0 2137 8 416 3988008 55680 245.19987487792969 1.5438000000000001 382.81610000000001 20160 12417 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 416 320 0 64 0 2570940028 28609280 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 196 145 0 0 0 2 6 0 0 0 0 0 +1010 1783857910714454400 REFRESH 24 0 0.69974630499800039 1 4 11 4 11 1 0 480 14 403 3988954 56640 242.41561889648438 1.4367000000000001 325.09129999999999 6720 4587 0 0 0.070125946914955439 1.4378063310002365 4096 2048 64 1 16 403 320 0 64 0 2571659312 29328564 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 27 25 25 25 301 0 0 0 0 14 0 0 0 0 1 +1011 1783857911211888800 REFRESH 40 0 0.69914830347374457 0.64821124361158422 1 10 1 10 0 0 1470 7 414 3988933 56640 241.43359375 1.4483999999999999 382.53570000000002 13440 8651 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 414 320 0 64 0 2572389816 30059068 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 37 302 0 0 0 0 7 0 0 0 0 0 +1012 1783857911588239700 REFRESH 5 0 0.7002831870346975 0.8279386712095399 2 11 2 11 0 0 744 22 422 3988934 56640 241.80531311035156 1.4476 321.36320000000001 13440 9777 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 422 320 0 64 0 2573128480 30797732 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 64 283 0 0 0 2 20 0 0 0 0 0 +1013 1783857911979871800 REFRESH 12 0 0.70019256255009799 0.63287904599659284 3 8 3 8 0 0 1142 12 429 3988975 56640 242.34188842773438 1.4340999999999999 330.27050000000003 13440 8101 0 0 0.0015102624860077482 0.9394486955269914 4096 2048 64 1 16 429 320 0 64 0 2573874284 31543536 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 25 25 25 78 276 0 0 0 2 10 0 0 0 0 0 +1014 1783857912366984100 REFRESH 29 0 0.69855949645442139 0.82027257240204421 3 10 3 10 0 0 1059 16 419 3988979 56640 242.376708984375 1.4449000000000001 326.45269999999999 13440 8764 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 419 320 0 64 0 2574609888 32279140 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 26 25 25 33 310 0 0 0 0 16 0 0 0 0 0 +1015 1783857912774726200 REFRESH 30 0 0.70136174658654493 0.4608177172061329 1 8 1 8 0 0 2780 37 420 3988089 55680 243.71200561523438 1.4551000000000001 349.58580000000001 13440 8244 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 420 320 0 64 0 2575346512 33015764 1 0 4 2 3 3 4 983040 491520 737280 737527 998400 25 25 25 183 162 0 0 0 6 31 0 0 0 0 0 +1016 1783857913166221000 REFRESH 27 0 0.69764143691298242 0.93696763202725719 0 14 0 14 0 0 805 22 408 3988933 56640 243.26042175292969 1.4543999999999999 331.67039999999997 13440 8493 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 408 320 0 64 0 2576070896 33740148 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 25 25 25 27 306 0 0 0 0 22 0 0 0 0 0 +1017 1783857913600588100 REFRESH 52 0 0.69836524711936532 0.36712095400340705 1 7 1 7 0 0 1819 19 430 3987596 55200 244.93260192871094 1.4428000000000001 367.46319999999997 20160 12022 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 430 320 0 64 0 2576817720 34486972 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 31 239 110 0 1 1 6 11 0 0 0 0 0 +1018 1783857913978617600 REFRESH 18 0 0.70097323159594016 0.9293015332197615 1 13 1 13 0 0 427 14 413 3988949 56640 244.16767883300781 1.4365000000000001 321.87119999999999 13440 9086 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 413 320 0 64 0 2577547204 35216456 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 31 306 0 0 0 0 14 0 0 0 0 0 +1019 1783857914368782500 REFRESH 10 0 0.70034114732743058 0.64821124361158422 1 10 1 10 0 0 1022 14 422 3988948 56640 243.69151306152344 1.4315 322.60149999999999 13440 8081 0 0 0.0040407710321612731 2.9277816338853699 4096 2048 64 1 16 422 320 0 64 0 2578285868 35955120 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 57 290 0 0 0 0 14 0 0 0 0 0 +1020 1783857914749632400 REFRESH 28 0 0.70040548298941663 0.8279386712095399 2 11 2 11 0 0 570 15 405 3988949 56640 243.85638427734375 1.4403999999999999 320.51249999999999 13440 8325 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 405 320 0 64 0 2579007192 36676444 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 25 26 303 0 0 0 0 15 0 0 0 0 0 +1021 1783857915076563600 REFRESH 14 0 0.69802746065145105 0.65587734241908002 0 11 0 11 0 0 1409 36 423 3988479 56160 244.93157958984375 1.4326000000000001 325.60840000000002 13440 8115 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 423 320 0 64 0 2579746876 37416128 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 26 25 25 56 291 0 0 0 4 32 0 0 0 0 0 +1022 1783857915527697300 REFRESH 9 0 0.70671199929066675 0.27342419080068137 1 6 1 6 0 0 2308 57 418 3987625 55200 245.97299194335938 1.4662999999999999 369.38889999999998 20160 11920 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 418 320 0 64 0 2580481460 38150712 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 33 160 175 0 0 1 18 38 0 0 0 0 0 +1023 1783857916032429200 REFRESH 43 0 0.69869088284253356 0.8279386712095399 2 11 2 11 0 0 730 20 421 3988972 56640 241.68447875976562 1.4505999999999999 319.88810000000001 13440 9941 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 421 320 0 64 0 2581219104 38888356 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 25 25 25 47 299 0 0 0 4 16 0 0 0 0 0 +1024 1783857916433441200 REFRESH 2 0 0.7014987178401213 0.45315161839863699 2 7 2 7 0 0 2749 34 413 3988058 55680 243.46829223632812 1.4332 339.51749999999998 13440 8208 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 413 320 0 64 0 2581948588 39617840 1 0 4 2 3 3 4 983040 491520 737280 737495 998400 25 26 25 161 176 0 0 0 6 28 0 0 0 0 0 +1025 1783857916845253400 REFRESH 38 0 0.70164516119687992 0.55451448040885853 1 9 1 9 0 0 1815 8 431 3988466 56160 243.58706665039062 1.4379999999999999 348.21230000000003 20160 13526 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 431 320 0 64 0 2582696432 40365684 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 268 88 0 0 0 1 7 0 0 0 0 0 +1026 1783857917241015600 REFRESH 19 0 0.70050149410209051 0.8279386712095399 2 11 2 11 0 0 802 16 417 3988968 56640 242.38694763183594 1.4431 335.80369999999999 13440 8831 0 0 0.023775706505965881 0.39358709546121162 4096 2048 64 1 16 417 320 0 64 0 2583429996 41099248 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 28 314 0 0 0 0 16 0 0 0 0 0 +1027 1783857917634963500 REFRESH 6 0 0.69777878216517752 0.91396933560476989 3 11 3 11 0 0 366 6 424 3988966 56640 241.92921447753906 1.4432 328.36770000000001 6720 4865 0 0 0.078490995891016657 0.16637572843653256 3941 1893 64 1 16 424 320 0 64 0 2584170700 41839952 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 25 25 25 32 317 0 0 0 0 6 0 0 0 0 0 +1028 1783857918089452900 REFRESH 33 0 0.69916123190706014 0.36712095400340705 1 7 1 7 0 0 2963 33 417 3987620 55200 246.25868225097656 1.4439 342.19380000000001 20160 12009 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 417 320 0 64 0 2584904264 42573516 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 30 141 196 0 0 1 10 22 0 0 0 0 0 +1029 1783857918541422200 REFRESH 56 0 0.70565893913368538 0.26575809199318562 2 5 2 5 0 0 4096 16 424 3987597 55200 244.45747375488281 1.4329000000000001 386.72750000000002 20160 11940 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 424 320 0 64 0 2585644968 43314220 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 27 266 81 1 0 0 1 14 0 0 0 0 0 +1030 1783857918956783500 REFRESH 32 0 0.70158000870258264 0.4608177172061329 1 8 1 8 0 0 2362 28 420 3987995 55680 244.13197326660156 1.452 344.4264 20160 13734 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 420 320 0 64 0 2586381592 44050844 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 25 148 197 0 0 0 4 24 0 0 0 0 0 +1031 1783857919398409100 REFRESH 20 0 0.69995593815080581 0.26575809199318562 2 5 2 5 0 0 1853 10 425 3987617 55200 244.97576904296875 1.4336 370.7912 20160 12115 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 425 320 0 64 0 2587123316 44792568 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 40 149 186 0 0 1 0 9 0 0 0 0 0 +1032 1783857921765210000 DEPTH 42 1 0.86308241701017652 0 0 4 0 4 0 0 4096 17 2587 23678139 81600 1419.7936859130859 8.6475000000000009 2305.0538999999999 120960 65140 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2587 1920 0 384 1 2591620964 49290216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 293 150 287 1377 480 0 0 0 0 17 0 0 0 0 0 +1033 1783857923807568800 DEPTH 55 1 0.71802435108538964 0.64054514480408853 2 9 2 9 0 0 988 46 2523 23691826 96000 1424.4956207275391 8.7164000000000001 1979.5235 94080 44663 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2523 1920 0 384 1 2596053332 53722584 1 0 4 3 3 3 3 5898240 3440640 4423680 4426430 5491200 150 150 150 596 1477 0 0 0 2 44 0 0 0 0 0 +1034 1783857926068820700 DEPTH 57 1 0.70366677464906813 0.27342419080068137 1 6 1 6 0 0 3751 104 2533 23677477 81600 1417.6778259277344 8.6493000000000002 2196.7660000000001 120960 55867 1 0 0.00071383568234315085 0.50226980948182898 4096 2048 384 12 96 2533 1920 0 384 1 2600495900 58165152 1 0 4 3 3 3 3 5898240 4423680 4423680 4426492 4492800 150 150 150 482 1601 0 0 0 1 103 0 0 0 0 0 +1035 1783857928414601700 DEPTH 17 1 0.70315003347499649 0.28109028960817717 0 7 0 7 0 0 3229 50 2584 23677416 81600 1412.3644104003906 8.8255999999999997 2270.6824000000001 120960 56728 1 1 1.7385079409068751e-05 0.10530030210765323 4096 2048 384 12 96 2584 1920 0 384 1 2604990488 62659740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 150 1150 984 0 0 5 0 44 0 0 0 0 0 +1036 1783857930604431500 DEPTH 8 1 0.70312156311094032 0.26575809199318562 2 5 2 5 0 0 2215 67 2533 23677481 81600 1417.5139923095703 8.8116999999999983 2074.2629999999999 120960 63954 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2533 1920 0 384 1 2609433056 67102308 1 0 4 3 3 3 3 5898240 4423680 4423680 4426558 4492800 150 150 156 501 1576 0 0 0 5 62 0 0 0 0 0 +1037 1783857934037231100 DEPTH 48 1 0.70310131132677411 0.26575809199318562 2 5 2 5 0 0 2143 60 2576 23677449 81600 1435.1810455322266 9.3966999999999992 3430.7712999999999 120960 57398 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2576 1920 0 384 1 2613919564 4480068 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 150 150 150 554 1572 1 1 9 0 49 0 0 0 0 0 +1038 1783857936340376500 DEPTH 13 1 0.70311428802480713 0.27342419080068137 1 6 1 6 0 0 3541 67 2569 23677484 81600 1371.8857421875 8.6981000000000002 2224.4958999999999 120960 55704 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2569 1920 0 384 1 2618398852 8959356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 156 752 1361 4 0 4 1 58 0 0 0 0 0 +1039 1783857938453822800 DEPTH 26 1 0.69904828966801302 0.74957410562180571 0 12 1 10 1 0 1314 122 2575 23722089 126720 1324.4600524902344 9.0876000000000001 2111.6727999999998 100800 60355 1 0 0.10714915714194641 0.95923409063333132 4096 2048 384 12 96 2575 1920 0 384 1 2622884260 13444764 1 0 4 2 2 2 6 5898240 3686400 2949120 3688783 7488000 150 150 150 207 1918 0 0 0 4 118 0 0 0 0 2 +1040 1783857940784358600 DEPTH 39 1 0.69817808685490501 0.55451448040885853 1 9 1 9 0 0 1424 42 2592 23742675 147840 1307.49853515625 8.6042000000000005 2110.9371000000001 80640 46166 1 0 0.00024085368487065408 1.8581174850863764 4096 2048 384 12 96 2592 1920 0 384 1 2627387008 17947512 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 178 1964 0 0 0 1 41 0 0 0 0 0 +1041 1783857943051996100 DEPTH 45 1 0.69745409027025707 0.45315161839863699 2 7 2 7 0 0 1792 33 2566 23698517 103680 1320.3629913330078 8.6824000000000012 2143.4607999999998 120960 61978 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2566 1920 0 384 1 2631863236 22423740 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 150 150 156 799 1311 0 0 1 0 32 0 0 0 0 0 +1042 1783857945249630500 DEPTH 54 1 0.69746817765322744 0.4608177172061329 1 8 1 8 0 0 1009 37 2566 23698545 103680 1314.8620758056641 8.8879000000000001 2135.0520000000001 120960 60383 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2566 1920 0 384 1 2636339464 26899968 1 0 4 3 3 2 4 5898240 4423680 4423680 2951007 5990400 150 150 150 607 1509 1 0 2 0 34 0 0 0 0 0 +1043 1783857947506355600 DEPTH 30 1 0.69748225510621986 0.4608177172061329 1 8 1 8 0 0 2801 72 2531 23699435 103680 1322.0628662109375 8.6469000000000005 2130.6862000000001 80640 38852 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2531 1920 0 384 1 2640779992 31340496 1 0 4 2 3 3 4 5898240 2949120 4423680 4426442 5990400 150 150 150 784 1297 0 0 1 2 69 0 0 0 0 0 +1044 1783857949720440300 DEPTH 44 1 0.69746514211730015 0.36712095400340705 1 7 1 7 0 0 1837 46 2633 23677513 81600 1329.2283172607422 8.789200000000001 2143.2712999999999 120960 57377 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2633 1920 0 384 1 2645324560 35885064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1322 861 0 0 0 1 45 0 0 0 0 0 +1045 1783857951652987800 DEPTH 0 1 0.69674814352946846 0.8279386712095399 2 11 2 11 1 0 798 33 2570 23742620 147840 1307.0837707519531 8.6939000000000011 1865.2871 80640 46692 1 0 0.00017143269285358514 2.2184394717292082 4096 2048 384 12 96 2570 1920 0 384 1 2649804868 40365372 1 0 4 2 2 2 6 5898240 2949120 2949120 2950922 8985600 150 150 150 162 1958 0 0 0 0 33 0 0 0 0 1 +1046 1783857953677993700 DEPTH 15 1 0.69669987267729294 0.91396933560476989 3 11 3 11 0 0 299 26 2508 23741718 147840 1387.615234375 9.2884000000000011 1961.7527 80640 46269 1 0 0.13215737202774189 0.95319511763653475 4096 2048 384 12 96 2508 1920 0 384 1 2654221936 44782440 1 0 5 2 2 1 6 7372800 2949120 2949120 1475461 8985600 150 150 150 230 1828 0 0 0 0 26 0 0 0 0 0 +1047 1783857955707808100 DEPTH 12 1 0.69612791680925445 0.63287904599659284 3 8 3 8 0 0 1146 39 2595 23731137 136320 1408.5212097167969 8.6965000000000003 1966.9244000000001 80640 39703 1 0 0.0015102624860077482 0.9394486955269914 4096 2048 384 12 96 2595 1920 0 384 1 2658727744 49288248 1 0 4 2 3 2 5 5898240 2949120 3686400 2950931 8236800 150 150 150 277 1868 0 0 3 1 35 0 0 0 0 0 +1048 1783857957915674300 DEPTH 42 1 0.77215281685137116 0 0 4 0 4 0 0 4096 17 2591 23678281 81600 1322.4502105712891 8.6944999999999997 2205.8135000000002 120960 54165 1 1 0 0.0063417300788251949 4096 2048 384 12 96 2591 1920 0 384 1 2663229472 53789976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 246 150 269 1443 483 0 0 0 0 16 0 0 0 0 0 +1049 1783857960136869900 DEPTH 9 1 0.70343879737200199 0.27342419080068137 1 6 1 6 0 0 2343 124 2566 23677683 81600 1329.328125 8.6710999999999991 2142.7833000000001 120960 57494 1 0 0.00044660124117503435 0.41914845195397527 4096 2048 384 12 96 2566 1920 0 384 1 2667705700 58266204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 190 738 1338 0 0 2 10 112 0 0 0 0 0 +1050 1783857962053174900 DEPTH 18 1 0.69636083776380397 0.9293015332197615 1 13 1 13 0 0 428 71 2524 23742670 147840 1323.2189788818359 8.6530000000000005 1853.4416000000001 80640 44812 1 0 0.0012150407981630323 1.546403768140675 4096 2048 384 12 96 2524 1920 0 384 1 2672139088 62699592 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 156 150 150 158 1910 0 0 0 0 71 0 0 0 0 0 +1051 1783857965145987600 DEPTH 10 1 0.69623716547705916 0.64821124361158422 1 10 1 10 1 0 1032 48 2557 23731115 136320 1315.4244689941406 8.7459000000000007 3029.8606 80640 39637 1 0 0.0015140858405583919 2.9186252663112193 4096 2048 384 12 96 2557 1920 0 384 1 2676606216 58084 1 0 4 2 3 2 5 5898240 2949120 3686400 2950923 8236800 150 150 150 463 1644 1 0 0 1 46 0 0 0 0 1 +1052 1783857967064665300 DEPTH 37 1 0.69587941929425401 0.8356047700170357 1 12 1 12 1 0 896 33 2529 23742679 147840 1310.2186737060547 8.6311 1840.4135000000001 80640 43962 1 0 0.010850465444161446 0.56786513058378374 4096 2048 384 12 96 2529 1920 0 384 1 2681044704 4496572 1 0 4 2 2 2 6 5898240 2949120 2949120 2950981 8985600 156 150 150 150 1923 0 0 0 1 32 0 0 0 0 1 +1053 1783857969000404200 DEPTH 36 1 0.695860584009654 0.82027257240204421 3 10 3 10 0 0 1069 52 2548 23742618 147840 1309.6437683105469 8.7515999999999998 1877.4028000000001 80640 44215 1 0 0.06306909641165509 0.16426465714391286 4096 2048 384 12 96 2548 1920 0 384 1 2685502572 8954440 1 0 4 2 2 2 6 5898240 2949120 2949120 2950915 8985600 156 150 150 150 1942 0 0 1 3 48 0 0 0 0 0 +1054 1783857970921710100 DEPTH 24 1 0.69587805616085918 1 4 11 4 11 0 0 484 58 2530 23742671 147840 1316.2405090332031 8.7887999999999984 1852.3688999999999 80640 42532 1 0 0.070125946914955439 1.4378063310002365 4096 2048 384 12 96 2530 1920 0 384 1 2689942080 13393948 1 0 4 2 2 2 6 5898240 2949120 2949120 2950973 8985600 160 150 150 150 1920 0 0 0 0 58 0 0 0 0 0 +1055 1783857972920376700 DEPTH 49 1 0.69588835747148259 0.82027257240204421 3 10 3 10 1 0 1022 53 2553 23742647 147840 1390.5379486083984 8.6808999999999994 1934.5102999999999 80640 44663 1 0 0.023587674058266388 0.48158509424076118 4096 2048 384 12 96 2553 1920 0 384 1 2694405048 17856916 1 0 4 2 2 2 6 5898240 2949120 2949120 2950948 8985600 150 150 150 168 1935 0 0 0 7 46 0 0 0 0 1 +1056 1783857975304733900 DEPTH 26 1 0.71694955721120235 0.64821124361158422 1 10 1 10 1 0 1352 122 2579 23742654 147840 1425.2738647460938 8.8422999999999998 2313.1165999999998 80640 32979 1 0 0.056580481793380086 1.3828415019018279 4096 2048 384 12 96 2579 1920 0 384 1 2698894536 22346404 1 0 4 2 2 2 6 5898240 2949120 2949120 2950940 8985600 150 150 150 150 1979 0 0 0 2 120 0 0 0 0 1 +1057 1783857977834754300 DEPTH 56 1 0.70250995872142163 0.26575809199318562 2 5 2 5 0 0 4096 53 2565 23677532 81600 1425.2369842529297 9.2606000000000002 2377.7910999999999 120960 56303 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2565 1920 0 384 1 2703369744 26821612 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 168 1413 684 1 0 2 0 50 0 0 0 0 0 +1058 1783857980145101800 DEPTH 2 1 0.69769739464237901 0.45315161839863699 2 7 2 7 0 0 2774 105 2536 23699537 103680 1419.9637298583984 8.7756000000000007 2235.1777000000002 80640 39257 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2536 1920 0 384 1 2707815372 31267240 1 0 4 2 3 3 4 5898240 2949120 4423680 4426544 5990400 150 150 150 380 1706 0 0 0 4 101 0 0 0 0 0 +1059 1783857982528800300 DEPTH 32 1 0.69770615489062648 0.4608177172061329 1 8 1 8 0 0 2369 60 2534 23698441 103680 1423.1255187988281 8.7840999999999987 2275.7712999999999 120960 68076 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2534 1920 0 384 1 2712258960 35710828 1 0 4 3 3 2 4 5898240 4423680 4423680 2950899 5990400 150 150 150 344 1740 2 0 0 3 55 0 0 0 0 0 +1060 1783857984853500200 DEPTH 20 1 0.69765190783006004 0.26575809199318562 2 5 2 5 0 0 1861 34 2606 23677348 81600 1381.9760437011719 8.7559000000000005 2262.2202000000002 120960 57493 1 1 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2606 1920 0 384 1 2716775988 40227856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426385 4492800 150 150 208 638 1460 0 0 2 0 31 0 0 0 0 0 +1061 1783857986875053600 DEPTH 5 1 0.69597652585462477 0.8279386712095399 2 11 2 11 0 0 754 48 2552 23742718 147840 1409.9804382324219 8.8590999999999998 1957.5062 80640 46991 1 0 0.013882121795455482 0.46345450206338867 4096 2048 384 12 96 2552 1920 0 384 1 2721237936 44689804 1 0 4 2 2 2 6 5898240 2949120 2949120 2951020 8985600 150 150 150 240 1862 6 0 6 0 36 0 0 0 0 0 +1062 1783857988988512500 DEPTH 19 1 0.69598824196521847 0.8279386712095399 2 11 2 11 1 0 803 31 2556 23742673 147840 1422.0124053955078 9.2234999999999996 2049.0920999999998 80640 44282 1 0 0.032475909515599824 0.54029676571176888 4096 2048 384 12 96 2556 1920 0 384 1 2725703964 49155832 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 150 150 150 156 1950 0 0 0 0 31 0 0 0 0 2 +1063 1783857991023238100 DEPTH 35 1 0.69600226066733806 0.8279386712095399 2 11 2 11 0 0 1005 96 2488 23742638 147840 1420.4538879394531 8.6837 1971.3823 80640 44058 1 0 0.10284194156167628 1.462681166290273 4096 2048 384 12 96 2488 1920 0 384 1 2730100632 53552500 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 150 150 150 160 1878 0 0 0 2 94 0 0 0 0 0 +1064 1783857991467433200 REFRESH 50 0 0.69000267680765415 0.64054514480408853 2 9 2 9 0 0 971 9 432 3988494 56160 246.223876953125 1.4413 380.37810000000002 20160 14245 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 432 320 0 64 0 2730849496 54301364 1 0 4 3 2 2 5 983040 737280 491520 491694 1248000 25 25 25 206 151 0 0 0 0 9 0 0 0 0 0 +1065 1783857991900088300 REFRESH 45 0 0.68365394181708816 0.45315161839863699 2 7 2 7 0 0 1796 23 422 3987994 55680 247.66053771972656 1.5228999999999999 362.24930000000001 20160 11777 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 422 320 0 64 0 2731588160 55040028 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 26 213 133 0 0 0 9 14 0 0 0 0 0 +1066 1783857992300235300 REFRESH 12 0 0.63199328632093454 0.63287904599659284 3 8 3 8 1 0 1149 9 424 3988472 56160 243.93830871582031 1.4505999999999999 332.28129999999999 13440 7923 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 424 320 0 64 0 2732328864 55780732 1 0 4 2 3 2 5 983040 491520 737280 491668 1248000 25 25 26 122 226 1 0 0 1 7 0 0 0 0 1 +1067 1783857992674523900 REFRESH 27 0 0.69335907842077349 0.93696763202725719 0 14 0 14 0 0 808 22 409 3988980 56640 231.01548767089844 1.4666999999999999 313.0138 13440 8472 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 409 320 0 64 0 2733054268 56506136 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 25 25 25 27 307 0 0 0 0 22 0 0 0 0 0 +1068 1783857993123096600 REFRESH 17 0 0.7000654380377811 0.28109028960817717 0 7 0 7 0 0 3234 13 423 3987629 55200 229.57977294921875 1.4481999999999999 368.5684 20160 11966 0 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 64 1 16 423 320 0 64 0 2733793952 57245820 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 25 265 83 1 0 0 0 12 0 0 0 0 0 +1069 1783857993513004800 REFRESH 38 0 0.69583465738076788 0.55451448040885853 1 9 1 9 0 0 1818 16 426 3988473 56160 227.79702758789062 1.4424999999999999 329.05099999999999 20160 13242 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 426 320 0 64 0 2734536696 57988564 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 25 268 83 0 0 0 2 14 0 0 0 0 0 +1070 1783857993886374100 REFRESH 7 0 0.69610725147187136 0.8356047700170357 1 12 1 12 0 0 796 27 406 3988954 56640 227.6444091796875 1.4597 315.68579999999997 13440 8789 0 0 0.00036830025183520201 0.88322933222718147 4096 2048 64 1 16 406 320 0 64 0 2735259040 58710908 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 35 296 0 0 0 0 27 0 0 0 0 0 +1071 1783857994212947000 REFRESH 32 0 0.56373541935593674 0.4608177172061329 1 8 1 8 0 0 2378 29 417 3987992 55680 229.85215759277344 1.4408000000000001 324.93920000000003 20160 12456 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 417 320 0 64 0 2735992604 59444472 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 25 179 163 0 0 0 10 19 0 0 0 0 0 +1072 1783857994579826900 REFRESH 6 0 0.69025970496570221 0.91396933560476989 3 11 3 11 0 0 366 13 418 3988941 56640 226.69004821777344 1.4388000000000001 306.49630000000002 6720 4957 0 0 0.078490995891016657 0.16637572843653256 3972 1924 64 1 16 418 320 0 64 0 2736727188 60179056 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 25 25 25 30 313 0 0 0 0 13 0 0 0 0 0 +1073 1783857994976837300 REFRESH 9 0 0.69022477142333671 0.27342419080068137 1 6 1 6 0 0 2358 40 423 3987602 55200 229.65145874023438 1.4418 340.18830000000003 20160 12303 0 0 0.00044660124117503435 0.41914845195397527 4096 2048 64 1 16 423 320 0 64 0 2737466872 60918740 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 34 166 173 0 0 1 9 30 0 0 0 0 0 +1074 1783857995280142700 REFRESH 19 0 0.56134850114345924 0.8279386712095399 2 11 2 11 0 0 805 12 411 3988948 56640 227.48057556152344 1.4349000000000001 301.5342 13440 8079 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 411 320 0 64 0 2738194316 61646184 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 29 307 0 0 0 0 12 0 0 0 0 0 +1075 1783857995592530400 REFRESH 36 0 0.66133901566784448 0.82027257240204421 3 10 3 10 0 0 1075 40 410 3988944 56640 226.58988952636719 1.4413 310.93110000000001 13440 8101 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 410 320 0 64 0 2738920740 62372608 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 25 36 298 0 0 1 3 36 0 0 0 0 0 +1076 1783857995953510100 REFRESH 58 0 0.69354780117159653 0.92163543441226559 2 12 2 12 0 0 496 11 413 3988999 56640 227.45599365234375 1.4428000000000001 303.1311 13440 9790 0 0 0.011633049076434457 1.7487616260036116 4096 2048 64 1 16 413 320 0 64 0 2739650224 63102092 1 0 4 2 2 2 6 983040 491520 491520 491717 1497600 26 25 25 36 301 0 0 0 0 11 0 0 0 0 0 +1077 1783857996313983900 REFRESH 47 0 0.69621173488348487 0.8279386712095399 2 11 2 11 0 0 568 23 410 3988940 56640 227.8236083984375 1.4370000000000001 302.65699999999998 13440 8713 0 0 0.031374216798943186 1.3938937060236263 4096 2048 64 1 16 410 320 0 64 0 2740376648 63828516 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 25 30 304 0 0 0 0 23 0 0 0 0 0 +1078 1783857996747505400 REFRESH 25 0 0.69596881395243981 0.4608177172061329 1 8 1 8 0 0 2138 12 416 3988014 55680 229.17222595214844 1.4350000000000001 364.09039999999999 20160 12180 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 416 320 0 64 0 2741109192 64561060 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 25 187 154 0 0 0 1 11 0 0 0 0 0 +1079 1783857997102626600 REFRESH 56 0 0.66937103528491915 0.26575809199318562 2 5 2 5 0 0 4096 9 426 3987606 55200 229.68319702148438 1.4340999999999999 353.42500000000001 20160 11950 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 426 320 0 64 0 2741851936 65303804 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 29 272 75 0 0 0 0 9 0 0 0 0 0 +1080 1783857997479759300 REFRESH 33 0 0.69600140523392695 0.36712095400340705 1 7 1 7 0 0 2992 44 419 3987599 55200 229.91360473632812 1.4419 320.96539999999999 20160 11899 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 419 320 0 64 0 2742587540 66039408 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 31 169 169 0 0 0 10 34 0 0 0 0 0 +1081 1783857997847551100 REFRESH 43 0 0.69468533370407226 0.8279386712095399 2 11 2 11 0 0 730 13 419 3988959 56640 227.10887145996094 1.4515 307.4153 13440 9675 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 419 320 0 64 0 2743323144 66775012 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 47 297 0 0 0 1 12 0 0 0 0 0 +1082 1783857999479235900 REFRESH 46 0 0.69602740908914051 0.37478705281090291 0 8 0 8 0 0 2486 17 425 3987600 55200 230.18290710449219 1.4510000000000001 1517.2095999999999 20160 12500 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 425 320 0 64 0 2744064948 408444 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 28 212 135 0 0 0 2 15 0 0 0 0 0 +1083 1783857999877867300 REFRESH 53 0 0.69606134711049927 0.37478705281090291 0 8 0 8 0 0 4096 28 414 3987584 55200 229.01863098144531 1.4426000000000001 338.69999999999999 20160 13809 0 0 0 0.25204364054906236 4096 2048 64 1 16 414 320 0 64 0 2744795452 1138948 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 185 154 0 0 0 4 24 0 0 0 0 0 +1084 1783858000299741600 REFRESH 11 0 0.69617603210153423 0.37478705281090291 0 8 0 8 0 0 1982 10 425 3987999 55680 229.43128967285156 1.4312 362.3664 20160 12150 0 0 0 0.6639611011928872 4096 2048 64 1 16 425 320 0 64 0 2745537176 1880672 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 27 246 102 0 0 1 0 9 0 0 0 0 0 +1085 1783858000689232800 REFRESH 14 0 0.69432603127845505 0.65587734241908002 0 11 0 11 0 0 1418 23 414 3988467 56160 229.23878479003906 1.4369000000000001 322.58269999999999 13440 7954 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 414 320 0 64 0 2746267680 2611176 1 0 4 2 3 2 5 983040 491520 737280 491665 1248000 26 25 25 62 276 0 0 0 4 19 0 0 0 0 0 +1086 1783858001006671500 REFRESH 26 0 0.78178392807203367 0.64821124361158422 1 10 1 10 0 0 1378 44 419 3988963 56640 227.96185302734375 1.4373 315.67200000000003 13440 9455 0 0 0.056580481793380086 1.3828415019018279 4096 2048 64 1 16 419 320 0 64 0 2747003284 3346780 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 26 318 0 0 0 2 42 0 0 0 0 0 +1087 1783858001385491100 REFRESH 37 0 0.69159702392143951 0.8356047700170357 1 12 1 12 0 0 904 28 408 3988958 56640 239.64979553222656 1.4551000000000001 321.0967 13440 8206 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 408 320 0 64 0 2747727668 4071164 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 25 35 297 0 0 0 0 28 0 0 0 0 0 +1088 1783858001841647200 REFRESH 39 0 0.69507734861925785 0.55451448040885853 1 9 1 9 1 0 1426 11 418 3988957 56640 245.71084594726562 1.4496 379.53660000000002 13440 8568 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 418 320 0 64 0 2748462252 4805748 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 43 300 0 0 0 1 10 0 0 0 0 1 +1089 1783858002237586900 REFRESH 0 0 0.69278983036411779 0.8279386712095399 2 11 2 11 0 0 801 21 418 3988943 56640 244.75033569335938 1.4578 326.7525 13440 8650 0 0 0.00017143269285358514 2.2184394717292082 4096 2048 64 1 16 418 320 0 64 0 2749196836 5540332 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 48 295 0 0 0 2 19 0 0 0 0 0 +1090 1783858002629462000 REFRESH 10 0 0.69239928528869432 0.64821124361158422 1 10 1 10 0 0 1033 11 432 3988478 56160 247.10041809082031 1.4421999999999999 330.89179999999999 13440 7980 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 432 320 0 64 0 2749945700 6289196 1 0 4 2 3 2 5 983040 491520 737280 491670 1248000 25 25 25 169 188 0 0 0 0 11 0 0 0 0 0 +1091 1783858003020682100 REFRESH 23 0 0.69436489610730545 0.74190800681430991 1 11 1 11 0 0 3277 18 415 3988937 56640 246.19110107421875 1.4661 331.6771 13440 8152 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 415 320 0 64 0 2750677224 7020720 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 25 31 309 0 0 0 0 18 0 0 0 0 0 +1092 1783858003436181100 REFRESH 1 0 0.6961568948166299 0.36712095400340705 1 7 1 7 0 0 2556 21 417 3987607 55200 241.06906127929688 1.4360999999999999 352.92219999999998 20160 12143 0 0 0.018868487484411969 1.7904474179529384 4096 2048 64 1 16 417 320 0 64 0 2751410788 7754284 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 26 172 169 0 0 1 4 16 0 0 0 0 0 +1093 1783858004038811800 REFRESH 49 0 0.69160351273456644 0.82027257240204421 3 10 3 10 0 0 1031 27 405 3988956 56640 244.58854675292969 1.4450000000000001 419.80399999999997 13440 8114 0 0 0.023587674058266388 0.48158509424076118 4096 2048 64 1 16 405 320 0 64 0 2752132112 8475608 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 39 291 0 0 0 2 25 0 0 0 0 0 +1094 1783858004447567800 REFRESH 57 0 0.70086453538393423 0.27342419080068137 1 6 1 6 0 0 3757 23 408 3987617 55200 246.77375793457031 1.5104 351.79599999999999 20160 11938 0 0 0.00071383568234315085 0.50226980948182898 4096 2048 64 1 16 408 320 0 64 0 2752856496 9199992 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 135 198 0 0 0 8 15 0 0 0 0 0 +1095 1783858004874458500 REFRESH 13 0 0.70033281452571727 0.27342419080068137 1 6 1 6 0 0 3556 35 419 3987611 55200 248.13772583007812 1.6676 360.74540000000002 20160 11867 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 419 320 0 64 0 2753592100 9935596 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 26 170 173 1 0 0 11 23 0 0 0 0 0 +1096 1783858005262186900 REFRESH 15 0 0.69281188741513988 0.91396933560476989 3 11 3 11 0 0 300 15 413 3988853 56640 245.5889892578125 1.4374 328.30930000000001 13440 8989 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 413 320 0 64 0 2754321584 10665080 1 0 5 2 2 1 6 1228800 491520 491520 245813 1497600 25 25 25 54 284 0 0 1 1 13 0 0 0 0 0 +1097 1783858005646363600 REFRESH 5 0 0.69165337183584863 0.8279386712095399 2 11 2 11 0 0 759 21 418 3988956 56640 243.71725463867188 1.4535 322.57760000000002 13440 9123 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 418 320 0 64 0 2755056168 11399664 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 67 276 0 1 0 2 18 0 0 0 0 0 +1098 1783858006055440700 REFRESH 3 0 0.69455325848110605 0.64054514480408853 2 9 2 9 0 0 1024 15 419 3988474 56160 245.24697875976562 1.4361999999999999 344.59199999999998 20160 13563 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 419 320 0 64 0 2755791772 12135268 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 25 197 147 0 0 0 6 9 0 0 0 0 0 +1099 1783858006418084200 REFRESH 24 0 0.69177569329088251 1 4 11 4 11 0 0 485 13 400 3988963 56640 232.50431823730469 1.4331 306.33550000000002 13440 9144 0 0 0.070125946914955439 1.4378063310002365 4096 2048 64 1 16 400 320 0 64 0 2756507996 12851492 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 27 25 25 25 298 0 0 0 0 13 0 0 0 0 0 +1100 1783858006826544700 REFRESH 52 0 0.69567986051130182 0.36712095400340705 1 7 1 7 0 0 1822 11 432 3987605 55200 228.76467895507812 1.4420999999999999 348.41919999999999 20160 12003 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 432 320 0 64 0 2757256860 13600356 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 31 238 113 0 1 0 3 7 0 0 0 0 0 +1101 1783858007205424900 REFRESH 28 0 0.69656617544032251 0.8279386712095399 2 11 2 11 0 0 572 13 407 3988930 56640 228.53324890136719 1.4424999999999999 311.23059999999998 13440 8313 0 0 0.00017781511379253443 2.0677017543935525 4096 2048 64 1 16 407 320 0 64 0 2757980224 14323720 1 0 4 2 2 2 6 983040 491520 491520 491648 1497600 26 25 25 26 305 0 0 0 0 13 0 0 0 0 0 +1102 1783858007568270300 REFRESH 55 0 0.71040828302214309 0.64054514480408853 2 9 2 9 0 0 991 18 408 3987587 55200 230.41127014160156 1.4433 306.92689999999999 20160 14963 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 2758704608 15048104 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 26 139 193 0 0 0 2 16 0 0 0 0 0 +1103 1783858007987418900 REFRESH 18 0 0.69225921620746411 0.9293015332197615 1 13 1 13 0 0 429 14 410 3988944 56640 228.05299377441406 1.4858 304.84249999999997 13440 8482 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 410 320 0 64 0 2759431032 15774528 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 25 26 308 0 0 0 0 14 0 0 0 0 0 +1104 1783858008318954900 REFRESH 2 0 0.69418222926063777 0.45315161839863699 2 7 2 7 0 0 2784 42 418 3988086 55680 228.72064208984375 1.4457 329.63119999999998 13440 8177 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 418 320 0 64 0 2760165616 16509112 1 0 4 2 3 3 4 983040 491520 737280 737523 998400 25 26 25 190 152 0 0 0 14 28 0 0 0 0 0 +1105 1783858008783500400 REFRESH 40 0 0.69337199793534077 0.64821124361158422 1 10 1 10 0 0 1471 6 410 3988960 56640 226.41970825195312 1.4315 402.14190000000002 13440 8530 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 410 320 0 64 0 2760892040 17235536 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 44 291 0 0 0 1 5 0 0 0 0 0 +1106 1783858009203054100 REFRESH 44 0 0.69434098641085007 0.36712095400340705 1 7 1 7 0 0 1837 10 432 3987674 55200 229.99040222167969 1.4433 357.70460000000003 20160 12090 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 432 320 0 64 0 2761640904 17984400 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 228 129 0 0 1 0 9 0 0 0 0 0 +1107 1783858009588502400 REFRESH 51 0 0.69392661124240451 0.91396933560476989 3 11 3 11 0 0 503 18 403 3988966 56640 226.26509094238281 1.4348000000000001 317.82209999999998 13440 9711 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 403 320 0 64 0 2762360188 18703684 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 38 290 0 0 0 0 18 0 0 0 0 0 +1108 1783858009959715500 REFRESH 22 0 0.69372059944171882 0.91396933560476989 3 11 3 11 0 0 446 7 412 3988923 56640 228.18611145019531 1.6301000000000001 313.35669999999999 13440 9612 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 2763088652 19432148 1 0 4 2 2 2 6 983040 491520 491520 491642 1497600 26 25 25 38 298 0 0 0 0 7 0 0 0 0 0 +1109 1783858010418434500 REFRESH 31 0 0.69560016474081077 0.3594548551959113 2 6 2 6 0 0 2232 16 420 3987586 55200 228.61209106445312 1.4538 334.04910000000001 20160 11989 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 420 320 0 64 0 2763825276 20168772 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 28 179 163 0 0 0 4 12 0 0 0 0 0 +1110 1783858010796256000 REFRESH 29 0 0.69512197265526143 0.82027257240204421 3 10 3 10 0 0 1061 15 423 3988944 56640 227.28192138671875 1.4846999999999999 309.4588 13440 8732 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 423 320 0 64 0 2764564960 20908456 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 25 33 314 0 0 0 0 15 0 0 0 0 0 +1111 1783858011185630700 REFRESH 41 0 0.69557693419686206 0.55451448040885853 1 9 1 9 0 0 1841 20 418 3988006 55680 228.39091491699219 1.4488000000000001 326.21960000000001 20160 11769 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 418 320 0 64 0 2765299544 21643040 1 0 4 3 3 2 4 983040 737280 737280 491678 998400 25 25 27 154 187 0 0 0 4 16 0 0 0 0 0 +1112 1783858011600231200 REFRESH 48 0 0.70054035251443136 0.26575809199318562 2 5 2 5 0 0 2148 17 420 3987616 55200 229.72006225585938 1.4881 351.47059999999999 20160 11957 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 420 320 0 64 0 2766036168 22379664 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 27 173 170 0 0 1 6 10 0 0 0 0 0 +1113 1783858012029774000 REFRESH 42 0 0.86164504385955021 0 0 4 0 4 0 0 4096 5 426 3987773 55200 230.65292358398438 1.4400999999999999 365.30500000000001 20160 13231 0 0 0 0.0063417300788251949 4096 2048 64 1 16 426 320 0 64 0 2766778912 23122408 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 55 25 55 215 76 0 0 0 0 5 0 0 0 0 0 +1114 1783858012388185600 REFRESH 20 0 0.69565303801521594 0.26575809199318562 2 5 2 5 0 0 1864 13 431 3987637 55200 229.36781311035156 1.4802 356.81630000000001 20160 12045 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 2767526756 23870252 1 0 4 3 3 3 3 983040 737280 737280 737536 748800 25 25 37 147 197 0 0 1 0 12 0 0 0 0 0 +1115 1783858012806906300 REFRESH 4 0 0.68295411207155576 0.8356047700170357 1 12 1 12 0 0 258 7 417 3988872 56640 226.58560180664062 1.4342999999999999 305.24360000000001 13440 9872 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 417 320 0 64 0 2768260320 24603816 1 0 6 2 1 1 6 1474560 491520 245760 245832 1497600 27 25 25 39 301 0 0 2 0 5 0 0 0 0 0 +1116 1783858013215282100 REFRESH 54 0 0.69433592753713258 0.4608177172061329 1 8 1 8 0 0 1009 11 423 3988008 55680 228.17079162597656 1.4355 350.80970000000002 20160 11780 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 423 320 0 64 0 2769000004 25343500 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 25 201 147 0 0 1 1 9 0 0 0 0 0 +1117 1783858013606958300 REFRESH 8 0 0.70063085484315923 0.26575809199318562 2 5 2 5 0 0 2218 22 411 3987613 55200 230.540283203125 1.4439 326.34359999999998 20160 11984 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 411 320 0 64 0 2769727448 26070944 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 26 121 214 0 0 0 2 20 0 0 0 0 0 +1118 1783858014003388200 REFRESH 21 0 0.69567249839574252 0.56218057921635434 0 10 0 10 0 0 2221 24 420 3988000 55680 229.04754638671875 1.4351 335.09750000000003 20160 13127 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 420 320 0 64 0 2770464072 26807568 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 26 156 188 0 0 1 4 19 0 0 0 0 0 +1119 1783858014400408200 REFRESH 16 0 0.69652734750429413 0.3594548551959113 2 6 2 6 0 0 2683 28 410 3987611 55200 241.944580078125 1.4319 333.98509999999999 20160 13722 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 410 320 0 64 0 2771190496 27533992 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 25 120 215 0 0 0 1 27 0 0 0 0 0 +1120 1783858014722514000 REFRESH 35 0 0.69197759396622616 0.8279386712095399 2 11 2 11 0 0 1007 13 405 3988953 56640 239.46444702148438 1.4487000000000001 320.20479999999998 13440 8131 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 405 320 0 64 0 2771911820 28255316 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 38 292 0 0 0 0 13 0 0 0 0 0 +1121 1783858015164425100 REFRESH 34 0 0.69622856485024154 0.8356047700170357 1 12 1 12 0 0 639 18 417 3988939 56640 238.66470336914062 1.4372 320.96859999999998 13440 9798 0 0 0.00024712413670781135 1.8115702249713992 4096 2048 64 1 16 417 320 0 64 0 2772645384 28988880 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 25 53 288 0 0 0 0 18 0 0 0 0 0 +1122 1783858015595163300 REFRESH 30 0 0.69441462058186842 0.4608177172061329 1 8 1 8 0 0 2812 33 425 3988055 55680 228.39500427246094 1.5359 351.37400000000002 13440 8084 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 425 320 0 64 0 2773387108 29730604 1 0 4 2 3 3 4 983040 491520 737280 737494 998400 25 25 25 216 134 0 0 0 10 23 0 0 0 0 0 +1123 1783858017766360600 DEPTH 26 1 0.76743134937348634 0.64821124361158422 1 10 1 10 1 0 1392 67 2575 23742648 147840 1317.8409118652344 8.6536999999999988 2112.4522000000002 80640 46124 1 0 0.052980194395727251 0.83591037601080131 4096 2048 384 12 96 2575 1920 0 384 1 2777872516 34216012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950933 8985600 150 150 150 150 1975 0 0 0 1 66 0 0 0 0 1 +1124 1783858020053515000 DEPTH 42 1 0.71557492840951242 0 0 4 0 4 0 0 4096 16 2596 23678262 81600 1329.1079711914062 8.6951999999999998 2229.3472999999999 120960 65235 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2596 1920 0 384 1 2782379344 38722840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 291 150 292 1367 496 0 0 0 0 16 0 0 0 0 0 +1125 1783858022328465200 DEPTH 57 1 0.69778191660822464 0.27342419080068137 1 6 1 6 1 0 3774 80 2544 23677489 81600 1365.4773864746094 8.6964000000000006 2202.7168000000001 120960 56248 1 0 0.00071319863557039705 0.50199945429156345 4096 2048 384 12 96 2544 1920 0 384 1 2786833132 43176628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 150 150 150 472 1622 0 0 0 2 78 0 0 0 0 1 +1126 1783858024593306400 DEPTH 9 1 0.69745188197276664 0.27342419080068137 1 6 1 6 1 0 2385 98 2558 23677496 81600 1433.8871154785156 8.9623999999999988 2263.0545999999999 120960 57796 1 0 0.00045141848709869686 0.33902516851330938 4096 2048 384 12 96 2558 1920 0 384 1 2791301200 47644696 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 188 710 1360 0 1 4 5 88 0 0 0 0 1 +1127 1783858027017378800 DEPTH 17 1 0.69737651575688364 0.28109028960817717 0 7 0 7 0 0 3258 57 2587 23677511 81600 1424.6881561279297 9.0300999999999991 2288.0362 120960 56446 1 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 384 12 96 2587 1920 0 384 1 2795798848 52142344 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 150 1159 978 1 0 9 1 46 0 0 0 0 0 +1128 1783858029170969500 DEPTH 13 1 0.69732784086900645 0.27342419080068137 1 6 1 6 0 0 3567 62 2565 23677473 81600 1343.0845336914062 8.6264000000000003 2151.7806999999998 120960 55858 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2565 1920 0 384 1 2800274056 56617552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 152 751 1362 4 0 0 4 54 0 0 0 0 0 +1129 1783858031375104000 DEPTH 56 1 0.69565184945345715 0.26575809199318562 2 5 2 5 0 0 4096 66 2569 23677706 81600 1324.3975677490234 8.6654999999999998 2202.1417000000001 120960 56830 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2569 1920 0 384 1 2804753344 61096840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 172 1370 727 1 0 1 5 59 0 0 0 0 0 +1130 1783858033576295300 DEPTH 39 1 0.69367190919221899 0.55451448040885853 1 9 1 9 0 0 1442 58 2593 23727311 132480 1305.8273468017578 8.6699999999999999 2109.596 107520 54174 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2593 1920 0 384 1 2809257112 65600608 1 0 4 3 2 2 5 5898240 3932160 2949120 2950957 7987200 150 150 150 423 1720 0 0 0 1 57 0 0 0 0 0 +1131 1783858036779767800 DEPTH 55 1 0.7028533389360524 0.64054514480408853 2 9 2 9 0 0 1008 83 2527 23677415 81600 1342.6894073486328 8.6201000000000008 3008.5619999999999 120960 69730 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2527 1920 0 384 1 2813693640 2928440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 150 469 1608 0 0 0 4 79 0 0 0 0 0 +1132 1783858039104307000 DEPTH 11 1 0.69303124758233881 0.37478705281090291 0 8 0 8 0 0 1991 46 2558 23698568 103680 1311.3796844482422 8.6456000000000017 2135.5360000000001 120960 57081 1 0 0 0.6639611011928872 4096 2048 384 12 96 2558 1920 0 384 1 2818161708 7396508 1 0 4 3 3 2 4 5898240 4423680 4423680 2950986 5990400 150 150 156 1075 1027 0 3 9 0 34 0 0 0 0 0 +1133 1783858041306243500 DEPTH 53 1 0.69295206559393852 0.37478705281090291 0 8 0 8 1 0 4096 72 2545 23677446 81600 1321.1055908203125 8.6555999999999997 2128.0412000000001 120960 67889 1 0 0 0.24209613400378771 4096 2048 384 12 96 2545 1920 0 384 1 2822616516 11851316 1 0 4 3 3 3 3 5898240 4423680 4423680 4426524 4492800 150 150 150 606 1489 0 0 1 0 71 0 0 0 0 1 +1134 1783858043547092900 DEPTH 33 1 0.69294555568925242 0.36712095400340705 1 7 1 7 0 0 3001 69 2543 23677571 81600 1331.0177307128906 8.6852999999999998 2107.1792999999998 120960 57912 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2543 1920 0 384 1 2827069284 16304084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 159 447 1637 0 2 2 6 59 0 0 0 0 0 +1135 1783858045757038700 DEPTH 1 1 0.69295789212247971 0.36712095400340705 1 7 1 7 0 0 2570 70 2573 23677489 81600 1326.6250305175781 8.6938999999999993 2141.5988000000002 120960 57271 1 0 0.018868487484411969 1.7904474179529384 4096 2048 384 12 96 2573 1920 0 384 1 2831552652 20787452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 152 728 1393 0 0 3 0 67 0 0 0 0 0 +1136 1783858047950975100 DEPTH 46 1 0.69297022036693012 0.37478705281090291 0 8 0 8 0 0 2493 37 2563 23677345 81600 1325.1164093017578 9.1297999999999995 2133.6968000000002 120960 58970 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2563 1920 0 384 1 2836025820 25260620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426377 4492800 150 150 150 694 1419 0 0 2 0 35 0 0 0 0 0 +1137 1783858050162389900 DEPTH 25 1 0.69280997840064784 0.4608177172061329 1 8 1 8 0 0 2150 48 2559 23698457 103680 1319.8018493652344 8.6625000000000014 2140.3634999999999 120960 61169 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2559 1920 0 384 1 2840494908 29729708 1 0 4 3 3 2 4 5898240 4423680 4423680 2950911 5990400 150 150 150 893 1216 2 2 0 2 42 0 0 0 0 0 +1138 1783858052276945000 DEPTH 38 1 0.69268507888585584 0.55451448040885853 1 9 1 9 0 0 1822 34 2564 23709056 114240 1309.7420806884766 8.700800000000001 2049.7035999999998 120960 66137 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2564 1920 0 384 1 2844969096 34203896 1 0 4 3 3 2 4 5898240 4423680 3686400 2950958 6739200 150 150 153 1149 962 0 0 2 5 27 0 0 0 0 0 +1139 1783858054595928800 DEPTH 42 1 0.7550109124361718 0 0 4 0 4 0 0 4096 27 2602 23678259 81600 1373.4574127197266 8.6979999999999986 2316.8004000000001 120960 53739 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2602 1920 0 384 1 2849482044 38716844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 254 150 268 1443 487 0 0 0 0 27 0 0 0 0 0 +1140 1783858057011440100 DEPTH 48 1 0.697469243901639 0.26575809199318562 2 5 2 5 0 0 2152 34 2572 23677623 81600 1440.2572479248047 8.7531000000000017 2334.7575000000002 120960 56844 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2572 1920 0 384 1 2853964392 43199192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 150 584 1538 0 0 2 0 32 0 0 0 0 0 +1141 1783858059384405100 DEPTH 20 1 0.69330958315266655 0.26575809199318562 2 5 2 5 0 0 1880 53 2597 23677454 81600 1418.5072479248047 8.680299999999999 2300.5835999999999 120960 57524 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2597 1920 0 384 1 2858472240 47707040 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 211 565 1521 0 0 5 2 46 0 0 0 0 0 +1142 1783858061712622700 DEPTH 52 1 0.69252202901031623 0.36712095400340705 1 7 1 7 0 0 1836 52 2587 23677443 81600 1419.2547912597656 8.7956000000000003 2261.1936999999998 120960 56329 1 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 384 12 96 2587 1920 0 384 1 2862969888 52204688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 183 1175 929 0 0 4 0 48 0 0 0 0 0 +1143 1783858063972312600 DEPTH 31 1 0.69235893279693062 0.3594548551959113 2 6 2 6 0 0 2243 44 2563 23677400 81600 1405.9888610839844 8.8498999999999999 2200.3083999999999 120960 57251 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2563 1920 0 384 1 2867443056 56677856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 158 678 1427 0 0 1 0 43 0 0 0 0 0 +1144 1783858065873887300 DEPTH 47 1 0.69231465350646859 0.8279386712095399 2 11 2 11 0 0 569 18 2609 23742564 147840 1315.6884613037109 8.6460000000000008 1846.2447 80640 43493 1 0 0.031374216798943186 1.3938937060236263 4096 2048 384 12 96 2609 1920 0 384 1 2871963144 61197944 1 0 4 2 2 2 6 5898240 2949120 2949120 2950863 8985600 158 150 150 167 1984 1 0 0 0 17 0 0 0 0 0 +1145 1783858067870361900 DEPTH 28 1 0.69232858152044363 0.8279386712095399 2 11 2 11 1 0 575 31 2517 23742688 147840 1384.4286956787109 8.9436 1934.1387 80640 41425 1 0 0.00018539603561779441 1.1161570488221655 4096 2048 384 12 96 2517 1920 0 384 1 2876389392 65624192 1 0 4 2 2 2 6 5898240 2949120 2949120 2950953 8985600 156 150 150 156 1905 0 0 0 0 31 0 0 0 0 1 +1146 1783858070929898400 DEPTH 7 1 0.69234250034677969 0.8356047700170357 1 12 1 12 1 0 798 61 2525 23742663 147840 1324.8143310546875 8.6246999999999989 2994.5855999999999 80640 43545 1 0 0.0030942132482632461 1.0738159360206059 4096 2048 384 12 96 2525 1920 0 384 1 2880823880 2950320 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 150 150 150 156 1919 0 0 0 1 60 0 0 0 0 2 +1147 1783858073069381300 DEPTH 26 1 0.74464403727682427 0.64821124361158422 1 10 1 10 0 0 1407 60 2565 23742665 147840 1269.7415771484375 8.8240999999999996 2071.1206999999999 80640 38081 1 0 0.052980194395727251 0.83591037601080131 4096 2048 384 12 96 2565 1920 0 384 1 2885299088 7425528 1 0 4 2 2 2 6 5898240 2949120 2949120 2950953 8985600 150 150 150 150 1965 0 0 0 0 60 0 0 0 0 0 +1148 1783858075158280900 DEPTH 8 1 0.69758981250492025 0.26575809199318562 2 5 2 5 0 0 2232 70 2533 23677419 81600 1298.4399261474609 8.6380999999999997 1969.6559 120960 58540 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2533 1920 0 384 1 2889741656 11868096 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 150 150 156 512 1565 0 0 0 3 67 0 0 0 0 0 +1149 1783858077090324100 DEPTH 16 1 0.6931524337296755 0.3594548551959113 2 6 2 6 0 0 2702 104 2526 23677385 81600 1299.9784545898438 9.2269000000000005 1861.9012 120960 68383 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2526 1920 0 384 1 2894177084 16303524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 365 1711 0 0 0 1 103 0 0 0 0 0 +1150 1783858078985432500 DEPTH 34 1 0.69183234693640117 0.8356047700170357 1 12 1 12 1 0 644 42 2573 23742599 147840 1273.636474609375 8.6842000000000006 1827.2704000000001 80640 47086 1 0 0.00024493839120035536 1.8115268921139556 4096 2048 384 12 96 2573 1920 0 384 1 2898660452 20786892 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 159 150 150 183 1931 0 0 0 0 42 0 0 0 0 1 +1151 1783858081138433700 DEPTH 21 1 0.69180410059859754 0.56218057921635434 0 10 0 10 0 0 2232 42 2568 23698511 103680 1297.4919738769531 8.6470000000000002 2094.2437 120960 64799 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2568 1920 0 384 1 2903138720 25265160 1 0 4 3 3 2 4 5898240 4423680 4423680 2950961 5990400 150 150 156 779 1333 3 0 8 3 28 0 0 0 0 0 +1152 1783858083277373400 DEPTH 41 1 0.69181717030310752 0.55451448040885853 1 9 1 9 0 0 1851 64 2552 23698714 103680 1285.7641143798828 8.8414999999999999 2068.2842999999998 120960 57273 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2552 1920 0 384 1 2907600668 29727108 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 150 150 166 624 1462 1 2 4 1 56 0 0 0 0 0 +1153 1783858085445617600 DEPTH 44 1 0.69111825053636156 0.36712095400340705 1 7 1 7 0 0 1849 47 2624 23677463 81600 1300.4674682617188 8.7554999999999996 2105.9061999999999 120960 57500 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2624 1920 0 384 1 2912136056 34262496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 150 1299 875 0 0 7 0 40 0 0 0 0 0 +1154 1783858087345323300 DEPTH 29 1 0.6910354525471093 0.82027257240204421 3 10 3 10 0 0 1072 61 2574 23742676 147840 1291.2772064208984 8.6870000000000012 1826.0693000000001 80640 43852 1 0 0.26125994989040291 0.98461494739217958 4096 2048 384 12 96 2574 1920 0 384 1 2916620444 38746884 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 150 171 1947 0 0 0 3 58 0 0 0 0 0 +1155 1783858087711943900 REFRESH 44 0 0.45746768633700324 0.36712095400340705 1 7 1 7 0 0 1852 11 433 3987601 55200 223.26374816894531 1.4416 364.76760000000002 20160 12262 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 433 320 0 64 0 2917370328 39496768 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 237 121 0 0 1 2 8 0 0 0 0 0 +1156 1783858088086491800 REFRESH 49 0 0.68782119916403961 0.82027257240204421 3 10 3 10 1 0 1039 24 409 3988962 56640 226.54054260253906 1.4337 315.80340000000001 13440 8198 0 0 0.023587680617059275 0.4799144480521384 4096 2048 64 1 16 409 320 0 64 0 2918095732 40222172 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 43 291 0 0 0 0 24 0 0 0 0 1 +1157 1783858088440013200 REFRESH 6 0 0.68784614567401969 0.91396933560476989 3 11 3 11 0 0 367 10 414 3988943 56640 220.83378601074219 1.4437 298.44389999999999 6720 4963 0 0 0.078490995891016657 0.16637572843653256 3999 1951 64 1 16 414 320 0 64 0 2918826236 40952676 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 25 25 32 307 0 0 0 1 9 0 0 0 0 0 +1158 1783858088828496700 REFRESH 57 0 0.69481148078487909 0.27342419080068137 1 6 1 6 0 0 3780 26 412 3987660 55200 224.184326171875 1.4342999999999999 318.94189999999998 20160 11978 0 0 0.00071319863557039705 0.50199945429156345 4096 2048 64 1 16 412 320 0 64 0 2919554700 41681140 1 0 4 3 3 3 3 983040 737280 737280 737544 748800 25 25 25 144 193 0 0 0 6 20 0 0 0 0 0 +1159 1783858089259141900 REFRESH 25 0 0.65925995328162468 0.4608177172061329 1 8 1 8 0 0 2156 22 411 3987597 55200 223.70098876953125 1.4458 352.0224 20160 11903 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 411 320 0 64 0 2920282144 42408584 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 84 252 0 0 0 1 21 0 0 0 0 0 +1160 1783858089570845400 REFRESH 26 0 0.62226784477498265 0.64821124361158422 1 10 1 10 0 0 1433 53 416 3988950 56640 230.57305908203125 1.4387000000000001 310.411 13440 8041 0 0 0.052980194395727251 0.83591037601080131 4096 2048 64 1 16 416 320 0 64 0 2921014688 43141128 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 27 314 0 0 0 0 53 0 0 0 0 0 +1161 1783858089945706000 REFRESH 38 0 0.66900222478523208 0.55451448040885853 1 9 1 9 0 0 1832 29 422 3987996 55680 222.887939453125 1.4379999999999999 315.93779999999998 20160 12181 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 422 320 0 64 0 2921753352 43879792 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 29 219 124 0 0 0 12 17 0 0 0 0 0 +1162 1783858090298423500 REFRESH 21 0 0.54778843984817827 0.56218057921635434 0 10 0 10 0 0 2233 11 426 3987997 55680 222.59916687011719 1.4424999999999999 349.89640000000003 20160 12352 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 426 320 0 64 0 2922496096 44622536 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 26 247 103 0 0 0 3 8 0 0 0 0 0 +1163 1783858090663775000 REFRESH 0 0 0.68933785936217207 0.8279386712095399 2 11 2 11 0 0 804 16 413 3988960 56640 219.2332763671875 1.4403999999999999 297.11770000000001 13440 8662 0 0 0.00017143269285358514 2.2184394717292082 4096 2048 64 1 16 413 320 0 64 0 2923225580 45352020 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 41 297 0 0 0 1 15 0 0 0 0 0 +1164 1783858091072086300 REFRESH 9 0 0.69477294536560208 0.27342419080068137 1 6 1 6 0 0 2413 51 419 3987604 55200 223.91398620605469 1.4257 327.8562 20160 12135 0 0 0.00045141848709869686 0.33902516851330938 4096 2048 64 1 16 419 320 0 64 0 2923961184 46087624 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 34 183 152 0 0 0 6 45 0 0 0 0 0 +1165 1783858091424986300 REFRESH 36 0 0.68793969886086792 0.82027257240204421 3 10 3 10 0 0 1081 16 406 3988955 56640 220.44271850585938 1.4387000000000001 294.0369 13440 8130 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 406 320 0 64 0 2924683528 46809968 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 40 290 0 1 0 0 15 0 0 0 0 0 +1166 1783858091799782400 REFRESH 22 0 0.68699167691239027 0.91396933560476989 3 11 3 11 0 0 447 11 412 3988952 56640 222.08425903320312 1.4835 306.13150000000002 13440 9566 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 2925411992 47538432 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 44 292 0 0 0 1 10 0 0 0 0 0 +1167 1783858092168159800 REFRESH 58 0 0.6899758321840801 0.92163543441226559 2 12 2 12 0 0 496 13 409 3988959 56640 221.39289855957031 1.4439 303.84890000000001 13440 9797 0 0 0.011633049076434457 1.7487616260036116 4096 2048 64 1 16 409 320 0 64 0 2926137396 48263836 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 32 301 0 0 0 0 13 0 0 0 0 0 +1168 1783858092536384500 REFRESH 27 0 0.68994077095756778 0.93696763202725719 0 14 0 14 0 0 813 21 411 3988952 56640 220.7774658203125 1.6059000000000001 314.24520000000001 13440 8333 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 411 320 0 64 0 2926864840 48991280 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 27 309 0 0 0 0 21 0 0 0 0 0 +1169 1783858092903417400 REFRESH 41 0 0.60787746806937559 0.55451448040885853 1 9 1 9 0 0 1858 21 425 3988005 55680 221.26899719238281 1.4371 364.99650000000003 20160 12190 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 425 320 0 64 0 2927606564 49733004 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 25 25 28 236 111 0 0 1 8 12 0 0 0 0 0 +1170 1783858093284171400 REFRESH 2 0 0.6910216930856321 0.45315161839863699 2 7 2 7 0 0 2804 44 409 3987605 55200 223.66925048828125 1.4394 314.05950000000001 20160 14869 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 409 320 0 64 0 2928331968 50458408 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 25 309 0 0 0 0 44 0 0 0 0 0 +1171 1783858093652911200 REFRESH 24 0 0.68820512560574298 1 4 11 4 11 0 0 485 10 397 3988929 56640 221.264892578125 1.4446000000000001 310.50069999999999 13440 8978 0 0 0.070125946914955439 1.4378063310002365 4096 2048 64 1 16 397 320 0 64 0 2929045132 51171572 1 0 4 2 2 2 6 983040 491520 491520 491646 1497600 27 25 25 25 295 0 0 0 0 10 0 0 0 0 0 +1172 1783858094034348800 REFRESH 5 0 0.68802981143341302 0.8279386712095399 2 11 2 11 0 0 765 28 416 3988955 56640 220.26751708984375 1.4414 303.95530000000002 13440 9028 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 416 320 0 64 0 2929777676 51904116 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 81 260 0 0 1 2 25 0 0 0 0 0 +1173 1783858094407095600 REFRESH 37 0 0.68812234512965342 0.8356047700170357 1 12 1 12 0 0 909 25 400 3988939 56640 220.042236328125 1.4414 300.66770000000002 13440 8074 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 400 320 0 64 0 2930493900 52620340 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 26 25 25 35 289 0 0 0 0 25 0 0 0 0 0 +1174 1783858094783680500 REFRESH 18 0 0.68855320572443612 0.9293015332197615 1 13 1 13 0 0 429 13 414 3988956 56640 222.21209716796875 1.4418 318.32569999999998 13440 8261 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 414 320 0 64 0 2931224404 53350844 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 29 309 0 0 0 0 13 0 0 0 0 0 +1175 1783858095094518900 REFRESH 16 0 0.68983086659990045 0.3594548551959113 2 6 2 6 0 0 2711 32 411 3987593 55200 223.59245300292969 1.4413 309.56389999999999 20160 12517 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 411 320 0 64 0 2931951848 54078288 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 98 238 0 0 0 0 32 0 0 0 0 0 +1176 1783858095496190200 REFRESH 33 0 0.6898222686866462 0.36712095400340705 1 7 1 7 0 0 3007 34 417 3987700 55200 224.50277709960938 1.4409000000000001 336.4701 20160 12286 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 417 320 0 64 0 2932685412 54811852 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 27 140 200 0 0 1 6 27 0 0 0 0 0 +1177 1783858095909662200 REFRESH 11 0 0.68993343148161523 0.37478705281090291 0 8 0 8 0 0 2000 19 425 3988002 55680 221.99090576171875 1.4396 346.15730000000002 20160 11979 0 0 0 0.6639611011928872 4096 2048 64 1 16 425 320 0 64 0 2933427136 55553576 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 27 260 88 0 0 1 2 16 0 0 0 0 0 +1178 1783858096296914500 REFRESH 31 0 0.68921826458189872 0.3594548551959113 2 6 2 6 0 0 2246 24 421 3987627 55200 223.0067138671875 1.4551000000000001 328.78550000000001 20160 11907 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 2934164780 56291220 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 28 202 141 0 0 0 6 18 0 0 0 0 0 +1179 1783858096713051900 REFRESH 53 0 0.68987917514549935 0.37478705281090291 0 8 0 8 0 0 4096 39 413 3987622 55200 222.24691772460938 1.4886999999999999 346.00689999999997 20160 12412 0 0 0 0.24209613400378771 4096 2048 64 1 16 413 320 0 64 0 2934894264 57020704 1 0 4 3 3 3 3 983040 737280 737280 737538 748800 25 25 25 206 132 0 0 0 15 24 0 0 0 0 0 +1180 1783858097143008600 REFRESH 46 0 0.6898694723411174 0.37478705281090291 0 8 0 8 0 0 2496 12 420 3987604 55200 222.68006896972656 1.4460999999999999 362.69299999999998 20160 12260 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 420 320 0 64 0 2935630888 57757328 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 28 202 140 0 0 0 2 10 0 0 0 0 0 +1181 1783858097497208400 REFRESH 47 0 0.68814656038330957 0.8279386712095399 2 11 2 11 1 0 580 30 413 3988957 56640 219.9183349609375 1.4373 293.66500000000002 13440 8072 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 413 320 0 64 0 2936360372 58486812 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 32 305 0 0 0 0 30 0 0 0 0 1 +1182 1783858097874287200 REFRESH 30 0 0.6911664620538216 0.4608177172061329 1 8 1 8 0 0 2832 48 408 3987577 55200 222.9749755859375 1.4410000000000001 317.43990000000002 20160 15009 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 408 320 0 64 0 2937084756 59211196 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 26 307 0 0 0 0 48 0 0 0 0 0 +1183 1783858098254734100 REFRESH 14 0 0.69118185489835193 0.65587734241908002 0 11 0 11 0 0 1429 26 417 3988450 56160 223.140869140625 1.4391 320.08580000000001 13440 7959 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 417 320 0 64 0 2937818320 59944760 1 0 4 2 3 2 5 983040 491520 737280 491649 1248000 26 25 25 82 259 0 0 0 5 21 0 0 0 0 0 +1184 1783858098624784200 REFRESH 32 0 0.69119117471841829 0.4608177172061329 1 8 1 8 0 0 2418 64 411 3987583 55200 222.65242004394531 1.4359 302.67899999999997 20160 12283 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 411 320 0 64 0 2938545764 60672204 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 26 29 306 0 0 0 2 62 0 0 0 0 0 +1185 1783858099023945700 REFRESH 52 0 0.68945851522981949 0.36712095400340705 1 7 1 7 0 0 1840 12 434 3987597 55200 222.01344299316406 1.4422999999999999 345.57240000000002 20160 11948 0 0 9.9413673902673186e-05 1.3911308760418242 4096 2048 64 1 16 434 320 0 64 0 2939296668 61423108 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 32 243 109 0 0 2 2 8 0 0 0 0 0 +1186 1783858099373839500 REFRESH 12 0 0.68904412530536141 0.63287904599659284 3 8 3 8 0 0 1149 9 429 3988483 56160 220.71090698242188 1.4692000000000001 295.9117 13440 7952 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 429 320 0 64 0 2940042472 62168912 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 25 25 26 142 211 0 0 0 0 9 0 0 0 0 0 +1187 1783858099776563000 REFRESH 13 0 0.69469861504024477 0.27342419080068137 1 6 1 6 0 0 3581 35 421 3987606 55200 231.47929382324219 1.4567000000000001 336.40249999999997 20160 12020 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 421 320 0 64 0 2940780116 62906556 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 26 179 166 0 0 0 6 29 0 0 0 0 0 +1188 1783858100181874700 REFRESH 56 0 0.69319079362767155 0.26575809199318562 2 5 2 5 0 0 4096 15 427 3987614 55200 225.17555236816406 1.4462999999999999 350.73849999999999 20160 12162 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 427 320 0 64 0 2941523880 63650320 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 29 266 82 0 0 1 1 13 0 0 0 0 0 +1189 1783858100479427100 REFRESH 34 0 0.68774421653147988 0.8356047700170357 1 12 1 12 0 0 644 15 421 3988970 56640 219.7442626953125 1.5525 295.90750000000003 13440 9233 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 421 320 0 64 0 2942261524 64387964 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 26 25 25 52 293 0 0 0 2 13 0 0 0 0 0 +1190 1783858100843918700 REFRESH 19 0 0.68829527249998168 0.8279386712095399 2 11 2 11 0 0 808 16 416 3988956 56640 220.2655029296875 1.4408000000000001 301.43209999999999 13440 8063 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 416 320 0 64 0 2942994068 65120508 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 30 311 0 0 1 0 15 0 0 0 0 0 +1191 1783858101211841200 REFRESH 55 0 0.69618337361564775 0.64054514480408853 2 9 2 9 0 0 1008 14 408 3987581 55200 224.39138793945312 1.4391 299.6832 20160 13977 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 2943718452 65844892 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 165 168 0 0 1 4 9 0 0 0 0 0 +1192 1783858101579266900 REFRESH 10 0 0.68950108375541275 0.64821124361158422 1 10 1 10 0 0 1033 8 430 3988492 56160 220.86985778808594 1.4632000000000001 303.20729999999998 13440 7897 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 430 320 0 64 0 2944465276 66591716 1 0 4 2 3 2 5 983040 491520 737280 491689 1248000 25 25 25 191 164 0 0 0 0 8 0 0 0 0 0 +1193 1783858103162049400 REFRESH 42 0 0.85471411137246878 0 0 4 0 4 0 0 4096 7 427 3987748 55200 223.29139709472656 1.4356 1520.3741 20160 13509 0 0 0 0.0063417300788251949 4096 2048 64 1 16 427 320 0 64 0 2945209120 226884 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 56 25 56 213 77 0 0 0 0 7 0 0 0 0 0 +1194 1783858103536085200 REFRESH 3 0 0.69136395117907012 0.64054514480408853 2 9 2 9 0 0 1025 17 415 3988458 56160 220.61567687988281 1.4439 310.96550000000002 20160 13244 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 415 320 0 64 0 2945940644 958408 1 0 4 3 2 2 5 983040 737280 491520 491656 1248000 25 25 25 210 130 0 0 0 2 15 0 0 0 0 0 +1195 1783858103939621600 REFRESH 48 0 0.69478813322798949 0.26575809199318562 2 5 2 5 0 0 2155 12 423 3987600 55200 222.5848388671875 1.4446000000000001 348.31439999999998 20160 12170 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 423 320 0 64 0 2946680328 1698092 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 26 153 194 0 0 0 1 11 0 0 0 0 0 +1196 1783858104312310100 REFRESH 4 0 0.67820167836846468 0.8356047700170357 1 12 1 12 0 0 260 10 417 3988400 56160 220.44671630859375 1.6654 312.06740000000002 13440 9830 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 417 320 0 64 0 2947413892 2431656 1 0 6 2 2 1 5 1474560 491520 491520 245840 1248000 27 25 27 50 288 0 0 2 0 8 0 0 0 0 0 +1197 1783858104657957400 REFRESH 15 0 0.68976602612632942 0.91396933560476989 3 11 3 11 0 0 300 9 416 3988474 56160 221.61305236816406 1.4416 292.76639999999998 13440 8857 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 416 320 0 64 0 2948146436 3164200 1 0 5 2 2 2 5 1228800 491520 491520 491674 1248000 25 25 25 32 309 0 0 0 0 9 0 0 0 0 0 +1198 1783858105068575900 REFRESH 50 0 0.68739075166841823 0.64054514480408853 2 9 2 9 0 0 972 10 432 3988487 56160 221.48197937011719 1.4336 350.6728 20160 14174 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 432 320 0 64 0 2948895300 3913064 1 0 4 3 2 2 5 983040 737280 491520 491686 1248000 25 25 25 225 132 0 0 0 0 10 0 0 0 0 0 +1199 1783858105520953000 REFRESH 20 0 0.69132708193115811 0.26575809199318562 2 5 2 5 0 0 1883 12 429 3987583 55200 223.46546936035156 1.4265000000000001 344.9042 20160 12134 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 429 320 0 64 0 2949641104 4658868 1 0 4 3 3 3 3 983040 737280 737280 737480 748800 25 25 41 157 181 0 0 2 0 10 0 0 0 0 0 +1200 1783858105917473100 REFRESH 39 0 0.69078294135016316 0.55451448040885853 1 9 1 9 0 0 1446 10 423 3988491 56160 221.68678283691406 1.5265 341.13040000000001 20160 14796 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 423 320 0 64 0 2950380788 5398552 1 0 4 3 2 2 5 983040 737280 491520 491690 1248000 25 25 25 136 212 0 0 0 0 10 0 0 0 0 0 +1201 1783858106337539000 REFRESH 17 0 0.69490943020918761 0.28109028960817717 0 7 0 7 0 0 3260 10 429 3987611 55200 223.2965087890625 1.4712000000000001 352.6447 20160 12039 0 0 1.7385079409068751e-05 0.10530030210765323 4096 2048 64 1 16 429 320 0 64 0 2951126592 6144356 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 272 82 0 0 1 0 9 0 0 0 0 0 +1202 1783858106654465000 REFRESH 29 0 0.68714825085685283 0.82027257240204421 3 10 3 10 0 0 1073 10 418 3988965 56640 221.23008728027344 1.4422999999999999 315.42200000000003 13440 8050 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 418 320 0 64 0 2951861176 6878940 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 25 35 307 0 1 0 0 9 0 0 0 0 0 +1203 1783858107011665600 REFRESH 28 0 0.68933149690175377 0.8279386712095399 2 11 2 11 0 0 578 17 410 3988973 56640 221.98374938964844 1.5945 299.10969999999998 13440 8116 0 0 0.00018539603561779441 1.1161570488221655 4096 2048 64 1 16 410 320 0 64 0 2952587600 7605364 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 25 26 308 0 0 0 0 17 0 0 0 0 0 +1204 1783858107509192200 REFRESH 40 0 0.68695704416914216 0.64821124361158422 1 10 1 10 0 0 1472 11 417 3988941 56640 219.52204895019531 1.4386000000000001 350.05919999999998 13440 8446 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 417 320 0 64 0 2953321164 8338928 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 40 302 0 0 0 1 10 0 0 0 0 0 +1205 1783858107887165800 REFRESH 54 0 0.69144875168098463 0.4608177172061329 1 8 1 8 0 0 1016 18 413 3987584 55200 222.92582702636719 1.4433 319.1146 20160 11774 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 413 320 0 64 0 2954050648 9068412 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 26 33 304 0 0 1 2 15 0 0 0 0 0 +1206 1783858108256428900 REFRESH 7 0 0.6885083644470632 0.8356047700170357 1 12 1 12 0 0 800 23 407 3988953 56640 220.89625549316406 1.4457 304.84859999999998 13440 8069 0 0 0.0030942132482632461 1.0738159360206059 4096 2048 64 1 16 407 320 0 64 0 2954774012 9791776 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 35 297 0 0 0 0 23 0 0 0 0 0 +1207 1783858108652267100 REFRESH 51 0 0.69044735698025383 0.91396933560476989 3 11 3 11 0 0 506 16 404 3988965 56640 224.99533081054688 1.4403999999999999 313.35329999999999 13440 9734 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 404 320 0 64 0 2955494316 10512080 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 39 290 0 0 0 0 16 0 0 0 0 0 +1208 1783858109099667300 REFRESH 35 0 0.68850324530873463 0.8279386712095399 2 11 2 11 0 0 1010 13 404 3988969 56640 221.44511413574219 1.4782 306.55250000000001 13440 8019 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 404 320 0 64 0 2956214620 11232384 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 37 292 0 0 0 0 13 0 0 0 0 0 +1209 1783858109482798000 REFRESH 45 0 0.69149742373396506 0.45315161839863699 2 7 2 7 0 0 1827 53 410 3987594 55200 223.31800842285156 1.4417 319.98180000000002 20160 11888 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 410 320 0 64 0 2956941044 11958808 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 33 300 0 0 0 0 53 0 0 0 0 0 +1210 1783858109876053300 REFRESH 23 0 0.69138445907274049 0.74190800681430991 1 11 1 11 0 0 3278 14 410 3988981 56640 233.75360107421875 1.4375 324.7319 13440 8039 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 410 320 0 64 0 2957667468 12685232 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 25 25 25 32 303 0 0 0 0 14 0 0 0 0 0 +1211 1783858110277438800 REFRESH 1 0 0.69023121772152929 0.36712095400340705 1 7 1 7 1 0 2579 29 418 3987584 55200 224.35749816894531 1.4504999999999999 337.86000000000001 20160 12023 0 0 0.018321865440573251 1.6475503461740044 4096 2048 64 1 16 418 320 0 64 0 2958402052 13419816 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 26 187 155 0 0 0 6 23 0 0 0 0 1 +1212 1783858110664470200 REFRESH 8 0 0.69500107751213458 0.26575809199318562 2 5 2 5 0 0 2236 18 411 3987602 55200 224.00102233886719 1.4395 317.23050000000001 20160 11894 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 411 320 0 64 0 2959129496 14147260 1 0 4 3 3 3 3 983040 737280 737280 737487 748800 25 25 26 137 198 0 0 0 5 13 0 0 0 0 0 +1213 1783858111054562600 REFRESH 43 0 0.69182743868627528 0.8279386712095399 2 11 2 11 0 0 730 9 419 3988965 56640 220.49075317382812 1.4346000000000001 311.2543 13440 9596 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 419 320 0 64 0 2959865100 14882864 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 46 298 0 0 0 0 9 0 0 0 0 0 +1214 1783858113354522000 DEPTH 42 1 0.8110538557259126 0 0 4 0 4 0 0 4096 20 2602 23678100 81600 1307.1800231933594 8.6539000000000001 2182.4812000000002 120960 66015 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2602 1920 0 384 1 2964378048 19395812 1 0 4 3 3 3 3 5898240 4423680 4423680 4426383 4492800 288 150 293 1372 499 0 0 0 0 20 0 0 0 0 0 +1215 1783858115380271500 DEPTH 26 1 0.73136880485322597 0.64821124361158422 1 10 1 10 0 0 1452 53 2565 23742806 147840 1272.7466735839844 8.6758000000000006 2024.0102999999999 80640 39815 1 0 0.052980194395727251 0.83591037601080131 4096 2048 384 12 96 2565 1920 0 384 1 2968853256 23871020 1 0 4 2 2 2 6 5898240 2949120 2949120 2951024 8985600 150 150 150 150 1965 0 0 0 3 50 0 0 0 0 0 +1216 1783858117572739800 DEPTH 57 1 0.69219713778274983 0.27342419080068137 1 6 1 6 0 0 3813 115 2535 23677521 81600 1304.1174621582031 8.6292000000000009 2069.0165000000002 120960 56271 1 0 0.00071319863557039705 0.50199945429156345 4096 2048 384 12 96 2535 1920 0 384 1 2973297864 28315628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 493 1592 0 0 0 2 113 0 0 0 0 0 +1217 1783858119735705000 DEPTH 9 1 0.69211170177595649 0.27342419080068137 1 6 1 6 0 0 2429 91 2564 23677626 81600 1295.9768829345703 8.6804000000000006 2091.4823000000001 120960 58349 1 0 0.00045141848709869686 0.33902516851330938 4096 2048 384 12 96 2564 1920 0 384 1 2977772052 32789816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426524 4492800 150 150 190 695 1379 0 0 3 3 85 0 0 0 0 0 +1218 1783858121990567800 DEPTH 13 1 0.69182169567670004 0.27342419080068137 1 6 1 6 0 0 3596 82 2567 23677516 81600 1293.7113494873047 8.6237000000000013 2179.7521999999999 120960 56052 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2567 1920 0 384 1 2982249300 37267064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 155 733 1379 6 0 0 1 75 0 0 0 0 0 +1219 1783858124124507700 DEPTH 56 1 0.69046540486333297 0.26575809199318562 2 5 2 5 0 0 4096 56 2578 23677467 81600 1297.4046478271484 8.6273999999999997 2132.1743999999999 120960 56562 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2578 1920 0 384 1 2986737768 41755532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426347 4492800 150 150 174 1436 668 2 3 1 1 49 0 0 0 0 0 +1220 1783858126200105900 DEPTH 2 1 0.6877441163904332 0.45315161839863699 2 7 2 7 0 0 2855 160 2522 23677323 81600 1287.2540130615234 8.6615000000000002 1984.6555000000001 120960 68785 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2522 1920 0 384 1 2991169116 46186880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 150 150 150 154 1918 0 1 0 0 159 0 0 0 0 0 +1221 1783858128264946400 DEPTH 32 1 0.6877522163662495 0.4608177172061329 1 8 1 8 0 0 2441 114 2542 23677378 81600 1298.4995727539062 8.6670999999999996 2062.8814000000002 120960 61448 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2542 1920 0 384 1 2995620864 50638628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 150 174 1918 3 0 2 16 93 0 0 0 0 0 +1222 1783858130596800300 DEPTH 48 1 0.69186502226226287 0.26575809199318562 2 5 2 5 0 0 2162 43 2575 23677600 81600 1301.7755584716797 8.6493000000000002 2102.3748000000001 120960 57632 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2575 1920 0 384 1 3000106272 55124036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 150 686 1439 1 1 3 0 38 0 0 0 0 0 +1223 1783858132444907500 DEPTH 55 1 0.68966077629706524 0.64054514480408853 2 9 2 9 0 0 1030 97 2529 23677451 81600 1294.2620239257812 8.6922999999999995 1785.4074000000001 120960 68707 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2529 1920 0 384 1 3004544760 59562524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 150 150 150 632 1447 0 0 2 2 93 0 0 0 0 0 +1224 1783858134638002300 DEPTH 30 1 0.68778775676704851 0.4608177172061329 1 8 1 8 0 0 2896 175 2510 23677417 81600 1328.8735198974609 8.7560000000000002 1986.6781000000001 120960 68326 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2510 1920 0 384 1 3008963868 63981632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426506 4492800 150 150 150 163 1897 0 0 0 13 162 0 0 0 0 0 +1225 1783858138067449600 DEPTH 3 1 0.68742686408000164 0.64054514480408853 2 9 2 9 0 0 1029 28 2541 23709062 114240 1302.3610992431641 8.6812999999999985 3274.0135 120960 66671 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2541 1920 0 384 1 3013414676 1323952 1 0 4 3 3 2 4 5898240 4423680 3686400 2950966 6739200 150 150 154 737 1350 0 0 1 4 23 0 0 0 0 0 +1226 1783858140053860700 DEPTH 14 1 0.68740417800126397 0.65587734241908002 0 11 0 11 0 0 1442 84 2535 23716918 121920 1287.9453887939453 8.6880000000000006 1923.0508 80640 38123 1 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 384 12 96 2535 1920 0 384 1 3017859284 5768560 1 0 4 2 3 3 4 5898240 2949120 4423680 3196883 7238400 156 150 150 470 1609 0 0 0 5 79 0 0 0 0 0 +1227 1783858142235172200 DEPTH 11 1 0.68697414463960782 0.37478705281090291 0 8 0 8 1 0 2011 49 2561 23695876 100800 1279.6534576416016 8.6440000000000001 2110.6525999999999 120960 56854 1 0 0 0.76175667866345076 4096 2048 384 12 96 2561 1920 0 384 1 3022330412 10239688 1 0 4 3 3 2 4 5898240 4423680 4423680 3196854 5740800 150 150 156 1216 889 0 5 2 0 42 0 0 0 0 5 +1228 1783858144441616800 DEPTH 53 1 0.6869153323376167 0.37478705281090291 0 8 0 8 1 0 4096 71 2547 23677370 81600 1286.4286956787109 9.0881000000000007 2118.9409999999998 120960 61999 1 0 0 0.2343196820860895 4096 2048 384 12 96 2547 1920 0 384 1 3026787260 14696536 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 150 753 1344 0 0 0 3 68 0 0 0 0 2 +1229 1783858146419732600 DEPTH 16 1 0.68692561839527522 0.3594548551959113 2 6 2 6 0 0 2747 132 2523 23677331 81600 1303.3534545898438 8.7259000000000011 1908.2037 120960 62820 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2523 1920 0 384 1 3031219628 19128904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 150 440 1633 0 0 0 2 130 0 0 0 0 0 +1230 1783858148584651000 DEPTH 42 1 0.76059382783442187 0 0 4 0 4 0 0 4096 20 2594 23678057 81600 1283.9123840332031 8.9337 2162.8629000000001 127680 64647 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2594 1920 0 384 1 3035724416 23633692 1 0 4 3 3 3 3 5898240 4669440 4423680 4180539 4492800 231 150 261 1457 495 0 0 0 0 20 0 0 0 0 0 +1231 1783858150762453700 DEPTH 17 1 0.69201112212682181 0.28109028960817717 0 7 0 7 1 0 3282 55 2583 23677512 81600 1283.6044769287109 8.7072000000000003 2116.9834999999998 120960 57206 1 1 1.7386291916993158e-05 0.082062218869739814 4096 2048 384 12 96 2583 1920 0 384 1 3040217984 28127260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 150 1215 918 1 0 1 0 52 0 0 0 0 1 +1232 1783858152890924000 DEPTH 20 1 0.68905698297193219 0.26575809199318562 2 5 2 5 0 0 1889 37 2600 23677496 81600 1287.4802398681641 8.6663999999999994 2059.7474000000002 120960 57488 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2600 1920 0 384 1 3044728892 32638168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426356 4492800 150 150 215 471 1614 0 0 2 0 35 0 0 0 0 0 +1233 1783858155012547200 DEPTH 54 1 0.68789397700642363 0.4608177172061329 1 8 1 8 0 0 1028 50 2551 23677356 81600 1282.9778137207031 8.8017000000000003 2055.6453000000001 120960 56184 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2551 1920 0 384 1 3049189820 37099096 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 153 178 1920 1 0 3 3 43 0 0 0 0 0 +1234 1783858157213063900 DEPTH 39 1 0.6874817270251703 0.55451448040885853 1 9 1 9 0 0 1463 57 2581 23709107 114240 1315.8749694824219 8.8783000000000012 2131.7694999999999 120960 69658 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2581 1920 0 384 1 3053681348 41590624 1 0 4 3 3 2 4 5898240 4423680 3686400 2951011 6739200 150 150 150 636 1495 0 0 11 0 46 0 0 0 0 0 +1235 1783858159353370200 DEPTH 33 1 0.68697461227711276 0.36712095400340705 1 7 1 7 0 0 3025 93 2556 23677435 81600 1290.5448608398438 8.7302 2059.8928000000001 120960 57914 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2556 1920 0 384 1 3058147376 46056652 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 166 492 1598 1 0 0 1 91 0 0 0 0 0 +1236 1783858161516145600 DEPTH 46 1 0.6869858160547373 0.37478705281090291 0 8 0 8 0 0 2502 46 2573 23677479 81600 1291.8964233398438 8.6073999999999984 2105.1947 120960 59130 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2573 1920 0 384 1 3062630744 50540020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426509 4492800 150 150 160 867 1246 0 0 2 0 44 0 0 0 0 0 +1237 1783858163657640400 DEPTH 52 1 0.68657420138462522 0.36712095400340705 1 7 1 7 1 0 1855 49 2573 23677324 81600 1279.1387786865234 9.1317000000000004 2080.3126999999999 120960 56418 1 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 384 12 96 2573 1920 0 384 1 3067114112 55023388 1 0 4 3 3 3 3 5898240 4423680 4423680 4426353 4492800 150 150 173 1376 724 0 0 3 1 45 0 0 0 0 1 +1238 1783858165825219700 DEPTH 26 1 0.70101022359457765 0.64821124361158422 1 10 1 10 1 0 1477 68 2567 23735555 140160 1281.4181823730469 8.7004000000000001 2102.4949999999999 80640 32211 1 0 0.044382304733877075 0.84312556148742701 4096 2048 384 12 96 2567 1920 0 384 1 3071591360 59500636 1 0 4 2 2 3 5 5898240 2949120 2949120 3442899 8486400 150 150 150 294 1823 0 0 0 9 59 0 0 0 0 1 +1239 1783858167855836600 DEPTH 8 1 0.69206975803315629 0.26575809199318562 2 5 2 5 0 0 2243 51 2531 23677402 81600 1296.2650146484375 8.6995999999999984 1968.8458000000001 120960 56860 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2531 1920 0 384 1 3076031888 63941164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426357 4492800 150 150 156 545 1530 0 0 0 3 48 0 0 0 0 0 +1240 1783858171175269200 DEPTH 45 1 0.68797618013174255 0.45315161839863699 2 7 2 7 0 0 1838 46 2538 23677578 81600 1298.4497528076172 8.6625000000000014 3197.5650999999998 120960 57376 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2538 1920 0 384 1 3080479636 1280092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 156 170 1912 0 0 0 6 40 0 0 0 0 0 +1241 1783858173341882100 DEPTH 1 1 0.68794539117320541 0.36712095400340705 1 7 1 7 1 0 2585 47 2565 23677545 81600 1299.7140502929688 8.6230999999999991 2098.1723000000002 120960 57543 1 0 0.023605771265213755 1.923297889816534 4096 2048 384 12 96 2565 1920 0 384 1 3084954844 5755300 1 0 4 3 3 3 3 5898240 4423680 4423680 4426571 4492800 150 150 155 760 1350 0 0 3 1 43 0 0 0 0 1 +1242 1783858175230328200 DEPTH 23 1 0.68734036615782745 0.74190800681430991 1 11 1 11 0 0 3282 27 2556 23723468 128640 1282.5669708251953 8.6904000000000003 1820.4121 80640 39362 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2556 1920 0 384 1 3089420872 10221328 1 0 4 2 3 2 5 5898240 2949120 4177920 2950949 7737600 150 150 150 757 1349 0 0 0 3 24 0 0 0 0 0 +1243 1783858177091079500 DEPTH 43 1 0.68667205711961088 0.8279386712095399 2 11 2 11 0 0 736 42 2569 23742602 147840 1293.4704742431641 8.6346999999999987 1802.4975999999999 80640 46834 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2569 1920 0 384 1 3093900160 14700616 1 0 4 2 2 2 6 5898240 2949120 2949120 2950903 8985600 150 150 150 251 1868 0 2 0 3 37 0 0 0 0 0 +1244 1783858179224766000 DEPTH 25 1 0.68656499255534498 0.4608177172061329 1 8 1 8 0 0 2162 34 2543 23677496 81600 1290.5304870605469 8.7243999999999993 2075.4176000000002 120960 57212 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2543 1920 0 384 1 3098352928 19153384 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 681 1412 0 0 3 0 31 0 0 0 0 0 +1245 1783858181345634200 DEPTH 31 1 0.68652147726897117 0.3594548551959113 2 6 2 6 0 0 2258 41 2562 23677415 81600 1281.1538848876953 8.6930000000000014 2053.4267 120960 56532 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2562 1920 0 384 1 3102825076 23625532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 153 710 1399 0 0 3 0 38 0 0 0 0 0 +1246 1783858181709632900 REFRESH 12 0 0.68469267171840209 0.63287904599659284 3 8 3 8 0 0 1152 13 426 3988485 56160 221.37344360351562 1.5476000000000001 307.00560000000002 13440 7875 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 3103567820 24368276 1 0 4 2 3 2 5 983040 491520 737280 491660 1248000 25 25 26 155 195 0 0 0 1 12 0 0 0 0 0 +1247 1783858182064850800 REFRESH 52 0 0.5337331022974362 0.36712095400340705 1 7 1 7 0 0 1856 4 425 3987598 55200 222.15577697753906 1.4578 353.76859999999999 20160 11979 0 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 64 1 16 425 320 0 64 0 3104309544 25110000 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 30 243 102 0 0 1 1 2 0 0 0 0 0 +1248 1783858182454397800 REFRESH 13 0 0.6890116087781295 0.27342419080068137 1 6 1 6 0 0 3622 51 420 3987616 55200 223.0323486328125 1.4365000000000001 318.80970000000002 20160 12110 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 420 320 0 64 0 3105046168 25846624 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 26 186 158 0 0 0 8 43 0 0 0 0 0 +1249 1783858182867423300 REFRESH 21 0 0.68483460083245329 0.56218057921635434 0 10 0 10 0 0 2235 11 428 3987997 55680 222.23770141601562 1.4501999999999999 354.58280000000002 20160 12361 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 428 320 0 64 0 3105790952 26591408 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 26 254 98 0 0 1 2 8 0 0 0 0 0 +1250 1783858183232170100 REFRESH 34 0 0.68408001453512857 0.8356047700170357 1 12 1 12 0 0 646 21 420 3988938 56640 220.26138305664062 1.4337 295.5908 13440 9056 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 420 320 0 64 0 3106527576 27328032 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 25 52 292 0 1 0 1 19 0 0 0 0 0 +1251 1783858183630100800 REFRESH 27 0 0.6863510570882978 0.93696763202725719 0 14 0 14 0 0 816 15 413 3988986 56640 220.55935668945312 1.4380999999999999 316.4289 13440 8315 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 413 320 0 64 0 3107257060 28057516 1 0 4 2 2 2 6 983040 491520 491520 491697 1497600 25 25 25 27 311 0 0 0 0 15 0 0 0 0 0 +1252 1783858184007376800 REFRESH 3 0 0.68357773111738407 0.64054514480408853 2 9 2 9 0 0 1031 20 414 3988029 55680 221.37139892578125 1.5980000000000001 317.91719999999998 20160 12273 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 414 320 0 64 0 3107987564 28788020 1 0 4 3 3 2 4 983040 737280 737280 491705 998400 25 25 26 213 125 0 0 0 10 10 0 0 0 0 0 +1253 1783858184414632700 REFRESH 41 0 0.68488194723869245 0.55451448040885853 1 9 1 9 0 0 1861 14 424 3987985 55680 222.69343566894531 1.5064 337.64080000000001 20160 12284 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 424 320 0 64 0 3108728268 29528724 1 0 4 3 3 2 4 983040 737280 737280 491661 998400 25 25 28 230 116 0 0 0 4 10 0 0 0 0 0 +1254 1783858184773342300 REFRESH 39 0 0.6340861788415284 0.55451448040885853 1 9 1 9 0 0 1464 9 429 3987997 55680 222.05337524414062 1.4366000000000001 356.95729999999998 20160 13986 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 429 320 0 64 0 3109474072 30274528 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 27 147 205 0 0 0 0 9 0 0 0 0 0 +1255 1783858185187510300 REFRESH 50 0 0.68476295746360671 0.64054514480408853 2 9 2 9 0 0 972 8 435 3988463 56160 221.22598266601562 1.4487000000000001 349.3999 20160 14184 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 435 320 0 64 0 3110225996 31026452 1 0 4 3 2 2 5 983040 737280 491520 491662 1248000 25 25 25 250 110 0 0 0 0 8 0 0 0 0 0 +1256 1783858185607331100 REFRESH 53 0 0.68381722986040727 0.37478705281090291 0 8 0 8 0 0 4096 30 416 3987594 55200 222.16703796386719 1.4399999999999999 348.6816 20160 11887 0 0 0 0.2343196820860895 4096 2048 64 1 16 416 320 0 64 0 3110958540 31758996 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 212 129 0 0 0 8 22 0 0 0 0 0 +1257 1783858185974258600 REFRESH 15 0 0.68521412068338183 0.91396933560476989 3 11 3 11 0 0 303 13 408 3988465 56160 221.88134765625 1.4406000000000001 305.66480000000001 13440 8797 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 408 320 0 64 0 3111682924 32483380 1 0 5 2 2 2 5 1228800 491520 491520 491664 1248000 25 25 25 44 289 0 0 1 0 12 0 0 0 0 0 +1258 1783858186342539300 REFRESH 7 0 0.68466584047507206 0.8356047700170357 1 12 1 12 0 0 804 23 408 3988972 56640 221.26191711425781 1.6276999999999999 309.44279999999998 13440 8079 0 0 0.0030942132482632461 1.0738159360206059 4096 2048 64 1 16 408 320 0 64 0 3112407308 33207764 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 25 25 25 36 297 0 0 0 0 23 0 0 0 0 0 +1259 1783858186743258600 REFRESH 49 0 0.68466195490767978 0.82027257240204421 3 10 3 10 0 0 1050 27 412 3988954 56640 221.46560668945312 1.4395 322.75700000000001 13440 8121 0 0 0.023587680617059275 0.4799144480521384 4096 2048 64 1 16 412 320 0 64 0 3113135772 33936228 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 38 299 0 1 0 0 26 0 0 0 0 0 +1260 1783858187145767700 REFRESH 57 0 0.68949456042568791 0.27342419080068137 1 6 1 6 0 0 3829 34 411 3987615 55200 227.16621398925781 1.4469000000000001 335.15280000000001 20160 11983 0 0 0.00071319863557039705 0.50199945429156345 4096 2048 64 1 16 411 320 0 64 0 3113863216 34663672 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 139 197 0 0 0 5 29 0 0 0 0 0 +1261 1783858187576267400 REFRESH 30 0 0.68445008927989148 0.4608177172061329 1 8 1 8 0 0 2915 49 407 3987652 55200 222.67202758789062 1.5227999999999999 308.98970000000003 20160 14735 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 407 320 0 64 0 3114586580 35387036 1 0 4 3 3 3 3 983040 737280 737280 737569 748800 25 25 25 79 253 0 0 0 7 42 0 0 0 0 0 +1262 1783858187891476600 REFRESH 23 0 0.63329365825672523 0.74190800681430991 1 11 1 11 0 0 3286 15 412 3988516 56160 229.570556640625 1.4339 313.80270000000002 13440 7905 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 412 320 0 64 0 3115315044 36115500 1 0 4 2 3 2 5 983040 491520 737280 491712 1248000 25 25 25 176 161 0 0 1 4 10 0 0 0 0 0 +1263 1783858188326700100 REFRESH 20 0 0.68677756273101176 0.26575809199318562 2 5 2 5 0 0 1890 14 432 3987647 55200 227.198974609375 1.4397 358.50619999999998 20160 12251 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 3116063908 36864364 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 42 163 177 0 0 0 1 13 0 0 0 0 0 +1264 1783858188648868600 REFRESH 33 0 0.68386787176711517 0.36712095400340705 1 7 1 7 0 0 3038 37 417 3987606 55200 224.26316833496094 1.4750000000000001 320.39859999999999 20160 12272 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 417 320 0 64 0 3116797472 37597928 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 31 173 163 0 0 0 9 28 0 0 0 0 0 +1265 1783858189059190200 REFRESH 54 0 0.68449554627479348 0.4608177172061329 1 8 1 8 0 0 1034 26 417 3987576 55200 222.45785522460938 1.4503999999999999 336.7149 20160 11891 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 417 320 0 64 0 3117531036 38331492 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 26 70 271 0 0 0 8 18 0 0 0 0 0 +1266 1783858189529566000 REFRESH 47 0 0.68476634976332229 0.8279386712095399 2 11 2 11 0 0 594 33 413 3988969 56640 220.41804504394531 1.4530000000000001 302.28519999999997 13440 8064 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 413 320 0 64 0 3118260520 39060976 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 26 25 25 31 306 0 0 0 0 33 0 0 0 0 0 +1267 1783858189948797500 REFRESH 44 0 0.68517191141067602 0.36712095400340705 1 7 1 7 0 0 1853 9 434 3987586 55200 222.95449829101562 1.4489000000000001 358.97620000000001 20160 12181 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 434 320 0 64 0 3119011424 39811880 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 231 128 0 0 1 0 8 0 0 0 0 0 +1268 1783858190384047100 REFRESH 56 0 0.68798987494272801 0.26575809199318562 2 5 2 5 0 0 4096 8 420 3987623 55200 223.66639709472656 1.4363999999999999 362.76929999999999 20160 12080 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 420 320 0 64 0 3119748048 40548504 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 29 269 72 0 0 0 0 8 0 0 0 0 0 +1269 1783858190746907500 REFRESH 5 0 0.68477727641469455 0.8279386712095399 2 11 2 11 0 0 769 21 416 3988968 56640 219.71559143066406 1.4338 301.46440000000001 13440 8784 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 416 320 0 64 0 3120480592 41281048 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 70 271 0 0 0 0 21 0 0 0 0 0 +1270 1783858191113545100 REFRESH 35 0 0.68478646009384914 0.8279386712095399 2 11 2 11 0 0 1010 19 404 3988955 56640 226.49139404296875 1.4330000000000001 305.10750000000002 13440 8088 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 404 320 0 64 0 3121200896 42001352 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 35 294 0 0 0 0 19 0 0 0 0 0 +1271 1783858191536751700 REFRESH 40 0 0.68450259267032265 0.64821124361158422 1 10 1 10 0 0 1477 11 416 3988935 56640 222.79270935058594 1.4483999999999999 351.39490000000001 13440 8262 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 416 320 0 64 0 3121933440 42733896 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 25 25 43 298 0 0 0 0 11 0 0 0 0 0 +1272 1783858191892564600 REFRESH 55 0 0.68375418758626838 0.64054514480408853 2 9 2 9 0 0 1030 15 416 3987588 55200 224.75468444824219 1.4358 300.3415 20160 12658 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 416 320 0 64 0 3122665984 43466440 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 161 180 0 0 0 0 15 0 0 0 0 0 +1273 1783858192251512200 REFRESH 58 0 0.68667353830638489 0.92163543441226559 2 12 2 12 1 0 499 19 410 3988956 56640 220.65869140625 1.4368000000000001 293.24270000000001 13440 9687 0 0 0.011633053036462098 1.7487615666325795 4096 2048 64 1 16 410 320 0 64 0 3123392408 44192864 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 36 298 0 1 0 0 18 0 0 0 0 1 +1274 1783858192578262100 REFRESH 26 0 0.71162524659891091 0.64821124361158422 1 10 1 10 0 0 1496 48 415 3988587 56160 223.34463500976562 1.4356 325.11950000000002 13440 8238 0 0 0.044382304733877075 0.84312556148742701 4096 2048 64 1 16 415 320 0 64 0 3124123932 44924388 1 0 4 2 2 3 5 983040 491520 491520 737536 1248000 25 25 25 93 247 0 0 0 4 44 0 0 0 0 0 +1275 1783858192954904000 REFRESH 24 0 0.68513856023924324 1 4 11 4 11 0 0 486 12 407 3988960 56640 230.10406494140625 1.4358 310.23259999999999 13440 9000 0 0 0.070125946914955439 1.4378063310002365 4096 2048 64 1 16 407 320 0 64 0 3124847296 45647752 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 26 305 0 0 0 0 12 0 0 0 0 0 +1276 1783858193319773900 REFRESH 19 0 0.68488667665123348 0.8279386712095399 2 11 2 11 0 0 808 12 413 3988940 56640 221.6099853515625 1.4804999999999999 303.94310000000002 13440 8012 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 413 320 0 64 0 3125576780 46377236 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 25 28 310 0 0 0 0 12 0 0 0 0 0 +1277 1783858193787200400 REFRESH 42 0 0.85030686681319279 0 0 4 0 4 0 0 4096 7 426 3987732 55200 223.49516296386719 1.6161000000000001 387.80079999999998 20160 13128 0 0 0 0.0063417300788251949 4096 2048 64 1 16 426 320 0 64 0 3126319524 47119980 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 56 25 56 215 74 0 0 0 0 7 0 0 0 0 0 +1278 1783858194155158200 REFRESH 0 0 0.68648435218905768 0.8279386712095399 2 11 2 11 0 0 806 11 416 3988961 56640 219.67666625976562 1.4433 306.41109999999998 13440 8466 0 0 0.00017143269285358514 2.2184394717292082 4096 2048 64 1 16 416 320 0 64 0 3127052068 47852524 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 47 294 0 0 0 0 11 0 0 0 0 0 +1279 1783858194493097000 REFRESH 31 0 0.68352142316442444 0.3594548551959113 2 6 2 6 0 0 2264 20 421 3987621 55200 229.93101501464844 1.4353 336.35989999999998 20160 11948 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 3127789712 48590168 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 28 200 143 0 0 0 6 14 0 0 0 0 0 +1280 1783858194868018300 REFRESH 51 0 0.68669802227801879 0.91396933560476989 3 11 3 11 0 0 509 12 408 3988959 56640 220.77644348144531 1.4947999999999999 309.05340000000001 13440 9632 0 0 0.069490736143882334 0.29124129273896787 4096 2048 64 1 16 408 320 0 64 0 3128514096 49314552 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 38 295 0 0 0 0 12 0 0 0 0 0 +1281 1783858195235095800 REFRESH 28 0 0.68572637476238729 0.8279386712095399 2 11 2 11 0 0 581 20 410 3988937 56640 222.73228454589844 1.4464999999999999 301.56330000000003 13440 8079 0 0 0.00018539603561779441 1.1161570488221655 4096 2048 64 1 16 410 320 0 64 0 3129240520 50040976 1 0 4 2 2 2 6 983040 491520 491520 491650 1497600 26 25 25 28 306 0 0 0 0 20 0 0 0 0 0 +1282 1783858195646510100 REFRESH 48 0 0.68936485797988212 0.26575809199318562 2 5 2 5 0 0 2167 19 423 3987664 55200 224.110595703125 1.4558 352.25889999999998 20160 12253 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 423 320 0 64 0 3129980204 50780660 1 0 4 3 3 3 3 983040 737280 737280 737539 748800 25 25 27 182 164 0 0 0 2 17 0 0 0 0 0 +1283 1783858196072067600 REFRESH 1 0 0.68528845815293393 0.36712095400340705 1 7 1 7 0 0 2595 34 419 3987613 55200 222.66163635253906 1.4398 350.67309999999998 20160 12024 0 0 0.023605771265213755 1.923297889816534 4096 2048 64 1 16 419 320 0 64 0 3130715808 51516264 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 29 185 155 0 0 0 7 27 0 0 0 0 0 +1284 1783858196467618100 REFRESH 2 0 0.68471333900650477 0.45315161839863699 2 7 2 7 0 0 2879 51 410 3987619 55200 235.71478271484375 1.4332 327.30849999999998 20160 14855 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 410 320 0 64 0 3131442232 52242688 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 25 30 305 0 0 0 0 51 0 0 0 0 0 +1285 1783858196805820800 REFRESH 45 0 0.68472116939959426 0.45315161839863699 2 7 2 7 0 0 1859 44 409 3987661 55200 238.15986633300781 1.8702000000000001 336.69229999999999 20160 12475 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 409 320 0 64 0 3132167636 52968092 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 27 49 283 0 0 0 3 41 0 0 0 0 0 +1286 1783858197138227900 REFRESH 43 0 0.68292708383368395 0.8279386712095399 2 11 2 11 0 0 736 12 425 3988964 56640 241.14073181152344 1.4488000000000001 330.78309999999999 13440 8859 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 425 320 0 64 0 3132909360 53709816 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 53 297 0 0 0 2 10 0 0 0 0 0 +1287 1783858197554843300 REFRESH 9 0 0.68968695921641088 0.27342419080068137 1 6 1 6 0 0 2442 41 424 3987606 55200 226.17193603515625 1.4462999999999999 345.23809999999997 20160 12007 0 0 0.00045141848709869686 0.33902516851330938 4096 2048 64 1 16 424 320 0 64 0 3133650064 54450520 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 34 180 160 0 0 0 9 32 0 0 0 0 0 +1288 1783858197925868100 REFRESH 22 0 0.68450277016069383 0.91396933560476989 3 11 3 11 0 0 448 7 414 3988980 56640 221.51986694335938 1.4431 311.90899999999999 13440 9448 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 414 320 0 64 0 3134380568 55181024 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 27 25 25 41 296 0 0 0 0 7 0 0 0 0 0 +1289 1783858198304003800 REFRESH 4 0 0.67681036155660113 0.8356047700170357 1 12 1 12 0 0 261 10 419 3988391 56160 220.9617919921875 1.4379 301.27100000000002 13440 9826 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 419 320 0 64 0 3135116172 55916628 1 0 6 2 2 1 5 1474560 491520 491520 245831 1248000 27 25 29 70 268 0 0 0 0 10 0 0 0 0 0 +1290 1783858198696447600 REFRESH 16 0 0.6841641422381094 0.3594548551959113 2 6 2 6 0 0 2759 34 415 3987596 55200 231.43423461914062 1.4345000000000001 318.87569999999999 20160 11890 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 415 320 0 64 0 3135847696 56648152 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 107 233 0 0 0 2 32 0 0 0 0 0 +1291 1783858199128477000 REFRESH 11 0 0.68427736297671837 0.37478705281090291 0 8 0 8 0 0 2014 11 423 3988019 55680 223.71942138671875 1.4597 369.4948 20160 12015 0 0 0 0.76175667866345076 4096 2048 64 1 16 423 320 0 64 0 3136587380 57387836 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 26 261 86 0 0 0 2 9 0 0 0 0 0 +1292 1783858199490120400 REFRESH 18 0 0.68554450202894046 0.9293015332197615 1 13 1 13 0 0 429 5 416 3988963 56640 221.589599609375 1.4417 306.24239999999998 13440 8297 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 416 320 0 64 0 3137319924 58120380 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 29 311 0 0 0 0 5 0 0 0 0 0 +1293 1783858199847389600 REFRESH 32 0 0.6848106528701543 0.4608177172061329 1 8 1 8 0 0 2468 54 413 3987606 55200 222.32984924316406 1.4244000000000001 302.45609999999999 20160 11841 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 413 320 0 64 0 3138049408 58849864 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 26 56 281 0 0 0 5 49 0 0 0 0 0 +1294 1783858200255843400 REFRESH 46 0 0.68419024844787701 0.37478705281090291 0 8 0 8 0 0 2507 22 426 3987580 55200 223.85151672363281 1.4699 352.30239999999998 20160 12143 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 426 320 0 64 0 3138792152 59592608 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 30 221 125 0 0 0 5 17 0 0 0 0 0 +1295 1783858200651970700 REFRESH 14 0 0.68405700168012229 0.65587734241908002 0 11 0 11 0 0 1451 28 415 3988062 55680 222.76617431640625 1.4511000000000001 323.8503 13440 7981 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 415 320 0 64 0 3139523676 60324132 1 0 4 2 3 3 4 983040 491520 737280 737496 998400 26 25 25 47 292 0 0 0 2 26 0 0 0 0 0 +1296 1783858201018127000 REFRESH 29 0 0.68395654370376424 0.82027257240204421 3 10 3 10 0 0 1074 15 421 3988966 56640 224.70166015625 1.4435 307.22359999999998 13440 7993 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 421 320 0 64 0 3140261320 61061776 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 25 35 310 0 0 0 0 15 0 0 0 0 0 +1297 1783858201529919700 REFRESH 8 0 0.68953801499787004 0.26575809199318562 2 5 2 5 0 0 2247 15 413 3987705 55200 230.58534240722656 1.4472 335.04649999999998 20160 12088 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 413 320 0 64 0 3140990804 61791260 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 26 134 203 0 0 0 3 12 0 0 0 0 0 +1298 1783858201952457700 REFRESH 17 0 0.68961108068251353 0.28109028960817717 0 7 0 7 0 0 3289 16 425 3987606 55200 227.34335327148438 1.4319999999999999 360.08679999999998 20160 12164 0 0 1.7386291916993158e-05 0.082062218869739814 4096 2048 64 1 16 425 320 0 64 0 3141732528 62532984 1 0 4 3 3 3 3 983040 737280 737280 737482 748800 25 25 25 268 82 1 0 1 1 13 0 0 0 0 0 +1299 1783858202320731900 REFRESH 37 0 0.68521603035221812 0.8356047700170357 1 12 1 12 0 0 912 25 409 3988948 56640 227.11500549316406 1.4681 305.29070000000002 13440 8006 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 409 320 0 64 0 3142457932 63258388 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 25 37 296 0 0 0 0 25 0 0 0 0 0 +1300 1783858202674591100 REFRESH 25 0 0.68357639686195393 0.4608177172061329 1 8 1 8 0 0 2165 14 424 3987594 55200 224.48844909667969 1.4368000000000001 352.4538 20160 12087 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 424 320 0 64 0 3143198636 63999092 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 236 113 0 0 1 2 11 0 0 0 0 0 +1301 1783858203056066900 REFRESH 36 0 0.68517260583730832 0.82027257240204421 3 10 3 10 0 0 1086 27 405 3988935 56640 220.90240478515625 1.4352 310.8886 13440 7972 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 405 320 0 64 0 3143919960 64720416 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 26 25 25 38 291 1 0 0 1 25 0 0 0 0 0 +1302 1783858203486856000 REFRESH 10 0 0.6847111317290635 0.64821124361158422 1 10 1 10 0 0 1034 6 429 3988485 56160 220.82048034667969 1.4378 312.33980000000003 13440 7930 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 429 320 0 64 0 3144665764 65466220 1 0 4 2 3 2 5 983040 491520 737280 491682 1248000 25 25 25 199 155 0 0 0 1 5 0 0 0 0 0 +1303 1783858203947474000 REFRESH 6 0 0.68622175775782357 0.91396933560476989 3 11 3 11 0 0 368 10 422 3988962 56640 253.29254150390625 1.4430000000000001 340.5967 6720 4876 0 0 0.078490995891016657 0.16637572843653256 4023 1975 64 1 16 422 320 0 64 0 3145404428 66204884 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 25 25 25 32 315 0 0 0 0 10 0 0 0 0 0 +1304 1783858204465583400 REFRESH 38 0 0.68688041996311555 0.55451448040885853 1 9 1 9 0 0 1837 19 419 3988004 55680 221.88032531738281 1.4386000000000001 448.09980000000002 20160 12198 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 419 320 0 64 0 3146140032 66940488 1 0 4 3 3 2 4 983040 737280 737280 491682 998400 25 25 29 211 129 0 0 0 1 18 0 0 0 0 0 +1305 1783858207901897400 DEPTH 42 1 0.8467903199235538 0 0 4 0 4 0 0 4096 22 2590 23677807 81600 1304.8596038818359 8.6622000000000003 3328.4955 147840 77751 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2590 1920 0 384 1 3150640820 4332428 1 0 4 4 3 2 3 5898240 5406720 4423680 3442846 4492800 287 150 299 1358 496 0 0 0 0 22 0 0 0 0 0 +1306 1783858210067657700 DEPTH 26 1 0.70291750864218883 0.64821124361158422 1 10 1 10 0 0 1510 62 2570 23713828 118080 1287.5901794433594 8.658199999999999 2104.8371000000002 94080 46423 1 0 0.044382304733877075 0.84312556148742701 4096 2048 384 12 96 2570 1920 0 384 1 3155121128 8812736 1 0 4 3 2 3 4 5898240 3440640 2949120 4426371 6988800 150 150 158 541 1571 4 0 4 6 48 0 0 0 0 0 +1307 1783858212224998300 DEPTH 57 1 0.68689063352344482 0.27342419080068137 1 6 1 6 0 0 3840 72 2529 23677465 81600 1291.667236328125 8.7188999999999997 2094.0533999999998 120960 56308 1 0 0.00071319863557039705 0.50199945429156345 4096 2048 384 12 96 2529 1920 0 384 1 3159559616 13251224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426393 4492800 150 150 150 480 1599 0 0 0 4 68 0 0 0 0 0 +1308 1783858214400298000 DEPTH 13 1 0.68657893574530937 0.27342419080068137 1 6 1 6 0 0 3647 77 2569 23677516 81600 1301.0598754882812 8.6585999999999999 2110.2392 120960 56664 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2569 1920 0 384 1 3164038904 17730512 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 155 738 1376 3 0 2 0 72 0 0 0 0 0 +1309 1783858216512084000 DEPTH 20 1 0.6846673868601878 0.26575809199318562 2 5 2 5 0 0 1899 30 2602 23677612 81600 1290.4398193359375 8.7152999999999992 2109.9029 120960 57728 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2602 1920 0 384 1 3168551852 22243460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426509 4492800 150 150 219 509 1574 0 0 0 0 30 0 0 0 0 0 +1310 1783858218918910600 DEPTH 56 1 0.68349152198101137 0.26575809199318562 2 5 2 5 0 0 4096 52 2578 23677571 81600 1324.6556243896484 8.5865000000000009 2224.7554 120960 57172 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2578 1920 0 384 1 3173040320 26731928 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 172 1503 603 2 1 0 2 47 0 0 0 0 0 +1311 1783858220826206000 DEPTH 0 1 0.68266249901886245 0.8279386712095399 2 11 2 11 0 0 810 29 2565 23742746 147840 1271.24169921875 8.7599999999999998 1825.2280000000001 80640 41980 1 0 0.00017143269285358514 2.2184394717292082 4096 2048 384 12 96 2565 1920 0 384 1 3177515528 31207136 1 0 4 2 2 2 6 5898240 2949120 2949120 2951044 8985600 150 150 150 167 1948 0 0 0 1 28 0 0 0 0 0 +1312 1783858222712235300 DEPTH 58 1 0.6826286012760816 0.92163543441226559 2 12 2 12 1 0 501 21 2543 23742731 147840 1284.7515411376953 9.0244999999999997 1825.028 80640 46788 1 0 0.0099066415982336058 1.6471477823118619 4096 2048 384 12 96 2543 1920 0 384 1 3181968296 35659904 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 162 150 150 173 1908 0 0 0 0 21 0 0 0 0 1 +1313 1783858224950378600 DEPTH 9 1 0.6868724927348504 0.27342419080068137 1 6 1 6 0 0 2467 96 2568 23677548 81600 1299.1168518066406 8.6631999999999998 2175.7051999999999 120960 57725 1 0 0.00045141848709869686 0.33902516851330938 4096 2048 384 12 96 2568 1920 0 384 1 3186446564 40138172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 198 696 1374 0 0 0 3 93 0 0 0 0 0 +1314 1783858227154258600 DEPTH 48 1 0.68663875535964725 0.26575809199318562 2 5 2 5 0 0 2176 54 2583 23677521 81600 1289.6377716064453 8.6370000000000005 2079.3901000000001 120960 58286 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2583 1920 0 384 1 3190940132 44631740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 150 150 150 731 1402 1 0 2 0 51 0 0 0 0 0 +1315 1783858229105662800 DEPTH 27 1 0.6826251932386842 0.93696763202725719 0 14 0 14 0 0 819 57 2507 23742779 147840 1298.0371246337891 8.6584000000000003 1809.9594 80640 41239 1 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 384 12 96 2507 1920 0 384 1 3195356180 49047788 1 0 4 2 2 2 6 5898240 2949120 2949120 2951025 8985600 150 150 150 162 1895 0 0 0 0 57 0 0 0 0 0 +1316 1783858230965909000 DEPTH 51 1 0.68261969362023023 0.91396933560476989 3 11 3 11 1 0 510 27 2562 23742657 147840 1272.8838348388672 8.6251999999999995 1789.009 80640 46835 1 0 0.04374756045180065 0.27288744213454319 4096 2048 384 12 96 2562 1920 0 384 1 3199828328 53519936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 150 150 150 159 1953 0 0 0 0 27 0 0 0 0 1 +1317 1783858233140285600 DEPTH 1 1 0.68219334157858835 0.36712095400340705 1 7 1 7 0 0 2608 51 2562 23677541 81600 1304.6522216796875 8.7296000000000014 2114.7118999999998 120960 56908 1 0 0.023605771265213755 1.923297889816534 4096 2048 384 12 96 2562 1920 0 384 1 3204300476 57992084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426511 4492800 150 150 158 759 1345 0 0 2 0 49 0 0 0 0 0 +1318 1783858235094775700 DEPTH 15 1 0.68186605732382322 0.91396933560476989 3 11 3 11 0 0 307 26 2497 23720606 125760 1300.402099609375 8.6602999999999994 1830.4882 80640 43576 1 0 0.13215737202774189 0.95319511763653475 4096 2048 384 12 96 2497 1920 0 384 1 3208706324 62397932 1 0 5 2 2 2 5 7372800 2949120 2949120 2950992 7488000 150 150 150 247 1800 0 0 0 1 25 0 0 0 0 0 +1319 1783858237299572500 DEPTH 40 1 0.68180427489831397 0.64821124361158422 1 10 1 10 0 0 1492 38 2576 23742720 147840 1330.3943023681641 8.714500000000001 2137.3254999999999 80640 41490 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2576 1920 0 384 1 3213192752 66884360 1 0 4 2 2 2 6 5898240 2949120 2949120 2951004 8985600 150 150 150 207 1919 0 0 0 1 37 0 0 0 0 0 +1320 1783858240313110300 DEPTH 28 1 0.68176613571589795 0.8279386712095399 2 11 2 11 1 0 589 36 2531 23723481 128640 1285.8677215576172 8.6805000000000003 2952.1030999999998 80640 38747 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2531 1920 0 384 1 3217633360 4216388 1 0 4 2 3 2 5 5898240 2949120 4177920 2950925 7737600 156 150 150 644 1431 0 0 2 3 31 0 0 0 0 1 +1321 1783858242486786500 DEPTH 42 1 0.7564189798719293 0 0 4 0 4 0 0 4096 24 2595 23677222 81600 1281.3815460205078 8.7319999999999993 2171.6513 161280 70599 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2595 1920 0 384 1 3222139168 8722196 1 0 4 4 3 2 3 5898240 5898240 4423680 2951021 4492800 257 150 284 1419 485 0 0 0 0 24 0 0 0 0 0 +1322 1783858244636651900 DEPTH 21 1 0.68177041598765309 0.56218057921635434 0 10 0 10 0 0 2246 55 2571 23691122 96000 1278.455810546875 8.6412999999999993 2079.1302999999998 120960 59810 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2571 1920 0 384 1 3226620496 13203524 1 0 4 3 3 3 3 5898240 4423680 4423680 3442781 5491200 150 150 154 1064 1053 0 0 12 0 43 0 0 0 0 0 +1323 1783858246786769700 DEPTH 41 1 0.68178155913518768 0.55451448040885853 1 9 1 9 0 0 1867 53 2579 23691246 96000 1292.5113220214844 8.6639999999999979 2081.0648000000001 120960 57163 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2579 1920 0 384 1 3231109984 17693012 1 0 4 3 3 3 3 5898240 4423680 4423680 3442878 5491200 150 150 162 986 1131 0 0 0 2 51 0 0 0 0 0 +1324 1783858248713745200 DEPTH 12 1 0.68173089481207017 0.63287904599659284 3 8 3 8 0 0 1165 44 2587 23716782 121920 1283.9086151123047 8.6713000000000005 1867.0173 87360 42513 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2587 1920 0 384 1 3235607632 22190660 1 0 4 3 3 2 4 5898240 3194880 4423680 2950963 7238400 150 150 150 314 1823 0 0 0 0 44 0 0 0 0 0 +1325 1783858250770235500 DEPTH 2 1 0.68150598141195151 0.45315161839863699 2 7 2 7 0 0 2915 152 2508 23677313 81600 1291.0214233398438 8.7152999999999992 1988.02 120960 70082 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2508 1920 0 384 1 3240024700 26607728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 166 1892 0 0 0 4 148 0 0 0 0 0 +1326 1783858252906478100 DEPTH 45 1 0.68151370545200862 0.45315161839863699 2 7 2 7 0 0 1865 64 2542 23677381 81600 1293.4555206298828 8.9724000000000022 2059.8424 120960 58756 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2542 1920 0 384 1 3244476448 31059476 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 156 205 1881 0 0 0 3 61 0 0 0 0 0 +1327 1783858255141775900 DEPTH 54 1 0.68152447012784334 0.4608177172061329 1 8 1 8 0 0 1044 52 2531 23677415 81600 1294.9585876464844 8.7141000000000002 2155.7818000000002 120960 55631 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2531 1920 0 384 1 3248916976 35500004 1 0 4 3 3 3 3 5898240 4423680 4423680 4426492 4492800 150 150 156 293 1782 3 0 2 1 46 0 0 0 0 0 +1328 1783858257291686700 DEPTH 32 1 0.68153522842626346 0.4608177172061329 1 8 1 8 0 0 2481 74 2549 23677570 81600 1310.8910064697266 8.8862000000000005 2071.6111999999998 120960 57547 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2549 1920 0 384 1 3253375864 39958892 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 150 182 1917 0 0 1 3 70 0 0 0 0 0 +1329 1783858259551641800 DEPTH 17 1 0.68686162752581026 0.28109028960817717 0 7 0 7 0 0 3317 76 2592 23677740 81600 1322.3516235351562 8.9128000000000007 2193.4832999999999 120960 57307 1 0 1.7386291916993158e-05 0.082062218869739814 4096 2048 384 12 96 2592 1920 0 384 1 3257878612 44461640 1 0 4 3 3 3 3 5898240 4423680 4423680 4426556 4492800 150 150 150 1201 941 4 0 6 2 64 0 0 0 0 0 +1330 1783858261584755200 DEPTH 8 1 0.68681489658598061 0.26575809199318562 2 5 2 5 0 0 2251 50 2534 23677583 81600 1303.8125762939453 8.6466999999999992 1961.3949 120960 57786 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2534 1920 0 384 1 3262322200 48905228 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 156 531 1547 0 0 0 3 47 0 0 0 0 0 +1331 1783858263640435400 DEPTH 38 1 0.68340743735631593 0.55451448040885853 1 9 1 9 0 0 1847 57 2547 23698524 103680 1285.629638671875 8.7460000000000004 1931.2057 120960 60040 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2547 1920 0 384 1 3266779048 53362076 1 0 4 3 3 2 4 5898240 4423680 4423680 2950958 5990400 150 150 159 830 1258 0 0 2 5 50 0 0 0 0 0 +1332 1783858265555542600 DEPTH 6 1 0.68299653143837591 0.91396933560476989 3 11 3 11 1 0 372 60 2542 23742687 147840 1288.2080535888672 8.7138999999999989 1856.7683999999999 60480 36748 1 0 0.07847237003590217 0.14391542915731892 4096 2048 384 12 96 2542 1920 0 384 1 3271230796 57813824 1 0 4 2 2 2 6 6635520 2211840 2949120 2950993 8985600 150 150 150 159 1933 0 3 0 0 57 0 0 0 0 1 +1333 1783858267624121700 DEPTH 30 1 0.68158892451379738 0.4608177172061329 1 8 1 8 0 0 2946 128 2508 23677402 81600 1304.0204315185547 8.7314999999999987 1993.6839 120960 69881 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2508 1920 0 384 1 3275647864 62230892 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 150 204 1854 2 0 0 4 122 0 0 0 0 0 +1334 1783858269489758200 DEPTH 24 1 0.68155685061408144 1 4 11 4 11 0 0 487 51 2574 23742670 147840 1285.4300842285156 8.648299999999999 1807.6249 80640 44002 1 0 0.070125946914955439 1.4378063310002365 4096 2048 384 12 96 2574 1920 0 384 1 3280132252 66715280 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 151 150 150 158 1965 0 0 0 0 51 0 0 0 0 0 +1335 1783858272784015200 DEPTH 44 1 0.6814288957706085 0.36712095400340705 1 7 1 7 0 0 1861 44 2635 23677458 81600 1303.9278564453125 8.7411999999999992 3236.9679999999998 120960 57621 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2635 1920 0 384 1 3284678940 4153148 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 1333 852 0 0 5 0 39 0 0 0 0 0 +1336 1783858274975697300 DEPTH 11 1 0.68140193159936158 0.37478705281090291 0 8 0 8 1 0 2029 46 2560 23706338 111360 1285.7674255371094 8.6091000000000015 2122.9784 120960 56096 1 0 0 0.76145821898809674 4096 2048 384 12 96 2560 1920 0 384 1 3289149048 8623256 1 0 4 3 2 2 5 5898240 4423680 3932160 2950960 6489600 150 150 161 897 1202 0 2 0 1 43 0 0 0 0 3 +1337 1783858275339866100 REFRESH 7 0 0.68126649208971857 0.8356047700170357 1 12 1 12 0 0 809 25 406 3988961 56640 222.74560546875 1.4453 304.35149999999999 13440 7941 0 0 0.0030942132482632461 1.0738159360206059 4096 2048 64 1 16 406 320 0 64 0 3289871392 9345600 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 35 296 0 0 0 0 25 0 0 0 0 0 +1338 1783858275637207300 REFRESH 6 0 0.489574097329663 0.91396933560476989 3 11 3 11 1 0 372 4 417 3988944 56640 220.0975341796875 1.4395 295.70620000000002 13440 9485 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 417 320 0 64 0 3290604956 10079164 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 41 301 0 0 0 0 4 0 0 0 0 1 +1339 1783858276047697200 REFRESH 56 0 0.68112000093900948 0.26575809199318562 2 5 2 5 0 0 4096 13 420 3987609 55200 223.31904602050781 1.4379999999999999 352.70729999999998 20160 12218 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 420 320 0 64 0 3291341580 10815788 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 29 268 73 0 0 0 0 13 0 0 0 0 0 +1340 1783858276370117700 REFRESH 45 0 0.5681143433312712 0.45315161839863699 2 7 2 7 0 0 1889 62 410 3987586 55200 222.79475402832031 1.4389000000000001 320.47109999999998 20160 12424 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 410 320 0 64 0 3292068004 11542212 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 27 60 273 0 0 0 4 58 0 0 0 0 0 +1341 1783858276687553900 REFRESH 32 0 0.55812485638441611 0.4608177172061329 1 8 1 8 0 0 2517 64 408 3987606 55200 234.30656433105469 1.4394 315.61939999999998 20160 12221 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 408 320 0 64 0 3292792388 12266596 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 26 68 264 0 0 0 14 50 0 0 0 0 0 +1342 1783858277072346500 REFRESH 57 0 0.68423517224667263 0.27342419080068137 1 6 1 6 0 0 3851 26 409 3987607 55200 226.70643615722656 1.4376 323.30220000000003 20160 11909 0 0 0.00071319863557039705 0.50199945429156345 4096 2048 64 1 16 409 320 0 64 0 3293517792 12992000 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 25 136 198 0 0 0 3 23 0 0 0 0 0 +1343 1783858277425345600 REFRESH 27 0 0.67859936669723031 0.93696763202725719 0 14 0 14 0 0 824 20 409 3988962 56640 221.26591491699219 1.4389000000000001 295.39920000000001 13440 8033 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 409 320 0 64 0 3294243196 13717404 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 28 306 0 0 0 0 20 0 0 0 0 0 +1344 1783858277816101700 REFRESH 13 0 0.68396496530280015 0.27342419080068137 1 6 1 6 0 0 3659 31 416 3987660 55200 230.51263427734375 1.4470000000000001 331.56900000000002 20160 12065 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 416 320 0 64 0 3294975740 14449948 1 0 4 3 3 3 3 983040 737280 737280 737542 748800 25 25 26 185 155 0 0 2 5 24 0 0 0 0 0 +1345 1783858278178444000 REFRESH 23 0 0.68011931950145943 0.74190800681430991 1 11 1 11 0 0 3290 17 421 3988482 56160 228.72575378417969 1.4299999999999999 304.15210000000002 13440 7904 0 0 0.019300902708780661 0.82338470662554231 4096 2048 64 1 16 421 320 0 64 0 3295713384 15187592 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 25 25 25 206 140 0 0 0 5 12 0 0 0 0 0 +1346 1783858278573182200 REFRESH 21 0 0.66824991539401091 0.56218057921635434 0 10 0 10 0 0 2257 35 419 3987586 55200 224.52438354492188 1.4308000000000001 336.20150000000001 20160 11991 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 419 320 0 64 0 3296448988 15923196 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 27 167 175 0 0 3 3 29 0 0 0 0 0 +1347 1783858278927655600 REFRESH 49 0 0.68136792010417968 0.82027257240204421 3 10 3 10 0 0 1069 38 411 3988941 56640 220.56755065917969 1.4433 295.90089999999998 13440 7828 0 0 0.023587680617059275 0.4799144480521384 4096 2048 64 1 16 411 320 0 64 0 3297176432 16650640 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 41 295 0 0 0 0 38 0 0 0 0 0 +1348 1783858279297681100 REFRESH 22 0 0.67823154940693975 0.91396933560476989 3 11 3 11 0 0 449 8 413 3988950 56640 222.66470336914062 1.4578 306.65550000000002 13440 9342 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 413 320 0 64 0 3297905916 17380124 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 27 25 25 39 297 0 0 0 0 8 0 0 0 0 0 +1349 1783858279652914700 REFRESH 36 0 0.681386418438921 0.82027257240204421 3 10 3 10 0 0 1097 34 404 3988492 56160 221.4993896484375 1.4366000000000001 300.06979999999999 13440 7985 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 404 320 0 64 0 3298626220 18100428 1 0 4 2 3 2 5 983040 491520 737280 491692 1248000 25 25 25 36 293 0 0 0 3 31 0 0 0 0 0 +1350 1783858280028644000 REFRESH 41 0 0.67829311148544535 0.55451448040885853 1 9 1 9 0 0 1883 44 418 3987580 55200 222.32575988769531 1.4474 319.7713 20160 12147 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 418 320 0 64 0 3299360804 18835012 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 30 90 248 0 0 0 7 37 0 0 0 0 0 +1351 1783858280342837700 REFRESH 2 0 0.67823239050184525 0.45315161839863699 2 7 2 7 0 0 2947 47 408 3987594 55200 223.43270874023438 1.4394 312.9384 20160 13890 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 408 320 0 64 0 3300085188 19559396 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 25 36 297 0 0 0 0 47 0 0 0 0 0 +1352 1783858280705859200 REFRESH 58 0 0.67881455355000486 0.92163543441226559 2 12 2 12 0 0 504 17 407 3988984 56640 221.45024108886719 1.4409000000000001 304.85270000000003 13440 8894 0 0 0.0099066415982336058 1.6471477823118619 4096 2048 64 1 16 407 320 0 64 0 3300808552 20282760 1 0 4 2 2 2 6 983040 491520 491520 491700 1497600 26 25 25 37 294 0 0 0 0 17 0 0 0 0 0 +1353 1783858281204013800 REFRESH 40 0 0.67895574757745381 0.64821124361158422 1 10 1 10 0 0 1493 8 415 3988478 56160 238.94630432128906 1.4676 380.06240000000003 13440 7986 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 415 320 0 64 0 3301540076 21014284 1 0 4 2 3 2 5 983040 491520 737280 491677 1248000 25 25 25 63 277 0 0 1 0 7 0 0 0 0 0 +1354 1783858281619094900 REFRESH 31 0 0.68102048146436345 0.3594548551959113 2 6 2 6 0 0 2272 27 422 3987621 55200 234.63526916503906 1.4744999999999999 347.77980000000002 20160 11983 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 422 320 0 64 0 3302278740 21752948 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 28 195 149 0 0 0 1 26 0 0 0 0 0 +1355 1783858281957294100 REFRESH 38 0 0.66999714490232432 0.55451448040885853 1 9 1 9 0 0 1850 13 428 3988015 55680 237.01708984375 1.4311 336.29750000000001 20160 11883 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 428 320 0 64 0 3303023524 22497732 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 27 249 102 0 0 0 4 9 0 0 0 0 0 +1356 1783858282343416800 REFRESH 47 0 0.68148760625462734 0.8279386712095399 2 11 2 11 0 0 607 34 409 3988947 56640 225.37831115722656 1.4570000000000001 326.47210000000001 13440 8024 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 409 320 0 64 0 3303748928 23223136 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 25 33 300 0 0 0 0 34 0 0 0 0 0 +1357 1783858282775313400 REFRESH 25 0 0.68066349753335254 0.4608177172061329 1 8 1 8 0 0 2166 11 426 3987606 55200 226.10432434082031 1.4554 365.79199999999997 20160 12224 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 426 320 0 64 0 3304491672 23965880 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 240 111 0 0 1 0 10 0 0 0 0 0 +1358 1783858283211763600 REFRESH 54 0 0.67830263849161976 0.4608177172061329 1 8 1 8 0 0 1048 21 416 3987612 55200 231.57862854003906 1.4511000000000001 358.48070000000001 20160 11986 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 416 320 0 64 0 3305224216 24698424 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 26 91 249 0 0 2 5 14 0 0 0 0 0 +1359 1783858283605336400 REFRESH 42 0 0.84613238276717295 0 0 4 0 4 0 0 4096 11 427 3987582 55200 235.57856750488281 1.4339999999999999 391.62869999999998 26880 18429 0 0 0 0.0063417300788251949 4096 2048 64 1 16 427 320 0 64 0 3305967980 25442188 1 0 4 4 3 2 3 983040 983040 737280 491666 748800 81 25 25 223 73 0 0 0 0 11 0 0 0 0 0 +1360 1783858284015492600 REFRESH 55 0 0.67861935094845838 0.64054514480408853 2 9 2 9 0 0 1034 13 408 3987605 55200 235.04179382324219 1.4353 332.01850000000002 20160 12733 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 3306692364 26166572 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 183 150 0 0 0 0 13 0 0 0 0 0 +1361 1783858284454414400 REFRESH 9 0 0.68434753759563516 0.27342419080068137 1 6 1 6 0 0 2475 33 415 3987619 55200 238.02983093261719 1.4374 361.87169999999998 20160 11994 0 0 0.00045141848709869686 0.33902516851330938 4096 2048 64 1 16 415 320 0 64 0 3307423888 26898096 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 35 182 148 0 0 0 9 24 0 0 0 0 0 +1362 1783858284771961100 REFRESH 30 0 0.67834421373584664 0.4608177172061329 1 8 1 8 0 0 2972 58 416 3987588 55200 226.58560180664062 1.4359999999999999 315.4366 20160 13737 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 416 320 0 64 0 3308156432 27630640 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 100 241 0 0 0 6 52 0 0 0 0 0 +1363 1783858285223765000 REFRESH 29 0 0.68050785681127712 0.82027257240204421 3 10 3 10 0 0 1074 8 420 3988459 56160 224.32461547851562 1.4373 305.66750000000002 13440 8040 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 420 320 0 64 0 3308893056 28367264 1 0 4 2 3 2 5 983040 491520 737280 491659 1248000 25 25 25 31 314 0 0 0 1 7 0 0 0 0 0 +1364 1783858285632131600 REFRESH 1 0 0.67932098792515361 0.36712095400340705 1 7 1 7 0 0 2612 30 424 3987657 55200 225.02195739746094 1.4352 334.68169999999998 20160 12004 0 0 0.023605771265213755 1.923297889816534 4096 2048 64 1 16 424 320 0 64 0 3309633760 29107968 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 29 211 134 0 0 1 3 26 0 0 0 0 0 +1365 1783858285996999400 REFRESH 12 0 0.67840809585253659 0.63287904599659284 3 8 3 8 0 0 1172 26 429 3988012 55680 223.12652587890625 1.4417 305.29750000000001 20160 14907 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 429 320 0 64 0 3310379564 29853772 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 27 82 270 0 0 0 7 19 0 0 0 0 0 +1366 1783858286435452800 REFRESH 48 0 0.68417592184738152 0.26575809199318562 2 5 2 5 0 0 2177 19 431 3987633 55200 230.068359375 1.4450000000000001 364.55560000000003 20160 12179 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 431 320 0 64 0 3311127408 30601616 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 183 171 0 0 1 2 16 0 0 0 0 0 +1367 1783858286834874200 REFRESH 26 0 0.69515815123111002 0.64821124361158422 1 10 1 10 0 0 1529 46 416 3988056 55680 231.27346801757812 1.4415 334.10640000000001 20160 14971 0 0 0.044382304733877075 0.84312556148742701 4096 2048 64 1 16 416 320 0 64 0 3311859952 31334160 1 0 4 3 2 3 4 983040 737280 491520 737484 998400 25 25 25 143 198 0 0 0 21 25 0 0 0 0 0 +1368 1783858287213588700 REFRESH 0 0 0.67923703704233518 0.8279386712095399 2 11 2 11 0 0 812 13 419 3988462 56160 226.81497192382812 1.4417 315.37520000000001 13440 7936 0 0 0.00017143269285358514 2.2184394717292082 4096 2048 64 1 16 419 320 0 64 0 3312595556 32069764 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 88 256 0 0 1 2 10 0 0 0 0 0 +1369 1783858287699593900 REFRESH 34 0 0.68119830941343251 0.8356047700170357 1 12 1 12 0 0 649 17 419 3988959 56640 232.91596984863281 1.4479 319.80669999999998 13440 8927 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 419 320 0 64 0 3313331160 32805368 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 25 50 293 0 1 0 0 16 0 0 0 0 0 +1370 1783858288069703100 REFRESH 11 0 0.6784929818621912 0.37478705281090291 0 8 0 8 0 0 2034 22 413 3988047 55680 224.51519775390625 1.4317 368.48000000000002 20160 12182 0 0 0 0.76145821898809674 4096 2048 64 1 16 413 320 0 64 0 3314060644 33534852 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 25 25 38 111 214 0 0 0 9 13 0 0 0 0 0 +1371 1783858288407209200 REFRESH 8 0 0.68423938861018851 0.26575809199318562 2 5 2 5 0 0 2255 18 415 3987606 55200 224.32357788085938 1.4655 335.6771 20160 12173 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 415 320 0 64 0 3314792168 34266376 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 26 143 196 0 0 0 3 15 0 0 0 0 0 +1372 1783858288814633100 REFRESH 35 0 0.68164459713749037 0.8279386712095399 2 11 2 11 0 0 1011 14 403 3988466 56160 222.95039367675781 1.4361999999999999 323.74130000000002 13440 8008 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 403 320 0 64 0 3315511452 34985660 1 0 4 2 3 2 5 983040 491520 737280 491665 1248000 25 25 25 36 292 0 0 0 0 14 0 0 0 0 0 +1373 1783858289187044400 REFRESH 17 0 0.68430931039402809 0.28109028960817717 0 7 0 7 0 0 3325 18 427 3987632 55200 223.72557067871094 1.4452 370.79480000000001 20160 12162 0 0 1.7386291916993158e-05 0.082062218869739814 4096 2048 64 1 16 427 320 0 64 0 3316255216 35729424 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 271 81 0 0 1 1 16 0 0 0 0 0 +1374 1783858289609052100 REFRESH 10 0 0.6777057131754648 0.64821124361158422 1 10 1 10 0 0 1035 6 428 3988470 56160 221.28025817871094 1.4418 300.21230000000003 13440 7944 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 428 320 0 64 0 3317000000 36474208 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 204 149 0 0 0 0 6 0 0 0 0 0 +1375 1783858290032244100 REFRESH 39 0 0.68091537865707275 0.55451448040885853 1 9 1 9 0 0 1467 10 428 3987976 55680 222.21209716796875 1.4414 347.40100000000001 20160 13810 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 428 320 0 64 0 3317744784 37218992 1 0 4 3 3 2 4 983040 737280 737280 491656 998400 25 25 27 169 182 0 0 0 0 10 0 0 0 0 0 +1376 1783858290379453600 REFRESH 44 0 0.67858491443554514 0.36712095400340705 1 7 1 7 0 0 1862 9 435 3987625 55200 223.7337646484375 1.4543999999999999 345.71710000000002 20160 12182 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 435 320 0 64 0 3318496708 37970916 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 239 121 0 0 1 0 8 0 0 0 0 0 +1377 1783858290772226100 REFRESH 3 0 0.68096568846922023 0.64054514480408853 2 9 2 9 0 0 1032 18 415 3988000 55680 222.67904663085938 1.4410000000000001 329.47930000000002 20160 12165 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 415 320 0 64 0 3319228232 38702440 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 26 201 138 0 0 0 2 16 0 0 0 0 0 +1378 1783858291186261400 REFRESH 50 0 0.68091642352104298 0.64054514480408853 2 9 2 9 0 0 975 12 434 3988456 56160 221.64688110351562 1.4414 345.24189999999999 20160 13965 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 434 320 0 64 0 3319979136 39453344 1 0 4 3 2 2 5 983040 737280 491520 491656 1248000 25 25 25 250 109 0 0 0 0 12 0 0 0 0 0 +1379 1783858291549832600 REFRESH 4 0 0.67524523791681756 0.8356047700170357 1 12 1 12 0 0 263 11 416 3988393 56160 219.74732971191406 1.4287000000000001 302.70269999999999 13440 9769 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 416 320 0 64 0 3320711680 40185888 1 0 6 2 2 1 5 1474560 491520 491520 245833 1248000 27 25 30 64 270 0 0 0 0 11 0 0 0 0 0 +1380 1783858292025952200 REFRESH 33 0 0.6817393618540124 0.36712095400340705 1 7 1 7 0 0 3052 31 419 3987566 55200 224.07679748535156 1.4495 331.97879999999998 20160 12339 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 419 320 0 64 0 3321447284 40921492 1 0 4 3 3 3 3 983040 737280 737280 737470 748800 25 25 29 178 162 0 0 0 5 26 0 0 0 0 0 +1381 1783858292377538300 REFRESH 19 0 0.68177062671594113 0.8279386712095399 2 11 2 11 0 0 809 15 411 3988961 56640 220.24703979492188 1.4374 293.59780000000001 13440 7919 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 411 320 0 64 0 3322174728 41648936 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 30 306 0 0 0 0 15 0 0 0 0 0 +1382 1783858292802189900 REFRESH 46 0 0.6817593030584389 0.37478705281090291 0 8 0 8 0 0 2509 14 423 3987644 55200 224.88575744628906 1.5072000000000001 363.51429999999999 20160 12154 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 423 320 0 64 0 3322914412 42388620 1 0 4 3 3 3 3 983040 737280 737280 737546 748800 25 25 30 222 121 0 0 1 0 13 0 0 0 0 0 +1383 1783858293167798100 REFRESH 43 0 0.6799192258367015 0.8279386712095399 2 11 2 11 0 0 739 16 421 3988453 56160 222.81829833984375 1.4487000000000001 310.5575 13440 8859 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 421 320 0 64 0 3323652056 43126264 1 0 4 2 3 2 5 983040 491520 737280 491652 1248000 25 25 25 31 315 0 0 0 3 13 0 0 0 0 0 +1384 1783858293529477100 REFRESH 5 0 0.68178391576996122 0.8279386712095399 2 11 2 11 0 0 779 31 415 3988488 56160 220.85221862792969 1.4438 300.75720000000001 13440 8808 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 415 320 0 64 0 3324383580 43857788 1 0 4 2 3 2 5 983040 491520 737280 491687 1248000 25 25 25 33 307 0 0 0 6 25 0 0 0 0 0 +1385 1783858294025468500 REFRESH 16 0 0.68180405658317889 0.3594548551959113 2 6 2 6 0 0 2771 32 414 3987599 55200 224.92877197265625 1.4428000000000001 311.04969999999997 20160 11963 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 414 320 0 64 0 3325114084 44588292 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 110 229 0 0 0 0 32 0 0 0 0 0 +1386 1783858294386081700 REFRESH 28 0 0.67915998602498628 0.8279386712095399 2 11 2 11 0 0 594 17 417 3988489 56160 222.47219848632812 1.5783 304.53399999999999 13440 8056 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 417 320 0 64 0 3325847648 45321856 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 26 25 25 183 158 0 0 0 4 13 0 0 0 0 0 +1387 1783858294792147500 REFRESH 20 0 0.68287431348474403 0.26575809199318562 2 5 2 5 0 0 1900 11 430 3987656 55200 223.19512939453125 1.4447000000000001 344.35250000000002 20160 12174 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 430 320 0 64 0 3326594472 46068680 1 0 4 3 3 3 3 983040 737280 737280 737533 748800 25 25 43 165 172 0 0 1 1 9 0 0 0 0 0 +1388 1783858295147432700 REFRESH 15 0 0.6786946523711157 0.91396933560476989 3 11 3 11 0 0 307 13 417 3988471 56160 221.39596557617188 1.4533 299.76389999999998 13440 8256 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 417 320 0 64 0 3327328036 46802244 1 0 5 2 2 2 5 1228800 491520 491520 491669 1248000 25 25 25 88 254 0 0 1 0 12 0 0 0 0 0 +1389 1783858295453206000 REFRESH 24 0 0.67802518361282971 1 4 11 4 11 0 0 487 12 400 3988979 56640 221.01094055175781 1.4538 303.77019999999999 13440 8568 0 0 0.070125946914955439 1.4378063310002365 4096 2048 64 1 16 400 320 0 64 0 3328044260 47518468 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 26 298 0 0 0 0 12 0 0 0 0 0 +1390 1783858295881986500 REFRESH 37 0 0.68191589294896249 0.8356047700170357 1 12 1 12 0 0 915 18 406 3988963 56640 222.23770141601562 1.4373 307.56130000000002 13440 7928 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 406 320 0 64 0 3328766604 48240812 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 25 39 291 0 0 0 0 18 0 0 0 0 0 +1391 1783858296238618000 REFRESH 18 0 0.67732845677227305 0.9293015332197615 1 13 1 13 0 0 429 12 411 3988965 56640 222.5684814453125 1.4479 296.7201 13440 8283 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 411 320 0 64 0 3329494048 48968256 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 25 31 304 0 0 0 0 12 0 0 0 0 0 +1392 1783858296635486900 REFRESH 52 0 0.67590416908022799 0.36712095400340705 1 7 1 7 0 0 1860 9 428 3987629 55200 222.25509643554688 1.6025 343.8938 20160 12084 0 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 64 1 16 428 320 0 64 0 3330238832 49713040 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 30 250 98 0 0 1 1 7 0 0 0 0 0 +1393 1783858296984271400 REFRESH 51 0 0.67918915529571677 0.91396933560476989 3 11 3 11 0 0 512 15 400 3988955 56640 220.82354736328125 1.4342999999999999 294.12360000000001 13440 8731 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 400 320 0 64 0 3330955056 50429264 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 40 285 0 0 0 1 14 0 0 0 0 0 +1394 1783858297352511000 REFRESH 14 0 0.68112294846351129 0.65587734241908002 0 11 0 11 0 0 1454 21 412 3988077 55680 223.39173889160156 1.4744999999999999 312.08670000000001 13440 7950 0 0 1.8238972069088211e-05 0.75092953070495261 4096 2048 64 1 16 412 320 0 64 0 3331683520 51157728 1 0 4 2 3 3 4 983040 491520 737280 737507 998400 26 25 25 72 264 0 0 0 0 21 0 0 0 0 0 +1395 1783858297839564800 REFRESH 53 0 0.68192106075434311 0.37478705281090291 0 8 0 8 0 0 4096 32 415 3987609 55200 238.13529968261719 1.4705999999999999 365.95859999999999 20160 11870 0 0 0 0.2343196820860895 4096 2048 64 1 16 415 320 0 64 0 3332415044 51889252 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 25 216 124 0 0 0 1 31 0 0 0 0 0 +1396 1783858300110942600 DEPTH 42 1 0.84576053685113162 0 0 4 0 4 0 0 4096 18 2601 23677440 81600 1307.7066192626953 8.6457999999999995 2209.6509000000001 134400 79997 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2601 1920 0 384 1 3336926972 56401180 1 0 4 3 3 3 3 5898240 4915200 4423680 3934585 4492800 398 150 150 1396 507 0 0 0 0 18 0 0 0 0 0 +1397 1783858302255703600 DEPTH 26 1 0.68770078913573751 0.64821124361158422 1 10 1 10 1 0 1550 50 2568 23699398 103680 1284.1267395019531 8.7296999999999993 2143.3824 120960 69589 1 0 0.029664718146048187 1.2965658129918167 4096 2048 384 12 96 2568 1920 0 384 1 3341405240 60879448 1 0 4 3 2 3 4 5898240 4423680 2949120 4426370 5990400 150 150 150 438 1680 2 0 0 3 45 0 0 0 0 1 +1398 1783858304446339400 DEPTH 57 1 0.68184516179634969 0.27342419080068137 1 6 1 6 1 0 3872 89 2539 23677562 81600 1296.9338836669922 8.6944999999999997 2127.3753000000002 120960 56526 1 0 0.00072854903494253063 0.48108496736898515 4096 2048 384 12 96 2539 1920 0 384 1 3345853928 65328136 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 515 1574 0 0 0 0 89 0 0 0 0 1 +1399 1783858307949649700 DEPTH 9 1 0.68179121854888414 0.27342419080068137 1 6 1 6 1 0 2485 71 2573 23677762 81600 1300.5895690917969 8.6659000000000006 3362.6069000000002 120960 57026 1 0 0.00045143495148509787 0.28079797492329711 4096 2048 384 12 96 2573 1920 0 384 1 3350337376 2703360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 207 713 1353 0 0 2 4 65 0 0 0 0 1 +1400 1783858309918354500 DEPTH 8 1 0.68161736382740479 0.26575809199318562 2 5 2 5 0 0 2260 49 2531 23677533 81600 1295.4417114257812 8.623899999999999 1966.8694 120960 58248 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2531 1920 0 384 1 3354777904 7143888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 156 594 1481 0 0 0 0 49 0 0 0 0 0 +1401 1783858312053026900 DEPTH 48 1 0.68161227926107193 0.26575809199318562 2 5 2 5 0 0 2185 56 2586 23677562 81600 1293.6776733398438 8.7294 2132.7379000000001 120960 58216 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2586 1920 0 384 1 3359274532 11640516 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 150 150 150 767 1369 1 0 4 1 50 0 0 0 0 0 +1402 1783858314258006000 DEPTH 13 1 0.68162149717352261 0.27342419080068137 1 6 1 6 0 0 3672 65 2573 23677578 81600 1288.8045501708984 8.6616999999999997 2127.2633000000001 120960 56702 1 0 0.022599323978104609 0.20716376792356078 4096 2048 384 12 96 2573 1920 0 384 1 3363757900 16123884 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 155 770 1348 3 2 1 0 59 0 0 0 0 0 +1403 1783858316551654100 DEPTH 56 1 0.67911373407650788 0.26575809199318562 2 5 2 5 0 0 4096 63 2570 23677641 81600 1288.3306121826172 8.6296999999999997 2114.2743 120960 57285 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2570 1920 0 384 1 3368238208 20604192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 180 1496 594 3 2 4 2 52 0 0 0 0 0 +1404 1783858319020684300 DEPTH 17 1 0.68170006432217489 0.28109028960817717 0 7 0 7 1 0 3356 65 2588 23677562 81600 1385.0204162597656 9.2637 2405.9301999999998 120960 57199 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2588 1920 0 384 1 3372736876 25102860 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1239 899 7 0 4 0 54 0 0 0 0 1 +1405 1783858321316316800 DEPTH 31 1 0.67832674810653848 0.3594548551959113 2 6 2 6 0 0 2278 35 2559 23677472 81600 1382.582275390625 8.7164999999999999 2179.2617 120960 56659 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2559 1920 0 384 1 3377205964 29571948 1 0 4 3 3 3 3 5898240 4423680 4423680 4426410 4492800 150 150 157 763 1339 0 0 0 0 35 0 0 0 0 0 +1406 1783858323550374700 DEPTH 50 1 0.67813287160129609 0.64054514480408853 2 9 2 9 0 0 978 30 2601 23720599 125760 1365.3554992675781 8.9830000000000005 2122.0668999999998 120960 68766 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2601 1920 0 384 1 3381717892 34083876 1 0 4 3 2 2 5 5898240 4423680 2949120 2950985 7488000 150 150 150 1419 732 0 0 3 0 27 0 0 0 0 0 +1407 1783858325868922300 DEPTH 39 1 0.67787346267556314 0.55451448040885853 1 9 1 9 0 0 1479 41 2581 23698492 103680 1369.9153900146484 8.8882000000000012 2179.7291 120960 68253 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2581 1920 0 384 1 3386209420 38575404 1 0 4 3 3 2 4 5898240 4423680 4423680 2950957 5990400 150 150 150 726 1405 1 0 1 0 39 0 0 0 0 0 +1408 1783858327837394200 DEPTH 47 1 0.67786264555024789 0.8279386712095399 2 11 2 11 0 0 617 41 2599 23720598 125760 1368.0281524658203 8.6948000000000008 1907.0305000000001 80640 39002 1 0 0.068593401730629888 1.3758323866124593 4096 2048 384 12 96 2599 1920 0 384 1 3390719308 43085292 1 0 4 2 3 2 5 5898240 2949120 4423680 2950958 7488000 156 150 150 325 1818 0 0 0 6 35 0 0 0 0 0 +1409 1783858329814191400 DEPTH 7 1 0.67787266637955634 0.8356047700170357 1 12 1 12 0 0 811 44 2542 23723471 128640 1365.6638336181641 8.6746999999999996 1907.7587000000001 80640 38572 1 0 0.0030942132482632461 1.0738159360206059 4096 2048 384 12 96 2542 1920 0 384 1 3395171056 47537040 1 0 4 2 3 2 5 5898240 2949120 4177920 2950939 7737600 150 150 150 752 1340 0 0 1 1 42 0 0 0 0 0 +1410 1783858331802393200 DEPTH 49 1 0.67787040754561412 0.82027257240204421 3 10 3 10 0 0 1081 48 2565 23723447 128640 1366.0666351318359 8.6311999999999998 1905.6726000000001 80640 39261 1 0 0.023587680617059275 0.4799144480521384 4096 2048 384 12 96 2565 1920 0 384 1 3399646264 52012248 1 0 4 2 3 2 5 5898240 2949120 4177920 2950922 7737600 150 150 150 660 1455 0 0 0 2 46 0 0 0 0 0 +1411 1783858333756993500 DEPTH 36 1 0.6778771886101117 0.82027257240204421 3 10 3 10 0 0 1104 39 2575 23720650 125760 1373.75146484375 8.7128000000000014 1892.0728999999999 80640 38972 1 0 0.06306909641165509 0.16426465714391286 4096 2048 384 12 96 2575 1920 0 384 1 3404131672 56497656 1 0 4 2 3 2 5 5898240 2949120 4423680 2951025 7488000 150 150 150 154 1971 1 1 0 0 37 0 0 0 0 0 +1412 1783858336050252400 DEPTH 42 1 0.75517180006678186 0 0 4 0 4 0 0 4096 16 2606 23677609 81600 1386.7469482421875 9.2538 2291.3843000000002 120960 55971 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2606 1920 0 384 1 3408648700 61014684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426293 4492800 319 150 150 1492 495 0 0 0 0 16 0 0 0 0 0 +1413 1783858338386973100 DEPTH 20 1 0.68058973183767124 0.26575809199318562 2 5 2 5 0 0 1909 34 2599 23677599 81600 1389.1358795166016 8.6951999999999998 2254.9639999999999 120960 58114 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2599 1920 0 384 1 3413158588 65524572 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 239 607 1453 0 0 0 0 34 0 0 0 0 0 +1414 1783858341593762800 DEPTH 16 1 0.67883897932701676 0.3594548551959113 2 6 2 6 0 0 2797 98 2527 23677595 81600 1391.1829681396484 8.6974000000000018 3140.2525999999998 120960 57205 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2527 1920 0 384 1 3417595116 2852280 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 150 448 1629 0 0 0 3 95 0 0 0 0 0 +1415 1783858343855961500 DEPTH 33 1 0.67883522831501297 0.36712095400340705 1 7 1 7 0 0 3073 73 2547 23677489 81600 1389.0591278076172 8.6516999999999999 2192.2919000000002 120960 58426 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2547 1920 0 384 1 3422051964 7309128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 168 608 1471 0 1 2 0 70 0 0 0 0 0 +1416 1783858346113856400 DEPTH 46 1 0.67884486805857969 0.37478705281090291 0 8 0 8 0 0 2518 39 2574 23677575 81600 1384.0304412841797 8.6354000000000006 2196.1460999999999 120960 58286 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2574 1920 0 384 1 3426536352 11793516 1 0 4 3 3 3 3 5898240 4423680 4423680 4426526 4492800 150 150 165 862 1247 0 0 2 0 37 0 0 0 0 0 +1417 1783858348050263000 DEPTH 19 1 0.6779586305836488 0.8279386712095399 2 11 2 11 0 0 815 35 2575 23723481 128640 1367.6083374023438 9.0431000000000008 1875.0068000000001 80640 38713 1 0 0.032475909515599824 0.54029676571176888 4096 2048 384 12 96 2575 1920 0 384 1 3431021760 16278924 1 0 4 2 3 2 5 5898240 2949120 4177920 2950961 7737600 150 150 150 554 1571 3 0 0 0 32 0 0 0 0 0 +1418 1783858350010150100 DEPTH 5 1 0.67795088478309395 0.8279386712095399 2 11 2 11 0 0 785 23 2547 23720658 125760 1370.352783203125 8.6760999999999999 1896.6459 80640 43703 1 0 0.013882121795455482 0.46345450206338867 4096 2048 384 12 96 2547 1920 0 384 1 3435478608 20735772 1 0 4 2 3 2 5 5898240 2949120 4423680 2951041 7488000 150 150 150 257 1840 0 1 0 0 22 0 0 0 0 0 +1419 1783858351938622500 DEPTH 35 1 0.67795922428048172 0.8279386712095399 2 11 2 11 0 0 1027 96 2479 23720542 125760 1375.5555725097656 8.7385000000000002 1868.7844 80640 38594 1 0 0.10284194156167628 1.462681166290273 4096 2048 384 12 96 2479 1920 0 384 1 3439866096 25123260 1 0 4 2 3 2 5 5898240 2949120 4423680 2950916 7488000 150 150 150 226 1803 0 0 0 2 94 0 0 0 0 0 +1420 1783858354239054900 DEPTH 53 1 0.67891279922732117 0.37478705281090291 0 8 0 8 0 0 4096 72 2556 23677538 81600 1383.7434997558594 8.8765999999999998 2228.8584999999998 120960 56757 1 0 0 0.2343196820860895 4096 2048 384 12 96 2556 1920 0 384 1 3444332124 29589288 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 824 1282 0 0 1 3 68 0 0 0 0 0 +1421 1783858356256777400 DEPTH 37 1 0.678041291524899 0.8356047700170357 1 12 1 12 0 0 917 33 2551 23720620 125760 1366.9416961669922 8.6849000000000007 1887.9694 80640 38750 1 0 0.010850465444161446 0.56786513058378374 4096 2048 384 12 96 2551 1920 0 384 1 3448793052 34050216 1 0 4 2 3 2 5 5898240 2949120 4423680 2950965 7488000 159 150 150 313 1779 0 0 0 0 33 0 0 0 0 0 +1422 1783858358623651500 DEPTH 25 1 0.67789361352900701 0.4608177172061329 1 8 1 8 0 0 2175 43 2566 23677366 81600 1396.3339691162109 8.7842000000000002 2300.846 120960 57333 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2566 1920 0 384 1 3453269280 38526444 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 1155 961 0 0 0 1 42 0 0 0 0 0 +1423 1783858360631366400 DEPTH 34 1 0.67763198844797545 0.8356047700170357 1 12 1 12 0 0 652 30 2568 23720509 125760 1323.6193542480469 9.5987000000000009 1943.9141999999999 80640 44392 1 1 0.00024493839120035536 1.8115268921139556 4096 2048 384 12 96 2568 1920 0 384 1 3457747548 43004712 1 0 4 2 3 2 5 5898240 2949120 4423680 2950872 7488000 156 150 150 361 1751 0 0 0 1 28 0 0 0 0 0 +1424 1783858362864383200 DEPTH 3 1 0.67754277200310842 0.64054514480408853 2 9 2 9 0 0 1035 38 2543 23698461 103680 1334.2495269775391 8.6997999999999998 2162.7671999999998 120960 59538 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2543 1920 0 384 1 3462200316 47457480 1 0 4 3 3 2 4 5898240 4423680 4423680 2950911 5990400 150 150 156 905 1182 0 0 1 3 34 0 0 0 0 0 +1425 1783858365024899100 DEPTH 14 1 0.67752765394899206 0.65587734241908002 0 11 0 11 1 0 1468 88 2532 23699419 103680 1411.9701843261719 9.1242000000000001 2092.8249000000001 80640 37742 1 0 1.6719650570068547e-05 0.72140313882225349 4096 2048 384 12 96 2532 1920 0 384 1 3466641864 51899028 1 0 4 2 3 3 4 5898240 2949120 4423680 4426420 5990400 156 150 150 252 1824 0 0 0 0 88 0 0 0 0 1 +1426 1783858367278011700 DEPTH 38 1 0.67717136000395572 0.55451448040885853 1 9 1 9 0 0 1856 41 2555 23687491 92160 1355.9615783691406 9.5974000000000004 2183.1170000000002 120960 57090 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2555 1920 0 384 1 3471106872 56364036 1 0 4 3 3 3 3 5898240 4423680 4423680 3688708 5241600 150 150 162 1174 919 0 0 2 5 34 0 0 0 0 0 +1427 1783858369234993100 DEPTH 23 1 0.67699791557273825 0.74190800681430991 1 11 1 11 0 0 3297 29 2537 23705885 110400 1321.9727325439453 9.5091999999999999 1894.6668999999999 80640 37549 1 0 0.019300902708780661 0.82338470662554231 4096 2048 384 12 96 2537 1920 0 384 1 3475553520 60810684 1 0 4 2 3 3 4 5898240 2949120 4423680 3934652 6489600 150 150 150 967 1120 0 0 0 1 28 0 0 0 0 0 +1428 1783858369614347300 REFRESH 7 0 0.61400961644115726 0.8356047700170357 1 12 1 12 0 0 814 19 420 3988505 56160 221.23110961914062 1.4495 316.47789999999998 13440 7898 0 0 0.0030942132482632461 1.0738159360206059 4096 2048 64 1 16 420 320 0 64 0 3476290144 61547308 1 0 4 2 3 2 5 983040 491520 737280 491697 1248000 25 25 25 239 106 0 0 0 11 8 0 0 0 0 0 +1429 1783858370001241100 REFRESH 41 0 0.67544735532079603 0.55451448040885853 1 9 1 9 0 0 1906 43 413 3987614 55200 224.29490661621094 1.4349000000000001 325.23419999999999 20160 12140 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 413 320 0 64 0 3477019628 62276792 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 29 101 233 0 0 0 3 40 0 0 0 0 0 +1430 1783858370368839300 REFRESH 28 0 0.6754181080565661 0.8279386712095399 2 11 2 11 0 0 600 22 416 3988476 56160 224.28364562988281 1.4476 310.92939999999999 13440 8064 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 416 320 0 64 0 3477752172 63009336 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 26 25 25 213 127 0 0 0 5 17 0 0 0 0 0 +1431 1783858370714043300 REFRESH 3 0 0.49381265754889331 0.64054514480408853 2 9 2 9 0 0 1035 10 421 3988009 55680 223.77471923828125 1.5276000000000001 343.60899999999998 20160 11883 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 421 320 0 64 0 3478489816 63746980 1 0 4 3 3 2 4 983040 737280 737280 491683 998400 25 25 26 259 86 0 0 0 3 7 0 0 0 0 0 +1432 1783858371084163100 REFRESH 58 0 0.67548735218998235 0.92163543441226559 2 12 2 12 0 0 507 17 411 3988959 56640 220.61465454101562 1.4646999999999999 308.21159999999998 13440 8812 0 0 0.0099066415982336058 1.6471477823118619 4096 2048 64 1 16 411 320 0 64 0 3479217260 64474424 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 36 299 0 0 0 0 17 0 0 0 0 0 +1433 1783858371456049200 REFRESH 25 0 0.53465484707341349 0.4608177172061329 1 8 1 8 0 0 2175 5 422 3987610 55200 224.94822692871094 1.4525999999999999 370.27120000000002 20160 12095 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 422 320 0 64 0 3479955924 65213088 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 25 261 86 0 0 0 0 5 0 0 0 0 0 +1434 1783858371809133400 REFRESH 46 0 0.60585956534302299 0.37478705281090291 0 8 0 8 0 0 2520 13 429 3987628 55200 224.721923828125 1.4414 351.38369999999998 20160 12045 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 429 320 0 64 0 3480701728 65958892 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 30 231 118 0 0 0 1 12 0 0 0 0 0 +1435 1783858372171953800 REFRESH 53 0 0.5758954568548591 0.37478705281090291 0 8 0 8 0 0 4096 26 412 3987613 55200 226.78118896484375 1.7219 360.7765 20160 12084 0 0 0 0.2343196820860895 4096 2048 64 1 16 412 320 0 64 0 3481430192 66687356 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 206 131 0 0 0 5 21 0 0 0 0 0 +1436 1783858373784339400 REFRESH 10 0 0.67104353630956504 0.64821124361158422 1 10 1 10 0 0 1036 6 432 3988489 56160 221.85881042480469 1.4581999999999999 1539.2022999999999 13440 7913 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 432 320 0 64 0 3482179136 327864 1 0 4 2 3 2 5 983040 491520 737280 491686 1248000 25 25 25 209 148 0 0 0 0 6 0 0 0 0 0 +1437 1783858374158221100 REFRESH 36 0 0.67408969431980159 0.82027257240204421 3 10 3 10 0 0 1109 26 411 3988479 56160 222.74765014648438 1.4463999999999999 312.65649999999999 13440 7875 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 411 320 0 64 0 3482906580 1055308 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 25 25 25 153 183 0 0 0 7 19 0 0 0 0 0 +1438 1783858374580625800 REFRESH 54 0 0.67566048300360682 0.4608177172061329 1 8 1 8 0 0 1055 22 416 3987604 55200 221.9683837890625 1.4545999999999999 347.05029999999999 20160 12036 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 416 320 0 64 0 3483639124 1787852 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 26 86 254 0 0 0 1 21 0 0 0 0 0 +1439 1783858374967743400 REFRESH 15 0 0.67537244271384256 0.91396933560476989 3 11 3 11 0 0 307 10 417 3988483 56160 223.16748046875 1.4428000000000001 318.62369999999999 13440 8201 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 417 320 0 64 0 3484372688 2521416 1 0 5 2 2 2 5 1228800 491520 491520 491678 1248000 25 25 25 94 248 0 0 0 1 9 0 0 0 0 0 +1440 1783858375351515300 REFRESH 16 0 0.67592798899973161 0.3594548551959113 2 6 2 6 0 0 2803 21 414 3987711 55200 227.65670776367188 1.4971000000000001 316.95769999999999 20160 12187 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 414 320 0 64 0 3485103192 3251920 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 25 117 222 0 0 0 3 18 0 0 0 0 0 +1441 1783858375736719600 REFRESH 45 0 0.67568984265835041 0.45315161839863699 2 7 2 7 0 0 1910 54 416 3987610 55200 222.72419738769531 1.4416 322.3186 20160 12553 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 3485835736 3984464 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 28 56 282 0 0 0 2 52 0 0 0 0 0 +1442 1783858376052318500 REFRESH 34 0 0.61380404832534619 0.8356047700170357 1 12 1 12 0 0 653 8 423 3988471 56160 219.52204895019531 1.5951 313.74520000000001 13440 8111 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 423 320 0 64 0 3486575420 4724148 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 136 212 0 0 0 0 8 0 0 0 0 0 +1443 1783858376562443100 REFRESH 48 0 0.67917625885022925 0.26575809199318562 2 5 2 5 0 0 2186 9 419 3987631 55200 224.28877258300781 1.6173 360.03379999999999 20160 12221 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 419 320 0 64 0 3487311024 5459752 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 28 180 161 0 0 0 2 7 0 0 0 0 0 +1444 1783858376906086800 REFRESH 14 0 0.61394439794121003 0.65587734241908002 0 11 0 11 0 0 1472 23 414 3988073 55680 222.97395324707031 1.4512 341.93810000000002 13440 8055 0 0 1.6719650570068547e-05 0.72140313882225349 4096 2048 64 1 16 414 320 0 64 0 3488041528 6190256 1 0 4 2 3 3 4 983040 491520 737280 737510 998400 26 25 25 89 249 0 0 0 0 23 0 0 0 0 0 +1445 1783858377368458400 REFRESH 56 0 0.67692876013475378 0.26575809199318562 2 5 2 5 0 0 4096 14 427 3987628 55200 243.32902526855469 1.7585 400.61919999999998 20160 12183 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 427 320 0 64 0 3488785292 6934020 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 31 268 78 1 0 1 1 11 0 0 0 0 0 +1446 1783858377829539400 REFRESH 11 0 0.6760596551390563 0.37478705281090291 0 8 0 8 0 0 2042 16 414 3988012 55680 237.72877502441406 1.476 399.44869999999997 20160 12130 0 0 0 0.76145821898809674 4096 2048 64 1 16 414 320 0 64 0 3489515796 7664524 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 38 134 192 0 0 2 2 12 0 0 0 0 0 +1447 1783858378150270600 REFRESH 37 0 0.6742448601172587 0.8356047700170357 1 12 1 12 0 0 920 22 409 3988489 56160 222.21720886230469 2.1145 318.86279999999999 13440 7964 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 409 320 0 64 0 3490241200 8389928 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 26 25 25 90 243 0 0 0 3 19 0 0 0 0 0 +1448 1783858378524017100 REFRESH 12 0 0.67561046046612616 0.63287904599659284 3 8 3 8 0 0 1177 20 425 3987985 55680 228.80892944335938 1.5187999999999999 312.58429999999998 20160 14647 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 425 320 0 64 0 3490982924 9131652 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 28 93 254 0 0 0 3 17 0 0 0 0 0 +1449 1783858378912486000 REFRESH 19 0 0.67423083067229206 0.8279386712095399 2 11 2 11 0 0 817 13 422 3988496 56160 244.65510559082031 1.4712000000000001 330.82940000000002 13440 7867 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 422 320 0 64 0 3491721588 9870316 1 0 4 2 3 2 5 983040 491520 737280 491693 1248000 25 25 25 149 198 0 0 0 1 12 0 0 0 0 0 +1450 1783858379254198600 REFRESH 38 0 0.66392776552439159 0.55451448040885853 1 9 1 9 0 0 1870 33 420 3987588 55200 238.77938842773438 1.5309999999999999 339.78519999999997 20160 12043 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 420 320 0 64 0 3492458212 10606940 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 35 142 193 0 0 0 6 27 0 0 0 0 0 +1451 1783858379653898400 REFRESH 22 0 0.67380909541638823 0.91396933560476989 3 11 3 11 0 0 451 12 413 3988950 56640 239.29037475585938 1.5778000000000001 332.16840000000002 13440 9183 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 413 320 0 64 0 3493187696 11336424 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 25 43 294 0 0 0 0 12 0 0 0 0 0 +1452 1783858380042946500 REFRESH 30 0 0.6757970765213257 0.4608177172061329 1 8 1 8 0 0 2998 56 412 3987579 55200 239.10911560058594 1.7087000000000001 327.93060000000003 20160 13502 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 412 320 0 64 0 3493916160 12064888 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 25 101 236 0 0 0 3 53 0 0 0 0 0 +1453 1783858380486952100 REFRESH 13 0 0.67926495910792806 0.27342419080068137 1 6 1 6 0 0 3694 46 419 3987659 55200 249.84371948242188 1.4489000000000001 380.18650000000002 20160 12156 0 0 0.022599323978104609 0.20716376792356078 4096 2048 64 1 16 419 320 0 64 0 3494651764 12800492 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 26 182 161 1 0 1 4 40 0 0 0 0 0 +1454 1783858380932547500 REFRESH 44 0 0.67516367541106814 0.36712095400340705 1 7 1 7 0 0 1864 17 438 3987629 55200 246.29452514648438 1.5527 385.38409999999999 20160 12172 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 438 320 0 64 0 3495406748 13555476 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 251 112 0 0 1 0 16 0 0 0 0 0 +1455 1783858381340976100 REFRESH 24 0 0.67470726512336487 1 4 11 4 11 1 0 487 8 402 3988955 56640 236.99046325683594 1.6834 345.04329999999999 13440 8477 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 402 320 0 64 0 3496125012 14273740 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 26 300 0 0 0 0 8 0 0 0 0 1 +1456 1783858381733923700 REFRESH 43 0 0.67669325446031481 0.8279386712095399 2 11 2 11 0 0 740 16 419 3988503 56160 236.83584594726562 1.4503999999999999 329.21910000000003 13440 8752 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 419 320 0 64 0 3496860616 15009344 1 0 4 2 3 2 5 983040 491520 737280 491703 1248000 25 25 25 43 301 0 0 0 1 15 0 0 0 0 0 +1457 1783858382175992300 REFRESH 20 0 0.67849537555364559 0.26575809199318562 2 5 2 5 0 0 1910 7 431 3987649 55200 239.40301513671875 1.4431 378.69740000000002 20160 12142 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 3497608460 15757188 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 45 136 200 0 0 1 0 6 0 0 0 0 0 +1458 1783858382600178800 REFRESH 42 0 0.84473897865208336 0 0 4 0 4 0 0 4096 3 429 3987656 55200 240.54988098144531 1.5218 422.09350000000001 20160 14202 0 0 0 0.0063417300788251949 4096 2048 64 1 16 429 320 0 64 0 3498354264 16502992 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 78 25 25 225 76 0 0 0 0 3 0 0 0 0 0 +1459 1783858382974392400 REFRESH 6 0 0.67152503126485086 0.91396933560476989 3 11 3 11 0 0 373 7 417 3988951 56640 223.51359558105469 1.4438 306.50209999999998 13440 9381 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 417 320 0 64 0 3499087828 17236556 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 46 296 0 0 0 0 7 0 0 0 0 0 +1460 1783858383390873600 REFRESH 40 0 0.67492764168864694 0.64821124361158422 1 10 1 10 0 0 1496 12 418 3988451 56160 219.99717712402344 1.4422999999999999 356.79860000000002 13440 7861 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 418 320 0 64 0 3499822412 17971140 1 0 4 2 3 2 5 983040 491520 737280 491646 1248000 25 25 25 83 260 0 0 1 0 11 0 0 0 0 0 +1461 1783858383791542000 REFRESH 1 0 0.67699801167567886 0.36712095400340705 1 7 1 7 0 0 2617 20 423 3987608 55200 222.9749755859375 1.4401999999999999 342.9205 20160 12037 0 0 0.023605771265213755 1.923297889816534 4096 2048 64 1 16 423 320 0 64 0 3500562096 18710824 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 29 195 149 0 0 0 0 20 0 0 0 0 0 +1462 1783858384198938700 REFRESH 26 0 0.68153741550883229 0.64821124361158422 1 10 1 10 0 0 1560 36 415 3988077 55680 234.259521484375 1.4498 339.90170000000001 20160 13970 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 415 320 0 64 0 3501293620 19442348 1 0 4 3 2 3 4 983040 737280 491520 737511 998400 25 25 26 182 157 0 0 0 10 26 0 0 0 0 0 +1463 1783858384682145000 REFRESH 31 0 0.67575966954734024 0.3594548551959113 2 6 2 6 0 0 2282 21 421 3987599 55200 233.27334594726562 1.4353 348.99450000000002 20160 12094 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 3502031264 20179992 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 28 203 140 0 0 0 6 15 0 0 0 0 0 +1464 1783858385160087000 REFRESH 50 0 0.67568765550618448 0.64054514480408853 2 9 2 9 0 0 978 6 435 3988461 56160 246.87718200683594 1.5775999999999999 415.63029999999998 20160 12735 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 435 320 0 64 0 3502783188 20931916 1 0 4 3 2 2 5 983040 737280 491520 491661 1248000 25 25 25 275 85 0 0 2 0 4 0 0 0 0 0 +1465 1783858385533119600 REFRESH 27 0 0.67574155444530359 0.93696763202725719 0 14 0 14 0 0 825 16 403 3988490 56160 221.86393737792969 1.4475 310.5034 13440 8039 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 403 320 0 64 0 3503502472 21651200 1 0 4 2 3 2 5 983040 491520 737280 491690 1248000 25 25 25 30 298 0 0 0 0 16 0 0 0 0 0 +1466 1783858385900841900 REFRESH 47 0 0.67441148586685018 0.8279386712095399 2 11 2 11 0 0 625 29 411 3988471 56160 219.97874450683594 1.4415 296.88760000000002 13440 7896 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 411 320 0 64 0 3504229916 22378644 1 0 4 2 3 2 5 983040 491520 737280 491666 1248000 25 25 25 126 210 0 0 0 15 14 0 0 0 0 0 +1467 1783858386405243900 REFRESH 5 0 0.67440282738577928 0.8279386712095399 2 11 2 11 0 0 786 21 423 3988462 56160 232.36813354492188 1.4359999999999999 312.99209999999999 13440 8022 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 423 320 0 64 0 3504969600 23118328 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 150 198 0 0 0 6 15 0 0 0 0 0 +1468 1783858386831702400 REFRESH 39 0 0.67518468881893479 0.55451448040885853 1 9 1 9 0 0 1481 10 430 3988005 55680 222.51213073730469 1.4525999999999999 360.04919999999998 20160 12514 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 430 320 0 64 0 3505716424 23865152 1 0 4 3 3 2 4 983040 737280 737280 491683 998400 25 25 27 237 116 0 0 1 1 8 0 0 0 0 0 +1469 1783858387235140000 REFRESH 18 0 0.67443861354684143 0.9293015332197615 1 13 1 13 0 0 429 11 411 3988974 56640 245.391357421875 1.4420999999999999 335.64890000000003 13440 8243 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 411 320 0 64 0 3506443868 24592596 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 25 32 303 0 0 0 0 11 0 0 0 0 0 +1470 1783858387687154300 REFRESH 57 0 0.67969586769582313 0.27342419080068137 1 6 1 6 0 0 3879 26 411 3987615 55200 232.83302307128906 2.4811999999999999 385.99349999999998 20160 12034 0 0 0.00072854903494253063 0.48108496736898515 4096 2048 64 1 16 411 320 0 64 0 3507171312 25320040 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 147 189 0 0 0 3 23 0 0 0 0 0 +1471 1783858388121147200 REFRESH 9 0 0.67966895165201768 0.27342419080068137 1 6 1 6 0 0 2492 32 418 3987622 55200 224.321533203125 1.4511000000000001 357.11750000000001 20160 12040 0 0 0.00045143495148509787 0.28079797492329711 4096 2048 64 1 16 418 320 0 64 0 3507905896 26054624 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 37 177 154 0 0 0 9 23 0 0 0 0 0 +1472 1783858388569340800 REFRESH 52 0 0.67301713513567385 0.36712095400340705 1 7 1 7 0 0 1864 13 432 3987613 55200 236.41804504394531 1.4581999999999999 377.101 20160 11970 0 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 64 1 16 432 320 0 64 0 3508654760 26803488 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 30 253 99 0 0 2 2 9 0 0 0 0 0 +1473 1783858389023349500 REFRESH 4 0 0.67360909636130717 0.8356047700170357 1 12 1 12 0 0 263 7 418 3988403 56160 221.28230285644531 1.4503999999999999 318.04509999999999 20160 14828 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 0 64 0 3509389344 27538072 1 0 6 3 1 1 5 1474560 737280 245760 245842 1248000 27 25 32 82 252 0 0 0 0 7 0 0 0 0 0 +1474 1783858389416238800 REFRESH 8 0 0.67946251908309674 0.26575809199318562 2 5 2 5 0 0 2262 12 415 3987613 55200 240.15974426269531 1.4338 329.57979999999998 20160 12203 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 415 320 0 64 0 3510120868 28269596 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 26 140 199 0 0 0 4 8 0 0 0 0 0 +1475 1783858389856088800 REFRESH 17 0 0.67957095559138825 0.28109028960817717 0 7 0 7 0 0 3359 15 427 3987650 55200 224.56320190429688 1.4581999999999999 376.005 20160 12135 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 427 320 0 64 0 3510864632 29013360 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 272 80 0 0 1 2 12 0 0 0 0 0 +1476 1783858390258240300 REFRESH 55 0 0.67405145752483386 0.64054514480408853 2 9 2 9 0 0 1035 13 412 3987570 55200 244.61517333984375 1.4544999999999999 332.6694 20160 12656 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 412 320 0 64 0 3511593096 29741824 1 0 4 3 3 3 3 983040 737280 737280 737485 748800 25 25 25 186 151 0 0 0 0 13 0 0 0 0 0 +1477 1783858390639157100 REFRESH 29 0 0.67565141772946791 0.82027257240204421 3 10 3 10 0 0 1078 20 423 3988480 56160 221.63967895507812 1.4683999999999999 305.64499999999998 13440 7949 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 423 320 0 64 0 3512332780 30481508 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 52 296 1 0 0 2 17 0 0 0 0 0 +1478 1783858391120201700 REFRESH 21 0 0.67593785605998447 0.56218057921635434 0 10 0 10 0 0 2266 28 419 3987605 55200 222.78656005859375 1.4452 340.23219999999998 20160 11866 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 419 320 0 64 0 3513068384 31217112 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 26 185 158 0 0 1 3 24 0 0 0 0 0 +1479 1783858391505419300 REFRESH 35 0 0.67452534044856838 0.8279386712095399 2 11 2 11 0 0 1031 18 408 3988468 56160 221.25788879394531 1.4531000000000001 319.48489999999998 13440 7881 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 408 320 0 64 0 3513792768 31941496 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 25 25 25 113 220 0 0 0 3 15 0 0 0 0 0 +1480 1783858391888706100 REFRESH 32 0 0.67606711428210309 0.4608177172061329 1 8 1 8 0 0 2546 55 410 3987571 55200 223.25474548339844 1.4525999999999999 319.46449999999999 20160 12171 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 410 320 0 64 0 3514519192 32667920 1 0 4 3 3 3 3 983040 737280 737280 737488 748800 25 25 26 67 267 0 0 0 6 49 0 0 0 0 0 +1481 1783858392298772600 REFRESH 33 0 0.67629613380843778 0.36712095400340705 1 7 1 7 0 0 3085 32 422 3987638 55200 224.14761352539062 1.4463999999999999 322.23399999999998 20160 12169 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 422 320 0 64 0 3515257856 33406584 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 30 169 173 0 0 1 6 25 0 0 0 0 0 +1482 1783858392690263300 REFRESH 2 0 0.67608871261087033 0.45315161839863699 2 7 2 7 0 0 2960 41 412 3987593 55200 223.26885986328125 1.4787999999999999 326.39229999999998 20160 13581 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 412 320 0 64 0 3515986320 34135048 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 25 36 301 0 0 0 0 41 0 0 0 0 0 +1483 1783858393103828000 REFRESH 51 0 0.67594809314243887 0.91396933560476989 3 11 3 11 0 0 515 13 399 3988484 56160 220.53887939453125 1.4386000000000001 297.8775 13440 8727 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 399 320 0 64 0 3516701524 34850252 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 25 25 25 41 283 0 0 0 0 13 0 0 0 0 0 +1484 1783858393497165100 REFRESH 0 0 0.67652993829413388 0.8279386712095399 2 11 2 11 0 0 814 11 425 3988471 56160 219.89375305175781 1.4464999999999999 312.10250000000002 13440 7999 0 0 0.00017143269285358514 2.2184394717292082 4096 2048 64 1 16 425 320 0 64 0 3517443248 35591976 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 121 229 0 0 1 0 10 0 0 0 0 0 +1485 1783858393878241400 REFRESH 49 0 0.67459609989532909 0.82027257240204421 3 10 3 10 0 0 1083 16 424 3988467 56160 233.5098876953125 1.5589999999999999 317.7183 13440 7897 0 0 0.023587680617059275 0.4799144480521384 4096 2048 64 1 16 424 320 0 64 0 3518183952 36332680 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 213 136 0 0 0 3 13 0 0 0 0 0 +1486 1783858394189164400 REFRESH 23 0 0.67370852911299184 0.74190800681430991 1 11 1 11 1 0 3299 11 411 3988087 55680 224.99122619628906 1.4467000000000001 308.91219999999998 13440 7821 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 411 320 0 64 0 3518911396 37060124 1 0 4 2 3 3 4 983040 491520 737280 737523 998400 25 25 25 136 200 0 0 0 0 11 0 0 0 0 1 +1487 1783858396908403300 DEPTH 42 1 0.83713647231713639 0 0 4 0 4 0 0 4096 13 2607 23677810 81600 1330.3276977539062 8.7510000000000012 2493.7258999999999 120960 69487 1 0 0 0.0063417300788251949 4096 2048 384 12 96 2607 1920 0 384 1 3523429444 41578172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 422 150 150 1366 519 0 0 0 0 13 0 0 0 0 0 +1488 1783858399100709400 DEPTH 13 1 0.67682496168387085 0.27342419080068137 1 6 1 6 1 0 3713 64 2571 23677674 81600 1317.1662750244141 8.7411999999999992 2133.3753999999999 120960 57085 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2571 1920 0 384 1 3527910772 46059500 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 156 780 1335 3 3 0 0 58 0 0 0 0 1 +1489 1783858401276314100 DEPTH 48 1 0.67583353268884161 0.26575809199318562 2 5 2 5 0 0 2199 54 2575 23677646 81600 1290.1085510253906 8.7045999999999992 2115.4272999999998 120960 58193 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2575 1920 0 384 1 3532396180 50544908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 150 678 1447 0 0 11 0 43 0 0 0 0 0 +1490 1783858403570133000 DEPTH 26 1 0.67506583949909715 0.64821124361158422 1 10 1 10 0 0 1576 53 2571 23695698 99840 1316.3438110351562 9.1005000000000003 2292.1950000000002 120960 68456 1 0 0.029664718146048187 1.2965658129918167 4096 2048 384 12 96 2571 1920 0 384 1 3536877508 55026236 1 0 4 3 3 3 3 5898240 4423680 3194880 4426522 5740800 150 150 151 606 1514 1 0 1 2 49 0 0 0 0 0 +1491 1783858405779527000 DEPTH 56 1 0.67481191036515731 0.26575809199318562 2 5 2 5 0 0 4096 60 2579 23677632 81600 1307.5066833496094 8.7830000000000013 2207.4405999999999 120960 57307 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2579 1920 0 384 1 3541366996 59515724 1 0 4 3 3 3 3 5898240 4423680 4423680 4426386 4492800 150 150 184 1546 549 4 1 1 3 51 0 0 0 0 0 +1492 1783858408252075500 DEPTH 1 1 0.67411977274768131 0.36712095400340705 1 7 1 7 1 0 2624 44 2578 23677552 81600 1379.4867248535156 10.5124 2317.6187 120960 57168 1 0 0.023597944674551518 1.9243582429932711 4096 2048 384 12 96 2578 1920 0 384 1 3545855464 64004192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 150 150 155 747 1376 0 0 1 0 43 0 0 0 0 1 +1493 1783858412009560200 DEPTH 11 1 0.67340991189943677 0.37478705281090291 0 8 0 8 1 0 2064 61 2567 23698643 103680 1365.0178527832031 8.9861000000000004 3624.7278999999999 120960 56936 1 0 0 0.7609331649506057 4096 2048 384 12 96 2567 1920 0 384 1 3550332792 1373072 1 0 4 3 3 2 4 5898240 4423680 4423680 2950976 5990400 150 150 169 792 1306 0 3 8 0 50 0 0 0 0 1 +1494 1783858414479225600 DEPTH 53 1 0.6733639443588304 0.37478705281090291 0 8 0 8 1 0 4096 56 2552 23677523 81600 1375.4767456054688 8.9823999999999984 2315.2420000000002 120960 56667 1 0 0 0.22387556692449651 4096 2048 384 12 96 2552 1920 0 384 1 3554794740 5835020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 150 870 1232 0 0 0 1 55 0 0 0 0 2 +1495 1783858416811623400 DEPTH 57 1 0.67713797627905392 0.27342419080068137 1 6 1 6 0 0 3894 75 2549 23677487 81600 1401.2397613525391 8.9211000000000009 2203.9308999999998 120960 56993 1 0 0.00072854903494253063 0.48108496736898515 4096 2048 384 12 96 2549 1920 0 384 1 3559253628 10293908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 518 1581 0 0 0 1 74 0 0 0 0 0 +1496 1783858419182234100 DEPTH 20 1 0.67337818209492706 0.26575809199318562 2 5 2 5 0 0 1915 29 2596 23677631 81600 1393.0715179443359 9.0616000000000003 2230.0608000000002 120960 58059 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2596 1920 0 384 1 3563760456 14800736 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 150 150 245 507 1544 0 0 7 0 22 0 0 0 0 0 +1497 1783858421243606600 DEPTH 16 1 0.6733778898191074 0.3594548551959113 2 6 2 6 0 0 2836 132 2546 23677422 81600 1399.3338928222656 8.740000000000002 1985.2062000000001 120960 58089 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2546 1920 0 384 1 3568216284 19256564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426380 4492800 150 150 150 452 1644 1 0 1 5 125 0 0 0 0 0 +1498 1783858423613358800 DEPTH 46 1 0.67337600585925572 0.37478705281090291 0 8 0 8 0 0 2529 40 2572 23677689 81600 1414.18701171875 8.9451999999999998 2293.0861 120960 58079 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2572 1920 0 384 1 3572698632 23738912 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 165 935 1172 1 0 0 1 38 0 0 0 0 0 +1499 1783858425575372600 DEPTH 43 1 0.67323267906239637 0.8279386712095399 2 11 2 11 0 0 744 45 2575 23720570 125760 1381.1488952636719 8.75 1901.2122999999999 80640 43602 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2575 1920 0 384 1 3577184040 28224320 1 0 4 2 3 2 5 5898240 2949120 4423680 2950953 7488000 150 150 150 647 1478 0 0 0 2 43 0 0 0 0 0 +1500 1783858427848976300 DEPTH 31 1 0.67306038161287174 0.3594548551959113 2 6 2 6 0 0 2294 34 2556 23677526 81600 1391.1808013916016 8.7293000000000003 2207.6529 120960 56469 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2556 1920 0 384 1 3581650068 32690348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 162 794 1300 0 0 0 0 34 0 0 0 0 0 +1501 1783858430219317600 DEPTH 45 1 0.67290627478845544 0.45315161839863699 2 7 2 7 0 0 1917 54 2535 23677312 81600 1423.5576324462891 8.6683000000000003 2287.2588999999998 120960 59409 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2535 1920 0 384 1 3586094676 37134956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426376 4492800 150 150 156 218 1861 0 0 0 0 54 0 0 0 0 0 +1502 1783858432543593500 DEPTH 54 1 0.67291559797613154 0.4608177172061329 1 8 1 8 0 0 1062 42 2544 23677470 81600 1405.3211975097656 9.0691999999999986 2245.0805 120960 55904 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2544 1920 0 384 1 3590548464 41588744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426516 4492800 150 150 156 356 1732 0 0 4 0 38 0 0 0 0 0 +1503 1783858434893780600 DEPTH 42 1 0.74710570958791089 0 0 4 0 4 1 0 4096 22 2604 23677803 81600 1383.3546142578125 8.6591000000000005 2348.2202000000002 120960 57449 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2604 1920 0 384 1 3595063452 46103732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 362 150 150 1440 502 0 0 0 0 22 0 0 0 0 1 +1504 1783858437242406100 DEPTH 9 1 0.67718254805985745 0.27342419080068137 1 6 1 6 1 0 2505 58 2577 23677545 81600 1398.5556640625 8.7877999999999989 2271.3667999999998 120960 57386 1 0 0.0003898657396462759 0.6533145699203432 4096 2048 384 12 96 2577 1920 0 384 1 3599550900 50591180 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 209 792 1276 0 0 2 4 52 0 0 0 0 1 +1505 1783858439655940400 DEPTH 17 1 0.6770713538313744 0.28109028960817717 0 7 0 7 0 0 3377 53 2585 23677692 81600 1389.6417083740234 9.016 2343.8389999999999 120960 57793 1 1 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2585 1920 0 384 1 3604046508 55086788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1242 893 6 1 2 0 43 0 0 0 0 0 +1506 1783858441772423600 DEPTH 8 1 0.6769901207540705 0.26575809199318562 2 5 2 5 0 0 2271 41 2534 23677596 81600 1394.4607391357422 8.9663000000000004 2050.7854000000002 120960 58009 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2534 1920 0 384 1 3608490096 59530376 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 156 574 1504 0 0 0 0 41 0 0 0 0 0 +1507 1783858443976982700 DEPTH 30 1 0.67296213856563858 0.4608177172061329 1 8 1 8 0 0 3022 123 2515 23677323 81600 1389.8465728759766 8.8996000000000013 2125.9069 120960 67371 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2515 1920 0 384 1 3612914304 63954584 1 0 4 3 3 3 3 5898240 4423680 4423680 4426410 4492800 150 150 150 270 1795 0 0 0 6 117 0 0 0 0 0 +1508 1783858447684750100 DEPTH 44 1 0.67267066424586752 0.36712095400340705 1 7 1 7 0 0 1877 62 2630 23677481 81600 1430.8485107421875 10.180800000000001 3583.2350000000001 120960 57276 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2630 1920 0 384 1 3617455892 1387852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 150 1322 858 0 0 2 1 59 0 0 0 0 0 +1509 1783858450010399600 DEPTH 21 1 0.67266567890098727 0.56218057921635434 0 10 0 10 0 0 2277 57 2556 23677419 81600 1406.2553100585938 8.8722999999999992 2249.739 120960 56698 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2556 1920 0 384 1 3621921920 5853880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 157 768 1331 0 0 4 0 53 0 0 0 0 0 +1510 1783858452403209200 DEPTH 41 1 0.67267523844427202 0.55451448040885853 1 9 1 9 0 0 1916 46 2553 23677398 81600 1407.0927429199219 8.809099999999999 2317.5216 120960 57750 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2553 1920 0 384 1 3626384888 10316848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 168 404 1681 2 0 2 1 41 0 0 0 0 0 +1511 1783858454793761100 DEPTH 33 1 0.67349213706225453 0.36712095400340705 1 7 1 7 0 0 3091 48 2563 23677520 81600 1406.9586181640625 8.7684999999999995 2324.1473000000001 120960 58296 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2563 1920 0 384 1 3630858056 14790016 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 167 568 1528 0 0 4 1 43 0 0 0 0 0 +1512 1783858457061681300 DEPTH 2 1 0.67301077533327369 0.45315161839863699 2 7 2 7 0 0 2992 142 2524 23677290 81600 1399.7025299072266 9.0264000000000006 2182.0084999999999 120960 68035 1 0 0.18292672061028054 2.141080159299098 4096 2048 384 12 96 2524 1920 0 384 1 3635291444 19223404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426378 4492800 150 150 150 174 1900 0 0 0 3 139 0 0 0 0 0 +1513 1783858459341197300 DEPTH 32 1 0.6730178221987636 0.4608177172061329 1 8 1 8 0 0 2559 78 2540 23677420 81600 1402.6465148925781 9.0989000000000004 2210.1932999999999 120960 57206 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2540 1920 0 384 1 3639741152 23673112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 156 197 1887 3 0 4 0 71 0 0 0 0 0 +1514 1783858461344081400 DEPTH 0 1 0.67297169423310133 0.8279386712095399 2 11 2 11 1 0 819 45 2569 23720538 125760 1350.6048583984375 8.7372999999999994 1938.4132999999999 80640 38925 1 0 0.00014150014245183789 2.3445784226175679 4096 2048 384 12 96 2569 1920 0 384 1 3644220440 28152400 1 0 4 2 3 2 5 5898240 2949120 4423680 2950911 7488000 150 150 150 553 1566 0 1 1 0 43 0 0 0 0 1 +1515 1783858463285209800 DEPTH 12 1 0.6726933758375877 0.63287904599659284 3 8 3 8 0 0 1194 68 2614 23698476 103680 1328.7311401367188 8.7619000000000007 1884.2009 120960 70397 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2614 1920 0 384 1 3648745628 32677588 1 0 4 3 3 2 4 5898240 4423680 4423680 2950935 5990400 150 150 156 180 1978 0 0 2 5 61 0 0 0 0 0 +1516 1783858465514680400 DEPTH 40 1 0.67252875952352598 0.64821124361158422 1 10 1 10 0 0 1507 38 2606 23720701 125760 1316.9971923828125 8.7219999999999995 2160.4056 80640 38360 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2606 1920 0 384 1 3653262656 37194616 1 0 4 2 3 2 5 5898240 2949120 4423680 2951007 7488000 150 150 150 548 1608 0 0 3 2 33 0 0 0 0 0 +1517 1783858467701414900 DEPTH 39 1 0.67241369756473313 0.55451448040885853 1 9 1 9 0 0 1493 62 2591 23687402 92160 1320.4889831542969 8.6408000000000023 2111.5459999999998 120960 62753 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2591 1920 0 384 1 3657764384 41696344 1 0 4 3 3 3 3 5898240 4423680 4423680 3688662 5241600 150 150 154 1082 1055 0 3 5 0 54 0 0 0 0 0 +1518 1783858469708200600 DEPTH 15 1 0.6724173676411509 0.91396933560476989 3 11 3 11 0 0 308 31 2530 23720519 125760 1362.8242950439453 8.898200000000001 1937.3273999999999 80640 40422 1 0 0.13215737202774189 0.95319511763653475 4096 2048 384 12 96 2530 1920 0 384 1 3662203892 46135852 1 0 5 2 2 2 5 7372800 2949120 2949120 2950887 7488000 150 150 150 383 1697 0 0 0 0 31 0 0 0 0 0 +1519 1783858470084056700 REFRESH 42 0 0.74698317531284475 0 0 4 0 4 0 0 4096 7 424 3987656 55200 229.87776184082031 1.4365000000000001 373.83440000000002 20160 12148 0 0 0 0.0063466168420994035 4096 2048 64 1 16 424 320 0 64 0 3662944596 46876556 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 78 25 25 223 73 0 0 0 0 7 0 0 0 0 0 +1520 1783858470485297400 REFRESH 19 0 0.67101694571507675 0.8279386712095399 2 11 2 11 0 0 819 7 425 3988485 56160 227.33619689941406 1.4833000000000001 341.05470000000003 13440 7911 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 425 320 0 64 0 3663686320 47618280 1 0 4 2 3 2 5 983040 491520 737280 491683 1248000 25 25 25 147 203 0 0 0 0 7 0 0 0 0 0 +1521 1783858470924864500 REFRESH 50 0 0.66922517567683171 0.64054514480408853 2 9 2 9 0 0 978 5 437 3988467 56160 241.42745971679688 1.7743 376.70260000000002 20160 12565 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 437 320 0 64 0 3664440284 48372244 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 280 82 0 0 0 0 5 0 0 0 0 0 +1522 1783858471303865500 REFRESH 14 0 0.67102937101324334 0.65587734241908002 0 11 0 11 0 0 1474 20 415 3988090 55680 230.51058959960938 1.4396 318.47789999999998 13440 7990 0 0 1.6719650570068547e-05 0.72140313882225349 4096 2048 64 1 16 415 320 0 64 0 3665171808 49103768 1 0 4 2 3 3 4 983040 491520 737280 737523 998400 26 25 25 86 253 0 0 0 0 20 0 0 0 0 0 +1523 1783858471619144200 REFRESH 0 0 0.51004582664360176 0.8279386712095399 2 11 2 11 0 0 823 11 426 3988492 56160 226.71463012695312 1.5105999999999999 313.53219999999999 13440 7977 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 426 320 0 64 0 3665914552 49846512 1 0 4 2 3 2 5 983040 491520 737280 491686 1248000 25 25 25 224 127 0 0 0 3 8 0 0 0 0 0 +1524 1783858471968950400 REFRESH 41 0 0.55934037303408046 0.55451448040885853 1 9 1 9 0 0 1925 27 423 3987598 55200 225.41004943847656 1.6046 348.09030000000001 20160 12121 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 423 320 0 64 0 3666654236 50586196 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 29 125 219 0 0 0 5 22 0 0 0 0 0 +1525 1783858472299474600 REFRESH 32 0 0.53986422317912131 0.4608177172061329 1 8 1 8 0 0 2573 37 413 3987630 55200 231.151611328125 1.4355 327.94659999999999 20160 12187 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 413 320 0 64 0 3667383720 51315680 1 0 4 3 3 3 3 983040 737280 737280 737542 748800 25 25 27 69 267 0 0 0 5 32 0 0 0 0 0 +1526 1783858472728013700 REFRESH 13 0 0.6748788091813569 0.27342419080068137 1 6 1 6 0 0 3732 36 422 3987608 55200 233.1514892578125 1.4334 352.1979 20160 12170 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 422 320 0 64 0 3668122384 52054344 1 0 4 3 3 3 3 983040 737280 737280 737478 748800 25 25 26 179 167 0 0 1 4 31 0 0 0 0 0 +1527 1783858473104949000 REFRESH 10 0 0.66509181934726236 0.64821124361158422 1 10 1 10 0 0 1037 6 425 3988486 56160 229.85728454589844 1.639 317.00630000000001 13440 7913 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 425 320 0 64 0 3668864108 52796068 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 207 143 0 0 0 0 6 0 0 0 0 0 +1528 1783858473499787800 REFRESH 31 0 0.6703508434177794 0.3594548551959113 2 6 2 6 0 0 2299 22 418 3987615 55200 230.55155944824219 1.4314 337.37610000000001 20160 12112 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 418 320 0 64 0 3669598692 53530652 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 28 194 146 0 0 0 4 18 0 0 0 0 0 +1529 1783858473866292100 REFRESH 7 0 0.6711077642548231 0.8356047700170357 1 12 1 12 0 0 815 16 417 3988486 56160 228.28031921386719 1.4563999999999999 309.56970000000001 13440 7949 0 0 0.0030942132482632461 1.0738159360206059 4096 2048 64 1 16 417 320 0 64 0 3670332256 54264216 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 238 104 0 0 0 5 11 0 0 0 0 0 +1530 1783858474279283400 REFRESH 48 0 0.6736042907671328 0.26575809199318562 2 5 2 5 0 0 2203 15 426 3987659 55200 232.32307434082031 1.4355 353.27789999999999 20160 12268 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 426 320 0 64 0 3671075000 55006960 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 30 202 144 0 0 1 2 12 0 0 0 0 0 +1531 1783858474649937800 REFRESH 58 0 0.67243239108351105 0.92163543441226559 2 12 2 12 0 0 510 13 409 3988957 56640 228.55679321289062 2.0451000000000001 314.22329999999999 13440 8594 0 0 0.0099066415982336058 1.6471477823118619 4096 2048 64 1 16 409 320 0 64 0 3671800404 55732364 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 37 296 1 0 0 0 12 0 0 0 0 0 +1532 1783858475036895000 REFRESH 3 0 0.67112703415125374 0.64054514480408853 2 9 2 9 0 0 1037 8 425 3987973 55680 230.02828979492188 1.4375 330.58170000000001 20160 11758 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 425 320 0 64 0 3672542128 56474088 1 0 4 3 3 2 4 983040 737280 737280 491651 998400 25 25 26 260 89 0 0 1 0 7 0 0 0 0 0 +1533 1783858475434319400 REFRESH 30 0 0.66993668936851369 0.4608177172061329 1 8 1 8 0 0 3037 61 415 3987591 55200 229.96890258789062 1.444 327.44040000000001 20160 12299 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 3673273652 57205612 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 134 206 1 0 0 11 49 0 0 0 0 0 +1534 1783858475825304000 REFRESH 57 0 0.67476519447171635 0.27342419080068137 1 6 1 6 0 0 3903 31 416 3987625 55200 232.76441955566406 1.4562999999999999 333.79950000000002 20160 12083 0 0 0.00072854903494253063 0.48108496736898515 4096 2048 64 1 16 416 320 0 64 0 3674006196 57938156 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 149 192 0 0 0 7 24 0 0 0 0 0 +1535 1783858476190550100 REFRESH 35 0 0.67114870637770274 0.8279386712095399 2 11 2 11 0 0 1031 13 409 3988491 56160 228.93772888183594 1.4376 306.45510000000002 13440 7889 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 409 320 0 64 0 3674731600 58663560 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 25 25 25 119 215 0 0 0 0 13 0 0 0 0 0 +1536 1783858476564423500 REFRESH 51 0 0.67240729002391064 0.91396933560476989 3 11 3 11 0 0 516 14 397 3988481 56160 229.00735473632812 1.5117 314.16160000000002 13440 8714 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 397 320 0 64 0 3675444764 59376724 1 0 4 2 3 2 5 983040 491520 737280 491681 1248000 25 25 25 55 267 0 0 0 0 14 0 0 0 0 0 +1537 1783858476982819400 REFRESH 1 0 0.67144809218801171 0.36712095400340705 1 7 1 7 0 0 2630 18 425 3987629 55200 232.05990600585938 1.4487000000000001 353.6234 20160 12145 0 0 0.023597944674551518 1.9243582429932711 4096 2048 64 1 16 425 320 0 64 0 3676186488 60118448 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 29 211 135 0 0 0 2 16 0 0 0 0 0 +1538 1783858477370831500 REFRESH 36 0 0.671182756956055 0.82027257240204421 3 10 3 10 0 0 1111 21 418 3988492 56160 230.23103332519531 1.4427000000000001 322.5693 13440 7881 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 418 320 0 64 0 3676921072 60853032 1 0 4 2 3 2 5 983040 491520 737280 491686 1248000 25 25 25 149 194 0 0 0 2 19 0 0 0 0 0 +1539 1783858477804937700 REFRESH 49 0 0.6711960159048449 0.82027257240204421 3 10 3 10 1 0 1086 21 422 3988463 56160 228.52301025390625 1.4462999999999999 313.2645 13440 7943 0 0 0.023598253169682244 0.47905684700957413 4096 2048 64 1 16 422 320 0 64 0 3677659736 61591696 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 197 150 0 0 0 1 20 0 0 0 0 1 +1540 1783858478226200100 REFRESH 25 0 0.66740526481755347 0.4608177172061329 1 8 1 8 0 0 2176 9 423 3987618 55200 231.61241149902344 1.4322999999999999 364.87540000000001 20160 12058 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 423 320 0 64 0 3678399420 62331380 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 267 81 0 0 0 0 9 0 0 0 0 0 +1541 1783858478619073200 REFRESH 23 0 0.67060272811866772 0.74190800681430991 1 11 1 11 0 0 3307 17 413 3988081 55680 231.16082763671875 1.4478 334.91840000000002 13440 7992 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 413 320 0 64 0 3679128904 63060864 1 0 4 2 3 3 4 983040 491520 737280 737520 998400 25 25 25 143 195 0 0 0 2 15 0 0 0 0 0 +1542 1783858479024293800 REFRESH 26 0 0.66925474698149534 0.64821124361158422 1 10 1 10 0 0 1621 71 416 3987605 55200 230.54438781738281 1.4821 336.38479999999998 20160 12778 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 416 320 0 64 0 3679861448 63793408 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 74 267 0 0 0 11 60 0 0 0 0 0 +1543 1783858479422888700 REFRESH 38 0 0.67142958551187348 0.55451448040885853 1 9 1 9 0 0 1879 33 419 3987592 55200 229.83782958984375 1.4500999999999999 330.08980000000003 20160 11871 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 419 320 0 64 0 3680597052 64529012 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 35 150 184 0 0 0 3 30 0 0 0 0 0 +1544 1783858479800975600 REFRESH 6 0 0.66661773568355875 0.91396933560476989 3 11 3 11 0 0 373 5 418 3988919 56640 227.99261474609375 1.7445999999999999 311.53820000000002 13440 9231 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 418 320 0 64 0 3681331636 65263596 1 0 4 2 2 2 6 983040 491520 491520 491638 1497600 25 25 25 42 301 0 0 0 0 5 0 0 0 0 0 +1545 1783858480224165400 REFRESH 46 0 0.67079839445090417 0.37478705281090291 0 8 0 8 0 0 2530 11 430 3987601 55200 230.83418273925781 1.4374 364.14100000000002 20160 12395 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 430 320 0 64 0 3682078460 66010420 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 30 243 107 0 0 0 2 9 0 0 0 0 0 +1546 1783858480606167200 REFRESH 29 0 0.67257024196845638 0.82027257240204421 3 10 3 10 0 0 1078 13 422 3988453 56160 224.83357238769531 1.7327999999999999 311.30149999999998 13440 7956 0 0 0.26125994989040291 0.98461494739217958 4096 2048 64 1 16 422 320 0 64 0 3682817124 66749084 1 0 4 2 3 2 5 983040 491520 737280 491653 1248000 25 25 25 62 285 0 0 0 0 13 0 0 0 0 0 +1547 1783858482215612600 REFRESH 55 0 0.66935211256356708 0.64054514480408853 2 9 2 9 0 0 1037 16 411 3987591 55200 228.61619567871094 1.4450000000000001 1547.3284000000001 20160 12285 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 411 320 0 64 0 3683544648 368664 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 185 151 0 0 0 1 15 0 0 0 0 0 +1548 1783858482667924400 REFRESH 47 0 0.67129612260911453 0.8279386712095399 2 11 2 11 0 0 629 27 409 3988505 56160 223.425537109375 1.4343999999999999 321.18650000000002 13440 7872 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 409 320 0 64 0 3684270052 1094068 1 0 4 2 3 2 5 983040 491520 737280 491700 1248000 25 25 25 135 199 0 0 0 5 22 0 0 0 0 0 +1549 1783858483107509100 REFRESH 11 0 0.67090552377621215 0.37478705281090291 0 8 0 8 0 0 2066 16 426 3988016 55680 225.19935607910156 1.4389000000000001 370.9511 20160 12178 0 0 0 0.7609331649506057 4096 2048 64 1 16 426 320 0 64 0 3685012796 1836812 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 29 242 105 0 1 1 4 10 0 0 0 0 0 +1550 1783858483467216000 REFRESH 33 0 0.6708414844637467 0.36712095400340705 1 7 1 7 0 0 3099 33 422 3987608 55200 226.73715209960938 2.085 357.93490000000003 20160 12016 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 422 320 0 64 0 3685751460 2575476 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 30 167 175 0 0 0 4 29 0 0 0 0 0 +1551 1783858483851262100 REFRESH 34 0 0.66900593174928968 0.8356047700170357 1 12 1 12 0 0 657 16 421 3988487 56160 222.81523132324219 1.7967 310.26209999999998 13440 8000 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 421 320 0 64 0 3686489104 3313120 1 0 4 2 3 2 5 983040 491520 737280 491687 1248000 25 25 25 156 190 0 0 0 0 16 0 0 0 0 0 +1552 1783858484232355300 REFRESH 28 0 0.67258305919501926 0.8279386712095399 2 11 2 11 0 0 604 14 416 3988499 56160 225.870849609375 1.4387000000000001 316.726 13440 7996 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 416 320 0 64 0 3687221648 4045664 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 26 25 25 215 125 0 0 0 3 11 0 0 0 0 0 +1553 1783858484593354300 REFRESH 39 0 0.66956680512841515 0.55451448040885853 1 9 1 9 0 0 1495 13 431 3987571 55200 226.03996276855469 1.4339999999999999 359.2885 20160 11943 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 431 320 0 64 0 3687969492 4793508 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 30 191 160 0 0 1 1 11 0 0 0 0 0 +1554 1783858485023792500 REFRESH 40 0 0.66994695624353384 0.64821124361158422 1 10 1 10 0 0 1508 8 425 3988477 56160 222.63398742675781 1.4816 357.3768 13440 7978 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 425 320 0 64 0 3688711216 5535232 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 193 157 0 0 0 1 7 0 0 0 0 0 +1555 1783858485435356800 REFRESH 24 0 0.66996087779131486 1 4 11 4 11 0 0 488 9 405 3988956 56640 224.18534851074219 1.4894000000000001 318.2337 13440 8472 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 405 320 0 64 0 3689432540 6256556 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 26 303 0 0 0 0 9 0 0 0 0 0 +1556 1783858485813454500 REFRESH 37 0 0.67140408497502235 0.8356047700170357 1 12 1 12 0 0 924 25 411 3988484 56160 224.56729125976562 1.4427000000000001 310.21809999999999 13440 7974 0 0 0.010850465444161446 0.56786513058378374 4096 2048 64 1 16 411 320 0 64 0 3690159984 6984000 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 26 25 25 107 228 0 0 0 3 22 0 0 0 0 0 +1557 1783858486240345900 REFRESH 52 0 0.67125577736383513 0.36712095400340705 1 7 1 7 0 0 1867 13 430 3987608 55200 226.18316650390625 1.4469000000000001 362.70089999999999 20160 11891 0 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 64 1 16 430 320 0 64 0 3690906808 7730824 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 30 264 86 0 0 1 2 10 0 0 0 0 0 +1558 1783858486620668500 REFRESH 18 0 0.67169167475113656 0.9293015332197615 1 13 1 13 0 0 429 15 413 3988935 56640 224.83251953125 1.4507000000000001 323.15910000000002 13440 8159 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 413 320 0 64 0 3691636292 8460308 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 26 25 25 32 305 0 0 0 0 15 0 0 0 0 0 +1559 1783858487004707600 REFRESH 16 0 0.67092852707387873 0.3594548551959113 2 6 2 6 0 0 2852 33 420 3987617 55200 226.66566467285156 1.536 326.14710000000002 20160 12298 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 420 320 0 64 0 3692372916 9196932 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 122 223 0 0 0 3 30 0 0 0 0 0 +1560 1783858487370276300 REFRESH 4 0 0.66879289027783184 0.8356047700170357 1 12 1 12 0 0 264 13 418 3988388 56160 224.5242919921875 1.4903999999999999 307.84699999999998 20160 14645 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 0 64 0 3693107500 9931516 1 0 6 3 1 1 5 1474560 737280 245760 245827 1248000 27 25 33 82 251 0 0 0 0 13 0 0 0 0 0 +1561 1783858487789241400 REFRESH 21 0 0.66968279529799202 0.56218057921635434 0 10 0 10 0 0 2284 29 420 3987606 55200 243.41094970703125 1.4346000000000001 359.44400000000002 20160 12084 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 420 320 0 64 0 3693844124 10668140 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 27 218 125 0 0 1 6 22 0 0 0 0 0 +1562 1783858488239144600 REFRESH 44 0 0.67022916824199408 0.36712095400340705 1 7 1 7 0 0 1878 8 438 3987630 55200 248.89549255371094 1.5576000000000001 390.76420000000002 20160 12043 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 438 320 0 64 0 3694599108 11423124 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 25 248 115 0 0 0 1 7 0 0 0 0 0 +1563 1783858488554905000 REFRESH 12 0 0.66965386653262859 0.63287904599659284 3 8 3 8 0 0 1216 35 433 3988002 55680 231.18234252929688 1.4409000000000001 313.95589999999999 20160 13802 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 433 320 0 64 0 3695348992 12173008 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 32 126 225 0 0 0 5 30 0 0 0 0 0 +1564 1783858488914100900 REFRESH 5 0 0.67143545002140648 0.8279386712095399 2 11 2 11 0 0 786 11 423 3988469 56160 226.53952026367188 1.4416 300.36149999999998 13440 8150 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 423 320 0 64 0 3696088676 12912692 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 169 179 0 0 0 0 11 0 0 0 0 0 +1565 1783858489287824100 REFRESH 27 0 0.67268218687808501 0.93696763202725719 0 14 0 14 0 0 827 18 414 3988493 56160 227.33926391601562 1.4328000000000001 308.89240000000001 13440 8061 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 414 320 0 64 0 3696819180 13643196 1 0 4 2 3 2 5 983040 491520 737280 491691 1248000 25 25 25 34 305 0 0 0 1 17 0 0 0 0 0 +1566 1783858489766517400 REFRESH 53 0 0.67101231217105317 0.37478705281090291 0 8 0 8 0 0 4096 24 417 3987627 55200 227.9393310546875 1.4558 355.1309 20160 12101 0 0 0 0.22387556692449651 4096 2048 64 1 16 417 320 0 64 0 3697552744 14376760 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 209 133 0 0 0 9 15 0 0 0 0 0 +1567 1783858490205424000 REFRESH 20 0 0.67185169928266042 0.26575809199318562 2 5 2 5 0 0 1916 10 431 3987632 55200 229.65554809570312 1.4461999999999999 380.68779999999998 20160 12203 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 3698300588 15124604 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 45 148 188 0 0 1 0 9 0 0 0 0 0 +1568 1783858490628864000 REFRESH 56 0 0.67298105938408304 0.26575809199318562 2 5 2 5 0 0 4096 12 428 3987681 55200 229.13229370117188 1.4342999999999999 363.81229999999999 20160 12229 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 428 320 0 64 0 3699045372 15869388 1 0 4 3 3 3 3 983040 737280 737280 737532 748800 25 25 31 270 77 0 1 0 2 9 0 0 0 0 0 +1569 1783858491010702400 REFRESH 45 0 0.67025901998118376 0.45315161839863699 2 7 2 7 0 0 1936 40 415 3987616 55200 228.23834228515625 1.4393 323.68470000000002 20160 12316 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 415 320 0 64 0 3699776896 16600912 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 28 70 267 0 0 0 4 36 0 0 0 0 0 +1570 1783858491489024000 REFRESH 9 0 0.6750548093260329 0.27342419080068137 1 6 1 6 0 0 2513 30 422 3987639 55200 230.11328125 1.4404999999999999 344.24770000000001 20160 12317 0 0 0.0003898657396462759 0.6533145699203432 4096 2048 64 1 16 422 320 0 64 0 3700515560 17339576 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 38 182 152 0 0 0 6 24 0 0 0 0 0 +1571 1783858491864750100 REFRESH 43 0 0.67015241888520916 0.8279386712095399 2 11 2 11 0 0 744 6 425 3988472 56160 227.59939575195312 1.4486000000000001 311.04169999999999 13440 8032 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 425 320 0 64 0 3701257284 18081300 1 0 4 2 3 2 5 983040 491520 737280 491672 1248000 25 25 25 153 197 0 0 0 0 6 0 0 0 0 0 +1572 1783858492278634500 REFRESH 17 0 0.67493956246687736 0.28109028960817717 0 7 0 7 0 0 3378 15 427 3987626 55200 229.82759094238281 1.4393 353.85230000000001 20160 12191 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 427 320 0 64 0 3702001048 18825064 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 269 83 1 0 1 0 13 0 0 0 0 0 +1573 1783858492671161300 REFRESH 22 0 0.67175322522541103 0.91396933560476989 3 11 3 11 0 0 455 11 412 3988956 56640 227.36384582519531 1.5095000000000001 309.75819999999999 13440 9135 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 3702729512 19553528 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 39 297 0 0 0 0 11 0 0 0 0 0 +1574 1783858492991856800 REFRESH 15 0 0.66927939351410037 0.91396933560476989 3 11 3 11 0 0 310 12 416 3988469 56160 226.82418823242188 1.4331 318.89400000000001 13440 7920 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 416 320 0 64 0 3703462056 20286072 1 0 5 2 2 2 5 1228800 491520 491520 491667 1248000 25 25 25 100 241 0 0 0 1 11 0 0 0 0 0 +1575 1783858493453002400 REFRESH 2 0 0.67031415171891151 0.45315161839863699 2 7 2 7 0 0 3013 50 407 3987582 55200 242.24153137207031 1.4391 334.5822 20160 12560 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 407 320 0 64 0 3704185420 21009436 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 25 37 295 0 1 0 0 49 0 0 0 0 0 +1576 1783858493863355600 REFRESH 8 0 0.67489118624031419 0.26575809199318562 2 5 2 5 0 0 2272 15 415 3987615 55200 226.93171691894531 1.4958 333.68979999999999 20160 12022 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 415 320 0 64 0 3704916944 21740960 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 26 144 195 0 0 0 5 10 0 0 0 0 0 +1577 1783858494258046300 REFRESH 54 0 0.67032982657905049 0.4608177172061329 1 8 1 8 0 0 1069 22 413 3987583 55200 225.25747680664062 1.4438 334.91890000000001 20160 11876 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 413 320 0 64 0 3705646428 22470444 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 26 102 235 0 0 0 1 21 0 0 0 0 0 +1578 1783858496609880100 DEPTH 42 1 0.83403068744731179 0 0 4 0 4 0 0 4096 22 2597 23677677 81600 1369.9512329101562 8.7657000000000007 2291.8424 120960 60005 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2597 1920 0 384 1 3710154276 26978292 1 0 4 3 3 3 3 5898240 4423680 4423680 4426363 4492800 395 150 150 1372 530 0 0 0 0 22 0 0 0 0 0 +1579 1783858498824062900 DEPTH 13 1 0.67266210482524236 0.27342419080068137 1 6 1 6 0 0 3755 76 2574 23677637 81600 1326.5960845947266 8.6310000000000002 2155.8519000000001 120960 57321 1 1 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2574 1920 0 384 1 3714638664 31462680 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 156 726 1392 0 0 3 0 72 0 0 0 0 0 +1580 1783858501082649700 DEPTH 57 1 0.67250818683903257 0.27342419080068137 1 6 1 6 0 0 3924 76 2538 23677763 81600 1363.0115814208984 8.7942 2194.8566000000001 120960 56883 1 0 0.00072854903494253063 0.48108496736898515 4096 2048 384 12 96 2538 1920 0 384 1 3719086332 35910348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426509 4492800 150 150 150 559 1529 0 0 0 1 75 0 0 0 0 0 +1581 1783858503330298100 DEPTH 48 1 0.67150113827485458 0.26575809199318562 2 5 2 5 0 0 2219 56 2585 23677706 81600 1340.7211456298828 8.6751000000000005 2170.8398999999999 120960 58572 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2585 1920 0 384 1 3723581940 40405956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 152 766 1367 0 0 8 2 46 0 0 0 0 0 +1582 1783858505281978000 DEPTH 29 1 0.66923426789566687 0.82027257240204421 3 10 3 10 1 0 1088 60 2554 23720593 125760 1329.8135986328125 8.7518999999999991 1884.0889 80640 38370 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 2554 1920 0 384 1 3728045928 44869944 1 0 4 2 3 2 5 5898240 2949120 4423680 2950954 7488000 150 150 150 358 1746 0 1 1 3 55 0 0 0 0 1 +1583 1783858507289539800 DEPTH 58 1 0.66898268589023036 0.92163543441226559 2 12 2 12 1 0 510 26 2535 23720582 125760 1317.4241333007812 9.9305000000000003 1880.8569 80640 43266 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2535 1920 0 384 1 3732490536 49314552 1 0 4 2 3 2 5 5898240 2949120 4423680 2950948 7488000 156 150 150 320 1759 0 0 0 0 26 0 0 0 0 1 +1584 1783858509267494000 DEPTH 28 1 0.66894147873089349 0.8279386712095399 2 11 2 11 0 0 606 37 2561 23709591 114240 1329.5124359130859 15.324400000000001 1914.0165999999999 80640 38528 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2561 1920 0 384 1 3736961664 53785680 1 0 4 2 3 3 4 5898240 2949120 4423680 3688699 6739200 156 150 150 1088 1017 0 0 0 1 36 0 0 0 0 0 +1585 1783858511209613400 DEPTH 51 1 0.66893406806933031 0.91396933560476989 3 11 3 11 0 0 516 23 2527 23720593 125760 1320.9886932373047 9.5465 1829.5962999999999 80640 43286 1 0 0.04374756045180065 0.27288744213454319 4096 2048 384 12 96 2527 1920 0 384 1 3741398112 58222128 1 0 4 2 3 2 5 5898240 2949120 4423680 2950980 7488000 150 150 150 252 1825 0 0 0 0 23 0 0 0 0 0 +1586 1783858513342224800 DEPTH 52 1 0.66899584552144931 0.36712095400340705 1 7 1 7 0 0 1881 51 2581 23677567 81600 1326.6462707519531 8.8430999999999997 2130.3451 120960 56594 1 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 384 12 96 2581 1920 0 384 1 3745889640 62713656 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 168 1428 685 1 0 10 0 40 0 0 0 0 0 +1587 1783858516897828300 DEPTH 1 1 0.6688893212716911 0.36712095400340705 1 7 1 7 0 0 2660 93 2586 23677542 81600 1354.6577758789062 9.2607999999999997 3363.8654999999999 120960 57365 1 0 0.023597944674551518 1.9243582429932711 4096 2048 384 12 96 2586 1920 0 384 1 3750386348 101716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 155 843 1288 0 0 7 0 86 0 0 0 0 0 +1588 1783858518901291000 DEPTH 38 1 0.6685260445482899 0.55451448040885853 1 9 1 9 0 0 1894 69 2540 23677488 81600 1298.6849365234375 8.7503999999999991 1938.0495000000001 120960 56650 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2540 1920 0 384 1 3754836056 4551424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426544 4492800 150 150 162 663 1415 0 0 3 4 62 0 0 0 0 0 +1589 1783858520816235000 DEPTH 18 1 0.66840552882105353 0.9293015332197615 1 13 1 13 0 0 432 56 2534 23731154 136320 1300.4892120361328 8.6645000000000003 1842.7511999999999 80640 39907 1 0 0.0012150407981630323 1.546403768140675 4096 2048 384 12 96 2534 1920 0 384 1 3759279644 8995012 1 0 4 2 3 2 5 5898240 2949120 3686400 2950948 8236800 156 150 150 317 1761 0 0 0 1 55 0 0 0 0 0 +1590 1783858523039001700 DEPTH 11 1 0.66833270169481152 0.37478705281090291 0 8 0 8 1 0 2082 63 2575 23698618 103680 1295.2903594970703 8.8100000000000005 2155.7451999999998 120960 56911 1 0 0 0.76084698769971526 4096 2048 384 12 96 2575 1920 0 384 1 3763765052 13480420 1 0 4 3 3 2 4 5898240 4423680 4423680 2950938 5990400 150 150 165 1041 1069 0 6 6 2 49 0 0 0 0 1 +1591 1783858525039453400 DEPTH 16 1 0.66828442829855617 0.3594548551959113 2 6 2 6 0 0 2864 72 2543 23677439 81600 1311.9140625 8.9088999999999992 1935.2342000000001 120960 58270 1 0 0.0064244719359429908 0.26737652546205831 4096 2048 384 12 96 2543 1920 0 384 1 3768217820 17933188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 460 1633 0 0 1 1 70 0 0 0 0 0 +1592 1783858527270649000 DEPTH 33 1 0.66828395551839392 0.36712095400340705 1 7 1 7 0 0 3114 78 2550 23677450 81600 1313.1673583984375 8.661999999999999 2156.2260999999999 120960 57860 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2550 1920 0 384 1 3772677728 22393096 1 0 4 3 3 3 3 5898240 4423680 4423680 4426363 4492800 150 150 171 553 1526 0 1 3 3 71 0 0 0 0 0 +1593 1783858529472683100 DEPTH 46 1 0.66829226769587602 0.37478705281090291 0 8 0 8 0 0 2540 39 2590 23677560 81600 1312.5884399414062 8.6842000000000006 2129.1460000000002 120960 59196 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2590 1920 0 384 1 3777178436 26893804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 165 937 1188 3 0 0 0 36 0 0 0 0 0 +1594 1783858531685791100 DEPTH 42 1 0.74402079169491631 0 0 4 0 4 0 0 4096 27 2606 23677918 81600 1298.0961303710938 8.9315999999999995 2209.4315999999999 120960 48911 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2606 1920 0 384 1 3781695464 31410832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 340 150 150 1471 495 0 0 0 0 27 0 0 0 0 0 +1595 1783858533921154400 DEPTH 56 1 0.67077096399611547 0.26575809199318562 2 5 2 5 0 0 4096 63 2582 23677615 81600 1303.1096343994141 8.6631999999999998 2166.9299000000001 120960 57874 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2582 1920 0 384 1 3786188012 35903380 1 0 4 3 3 3 3 5898240 4423680 4423680 4426362 4492800 150 150 185 1484 613 2 1 0 2 58 0 0 0 0 0 +1596 1783858536085740900 DEPTH 20 1 0.66996887049703691 0.26575809199318562 2 5 2 5 0 0 1926 33 2593 23677684 81600 1307.1400909423828 8.6342999999999996 2104.5331000000001 120960 58380 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2593 1920 0 384 1 3790691780 40407148 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 250 561 1482 0 0 11 0 22 0 0 0 0 0 +1597 1783858538020808500 DEPTH 27 1 0.6690363052712669 0.93696763202725719 0 14 0 14 0 0 839 71 2510 23720620 125760 1325.3634033203125 9.1219000000000001 1873.2074 80640 38438 1 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 384 12 96 2510 1920 0 384 1 3795110888 44826256 1 0 4 2 3 2 5 5898240 2949120 4423680 2950976 7488000 150 150 150 222 1838 0 0 0 5 66 0 0 0 0 0 +1598 1783858540417204900 DEPTH 53 1 0.66836409304022615 0.37478705281090291 0 8 0 8 1 0 4096 77 2548 23677624 81600 1369.9471435546875 9.5322000000000013 2259.0428999999999 120960 56831 1 0 0 0.22371907724814899 4096 2048 384 12 96 2548 1920 0 384 1 3799568756 49284124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426558 4492800 150 150 150 875 1223 0 0 0 4 73 0 0 0 0 1 +1599 1783858542544743100 DEPTH 14 1 0.66816633977926398 0.65587734241908002 0 11 0 11 1 0 1485 111 2526 23695348 99840 1405.6542510986328 8.8254999999999999 2055.3391000000001 100800 44337 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2526 1920 0 384 1 3804004184 53719552 1 0 4 3 3 2 4 5898240 3686400 4423680 3934661 5740800 156 150 150 336 1734 1 0 0 0 110 0 0 0 0 1 +1600 1783858544769876900 DEPTH 31 1 0.66808016283399341 0.3594548551959113 2 6 2 6 0 0 2303 32 2565 23677547 81600 1348.9336242675781 9.2873999999999999 2158.6242999999999 120960 56791 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2565 1920 0 384 1 3808479392 58194760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 158 841 1266 0 0 5 0 27 0 0 0 0 0 +1601 1783858546715335800 DEPTH 37 1 0.66800566406871043 0.8356047700170357 1 12 1 12 0 0 926 42 2554 23698501 103680 1330.2632446289062 8.7957000000000001 1882.0769 120960 50037 1 0 0.010850465444161446 0.56786513058378374 4096 2048 384 12 96 2554 1920 0 384 1 3812943380 62658748 1 0 4 3 3 2 4 5898240 4423680 4423680 2950948 5990400 159 150 150 710 1385 1 0 0 3 38 0 0 0 0 0 +1602 1783858550304995600 DEPTH 9 1 0.67267803767540046 0.27342419080068137 1 6 1 6 1 0 2524 65 2580 23677729 81600 1412.4248352050781 8.6949000000000005 3480.8941 120960 58041 1 0 0.00037793517867924537 0.7694728411964602 4096 2048 384 12 96 2580 1920 0 384 1 3817433968 41924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 213 809 1258 0 0 2 2 61 0 0 0 0 2 +1603 1783858552648496700 DEPTH 17 1 0.672567607821283 0.28109028960817717 0 7 0 7 0 0 3396 64 2592 23677776 81600 1401.2927856445312 8.8190999999999988 2277.7305000000001 120960 57972 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2592 1920 0 384 1 3821936716 4544672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426500 4492800 150 150 150 1302 840 4 0 8 0 52 0 0 0 0 0 +1604 1783858554813754900 DEPTH 8 1 0.67250281070644347 0.26575809199318562 2 5 2 5 0 0 2278 44 2542 23677775 81600 1390.9790954589844 8.7222000000000008 2104.3647999999998 120960 57294 1 0 0.029854325953962514 0.92981257338255718 4096 2048 384 12 96 2542 1920 0 384 1 3826388464 8996420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426544 4492800 150 150 156 576 1510 0 0 0 0 44 0 0 0 0 0 +1605 1783858556804033000 DEPTH 22 1 0.66876100522046644 0.91396933560476989 3 11 3 11 0 0 456 35 2558 23742678 147840 1383.6718139648438 8.6905999999999999 1918.5431000000001 80640 45612 1 0 0.0084510407612466993 0.6742119049311508 4096 2048 384 12 96 2558 1920 0 384 1 3830856532 13464488 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 156 150 150 197 1905 0 0 0 0 35 0 0 0 0 0 +1606 1783858558775008000 DEPTH 47 1 0.66802602152108281 0.8279386712095399 2 11 2 11 0 0 630 23 2617 23701389 106560 1376.2142333984375 8.6153999999999993 1913.7599 114240 48078 1 0 0.068593401730629888 1.3758323866124593 4096 2048 384 12 96 2617 1920 0 384 1 3835384780 17992736 1 0 4 3 3 2 4 5898240 4177920 4423680 2950956 6240000 150 150 150 682 1485 0 0 1 2 20 0 0 0 0 0 +1607 1783858560741455100 DEPTH 7 1 0.66803470108355889 0.8356047700170357 1 12 1 12 0 0 817 37 2556 23702209 106560 1374.5142211914062 8.6455000000000002 1905.7583 80640 37610 1 0 0.0030942132482632461 1.0738159360206059 4096 2048 384 12 96 2556 1920 0 384 1 3839850808 22458764 1 0 4 2 3 3 4 5898240 2949120 4423680 4180578 6240000 150 150 150 1250 856 0 0 0 0 37 0 0 0 0 0 +1608 1783858562777009300 DEPTH 49 1 0.66803562647231474 0.82027257240204421 3 10 1 11 1 0 1114 82 2542 23732114 137280 1378.1770172119141 8.7757000000000005 1972.8801000000001 80640 37741 1 0 0.0022231539941415237 1.007166459691355 4096 2048 384 12 96 2542 1920 0 384 1 3844302556 26910512 1 0 4 2 2 2 6 5898240 2949120 3686400 2950956 8236800 150 150 150 486 1606 0 0 0 1 81 0 0 0 0 5 +1609 1783858564769912200 DEPTH 36 1 0.66804074573750993 0.82027257240204421 3 10 3 10 0 0 1115 36 2560 23701411 106560 1376.6594543457031 8.6440999999999999 1915.7973 114240 48418 1 0 0.06306909641165509 0.16426465714391286 4096 2048 384 12 96 2560 1920 0 384 1 3848772664 31380620 1 0 4 3 3 2 4 5898240 4177920 4423680 2950980 6240000 150 150 150 640 1470 0 0 0 2 34 0 0 0 0 0 +1610 1783858565160374900 REFRESH 42 0 0.74391087473602424 0 0 4 0 4 0 0 4096 9 429 3987649 55200 241.19398498535156 1.4343999999999999 388.87020000000001 20160 12177 0 0 0 0.0063466168420994035 4096 2048 64 1 16 429 320 0 64 0 3849518468 32126424 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 80 25 25 223 76 0 0 0 0 9 0 0 0 0 0 +1611 1783858565546958900 REFRESH 18 0 0.63510832955259466 0.9293015332197615 1 13 1 13 0 0 432 9 417 3988473 56160 239.52281188964844 1.4338 324.69029999999998 13440 7949 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 417 320 0 64 0 3850252032 32859988 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 26 25 25 90 251 0 0 0 0 9 0 0 0 0 0 +1612 1783858565989901000 REFRESH 57 0 0.67019711139626414 0.27342419080068137 1 6 1 6 0 0 3928 29 415 3987648 55200 240.92979431152344 1.5027999999999999 343.3091 20160 12150 0 0 0.00072854903494253063 0.48108496736898515 4096 2048 64 1 16 415 320 0 64 0 3850983556 33591512 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 155 185 0 0 0 4 25 0 0 0 0 0 +1613 1783858566372944100 REFRESH 43 0 0.66286008581984712 0.8279386712095399 2 11 2 11 0 0 748 15 420 3988002 55680 240.20172119140625 1.4341999999999999 324.053 20160 14954 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 420 320 0 64 0 3851720180 34328136 1 0 4 3 3 2 4 983040 737280 737280 491682 998400 25 25 25 42 303 0 0 0 0 15 0 0 0 0 0 +1614 1783858566816253400 REFRESH 52 0 0.66674747723270245 0.36712095400340705 1 7 1 7 0 0 1885 14 427 3987600 55200 241.728515625 1.4513 382.98630000000003 20160 12103 0 0 6.9407955424199684e-05 2.1007977112350851 4096 2048 64 1 16 427 320 0 64 0 3852463944 35071900 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 30 264 83 1 0 3 3 7 0 0 0 0 0 +1615 1783858567207968200 REFRESH 10 0 0.65946304312885129 0.64821124361158422 1 10 1 10 0 0 1037 2 428 3988479 56160 240.15872192382812 1.5886 326.21249999999998 13440 8007 0 0 0.0015140858405583919 2.9186252663112193 4096 2048 64 1 16 428 320 0 64 0 3853208728 35816684 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 25 25 25 218 135 0 0 0 0 2 0 0 0 0 0 +1616 1783858567600925600 REFRESH 55 0 0.66491509516521496 0.64054514480408853 2 9 2 9 0 0 1042 17 412 3987595 55200 241.60768127441406 1.4437 327.95400000000001 20160 12233 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 412 320 0 64 0 3853937192 36545148 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 25 182 155 0 0 0 1 16 0 0 0 0 0 +1617 1783858568027269200 REFRESH 46 0 0.65565340786450665 0.37478705281090291 0 8 0 8 0 0 2542 14 418 3987628 55200 241.23289489746094 1.4302999999999999 365.7527 20160 12356 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 418 320 0 64 0 3854671776 37279732 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 31 215 122 1 0 1 2 10 0 0 0 0 0 +1618 1783858568416202400 REFRESH 27 0 0.6254039252652851 0.93696763202725719 0 14 0 14 0 0 842 15 410 3988483 56160 239.08473205566406 1.4855 321.33499999999998 13440 8019 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 410 320 0 64 0 3855398200 38006156 1 0 4 2 3 2 5 983040 491520 737280 491649 1248000 25 25 25 62 273 0 0 0 3 12 0 0 0 0 0 +1619 1783858568749710500 REFRESH 47 0 0.54443769226979799 0.8279386712095399 2 11 2 11 0 0 634 33 418 3987981 55680 240.06655883789062 1.6242000000000001 331.65949999999998 20160 14830 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 418 320 0 64 0 3856132784 38740740 1 0 4 3 3 2 4 983040 737280 737280 491659 998400 25 25 25 215 128 1 0 0 16 16 0 0 0 0 0 +1620 1783858569154760900 REFRESH 33 0 0.66567771232376161 0.36712095400340705 1 7 1 7 0 0 3125 27 420 3987674 55200 242.89689636230469 1.5581 346.9846 20160 12027 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 420 320 0 64 0 3856869408 39477364 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 29 177 164 0 0 2 2 23 0 0 0 0 0 +1621 1783858569560066100 REFRESH 26 0 0.66406300872558943 0.64821124361158422 1 10 1 10 0 0 1651 51 416 3987605 55200 240.400390625 1.4424999999999999 345.98439999999999 20160 12557 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 416 320 0 64 0 3857601952 40209908 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 80 261 0 0 0 4 47 0 0 0 0 0 +1622 1783858569964579600 REFRESH 13 0 0.67042020824872051 0.27342419080068137 1 6 1 6 0 0 3773 46 421 3987644 55200 241.04345703125 1.4309000000000001 344.57459999999998 20160 12246 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 421 320 0 64 0 3858339596 40947552 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 26 178 167 0 0 0 7 39 0 0 0 0 0 +1623 1783858570497180400 REFRESH 20 0 0.66807690282000398 0.26575809199318562 2 5 2 5 0 0 1926 6 428 3987633 55200 241.40492248535156 1.4333 379.4212 20160 12385 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 428 320 0 64 0 3859084380 41692336 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 46 155 177 0 0 0 0 6 0 0 0 0 0 +1624 1783858570831671100 REFRESH 8 0 0.62011385943126518 0.26575809199318562 2 5 2 5 0 0 2280 16 415 3987674 55200 240.47103881835938 1.4596 333.14859999999999 20160 12177 0 0 0.029854325953962514 0.92981257338255718 4096 2048 64 1 16 415 320 0 64 0 3859815904 42423860 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 25 25 26 145 194 0 0 0 2 14 0 0 0 0 0 +1625 1783858571278917200 REFRESH 44 0 0.66591227388154239 0.36712095400340705 1 7 1 7 0 0 1882 14 437 3987611 55200 241.75103759765625 1.4342999999999999 383.64749999999998 20160 12061 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 437 320 0 64 0 3860569868 43177824 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 264 98 0 1 0 0 13 0 0 0 0 0 +1626 1783858571667943700 REFRESH 17 0 0.65019468443554218 0.28109028960817717 0 7 0 7 0 0 3400 11 430 3987657 55200 241.55647277832031 1.4578 387.69400000000002 20160 12306 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 430 320 0 64 0 3861316692 43924648 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 277 78 0 0 1 0 10 0 0 0 0 0 +1627 1783858572107177800 REFRESH 39 0 0.66711417340126422 0.55451448040885853 1 9 1 9 0 0 1498 8 430 3987582 55200 240.76390075683594 1.4470000000000001 379.92899999999997 20160 11847 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 430 320 0 64 0 3862063516 44671472 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 30 204 146 0 0 1 0 7 0 0 0 0 0 +1628 1783858572514154200 REFRESH 51 0 0.66550860860955363 0.91396933560476989 3 11 3 11 0 0 518 11 407 3987972 55680 240.67686462402344 1.4630000000000001 332.07459999999998 20160 15022 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 407 320 0 64 0 3862786880 45394836 1 0 4 3 3 2 4 983040 737280 737280 491651 998400 25 25 28 107 222 0 0 0 1 10 0 0 0 0 0 +1629 1783858572841985200 REFRESH 22 0 0.6557324625551888 0.91396933560476989 3 11 3 11 0 0 458 10 412 3988958 56640 239.25042724609375 1.4500999999999999 326.13780000000003 13440 8262 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 412 320 0 64 0 3863515344 46123300 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 47 289 0 0 0 0 10 0 0 0 0 0 +1630 1783858573170737000 REFRESH 49 0 0.73786336637246153 0.74190800681430991 1 11 1 11 0 0 1132 39 413 3988962 56640 239.81465148925781 1.4303999999999999 326.9753 13440 7974 0 0 0.0022231539941415237 1.007166459691355 4096 2048 64 1 16 413 320 0 64 0 3864244828 46852784 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 59 279 0 0 0 3 36 0 0 0 0 0 +1631 1783858573546410300 REFRESH 34 0 0.66617127527573339 0.8356047700170357 1 12 1 12 0 0 659 13 426 3988470 56160 238.36160278320312 1.4363999999999999 317.56040000000002 13440 8001 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 426 320 0 64 0 3864987572 47595528 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 25 25 25 147 204 0 0 0 0 13 0 0 0 0 0 +1632 1783858573966167800 REFRESH 48 0 0.669437977297342 0.26575809199318562 2 5 2 5 0 0 2221 18 426 3987631 55200 240.72090148925781 1.5461 360.75650000000002 20160 12463 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 426 320 0 64 0 3865730316 48338272 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 31 202 143 0 0 1 3 14 0 0 0 0 0 +1633 1783858574367115500 REFRESH 45 0 0.66763499259627579 0.45315161839863699 2 7 2 7 0 0 1951 45 415 3987596 55200 240.78437805175781 1.4298999999999999 337.8646 20160 12212 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 415 320 0 64 0 3866461840 49069796 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 28 67 270 0 0 0 2 43 0 0 0 0 0 +1634 1783858574765124300 REFRESH 58 0 0.6656524634636275 0.92163543441226559 2 12 2 12 0 0 510 15 418 3988478 56160 239.06509399414062 1.4478 333.0659 13440 7978 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 418 320 0 64 0 3867196424 49804380 1 0 4 2 3 2 5 983040 491520 737280 491678 1248000 25 25 25 121 222 0 0 0 2 13 0 0 0 0 0 +1635 1783858575177357000 REFRESH 31 0 0.66555552720603295 0.3594548551959113 2 6 2 6 0 0 2307 22 423 3987641 55200 240.74855041503906 1.4376 344.99220000000003 20160 12081 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 423 320 0 64 0 3867936108 50544064 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 28 210 135 0 0 1 6 15 0 0 0 0 0 +1636 1783858575574130500 REFRESH 32 0 0.66766037022134694 0.4608177172061329 1 8 1 8 0 0 2597 49 409 3987621 55200 240.4085693359375 1.4318 327.2296 20160 12174 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 409 320 0 64 0 3868661512 51269468 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 27 74 258 0 0 0 5 44 0 0 0 0 0 +1637 1783858575931715800 REFRESH 9 0 0.67062794797560898 0.27342419080068137 1 6 1 6 1 0 2544 45 423 3987662 55200 242.1370849609375 1.5153000000000001 356.26339999999999 20160 12232 0 0 0.00037996934159368305 0.74542487593796813 4096 2048 64 1 16 423 320 0 64 0 3869401196 52009152 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 38 185 150 0 0 0 6 39 0 0 0 0 1 +1638 1783858576365383500 REFRESH 2 0 0.66767906651727627 0.45315161839863699 2 7 2 7 0 0 3044 56 407 3987604 55200 240.54885864257812 1.6039000000000001 359.77249999999998 20160 12266 0 0 0.18292672061028054 2.141080159299098 4096 2048 64 1 16 407 320 0 64 0 3870124560 52732516 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 40 292 0 0 0 1 55 0 0 0 0 0 +1639 1783858577182710500 REFRESH 28 0 0.66563074728101135 0.8279386712095399 2 11 2 11 0 0 607 18 410 3988059 55680 240.28671264648438 1.4327000000000001 500.67469999999997 13440 8154 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 410 320 0 64 0 3870850984 53458940 1 0 4 2 3 3 4 983040 491520 737280 737493 998400 26 25 25 126 208 0 0 0 1 17 0 0 0 0 0 +1640 1783858577565790800 REFRESH 35 0 0.66832473768950418 0.8279386712095399 2 11 2 11 0 0 1032 9 406 3988035 55680 240.07093811035156 1.4354 319.4581 20160 14844 0 0 0.10284194156167628 1.462681166290273 4096 2048 64 1 16 406 320 0 64 0 3871573328 54181284 1 0 4 3 3 2 4 983040 737280 737280 491715 998400 25 25 26 39 291 0 0 0 1 8 0 0 0 0 0 +1641 1783858577956484300 REFRESH 37 0 0.66466219237203961 0.8356047700170357 1 12 1 12 1 0 928 26 412 3987981 55680 240.036865234375 1.4666999999999999 324.83390000000003 20160 14811 0 0 0.010862729234442557 0.57339683641254513 4096 2048 64 1 16 412 320 0 64 0 3872301792 54909748 1 0 4 3 3 2 4 983040 737280 737280 491658 998400 26 25 25 165 171 0 0 0 8 18 0 0 0 0 1 +1642 1783858578379773600 REFRESH 53 0 0.66588251744135363 0.37478705281090291 0 8 0 8 0 0 4096 30 416 3987637 55200 240.48640441894531 1.4294 362.5403 20160 12133 0 0 0 0.22371907724814899 4096 2048 64 1 16 416 320 0 64 0 3873034336 55642292 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 231 110 1 0 0 12 17 0 0 0 0 0 +1643 1783858578767344300 REFRESH 14 0 0.6650770610271779 0.65587734241908002 0 11 0 11 0 0 1491 21 413 3987998 55680 241.54010009765625 1.4393 327.7346 20160 14913 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 413 320 0 64 0 3873763820 56371776 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 75 263 0 0 0 0 21 0 0 0 0 0 +1644 1783858579091730500 REFRESH 7 0 0.66466481799102162 0.8356047700170357 1 12 1 12 1 0 826 34 421 3988067 55680 239.24018859863281 1.4379 322.88189999999997 13440 8039 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 421 320 0 64 0 3874501464 57109420 1 0 4 2 3 3 4 983040 491520 737280 737500 998400 25 25 25 219 127 0 0 0 16 18 0 0 0 0 1 +1645 1783858579467616800 REFRESH 29 0 0.666252058980767 0.82027257240204421 3 10 3 10 0 0 1090 10 420 3988471 56160 238.76197814941406 1.4315 315.31349999999998 13440 7955 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 420 320 0 64 0 3875238088 57846044 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 112 233 0 0 0 0 10 0 0 0 0 0 +1646 1783858579853826900 REFRESH 24 0 0.66619726389128719 1 4 11 4 11 0 0 488 13 398 3988979 56640 239.21151733398438 1.4332 326.23649999999998 13440 8393 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 398 320 0 64 0 3875952272 58560228 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 26 25 25 27 295 0 0 0 0 13 0 0 0 0 0 +1647 1783858580233081000 REFRESH 4 0 0.66719426214513777 0.8356047700170357 1 12 1 12 0 0 265 7 420 3988416 56160 239.29753112792969 1.4448000000000001 316.67200000000003 20160 14744 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 420 320 0 64 0 3876688896 59296852 1 0 6 3 1 1 5 1474560 737280 245760 245856 1248000 27 25 34 89 245 0 0 0 0 7 0 0 0 0 0 +1648 1783858580692178000 REFRESH 30 0 0.66776149756877623 0.4608177172061329 1 8 1 8 0 0 3056 50 413 3987603 55200 240.62873840332031 1.4303999999999999 328.67689999999999 20160 12388 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 413 320 0 64 0 3877418380 60026336 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 130 208 1 0 0 2 47 0 0 0 0 0 +1649 1783858581070946000 REFRESH 19 0 0.66542297563268837 0.8279386712095399 2 11 2 11 0 0 820 10 427 3988484 56160 238.56230163574219 1.4320999999999999 318.43380000000002 13440 7884 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 427 320 0 64 0 3878162144 60770100 1 0 4 2 3 2 5 983040 491520 737280 491683 1248000 25 25 25 192 160 0 0 0 0 10 0 0 0 0 0 +1650 1783858581526277500 REFRESH 50 0 0.66284516131543469 0.64054514480408853 2 9 2 9 0 0 979 8 433 3988480 56160 239.85049438476562 1.4436 383.36059999999998 20160 12388 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 433 320 0 64 0 3878912028 61519984 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 25 276 82 0 0 1 0 7 0 0 0 0 0 +1651 1783858581959679900 REFRESH 25 0 0.66469631904883619 0.4608177172061329 1 8 1 8 0 0 2177 6 426 3987589 55200 241.91612243652344 1.4319 372.15719999999999 20160 12169 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 426 320 0 64 0 3879654772 62262728 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 267 84 0 0 0 0 6 0 0 0 0 0 +1652 1783858582346605900 REFRESH 15 0 0.66641311910920975 0.91396933560476989 3 11 3 11 0 0 310 10 413 3988484 56160 238.70156860351562 1.4397 319.25839999999999 13440 7997 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 413 320 0 64 0 3880384256 62992212 1 0 5 2 2 2 5 1228800 491520 491520 491682 1248000 25 25 25 106 232 0 0 0 0 10 0 0 0 0 0 +1653 1783858582744108100 REFRESH 36 0 0.66473468712269501 0.82027257240204421 3 10 3 10 0 0 1115 7 424 3988000 55680 241.52780151367188 1.4967999999999999 332.81079999999997 20160 14908 0 0 0.06306909641165509 0.16426465714391286 4096 2048 64 1 16 424 320 0 64 0 3881124960 63732916 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 25 246 103 0 0 0 0 7 0 0 0 0 0 +1654 1783858583165632500 REFRESH 41 0 0.6671342925478545 0.55451448040885853 1 9 1 9 0 0 1937 29 414 3987606 55200 240.19660949707031 1.4664999999999999 354.72980000000001 20160 12250 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 3881855464 64463420 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 29 132 203 0 0 0 1 28 0 0 0 0 0 +1655 1783858583618020500 REFRESH 21 0 0.6671429035955182 0.56218057921635434 0 10 0 10 0 0 2286 15 419 3987588 55200 245.87059020996094 1.4458 379.8245 20160 11932 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 419 320 0 64 0 3882591068 65199024 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 27 228 114 0 0 1 1 13 0 0 0 0 0 +1656 1783858584038001900 REFRESH 23 0 0.66798399203241954 0.74190800681430991 1 11 1 11 0 0 3309 16 419 3988071 55680 259.41708374023438 1.4560999999999999 346.23160000000001 13440 7913 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 419 320 0 64 0 3883326672 65934628 1 0 4 2 3 3 4 983040 491520 737280 737507 998400 25 25 25 148 196 0 0 0 1 15 0 0 0 0 0 +1657 1783858584437689100 REFRESH 12 0 0.66709764522080772 0.63287904599659284 3 8 3 8 0 0 1228 29 421 3987980 55680 243.60549926757812 1.4806999999999999 339.43799999999999 20160 13665 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 421 320 0 64 0 3884064316 66672272 1 0 4 3 3 2 4 983040 737280 737280 491658 998400 25 25 33 85 253 0 0 1 1 27 0 0 0 0 0 +1658 1783858586086397000 REFRESH 40 0 0.6659900100066154 0.64821124361158422 1 10 1 10 0 0 1512 17 407 3987990 55680 227.69255065917969 1.4447000000000001 1528.1606999999999 20160 14891 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 407 320 0 64 0 3884787760 287064 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 25 33 299 0 0 0 1 16 0 0 0 0 0 +1659 1783858586464102300 REFRESH 38 0 0.66591508587689208 0.55451448040885853 1 9 1 9 0 0 1897 20 421 3987607 55200 228.82611083984375 1.4544999999999999 319.44830000000002 20160 11945 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 421 320 0 64 0 3885525404 1024708 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 34 191 146 0 0 0 4 16 0 0 0 0 0 +1660 1783858586909695800 REFRESH 5 0 0.66851001032892932 0.8279386712095399 2 11 2 11 0 0 796 39 411 3987971 55680 241.73158264160156 1.4352 321.685 20160 14956 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 411 320 0 64 0 3886252848 1752152 1 0 4 3 3 2 4 983040 737280 737280 491650 998400 25 25 25 33 303 0 0 0 6 33 0 0 0 0 0 +1661 1783858587365970700 REFRESH 11 0 0.66606533566874226 0.37478705281090291 0 8 0 8 0 0 2084 14 422 3988023 55680 235.35923767089844 1.4319999999999999 393.10700000000003 20160 12128 0 0 0 0.76084698769971526 4096 2048 64 1 16 422 320 0 64 0 3886991512 2490816 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 29 253 90 0 0 1 3 10 0 0 0 0 0 +1662 1783858587769998000 REFRESH 54 0 0.66787871194558224 0.4608177172061329 1 8 1 8 0 0 1073 15 422 3987608 55200 225.09260559082031 1.4453 332.7362 20160 11913 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 422 320 0 64 0 3887730176 3229480 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 26 100 246 0 0 1 1 13 0 0 0 0 0 +1663 1783858588174596900 REFRESH 16 0 0.66602996416434435 0.3594548551959113 2 6 2 6 0 0 2873 22 414 3987629 55200 228.61415100097656 1.5331999999999999 327.97030000000001 20160 12154 0 0 0.0064244719359429908 0.26737652546205831 4096 2048 64 1 16 414 320 0 64 0 3888460680 3959984 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 117 222 0 0 0 1 21 0 0 0 0 0 +1664 1783858588612629600 REFRESH 1 0 0.66661226564132114 0.36712095400340705 1 7 1 7 0 0 2671 26 422 3987641 55200 240.95744323730469 1.4809000000000001 370.99889999999999 20160 12086 0 0 0.023597944674551518 1.9243582429932711 4096 2048 64 1 16 422 320 0 64 0 3889199344 4698648 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 31 194 147 0 0 1 2 23 0 0 0 0 0 +1665 1783858589075493300 REFRESH 3 0 0.6667596531140122 0.64054514480408853 2 9 2 9 0 0 1038 12 420 3987992 55680 240.85504150390625 1.4375 342.9665 20160 11706 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 420 320 0 64 0 3889935968 5435272 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 26 264 80 0 0 1 0 11 0 0 0 0 0 +1666 1783858589445694200 REFRESH 0 0 0.66767737228882773 0.8279386712095399 2 11 2 11 0 0 824 7 426 3988481 56160 222.69235229492188 1.4803999999999999 306.78559999999999 13440 7837 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 426 320 0 64 0 3890678712 6178016 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 241 110 0 0 0 1 6 0 0 0 0 0 +1667 1783858589816103400 REFRESH 6 0 0.66031135191168944 0.91396933560476989 3 11 3 11 0 0 375 7 418 3988944 56640 222.47116088867188 1.4393 306.97120000000001 13440 9219 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 418 320 0 64 0 3891413296 6912600 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 43 300 0 0 0 1 6 0 0 0 0 0 +1668 1783858590230420600 REFRESH 56 0 0.66895472666879918 0.26575809199318562 2 5 2 5 0 0 4096 13 430 3987628 55200 227.03514099121094 1.4337 357.50580000000002 20160 12327 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 430 320 0 64 0 3892160120 7659424 1 0 4 3 3 3 3 983040 737280 737280 737483 748800 25 25 31 272 77 0 0 0 0 13 0 0 0 0 0 +1669 1783858592490946200 DEPTH 42 1 0.8329681968755025 0 0 4 0 4 0 0 4096 22 2615 23677887 81600 1315.8710021972656 8.7217000000000002 2196.1547999999998 120960 57862 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2615 1920 0 384 1 3896686328 12185632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 404 150 150 1377 534 0 0 0 0 22 0 0 0 0 0 +1670 1783858594764893000 DEPTH 49 1 0.75462500399499244 0.74190800681430991 1 11 1 11 0 0 1151 101 2547 23742648 147840 1351.5888519287109 9.2400000000000002 2194.1093000000001 80640 37766 1 0 0.0022231539941415237 1.007166459691355 4096 2048 384 12 96 2547 1920 0 384 1 3901143176 16642480 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 150 150 150 163 1934 0 0 0 0 101 0 0 0 0 0 +1671 1783858597102015700 DEPTH 9 1 0.66842253656525141 0.27342419080068137 1 6 1 6 1 0 2564 93 2542 23691413 96000 1372.1886749267578 8.7051999999999996 2271.8440999999998 120960 58325 1 0 0.00036070412243468944 0.55091992866223582 4096 2048 384 12 96 2542 1920 0 384 1 3905594924 21094228 1 0 4 3 3 2 4 5898240 4423680 4423680 3442823 5491200 150 150 229 416 1597 0 0 7 2 84 0 0 0 0 2 +1672 1783858599257741700 DEPTH 13 1 0.6682861589432203 0.27342419080068137 1 6 1 6 0 0 3784 60 2576 23677679 81600 1328.4158172607422 8.7170000000000005 2154.1631000000002 120960 57641 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2576 1920 0 384 1 3910081352 25580656 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 156 756 1364 2 1 2 0 55 0 0 0 0 0 +1673 1783858601591824400 DEPTH 57 1 0.66816246612796504 0.27342419080068137 1 6 1 6 1 0 3954 95 2534 23677681 81600 1332.4165191650391 8.7081 2118.473 120960 57488 1 0 0.00072839667803945344 0.46567392240039174 4096 2048 384 12 96 2534 1920 0 384 1 3914524940 30024244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 150 629 1455 0 0 2 3 90 0 0 0 0 1 +1674 1783858603778538300 DEPTH 17 1 0.6680703098857963 0.28109028960817717 0 7 0 7 0 0 3418 54 2597 23677758 81600 1335.3215789794922 8.6191999999999993 2185.2186000000002 120960 58724 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2597 1920 0 384 1 3919032788 34532092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 150 1271 876 1 0 5 0 48 0 0 0 0 0 +1675 1783858605758983600 DEPTH 8 1 0.66801887715267805 0.26575809199318562 2 5 2 5 1 0 2291 66 2549 23677695 81600 1331.8799133300781 8.6400000000000006 1978.829 120960 57972 1 0 0.030102368301037477 0.92558125821786852 4096 2048 384 12 96 2549 1920 0 384 1 3923491676 38990980 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 156 591 1502 0 0 0 4 62 0 0 0 0 1 +1676 1783858607984102100 DEPTH 48 1 0.66736260599053743 0.26575809199318562 2 5 2 5 0 0 2229 44 2581 23677705 81600 1325.0324401855469 8.6763999999999992 2157.2525000000001 120960 59680 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2581 1920 0 384 1 3927983204 43482508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 154 790 1337 1 0 8 2 33 0 0 0 0 0 +1677 1783858610201720800 DEPTH 2 1 0.66490916942351941 0.45315161839863699 2 7 2 7 1 0 3078 133 2540 23677402 81600 1326.6585388183594 8.6579999999999995 2127.7321000000002 120960 60795 1 0 0.27733999028252415 2.0908136996316111 4096 2048 384 12 96 2540 1920 0 384 1 3932432912 47932216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 150 150 150 182 1908 0 0 0 1 132 0 0 0 0 1 +1678 1783858612450954800 DEPTH 45 1 0.66491571959394946 0.45315161839863699 2 7 2 7 0 0 1962 32 2546 23677447 81600 1322.6303100585938 8.6144999999999996 2122.8063999999999 120960 58599 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2546 1920 0 384 1 3936888740 52388044 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 158 217 1871 0 0 1 3 28 0 0 0 0 0 +1679 1783858614668737600 DEPTH 32 1 0.66492388503156841 0.4608177172061329 1 8 1 8 0 0 2618 89 2549 23677516 81600 1306.1807861328125 8.8300000000000001 2080.6943999999999 120960 57458 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2549 1920 0 384 1 3941347628 56846932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426544 4492800 150 150 156 198 1895 0 0 2 2 85 0 0 0 0 0 +1680 1783858616886651700 DEPTH 30 1 0.66493204642862269 0.4608177172061329 1 8 1 8 0 0 3079 105 2516 23677356 81600 1302.0712890625 8.6303999999999998 2076.9122000000002 120960 60983 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2516 1920 0 384 1 3945772856 61272160 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 281 1785 1 0 0 1 103 0 0 0 0 0 +1681 1783858619190977100 DEPTH 52 1 0.66483525822404843 0.36712095400340705 1 7 1 7 1 0 1898 49 2587 23677490 81600 1330.5180053710938 11.497299999999999 2229.2800999999999 120960 56585 1 0 6.8354824990224765e-05 2.0446519240449681 4096 2048 384 12 96 2587 1920 0 384 1 3950270504 65769808 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 168 1500 619 2 1 1 0 45 0 0 0 0 1 +1682 1783858622392768700 DEPTH 35 1 0.66399058416029011 0.8279386712095399 2 11 2 11 1 0 1059 121 2477 23698514 103680 1314.3133239746094 9.3488000000000007 3132.0738000000001 120960 68102 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 2477 1920 0 384 1 3954656032 3047284 1 0 4 3 3 2 4 5898240 4423680 4423680 2950978 5990400 150 150 150 196 1831 0 0 0 7 114 0 0 0 0 2 +1683 1783858624804706200 DEPTH 44 1 0.66380033546183936 0.36712095400340705 1 7 1 7 0 0 1896 50 2640 23677583 81600 1334.6213073730469 8.713099999999999 2340.0958999999998 120960 56853 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2640 1920 0 384 1 3959207740 7598992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1381 809 0 0 1 0 49 0 0 0 0 0 +1684 1783858627099329200 DEPTH 53 1 0.66344649513701981 0.37478705281090291 0 8 0 8 0 0 4096 64 2556 23677518 81600 1302.0662078857422 8.6384999999999987 2213.5677000000001 120960 56692 1 0 0 0.22371907724814899 4096 2048 384 12 96 2556 1920 0 384 1 3963673768 12065020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 150 929 1177 4 0 0 5 55 0 0 0 0 0 +1685 1783858629338653600 DEPTH 42 1 0.74278845314201136 0 0 4 0 4 0 0 4096 23 2595 23677806 81600 1312.3155822753906 8.7820999999999998 2237.4144000000001 120960 46616 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2595 1920 0 384 1 3968179576 16570828 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 349 150 150 1454 492 0 0 0 0 23 0 0 0 0 0 +1686 1783858631249870200 DEPTH 5 1 0.66502776762061044 0.8279386712095399 2 11 2 11 0 0 806 44 2559 23698524 103680 1292.8010101318359 8.7737999999999996 1846.7447 120960 67888 1 0 0.013882121795455482 0.46345450206338867 4096 2048 384 12 96 2559 1920 0 384 1 3972648664 21039916 1 0 4 3 3 2 4 5898240 4423680 4423680 2950990 5990400 150 150 150 202 1907 1 0 2 1 40 0 0 0 0 0 +1687 1783858633273145700 DEPTH 23 1 0.66467058464612672 0.74190800681430991 1 11 1 11 0 0 3320 43 2542 23699584 103680 1310.3751220703125 8.7568999999999999 1867.2773999999999 80640 37515 1 0 0.019300925759138894 0.7442759509966006 4096 2048 384 12 96 2542 1920 0 384 1 3977100412 25491664 1 0 4 2 3 3 4 5898240 2949120 4423680 4426593 5990400 150 150 150 610 1482 0 0 0 0 43 0 0 0 0 0 +1688 1783858635518455300 DEPTH 21 1 0.66414010104185439 0.56218057921635434 0 10 0 10 0 0 2298 48 2565 23677298 81600 1300.664306640625 8.9558 2180.7986000000001 120960 57574 1 0 6.2105464870289441e-05 1.010425988904653 4096 2048 384 12 96 2565 1920 0 384 1 3981575620 29966872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426296 4492800 150 150 162 977 1126 0 0 6 0 42 0 0 0 0 0 +1689 1783858637699661800 DEPTH 41 1 0.66414844837474396 0.55451448040885853 1 9 1 9 0 0 1951 62 2562 23677401 81600 1316.1154632568359 8.6766000000000005 2119.3054999999999 120960 57359 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2562 1920 0 384 1 3986047768 34439020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 167 527 1568 5 0 0 0 57 0 0 0 0 0 +1690 1783858639583353500 DEPTH 12 1 0.66405425911067839 0.63287904599659284 3 8 3 8 0 0 1233 56 2637 23680135 84480 1307.1370391845703 8.6435999999999993 1827.02 120960 67687 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2637 1920 0 384 1 3990596416 38987668 1 0 4 3 3 3 3 5898240 4423680 4423680 4180579 4742400 150 150 157 808 1372 0 0 1 6 49 0 0 0 0 0 +1691 1783858641738972500 DEPTH 40 1 0.6635704699552003 0.64821124361158422 1 10 1 10 0 0 1527 38 2548 23698515 103680 1294.4507446289062 8.6745000000000001 2096.5445 120960 67953 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2548 1920 0 384 1 3995054284 43445536 1 0 4 3 3 2 4 5898240 4423680 4423680 2950976 5990400 150 150 152 254 1842 1 0 0 0 37 0 0 0 0 0 +1692 1783858643959390500 DEPTH 33 1 0.66348341064846594 0.36712095400340705 1 7 1 7 0 0 3142 72 2560 23677693 81600 1337.206787109375 8.6409000000000002 2152.1325999999999 120960 57435 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2560 1920 0 384 1 3999524392 47915644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 150 150 173 611 1476 0 1 1 1 69 0 0 0 0 0 +1693 1783858646004208200 DEPTH 49 1 0.72233466171166272 0.74190800681430991 1 11 1 11 1 0 1166 101 2520 23742597 147840 1326.0533752441406 8.672699999999999 1964.9774 80640 30304 1 0 0.0031717429219142073 0.94504741460354302 4096 2048 384 12 96 2520 1920 0 384 1 4003953700 52344952 1 0 4 2 2 2 6 5898240 2949120 2949120 2950866 8985600 150 150 150 226 1844 0 0 0 1 100 0 0 0 0 1 +1694 1783858648339993200 DEPTH 56 1 0.6668142413819711 0.26575809199318562 2 5 2 5 0 0 4096 47 2583 23677806 81600 1357.9622497558594 9.4004999999999992 2267.4917999999998 120960 58508 1 0 0.063514982263539271 0.50089023942192745 4096 2048 384 12 96 2583 1920 0 384 1 4008447268 56838520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426521 4492800 150 150 185 1482 616 0 4 0 0 43 0 0 0 0 0 +1695 1783858650603378500 DEPTH 54 1 0.66505398514850811 0.4608177172061329 1 8 1 8 0 0 1082 46 2539 23677453 81600 1340.4979248046875 8.7965 2194.6419000000001 120960 56130 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2539 1920 0 384 1 4012895956 61287208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 156 377 1706 0 0 2 1 43 0 0 0 0 0 +1696 1783858653067254300 DEPTH 1 1 0.66403830431736932 0.36712095400340705 1 7 1 7 1 0 2711 129 2612 23677543 81600 1420.2124481201172 8.7977999999999987 2354.1686 120960 57608 1 0 0.024960359520944751 1.931458602702079 4096 2048 384 12 96 2612 1920 0 384 1 4017419104 65810356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 575 1587 0 0 0 0 129 0 0 0 0 1 +1697 1783858656640279800 DEPTH 3 1 0.66374640827128517 0.64054514480408853 2 9 2 9 0 0 1038 30 2566 23677361 81600 1377.5585327148438 9.3879000000000001 3491.0877 120960 56129 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2566 1920 0 384 1 4021895412 3177844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 156 1207 903 0 0 1 3 26 0 0 0 0 0 +1698 1783858658901069600 DEPTH 11 1 0.66358285429917885 0.37478705281090291 0 8 0 8 0 0 2106 56 2570 23687548 92160 1341.7297668457031 8.6374000000000013 2199.2417 120960 57461 1 0 0 0.76084698769971526 4096 2048 384 12 96 2570 1920 0 384 1 4026375720 7658152 1 0 4 3 3 3 3 5898240 4423680 4423680 3688618 5241600 150 150 161 1171 938 0 2 1 0 53 0 0 0 0 0 +1699 1783858660868580000 DEPTH 16 1 0.66354444429198711 0.3594548551959113 2 6 2 6 1 0 2911 120 2551 23677551 81600 1323.4362487792969 8.6552000000000007 1906.5034000000001 120960 58244 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2551 1920 0 384 1 4030836648 12119080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 529 1572 1 0 1 3 115 0 0 0 0 1 +1700 1783858663059545900 DEPTH 46 1 0.66354501194154403 0.37478705281090291 0 8 0 8 0 0 2551 41 2576 23677561 81600 1323.0858306884766 8.6746999999999996 2118.5628999999999 120960 58828 1 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 384 12 96 2576 1920 0 384 1 4035323076 16605508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 174 974 1128 1 0 10 1 29 0 0 0 0 0 +1701 1783858663418511400 REFRESH 34 0 0.66329527105864217 0.8356047700170357 1 12 1 12 0 0 662 18 424 3988097 55680 224.25907897949219 1.4301999999999999 296.29020000000003 13440 7961 0 0 0.00024493839120035536 1.8115268921139556 4096 2048 64 1 16 424 320 0 64 0 4036063780 17346212 1 0 4 2 3 3 4 983040 491520 737280 737536 998400 25 25 25 30 319 0 0 0 1 17 0 0 0 0 0 +1702 1783858663725100400 REFRESH 49 0 0.57103813175064333 0.74190800681430991 1 11 1 11 0 0 1199 55 410 3988968 56640 225.217529296875 1.4366000000000001 305.09789999999998 13440 7938 0 0 0.0031717429219142073 0.94504741460354302 4096 2048 64 1 16 410 320 0 64 0 4036790204 18072636 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 50 285 0 0 0 0 55 0 0 0 0 0 +1703 1783858664044735200 REFRESH 3 0 0.47058920194140913 0.64054514480408853 2 9 2 9 0 0 1041 20 412 3987610 55200 226.38592529296875 1.4398 318.40719999999999 20160 11902 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 412 320 0 64 0 4037518668 18801100 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 29 158 175 0 0 0 5 15 0 0 0 0 0 +1704 1783858664404431200 REFRESH 58 0 0.66255701612774498 0.92163543441226559 2 12 2 12 0 0 513 13 415 3988479 56160 225.09158325195312 1.4311 301.59710000000001 13440 8060 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 415 320 0 64 0 4038250192 19532624 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 136 204 0 0 0 0 13 0 0 0 0 0 +1705 1783858664763563600 REFRESH 35 0 0.64102073872004983 0.8279386712095399 2 11 2 11 0 0 1062 14 407 3987985 55680 226.95834350585938 1.5206999999999999 301.05579999999998 20160 14853 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 407 320 0 64 0 4038973556 20255988 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 26 133 198 0 0 0 2 12 0 0 0 0 0 +1706 1783858665119091400 REFRESH 56 0 0.53461562185747757 0.26575809199318562 2 5 2 5 0 0 4096 15 426 3987646 55200 227.43962097167969 1.4286000000000001 354.11090000000002 20160 12502 0 0 0.063514982263539271 0.50089023942192745 4096 2048 64 1 16 426 320 0 64 0 4039716300 20998732 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 32 265 79 0 0 0 1 14 0 0 0 0 0 +1707 1783858665501554300 REFRESH 26 0 0.65927493020044881 0.64821124361158422 1 10 1 10 0 0 1664 29 417 3987599 55200 226.53132629394531 1.4329000000000001 324.4572 20160 12372 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 417 320 0 64 0 4040449864 21732296 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 84 258 0 0 0 2 27 0 0 0 0 0 +1708 1783858665877487700 REFRESH 38 0 0.6631702865444844 0.55451448040885853 1 9 1 9 0 0 1902 22 422 3987589 55200 226.73919677734375 1.4283999999999999 313.66660000000002 20160 12038 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 422 320 0 64 0 4041188528 22470960 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 31 194 147 0 0 0 1 21 0 0 0 0 0 +1709 1783858666282058400 REFRESH 57 0 0.66694317389842839 0.27342419080068137 1 6 1 6 0 0 3958 20 416 3987640 55200 228.27725219726562 1.6046 331.76990000000001 20160 12185 0 0 0.00072839667803945344 0.46567392240039174 4096 2048 64 1 16 416 320 0 64 0 4041921072 23203504 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 152 189 0 0 0 2 18 0 0 0 0 0 +1710 1783858666663048400 REFRESH 47 0 0.66164758850797523 0.8279386712095399 2 11 2 11 0 0 636 13 421 3988002 55680 226.59788513183594 1.4420999999999999 313.50119999999998 20160 14721 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 421 320 0 64 0 4042658716 23941148 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 211 135 0 0 0 4 9 0 0 0 0 0 +1711 1783858666986564400 REFRESH 41 0 0.63113975139759282 0.55451448040885853 1 9 1 9 0 0 1963 27 419 3987623 55200 226.96754455566406 1.4293 322.28140000000002 20160 12016 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 419 320 0 64 0 4043394320 24676752 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 30 127 212 0 0 0 0 27 0 0 0 0 0 +1712 1783858667298485200 REFRESH 12 0 0.63099574053677188 0.63287904599659284 3 8 3 8 0 0 1251 36 432 3987574 55200 226.72895812988281 1.4774 310.61579999999998 20160 12407 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 432 320 0 64 0 4044143184 25425616 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 40 145 197 0 0 0 10 26 0 0 0 0 0 +1713 1783858667664699500 REFRESH 18 0 0.66161308699735588 0.9293015332197615 1 13 1 13 0 0 432 10 414 3988484 56160 226.62042236328125 1.4336 303.51159999999999 13440 7999 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 414 320 0 64 0 4044873688 26156120 1 0 4 2 3 2 5 983040 491520 737280 491682 1248000 26 25 25 103 235 0 0 0 0 10 0 0 0 0 0 +1714 1783858668141559900 REFRESH 25 0 0.65865966566584211 0.4608177172061329 1 8 1 8 0 0 2180 8 425 3987613 55200 227.57603454589844 1.4366000000000001 353.74610000000001 20160 12116 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 425 320 0 64 0 4045615412 26897844 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 26 270 79 0 0 0 0 8 0 0 0 0 0 +1715 1783858668567595400 REFRESH 52 0 0.66277575187592896 0.36712095400340705 1 7 1 7 0 0 1899 13 425 3987673 55200 226.85302734375 1.4298 349.50720000000001 20160 12216 0 0 6.8354824990224765e-05 2.0446519240449681 4096 2048 64 1 16 425 320 0 64 0 4046357136 27639568 1 0 4 3 3 3 3 983040 737280 737280 737548 748800 25 25 28 263 84 0 1 0 3 9 0 0 0 0 0 +1716 1783858668893844800 REFRESH 33 0 0.65097340606603571 0.36712095400340705 1 7 1 7 0 0 3144 17 426 3987640 55200 228.23117065429688 1.4329000000000001 324.87090000000001 20160 12341 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 426 320 0 64 0 4047099880 28382312 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 31 158 187 0 0 0 0 17 0 0 0 0 0 +1717 1783858669241562000 REFRESH 1 0 0.6214852833185277 0.36712095400340705 1 7 1 7 0 0 2712 20 424 3987633 55200 227.60960388183594 1.4319999999999999 346.50560000000002 20160 12126 0 0 0.024960359520944751 1.931458602702079 4096 2048 64 1 16 424 320 0 64 0 4047840584 29123016 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 31 201 142 0 0 0 2 18 0 0 0 0 0 +1718 1783858669660494900 REFRESH 40 0 0.66110253294417276 0.64821124361158422 1 10 1 10 0 0 1533 13 413 3988017 55680 232.06809997558594 1.4319 351.06420000000003 20160 14777 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 413 320 0 64 0 4048570068 29852500 1 0 4 3 3 2 4 983040 737280 737280 491694 998400 25 25 26 97 240 0 0 0 1 12 0 0 0 0 0 +1719 1783858670056815400 REFRESH 32 0 0.66223477635130801 0.4608177172061329 1 8 1 8 0 0 2644 48 414 3987637 55200 234.23487854003906 1.4723999999999999 322.4203 20160 12040 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 414 320 0 64 0 4049300572 30583004 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 28 78 258 0 0 0 7 41 0 0 0 0 0 +1720 1783858670447560500 REFRESH 14 0 0.66235043561785101 0.65587734241908002 0 11 0 11 0 0 1499 26 408 3987610 55200 227.40582275390625 1.446 336.6703 20160 14496 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 408 320 0 64 0 4050024956 31307388 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 25 25 308 0 0 0 0 26 0 0 0 0 0 +1721 1783858670820824200 REFRESH 37 0 0.66176499152872104 0.8356047700170357 1 12 1 12 1 0 930 26 415 3987986 55680 232.23091125488281 1.4361999999999999 311.51029999999997 20160 14659 0 0 0.010862729221189079 0.55911380652857223 4096 2048 64 1 16 415 320 0 64 0 4050756480 32038912 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 26 25 25 159 180 0 0 0 5 21 0 0 0 0 1 +1722 1783858671181425200 REFRESH 51 0 0.66263501566609628 0.91396933560476989 3 11 3 11 0 0 522 17 412 3987984 55680 232.83200073242188 1.4280999999999999 303.24799999999999 20160 14583 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 412 320 0 64 0 4051484944 32767376 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 25 25 29 165 168 0 1 0 5 11 0 0 0 0 0 +1723 1783858671558529800 REFRESH 45 0 0.6622663519061891 0.45315161839863699 2 7 2 7 0 0 1985 47 415 3987608 55200 227.7550048828125 1.4419 318.52679999999998 20160 11985 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 415 320 0 64 0 4052216468 33498900 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 28 72 265 0 0 0 6 41 0 0 0 0 0 +1724 1783858671942860400 REFRESH 16 0 0.66108854317768395 0.3594548551959113 2 6 2 6 0 0 2919 24 415 3987634 55200 229.20704650878906 1.4649000000000001 325.14479999999998 20160 12056 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 415 320 0 64 0 4052947992 34230424 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 127 213 0 0 0 1 23 0 0 0 0 0 +1725 1783858672359325100 REFRESH 21 0 0.66125337973281373 0.56218057921635434 0 10 0 10 0 0 2300 26 426 3987588 55200 229.97811889648438 1.4466000000000001 348.54230000000001 20160 12078 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 426 320 0 64 0 4053690736 34973168 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 27 237 112 0 0 3 10 13 0 0 0 0 0 +1726 1783858672723004100 REFRESH 29 0 0.66347040072772134 0.82027257240204421 3 10 3 10 0 0 1090 5 419 3988466 56160 224.22119140625 1.4326000000000001 301.27839999999998 13440 7896 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 419 320 0 64 0 4054426340 35708772 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 25 25 25 117 227 0 0 0 0 5 0 0 0 0 0 +1727 1783858673160331800 REFRESH 44 0 0.66160971467169616 0.36712095400340705 1 7 1 7 0 0 1896 11 440 3987682 55200 230.09689331054688 1.5832999999999999 367.12430000000001 20160 12066 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 440 320 0 64 0 4055183364 36465796 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 251 114 0 0 0 0 11 0 0 0 0 0 +1728 1783858673536750700 REFRESH 6 0 0.65579659968161286 0.91396933560476989 3 11 3 11 0 0 375 5 417 3988945 56640 223.52896118164062 1.4353 305.91449999999998 13440 9149 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 417 320 0 64 0 4055916928 37199360 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 45 297 0 0 0 0 5 0 0 0 0 0 +1729 1783858673925893200 REFRESH 13 0 0.66625263871981799 0.27342419080068137 1 6 1 6 0 0 3799 37 421 3987662 55200 227.38021850585938 1.4306000000000001 329.49489999999997 20160 12300 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 421 320 0 64 0 4056654572 37937004 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 26 186 159 1 0 0 6 30 0 0 0 0 0 +1730 1783858674348552100 REFRESH 46 0 0.66107855313566488 0.37478705281090291 0 8 0 8 0 0 2555 16 424 3987641 55200 228.32537841796875 1.4359 358.63209999999998 20160 12318 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 424 320 0 64 0 4057395276 38677708 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 31 227 116 0 0 2 4 10 0 0 0 0 0 +1731 1783858674725074100 REFRESH 24 0 0.66350638074576951 1 4 11 4 11 0 0 488 14 400 3988949 56640 225.40185546875 1.4375 306.07769999999999 13440 8443 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 400 320 0 64 0 4058111500 39393932 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 28 296 0 0 0 0 14 0 0 0 0 0 +1732 1783858675078731900 REFRESH 7 0 0.66183930259792145 0.8356047700170357 1 12 1 12 0 0 830 17 420 3988109 55680 225.13880920410156 1.4295 297.36239999999998 13440 8057 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 420 320 0 64 0 4058848124 40130556 1 0 4 2 3 3 4 983040 491520 737280 737545 998400 25 25 25 225 120 0 0 0 1 16 0 0 0 0 0 +1733 1783858675487470400 REFRESH 30 0 0.66234502357858283 0.4608177172061329 1 8 1 8 0 0 3101 57 409 3987600 55200 226.59584045410156 1.4308000000000001 324.1223 20160 11893 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 409 320 0 64 0 4059573528 40855960 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 124 210 0 0 0 8 49 0 0 0 0 0 +1734 1783858675852569600 REFRESH 22 0 0.66348815488237856 0.91396933560476989 3 11 3 11 0 0 459 10 413 3988477 56160 228.05827331542969 1.5992999999999999 312.38170000000002 20160 14904 0 0 0.0084510407612466993 0.6742119049311508 4096 2048 64 1 16 413 320 0 64 0 4060303012 41585444 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 30 308 0 0 0 0 10 0 0 0 0 0 +1735 1783858676264577800 REFRESH 15 0 0.66363471277200148 0.91396933560476989 3 11 3 11 0 0 310 11 417 3988485 56160 227.09965515136719 1.4741 303.08510000000001 20160 13848 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 417 320 0 64 0 4061036576 42319008 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 25 117 225 0 0 0 0 11 0 0 0 0 0 +1736 1783858676644281800 REFRESH 5 0 0.66185796533691088 0.8279386712095399 2 11 2 11 0 0 810 16 420 3988007 55680 225.28717041015625 1.4458 320.70850000000002 20160 14748 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 420 320 0 64 0 4061773200 43055632 1 0 4 3 3 2 4 983040 737280 737280 491687 998400 25 25 25 140 205 0 0 0 4 12 0 0 0 0 0 +1737 1783858677038161900 REFRESH 48 0 0.66545185684291019 0.26575809199318562 2 5 2 5 0 0 2232 16 426 3987635 55200 227.230712890625 1.4487000000000001 333.96199999999999 20160 12558 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 426 320 0 64 0 4062515944 43798376 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 31 204 141 0 0 0 0 16 0 0 0 0 0 +1738 1783858677401225000 REFRESH 23 0 0.66162310351580289 0.74190800681430991 1 11 1 11 0 0 3323 22 414 3988083 55680 227.23379516601562 1.4306000000000001 304.17180000000002 13440 7894 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 414 320 0 64 0 4063246448 44528880 1 0 4 2 3 3 4 983040 491520 737280 737517 998400 25 25 25 189 150 0 0 0 4 18 0 0 0 0 0 +1739 1783858677755151100 REFRESH 19 0 0.66280382604747701 0.8279386712095399 2 11 2 11 0 0 821 10 428 3988464 56160 225.43667602539062 1.5809 301.04750000000001 13440 7896 0 0 0.032475909515599824 0.54029676571176888 4096 2048 64 1 16 428 320 0 64 0 4063991232 45273664 1 0 4 2 3 2 5 983040 491520 737280 491655 1248000 25 25 25 179 174 0 0 0 0 10 0 0 0 0 0 +1740 1783858678141078900 REFRESH 31 0 0.66363060061238532 0.3594548551959113 2 6 2 6 0 0 2314 20 421 3987595 55200 226.6982421875 1.4342999999999999 328.30500000000001 20160 11977 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 4064728876 46011308 1 0 4 3 3 3 3 983040 737280 737280 737485 748800 25 25 28 211 132 0 0 0 0 20 0 0 0 0 0 +1741 1783858678596326000 REFRESH 20 0 0.66287288481523254 0.26575809199318562 2 5 2 5 0 0 1929 11 433 3987670 55200 226.87539672851562 1.4298999999999999 348.02140000000003 20160 12320 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 433 320 0 64 0 4065478760 46761192 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 47 161 175 0 0 2 1 8 0 0 0 0 0 +1742 1783858678941451700 REFRESH 11 0 0.66121601237299665 0.37478705281090291 0 8 0 8 1 0 2108 24 422 3987635 55200 226.57644653320312 1.4295 343.85730000000001 20160 12155 0 0 0 0.75650727599635714 4096 2048 64 1 16 422 320 0 64 0 4066217424 47499856 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 38 209 125 0 0 0 7 17 0 0 0 0 1 +1743 1783858679348066200 REFRESH 50 0 0.65953326694954195 0.64054514480408853 2 9 2 9 0 0 982 8 438 3988477 56160 226.45452880859375 1.4855 344.61709999999999 20160 12379 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 438 320 0 64 0 4066972408 48254840 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 279 84 0 0 1 0 7 0 0 0 0 0 +1744 1783858679760384800 REFRESH 42 0 0.83277340186989068 0 0 4 0 4 0 0 4096 11 430 3987669 55200 227.09248352050781 1.4314 357.85879999999997 20160 12085 0 0 0 0.0063466168420994035 4096 2048 64 1 16 430 320 0 64 0 4067719232 49001664 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 80 25 25 221 79 0 0 0 0 11 0 0 0 0 0 +1745 1783858680115400900 REFRESH 27 0 0.66282369106376304 0.93696763202725719 0 14 0 14 0 0 845 20 412 3988514 56160 225.50425720214844 1.4354 301.71809999999999 13440 8117 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 412 320 0 64 0 4068447696 49730128 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 25 25 25 55 282 0 0 0 4 16 0 0 0 0 0 +1746 1783858680476050000 REFRESH 55 0 0.66120585011879496 0.64054514480408853 2 9 2 9 0 0 1045 12 412 3987616 55200 228.35813903808594 1.4447000000000001 307.19029999999998 20160 12129 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 412 320 0 64 0 4069176160 50458592 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 25 191 146 0 0 0 0 12 0 0 0 0 0 +1747 1783858680827243100 REFRESH 43 0 0.66086617367817491 0.8279386712095399 2 11 2 11 0 0 749 15 421 3987999 55680 226.94297790527344 1.4283999999999999 298.76639999999998 20160 14817 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 421 320 0 64 0 4069913804 51196236 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 52 294 0 0 0 2 13 0 0 0 0 0 +1748 1783858681230702000 REFRESH 17 0 0.66618045349926092 0.28109028960817717 0 7 0 7 0 0 3422 10 424 3987679 55200 227.86253356933594 1.4306000000000001 350.7251 20160 12518 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 424 320 0 64 0 4070654508 51936940 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 25 278 71 1 0 0 1 8 0 0 0 0 0 +1749 1783858681603591600 REFRESH 4 0 0.66263418494892445 0.8356047700170357 1 12 1 12 0 0 266 6 420 3988400 56160 225.05062866210938 1.4435 307.60160000000002 20160 14803 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 420 320 0 64 0 4071391132 52673564 1 0 6 3 1 1 5 1474560 737280 245760 245839 1248000 27 25 39 113 216 0 0 0 0 6 0 0 0 0 0 +1750 1783858681991171500 REFRESH 9 0 0.66704514719972141 0.27342419080068137 1 6 1 6 1 0 2593 53 408 3988057 55680 227.5389404296875 1.6256999999999999 325.72989999999999 20160 12206 0 0 0.00034681608778165137 0.45319175116883598 4096 2048 64 1 16 408 320 0 64 0 4072115516 53397948 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 42 43 273 0 0 1 0 52 0 0 0 0 1 +1751 1783858682342586400 REFRESH 28 0 0.66290739013682587 0.8279386712095399 2 11 2 11 0 0 609 13 409 3988061 55680 226.68595886230469 1.427 298.34820000000002 13440 8092 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 409 320 0 64 0 4072840920 54123352 1 0 4 2 3 3 4 983040 491520 737280 737498 998400 26 25 25 137 196 0 0 0 1 12 0 0 0 0 0 +1752 1783858682732253000 REFRESH 54 0 0.66249345888298405 0.4608177172061329 1 8 1 8 0 0 1087 23 421 3987614 55200 227.12626647949219 1.4326000000000001 336.54739999999998 20160 11979 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 421 320 0 64 0 4073578564 54860996 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 27 105 239 0 0 1 3 19 0 0 0 0 0 +1753 1783858683149869400 REFRESH 2 0 0.66256033718557894 0.45315161839863699 2 7 2 7 0 0 3099 51 409 3987587 55200 227.67103576660156 1.4581999999999999 309.66340000000002 20160 11903 0 0 0.27733999028252415 2.0908136996316111 4096 2048 64 1 16 409 320 0 64 0 4074303968 55586400 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 39 295 0 0 0 0 51 0 0 0 0 0 +1754 1783858683504123200 REFRESH 0 0 0.6618221314611501 0.8279386712095399 2 11 2 11 0 0 825 5 425 3988466 56160 223.87405395507812 1.4288000000000001 297.30380000000002 13440 7961 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 425 320 0 64 0 4075045692 56328124 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 25 25 25 242 108 0 0 1 0 4 0 0 0 0 0 +1755 1783858683910764900 REFRESH 53 0 0.66128699363664412 0.37478705281090291 0 8 0 8 1 0 4096 34 411 3987605 55200 229.18246459960938 1.4339 350.52499999999998 20160 11956 0 0 0 0.2221103696426992 4096 2048 64 1 16 411 320 0 64 0 4075773136 57055568 1 0 4 3 3 3 3 983040 737280 737280 737487 748800 25 25 25 234 102 1 0 0 11 22 0 0 0 0 1 +1756 1783858684270185900 REFRESH 10 0 0.65061931310388466 0.64821124361158422 1 10 1 10 1 0 1040 11 429 3988468 56160 225.13151550292969 1.4289000000000001 301.67880000000002 13440 7987 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 429 320 0 64 0 4076518940 57801372 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 233 121 0 1 0 0 10 0 0 0 0 1 +1757 1783858684641628200 REFRESH 8 0 0.66620022094909692 0.26575809199318562 2 5 2 5 0 0 2295 17 416 3987625 55200 228.11238098144531 1.4335 315.73289999999997 20160 12383 0 0 0.030102368301037477 0.92558125821786852 4096 2048 64 1 16 416 320 0 64 0 4077251484 58533916 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 26 147 193 0 0 0 2 15 0 0 0 0 0 +1758 1783858685001188100 REFRESH 36 0 0.65904609646928025 0.82027257240204421 3 10 3 10 1 0 1117 16 422 3988009 55680 226.61016845703125 1.4274 302.01690000000002 20160 14578 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 422 320 0 64 0 4077990148 59272580 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 248 99 0 0 0 0 16 0 0 0 0 1 +1759 1783858685407035100 REFRESH 39 0 0.66316868668517581 0.55451448040885853 1 9 1 9 0 0 1499 8 432 3987585 55200 227.19386291503906 1.4907999999999999 343.74529999999999 20160 11936 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 432 320 0 64 0 4078739012 60021444 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 30 224 128 0 0 1 0 7 0 0 0 0 0 +1760 1783858687598064500 DEPTH 42 1 0.74244304554942742 0 0 4 0 4 0 0 4096 21 2594 23677895 81600 1312.7949676513672 8.6358999999999995 2130.5237999999999 120960 57024 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2594 1920 0 384 1 4083243800 64526232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 394 150 150 1395 505 0 0 0 0 21 0 0 0 0 0 +1761 1783858690618966200 DEPTH 49 1 0.72093234048962129 0.74190800681430991 1 11 1 11 1 0 1216 93 2525 23742699 147840 1299.7325286865234 8.735100000000001 2966.5356999999999 80640 37706 1 0 0.0031631807161620258 0.93980758654746277 4096 2048 384 12 96 2525 1920 0 384 1 4087678288 1852496 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 150 150 150 242 1833 0 0 0 0 93 0 0 0 0 1 +1762 1783858692771514000 DEPTH 57 1 0.66484888368349837 0.27342419080068137 1 6 1 6 0 0 3964 62 2542 23677728 81600 1315.6720733642578 8.8011999999999997 2095.8768 120960 57725 1 0 0.00072839667803945344 0.46567392240039174 4096 2048 384 12 96 2542 1920 0 384 1 4092130036 6304244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 631 1461 0 0 1 0 61 0 0 0 0 0 +1763 1783858694862446300 DEPTH 13 1 0.66410481661193477 0.27342419080068137 1 6 1 6 0 0 3820 76 2577 23677785 81600 1309.2126922607422 8.5990000000000002 2038.2961 120960 58266 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2577 1920 0 384 1 4096617484 10791692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 150 150 156 660 1461 6 1 0 0 69 0 0 0 0 0 +1764 1783858696997727800 DEPTH 56 1 0.66278757634508922 0.26575809199318562 2 5 2 4 1 0 4096 64 2594 23689082 93120 1308.490966796875 8.6340000000000003 2074.4378999999999 114240 55417 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2594 1920 0 384 1 4101122272 15296480 1 0 4 2 2 2 6 5898240 4177920 4177920 4180528 5241600 150 150 190 1273 831 0 4 0 3 57 0 0 0 0 1 +1765 1783858699124270600 DEPTH 52 1 0.6607490595896659 0.36712095400340705 1 7 1 7 0 0 1914 44 2590 23677563 81600 1303.7867279052734 8.960799999999999 2065.5708 120960 56805 1 0 6.8354824990224765e-05 2.0446519240449681 4096 2048 384 12 96 2590 1920 0 384 1 4105622980 19797188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 167 1519 604 1 0 1 1 41 0 0 0 0 0 +1766 1783858700912306600 DEPTH 22 1 0.66059938089259884 0.91396933560476989 3 11 3 11 1 0 466 52 2574 23720606 125760 1309.0234527587891 8.6054999999999993 1786.3285000000001 120960 68087 1 0 0.0083644257937872685 0.6977634741384231 4096 2048 384 12 96 2574 1920 0 384 1 4110107368 24281576 1 0 4 3 2 2 5 5898240 4423680 2949120 2950990 7488000 150 150 150 198 1926 0 0 0 1 51 0 0 0 0 1 +1767 1783858702877814600 DEPTH 38 1 0.6605672989002469 0.55451448040885853 1 9 1 9 0 0 1908 62 2572 23677410 81600 1304.8978576660156 8.6086999999999989 1894.3202000000001 120960 56645 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2572 1920 0 384 1 4114589716 28763924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 165 803 1304 0 1 0 1 60 0 0 0 0 0 +1768 1783858705006463700 DEPTH 48 1 0.6633674639413325 0.26575809199318562 2 5 2 5 0 0 2242 50 2588 23677775 81600 1312.3216857910156 8.7616999999999994 2064.6134000000002 120960 59000 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2588 1920 0 384 1 4119088384 33262592 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 154 830 1304 0 1 4 0 45 0 0 0 0 0 +1769 1783858707317340000 DEPTH 42 1 0.67201421309236342 0 0 4 0 4 0 0 4096 20 2598 23677886 81600 1302.6714782714844 8.6042000000000005 2119.6428000000001 120960 45913 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2598 1920 0 384 1 4123597252 37771460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 334 150 150 1470 494 0 0 0 0 20 0 0 0 0 0 +1770 1783858709530928700 DEPTH 20 1 0.66140335033543129 0.26575809199318562 2 5 2 5 0 0 1939 27 2588 23677622 81600 1309.5906677246094 8.6013000000000002 2078.5590000000002 120960 59115 1 1 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2588 1920 0 384 1 4128095920 42270128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 242 488 1558 0 0 2 0 24 0 0 0 0 0 +1771 1783858711725185600 DEPTH 31 1 0.66118548392571741 0.3594548551959113 2 6 2 6 0 0 2323 32 2578 23677556 81600 1307.7585754394531 8.6013000000000002 2074.8186000000001 120960 57137 1 0 0.03771404607834776 0.98138218302019542 4096 2048 384 12 96 2578 1920 0 384 1 4132584388 46758596 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 164 856 1258 0 2 1 1 28 0 0 0 0 0 +1772 1783858713565688300 DEPTH 15 1 0.66050932549836738 0.91396933560476989 3 11 3 11 0 0 313 35 2538 23705214 110400 1304.822998046875 8.5940000000000012 1787.7203999999999 120960 64138 1 0 0.13215737202774189 0.95319511763653475 4096 2048 384 12 96 2538 1920 0 384 1 4137032056 51206264 1 0 4 3 3 2 4 5898240 4423680 3932160 2950920 6489600 150 150 151 813 1274 0 0 2 3 30 0 0 0 0 0 +1773 1783858715430427800 DEPTH 34 1 0.66049192232912091 0.8356047700170357 1 12 1 12 1 0 667 46 2574 23699363 103680 1299.5841217041016 8.6414000000000009 1798.2257 80640 38817 1 0 0.00024456112032069028 1.7981817145069319 4096 2048 384 12 96 2574 1920 0 384 1 4141516444 55690652 1 0 4 2 3 3 4 5898240 2949120 4423680 4426382 5990400 150 150 150 156 1968 0 0 0 1 45 0 0 0 0 1 +1774 1783858717258413000 DEPTH 24 1 0.66048186355265537 1 4 11 4 11 0 0 488 48 2574 23727325 132480 1293.1819610595703 8.6440000000000001 1772.9297999999999 80640 40966 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 2574 1920 0 384 1 4146000832 60175040 1 0 4 2 3 2 5 5898240 2949120 3932160 2950948 7987200 150 150 150 484 1640 0 1 0 3 44 0 0 0 0 0 +1775 1783858719132426400 DEPTH 19 1 0.65976816138287664 0.8279386712095399 2 11 2 11 1 0 825 37 2580 23702373 107520 1298.5118865966797 8.6150000000000002 1807.4417000000001 114240 49922 1 0 0.024134501803917539 0.35880585544835542 4096 2048 384 12 96 2580 1920 0 384 1 4150491340 64665548 1 0 4 3 3 2 4 5898240 4177920 4423680 2950988 6240000 150 150 150 915 1215 0 1 1 1 34 0 0 0 0 1 +1776 1783858722387584500 DEPTH 9 1 0.66502703066878466 0.27342419080068137 1 6 1 6 1 0 2619 96 2512 23698779 103680 1310.4425201416016 8.6812000000000005 3166.8083000000001 120960 58122 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2512 1920 0 384 1 4154912568 1977956 1 0 4 3 3 2 4 5898240 4423680 4423680 2950963 5990400 150 150 234 204 1774 1 0 11 1 83 0 0 0 0 2 +1777 1783858724566281100 DEPTH 17 1 0.6640152241251609 0.28109028960817717 0 7 0 7 0 0 3450 63 2596 23677756 81600 1306.7633056640625 8.6159999999999997 2116.0862999999999 120960 59454 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2596 1920 0 384 1 4159419396 6484784 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 150 150 150 1301 845 3 0 1 0 59 0 0 0 0 0 +1778 1783858726667304000 DEPTH 45 1 0.65976053167976634 0.45315161839863699 2 7 2 7 0 0 1989 45 2545 23677587 81600 1310.2704620361328 8.5969999999999995 2043.8667 120960 57268 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2545 1920 0 384 1 4163874204 10939592 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 161 226 1858 0 0 0 3 42 0 0 0 0 0 +1779 1783858728745135300 DEPTH 32 1 0.65976811446742878 0.4608177172061329 1 8 1 8 0 0 2654 76 2553 23677382 81600 1306.3710632324219 8.6239999999999988 2003.6935000000001 120960 57387 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2553 1920 0 384 1 4168337172 15402560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426353 4492800 150 150 156 217 1880 0 0 0 5 71 0 0 0 0 0 +1780 1783858730784026700 DEPTH 30 1 0.65977569367071287 0.4608177172061329 1 8 1 8 0 0 3133 94 2518 23677422 81600 1308.3865051269531 8.6041000000000007 1973.0794000000001 120960 56801 1 0 0.001086221762956746 1.7155418191579956 4096 2048 384 12 96 2518 1920 0 384 1 4172764440 19829828 1 0 4 3 3 3 3 5898240 4423680 4423680 4426451 4492800 150 150 150 338 1730 1 0 0 2 91 0 0 0 0 0 +1781 1783858732635629300 DEPTH 58 1 0.65959785747772548 0.92163543441226559 2 12 2 12 0 0 514 21 2559 23705319 110400 1296.8940582275391 8.6225000000000005 1781.9585999999999 107520 48480 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2559 1920 0 384 1 4177233528 24298916 1 0 4 3 3 2 4 5898240 3932160 4423680 2951057 6489600 150 150 153 657 1449 0 0 0 0 21 0 0 0 0 0 +1782 1783858734517388900 DEPTH 28 1 0.65957317080522904 0.8279386712095399 2 11 2 11 0 0 609 43 2527 23699414 103680 1309.8209381103516 8.7688000000000006 1821.9014999999999 80640 38568 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2527 1920 0 384 1 4181669976 28735364 1 0 4 2 3 3 4 5898240 2949120 4423680 4426402 5990400 156 150 150 404 1667 0 0 0 1 42 0 0 0 0 0 +1783 1783858736490391600 DEPTH 14 1 0.6595708194599389 0.65587734241908002 0 11 0 11 0 0 1531 121 2523 23677348 81600 1314.5200500488281 8.5872000000000011 1893.8463999999999 120960 70241 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2523 1920 0 384 1 4186102344 33167732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 150 152 1921 0 0 0 5 116 0 0 0 0 0 +1784 1783858738547259800 DEPTH 56 1 0.73573060227795484 0.17206132879045993 2 4 2 4 0 0 4096 67 2544 23742896 147840 1292.1917572021484 8.6114000000000015 2055.3173999999999 80640 24906 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2544 1920 0 384 1 4190556132 37621520 1 0 4 2 2 2 6 5898240 2949120 2949120 2950918 8985600 150 150 207 193 1844 2 5 0 1 59 0 0 0 0 0 +1785 1783858740751577800 DEPTH 42 1 0.74157121896272271 0 0 4 0 4 0 0 4096 29 2602 23677900 81600 1298.0254669189453 8.5891000000000002 2136.2664 120960 36285 1 0 0 0.0063466168420994035 4096 2048 384 12 96 2602 1920 0 384 1 4195069080 42134468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 311 150 150 1494 497 0 0 0 0 29 0 0 0 0 0 +1786 1783858742769743300 DEPTH 49 1 0.71137823554258994 0.74190800681430991 1 11 1 11 1 0 1225 65 2524 23742658 147840 1296.6032867431641 8.9136999999999986 1873.0921000000001 80640 30754 1 0 0.0011976776659574655 0.84549030058202479 4096 2048 384 12 96 2524 1920 0 384 1 4199502468 46567856 1 0 4 2 2 2 6 5898240 2949120 2949120 2950886 8985600 150 150 150 268 1806 0 0 0 1 64 0 0 0 0 1 +1787 1783858744849899600 DEPTH 8 1 0.66404475399024832 0.26575809199318562 2 5 2 5 0 0 2299 42 2555 23677604 81600 1315.4120941162109 8.8504000000000005 2018.0036 120960 59010 1 0 0.030102368301037477 0.92558125821786852 4096 2048 384 12 96 2555 1920 0 384 1 4203967476 51032864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 150 150 156 598 1501 0 0 0 2 40 0 0 0 0 0 +1788 1783858746936560000 DEPTH 2 1 0.65988939166627913 0.45315161839863699 2 7 2 7 0 0 3126 116 2549 23677385 81600 1308.6148223876953 8.6028000000000002 2018.9404 120960 57063 1 0 0.27733999028252415 2.0908136996316111 4096 2048 384 12 96 2549 1920 0 384 1 4208426364 55491752 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 150 191 1908 0 0 0 2 114 0 0 0 0 0 +1789 1783858749107754000 DEPTH 54 1 0.65984374574571469 0.4608177172061329 1 8 1 8 0 0 1091 33 2542 23677504 81600 1305.6481170654297 8.9469999999999992 2100.0318000000002 120960 56044 1 0 0.00047943035387544786 1.0818619638605727 4096 2048 384 12 96 2542 1920 0 384 1 4212878112 59943500 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 157 417 1668 0 0 1 0 32 0 0 0 0 0 +1790 1783858750923349900 DEPTH 51 1 0.65960121666166316 0.91396933560476989 3 11 3 11 0 0 524 25 2540 23698524 103680 1298.8979187011719 8.6913999999999998 1764.7147 120960 70199 1 0 0.04374756045180065 0.27288744213454319 4096 2048 384 12 96 2540 1920 0 384 1 4217327820 64393208 1 0 4 3 3 2 4 5898240 4423680 4423680 2950990 5990400 150 150 156 658 1426 0 1 0 0 24 0 0 0 0 0 +1791 1783858754172780400 DEPTH 44 1 0.65960124698540068 0.36712095400340705 1 7 1 7 0 0 1901 43 2638 23677587 81600 1311.1746520996094 8.6029 3194.2739999999999 120960 57044 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2638 1920 0 384 1 4221877568 1834136 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 150 1465 723 0 2 0 0 41 0 0 0 0 0 +1792 1783858754561403300 REFRESH 15 0 0.60731740763179942 0.91396933560476989 3 11 3 11 0 0 315 15 420 3987994 55680 227.02284240722656 1.4410000000000001 313.35660000000001 20160 13775 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 420 320 0 64 0 4222614192 2570760 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 25 180 165 0 0 0 1 14 0 0 0 0 0 +1793 1783858754930878900 REFRESH 4 0 0.6567662198890547 0.8356047700170357 1 12 1 12 0 0 267 5 418 3987911 55680 225.32608032226562 1.4353 303.83980000000003 20160 14726 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 0 64 0 4223348776 3305344 1 0 6 3 2 1 4 1474560 737280 491520 245831 998400 27 25 39 75 252 0 0 0 0 5 0 0 0 0 0 +1794 1783858755293964200 REFRESH 42 0 0.67104496009260783 0 0 4 0 4 0 0 4096 6 423 3987668 55200 227.36505126953125 1.4322999999999999 361.77010000000001 20160 12195 0 0 0 0.0063466168420994035 4096 2048 64 1 16 423 320 0 64 0 4224088460 4045028 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 81 25 25 218 74 0 0 0 0 6 0 0 0 0 0 +1795 1783858755667569500 REFRESH 19 0 0.60669097457614041 0.8279386712095399 2 11 2 11 0 0 830 22 421 3987990 55680 226.35929870605469 1.4591000000000001 308.26549999999997 20160 14877 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 421 320 0 64 0 4224826104 4782672 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 27 181 163 0 0 0 7 15 0 0 0 0 0 +1796 1783858755995754700 REFRESH 8 0 0.50180033835383875 0.26575809199318562 2 5 2 5 0 0 2304 18 418 3987649 55200 228.68888854980469 1.4847999999999999 326.92250000000001 20160 12317 0 0 0.030102368301037477 0.92558125821786852 4096 2048 64 1 16 418 320 0 64 0 4225560688 5517256 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 26 151 191 0 0 0 3 15 0 0 0 0 0 +1797 1783858756399181300 REFRESH 1 0 0.65939714366421642 0.36712095400340705 1 7 1 7 0 0 2717 19 421 3987651 55200 228.54144287109375 1.4309000000000001 332.88639999999998 20160 12156 0 0 0.024960359520944751 1.931458602702079 4096 2048 64 1 16 421 320 0 64 0 4226298332 6254900 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 31 211 129 0 0 1 4 14 0 0 0 0 0 +1798 1783858756730173100 REFRESH 54 0 0.49705699740238329 0.4608177172061329 1 8 1 8 0 0 1093 16 419 3987602 55200 227.31674194335938 1.4321999999999999 329.435 20160 11981 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 419 320 0 64 0 4227033936 6990504 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 27 112 230 0 0 0 2 14 0 0 0 0 0 +1799 1783858757093349700 REFRESH 37 0 0.65893523915663099 0.8356047700170357 1 12 1 12 0 0 930 18 420 3988002 55680 226.79653930664062 1.4516 304.95429999999999 20160 14639 0 0 0.010862729221189079 0.55911380652857223 4096 2048 64 1 16 420 320 0 64 0 4227770560 7727128 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 26 25 25 189 155 0 0 0 4 14 0 0 0 0 0 +1800 1783858757507803000 REFRESH 40 0 0.65909919232533498 0.64821124361158422 1 10 1 10 0 0 1536 9 419 3988010 55680 225.81759643554688 1.4319 346.92149999999998 20160 14551 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 419 320 0 64 0 4228506164 8462732 1 0 4 3 3 2 4 983040 737280 737280 491689 998400 25 25 26 119 224 0 0 0 1 8 0 0 0 0 0 +1801 1783858757920648600 REFRESH 25 0 0.65520825969517338 0.4608177172061329 1 8 1 8 0 0 2182 13 425 3987593 55200 227.74272155761719 1.4278999999999999 351.09219999999999 20160 11988 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 425 320 0 64 0 4229247888 9204456 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 26 271 78 0 0 0 1 12 0 0 0 0 0 +1802 1783858758284903400 REFRESH 47 0 0.65891801641604986 0.8279386712095399 2 11 2 11 0 0 637 11 417 3987999 55680 227.84819030761719 1.4281999999999999 307.51580000000001 20160 14698 0 0 0.068593401730629888 1.3758323866124593 4096 2048 64 1 16 417 320 0 64 0 4229981452 9938020 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 209 133 0 0 0 2 9 0 0 0 0 0 +1803 1783858758681480200 REFRESH 45 0 0.6570940604205755 0.45315161839863699 2 7 2 7 0 0 1999 37 410 3987659 55200 228.43391418457031 1.4294 321.48689999999999 20160 11988 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 410 320 0 64 0 4230707876 10664444 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 28 72 260 0 0 0 3 34 0 0 0 0 0 +1804 1783858758993983400 REFRESH 28 0 0.62627088572842948 0.8279386712095399 2 11 2 11 0 0 613 20 409 3988069 55680 225.74592590332031 1.4320999999999999 310.91570000000002 13440 8166 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 409 320 0 64 0 4231433280 11389848 1 0 4 2 3 3 4 983040 491520 737280 737507 998400 26 25 25 169 164 0 0 0 5 15 0 0 0 0 0 +1805 1783858759349577900 REFRESH 10 0 0.64978158978426404 0.64821124361158422 1 10 1 10 0 0 1043 9 435 3988516 56160 225.19619750976562 1.4295 300.1182 13440 7917 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 435 320 0 64 0 4232185204 12141772 1 0 4 2 3 2 5 983040 491520 737280 491713 1248000 25 25 25 229 131 0 1 0 1 7 0 0 0 0 0 +1806 1783858759716508500 REFRESH 36 0 0.65625387204442531 0.82027257240204421 3 10 3 10 0 0 1117 7 422 3988002 55680 227.30137634277344 1.4370000000000001 310.03019999999998 20160 14571 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 422 320 0 64 0 4232923868 12880436 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 25 255 92 0 0 0 0 7 0 0 0 0 0 +1807 1783858760085089200 REFRESH 3 0 0.65830413913466546 0.64054514480408853 2 9 2 9 0 0 1045 22 413 3987599 55200 225.82476806640625 1.4298999999999999 310.3254 20160 11839 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 413 320 0 64 0 4233653352 13609920 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 29 157 177 0 0 0 2 20 0 0 0 0 0 +1808 1783858760454560900 REFRESH 29 0 0.65574329186070301 0.82027257240204421 3 10 3 10 0 0 1097 19 418 3988005 55680 226.52108764648438 1.4321999999999999 312.26440000000002 20160 14970 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 418 320 0 64 0 4234387936 14344504 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 25 29 314 0 0 0 4 15 0 0 0 0 0 +1809 1783858760813953800 REFRESH 5 0 0.65896358601199778 0.8279386712095399 2 11 2 11 0 0 810 14 423 3987975 55680 226.26640319824219 1.4298999999999999 301.78750000000002 20160 14538 0 0 0.013882121795455482 0.46345450206338867 4096 2048 64 1 16 423 320 0 64 0 4235127620 15084188 1 0 4 3 3 2 4 983040 737280 737280 491654 998400 25 25 25 169 179 0 0 0 1 13 0 0 0 0 0 +1810 1783858761214255400 REFRESH 48 0 0.66140401902819224 0.26575809199318562 2 5 2 5 0 0 2244 16 421 3987691 55200 227.29324340820312 1.4268000000000001 341.6551 20160 12546 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 421 320 0 64 0 4235865264 15821832 1 0 4 3 3 3 3 983040 737280 737280 737538 748800 25 25 32 213 126 0 1 0 5 10 0 0 0 0 0 +1811 1783858761560568500 REFRESH 44 0 0.60730868716020681 0.36712095400340705 1 7 1 7 0 0 1905 12 438 3987650 55200 228.19020080566406 1.4263999999999999 344.7056 20160 12294 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 438 320 0 64 0 4236620248 16576816 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 25 251 112 0 0 0 0 12 0 0 0 0 0 +1812 1783858761959903400 REFRESH 53 0 0.65907447947803688 0.37478705281090291 0 8 0 8 0 0 4096 25 416 3987634 55200 227.55328369140625 1.4299999999999999 337.21420000000001 20160 12011 0 0 0 0.2221103696426992 4096 2048 64 1 16 416 320 0 64 0 4237352792 17309360 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 25 229 112 1 0 0 3 21 0 0 0 0 0 +1813 1783858762315892500 REFRESH 55 0 0.6572257910200382 0.64054514480408853 2 9 2 9 0 0 1047 21 412 3987598 55200 228.4320068359375 1.4335 302.56279999999998 20160 12208 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 412 320 0 64 0 4238081256 18037824 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 25 186 151 0 0 0 1 20 0 0 0 0 0 +1814 1783858762688873200 REFRESH 50 0 0.65613120843899864 0.64054514480408853 2 9 2 9 0 0 984 9 423 3987999 55680 225.93740844726562 1.4345000000000001 317.1474 26880 19935 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 423 320 0 64 0 4238820940 18777508 1 0 4 4 2 2 4 983040 983040 491520 491676 998400 25 25 25 40 308 0 0 0 3 6 0 0 0 0 0 +1815 1783858763086218700 REFRESH 52 0 0.65874313464598155 0.36712095400340705 1 7 1 7 0 0 1917 11 434 3987628 55200 226.04698181152344 1.4323999999999999 342.82639999999998 20160 12100 0 0 6.8354824990224765e-05 2.0446519240449681 4096 2048 64 1 16 434 320 0 64 0 4239571844 19528412 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 28 260 96 0 0 1 2 8 0 0 0 0 0 +1816 1783858763459396500 REFRESH 32 0 0.65719002002197424 0.4608177172061329 1 8 1 8 0 0 2687 55 408 3987617 55200 226.67695617675781 1.4306000000000001 317.24650000000003 20160 11993 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 408 320 0 64 0 4240296228 20252796 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 29 84 245 0 0 1 7 47 0 0 0 0 0 +1817 1783858763762647600 REFRESH 14 0 0.65663565867974905 0.65587734241908002 0 11 0 11 0 0 1537 21 412 3987583 55200 228.59365844726562 1.4285000000000001 302.06939999999997 20160 13707 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 412 320 0 64 0 4241024692 20981260 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 25 29 308 0 0 0 0 21 0 0 0 0 0 +1818 1783858764124263000 REFRESH 35 0 0.65852238658161599 0.8279386712095399 2 11 2 11 0 0 1066 20 407 3988015 55680 227.67411804199219 1.4319 300.8707 20160 14613 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 407 320 0 64 0 4241748056 21704624 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 26 132 199 0 0 0 2 18 0 0 0 0 0 +1819 1783858764493132300 REFRESH 26 0 0.65498363320857267 0.64821124361158422 1 10 1 10 0 0 1682 41 413 3987596 55200 226.68595886230469 1.4527000000000001 314.17919999999998 20160 12439 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 413 320 0 64 0 4242477540 22434108 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 91 247 0 0 0 2 39 0 0 0 0 0 +1820 1783858764884616000 REFRESH 56 0 0.77382353808051763 0.17206132879045993 2 4 2 4 0 0 4096 62 413 3988975 56640 226.16473388671875 1.4423999999999999 337.99959999999999 13440 9489 0 0 0.0054819751749248715 0.88609877647480217 4096 2048 64 1 16 413 320 0 64 0 4243207024 23163592 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 34 35 294 0 0 0 0 62 0 0 0 0 0 +1821 1783858765246750600 REFRESH 27 0 0.65984725830822399 0.93696763202725719 0 14 0 14 0 0 850 29 413 3988094 55680 226.66752624511719 1.4597 300.8066 13440 8099 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 413 320 0 64 0 4243936508 23893076 1 0 4 2 3 3 4 983040 491520 737280 737518 998400 25 25 25 30 308 0 0 0 1 28 0 0 0 0 0 +1822 1783858765642610400 REFRESH 46 0 0.65912137195687948 0.37478705281090291 0 8 0 8 0 0 2559 14 424 3987629 55200 226.94093322753906 1.4412 341.50009999999997 20160 12304 0 0 2.6527484381931631e-06 0.39347997731948514 4096 2048 64 1 16 424 320 0 64 0 4244677212 24633780 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 31 215 128 0 0 1 1 12 0 0 0 0 0 +1823 1783858765996478900 REFRESH 6 0 0.64977775506264834 0.91396933560476989 3 11 3 11 0 0 376 9 418 3988940 56640 223.6192626953125 1.4352 294.08749999999998 13440 8880 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 418 320 0 64 0 4245411796 25368364 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 25 44 299 0 0 0 1 8 0 0 0 0 0 +1824 1783858766344152100 REFRESH 18 0 0.65930175745032349 0.9293015332197615 1 13 1 13 0 0 432 12 415 3988485 56160 226.29682922363281 1.4293 297.87639999999999 13440 7985 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 415 320 0 64 0 4246143320 26099888 1 0 4 2 3 2 5 983040 491520 737280 491683 1248000 26 25 25 124 215 0 0 0 0 12 0 0 0 0 0 +1825 1783858766817619600 REFRESH 13 0 0.66219988363390869 0.27342419080068137 1 6 1 6 0 0 3831 34 425 3987679 55200 227.56147766113281 1.4589000000000001 336.38200000000001 20160 12381 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 425 320 0 64 0 4246885044 26841612 1 0 4 3 3 3 3 983040 737280 737280 737532 748800 25 25 26 185 164 2 0 0 4 28 0 0 0 0 0 +1826 1783858767176992200 REFRESH 23 0 0.65895305531925341 0.74190800681430991 1 11 1 11 0 0 3324 12 406 3987567 55200 227.51846313476562 1.5901000000000001 304.34309999999999 20160 14924 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 406 320 0 64 0 4247607388 27563956 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 25 26 305 0 0 0 0 12 0 0 0 0 0 +1827 1783858767496760700 REFRESH 2 0 0.65731863822771541 0.45315161839863699 2 7 2 7 0 0 3161 64 410 3987625 55200 226.35008239746094 1.427 318.47050000000002 20160 11806 0 0 0.27733999028252415 2.0908136996316111 4096 2048 64 1 16 410 320 0 64 0 4248333812 28290380 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 25 40 295 0 0 0 1 63 0 0 0 0 0 +1828 1783858767891014500 REFRESH 12 0 0.65876689543587152 0.63287904599659284 3 8 3 8 0 0 1266 36 430 3987587 55200 227.12934875488281 1.4294 315.02760000000001 20160 12410 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 430 320 0 64 0 4249080636 29037204 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 40 123 217 0 0 0 2 34 0 0 0 0 0 +1829 1783858768255291900 REFRESH 24 0 0.65761696312147955 1 4 11 4 11 0 0 488 6 416 3988469 56160 224.78335571289062 1.4565999999999999 301.17779999999999 13440 8149 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 416 320 0 64 0 4249813180 29769748 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 211 130 0 0 0 1 5 0 0 0 0 0 +1830 1783858768676476800 REFRESH 39 0 0.65892384752222988 0.55451448040885853 1 9 1 9 0 0 1501 12 430 3987615 55200 226.41253662109375 1.4323999999999999 349.9579 20160 11772 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 430 320 0 64 0 4250560004 30516572 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 30 232 118 0 0 0 0 12 0 0 0 0 0 +1831 1783858768989632900 REFRESH 49 0 0.70273119634044956 0.74190800681430991 1 11 1 11 0 0 1238 24 406 3988962 56640 225.56057739257812 1.4923999999999999 311.72489999999999 13440 7984 0 0 0.0011976776659574655 0.84549030058202479 4096 2048 64 1 16 406 320 0 64 0 4251282348 31238916 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 64 267 0 0 0 1 23 0 0 0 0 0 +1832 1783858769359293800 REFRESH 38 0 0.65806478579281413 0.55451448040885853 1 9 1 9 0 0 1912 22 421 3987598 55200 227.47340393066406 1.4305000000000001 314.20920000000001 20160 11947 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 421 320 0 64 0 4252019992 31976560 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 31 212 128 0 0 0 3 19 0 0 0 0 0 +1833 1783858769755490600 REFRESH 30 0 0.65731463386941147 0.4608177172061329 1 8 1 8 0 0 3149 45 410 3987600 55200 226.96345520019531 1.4297 319.63310000000001 20160 11799 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 410 320 0 64 0 4252746416 32702984 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 25 151 184 0 0 0 11 34 0 0 0 0 0 +1834 1783858770169063900 REFRESH 41 0 0.65900010956026656 0.55451448040885853 1 9 1 9 0 0 1975 29 416 3987607 55200 226.46067810058594 1.4306000000000001 339.95569999999998 20160 12105 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 416 320 0 64 0 4253478960 33435528 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 30 129 207 0 0 0 1 28 0 0 0 0 0 +1835 1783858770543120200 REFRESH 16 0 0.65926265766099856 0.3594548551959113 2 6 2 6 0 0 2944 43 417 3987663 55200 228.29670715332031 1.4301999999999999 313.32900000000001 20160 11966 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 417 320 0 64 0 4254212524 34169092 1 0 4 3 3 3 3 983040 737280 737280 737543 748800 25 25 25 93 249 0 0 0 0 43 0 0 0 0 0 +1836 1783858770923852800 REFRESH 51 0 0.65646857679835424 0.91396933560476989 3 11 3 11 0 0 524 12 420 3987986 55680 226.36134338378906 1.4299999999999999 302.7774 20160 13722 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 420 320 0 64 0 4254949148 34905716 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 28 258 84 0 0 0 0 12 0 0 0 0 0 +1837 1783858771310395900 REFRESH 43 0 0.65847317875830613 0.8279386712095399 2 11 2 11 0 0 749 9 422 3987984 55680 226.73408508300781 1.6547000000000001 317.90800000000002 20160 14760 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 422 320 0 64 0 4255687812 35644380 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 25 75 272 0 0 0 1 8 0 0 0 0 0 +1838 1783858771671807400 REFRESH 0 0 0.65428753560842756 0.8279386712095399 2 11 2 11 0 0 832 20 413 3988016 55680 226.13095092773438 1.4312 303.6241 20160 14852 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 413 320 0 64 0 4256417296 36373864 1 0 4 3 3 2 4 983040 737280 737280 491696 998400 25 25 25 31 307 0 0 0 8 12 0 0 0 0 0 +1839 1783858772050184100 REFRESH 22 0 0.65812744609541229 0.91396933560476989 3 11 3 11 0 0 467 11 413 3988480 56160 227.27577209472656 1.429 307.78789999999998 20160 14841 0 0 0.0083644257937872685 0.6977634741384231 4096 2048 64 1 16 413 320 0 64 0 4257146780 37103348 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 90 248 0 0 0 1 10 0 0 0 0 0 +1840 1783858772428638400 REFRESH 58 0 0.65656495004581794 0.92163543441226559 2 12 2 12 0 0 515 9 414 3987989 55680 226.53439331054688 1.4343999999999999 315.0446 20160 14798 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 414 320 0 64 0 4257877284 37833852 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 25 194 145 0 0 0 2 7 0 0 0 0 0 +1841 1783858772938997600 REFRESH 21 0 0.65905308913960103 0.56218057921635434 0 10 0 10 0 0 2301 14 421 3987634 55200 226.96652221679688 1.4328000000000001 345.69990000000001 20160 12033 0 0 6.2105464870289441e-05 1.010425988904653 4096 2048 64 1 16 421 320 0 64 0 4258614928 38571496 1 0 4 3 3 3 3 983040 737280 737280 737543 748800 25 25 27 228 116 0 0 3 1 10 0 0 0 0 0 +1842 1783858773328338000 REFRESH 33 0 0.65926240048037366 0.36712095400340705 1 7 1 7 0 0 3158 33 420 3987658 55200 228.32025146484375 1.4285000000000001 329.67649999999998 20160 12231 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 420 320 0 64 0 4259351552 39308120 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 31 172 167 0 0 1 1 31 0 0 0 0 0 +1843 1783858773717107600 REFRESH 9 0 0.66326505174059669 0.27342419080068137 1 6 1 6 0 0 2645 49 415 3988051 55680 227.24301147460938 1.4295 319.84140000000002 20160 12208 0 0 0.00034298550913911891 0.32865072374265419 4096 2048 64 1 16 415 320 0 64 0 4260083076 40039644 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 43 39 283 0 0 2 0 47 0 0 0 0 0 +1844 1783858774125387300 REFRESH 20 0 0.66021853713667933 0.26575809199318562 2 5 2 5 0 0 1940 3 431 3987622 55200 226.0633544921875 1.4527000000000001 345.26740000000001 20160 12511 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 4260830920 40787488 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 46 159 176 0 0 0 0 3 0 0 0 0 0 +1845 1783858774506016200 REFRESH 34 0 0.65778229170802704 0.8356047700170357 1 12 1 12 0 0 678 37 412 3988052 55680 224.35433959960938 1.4343999999999999 308.26710000000003 13440 7858 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 412 320 0 64 0 4261559384 41515952 1 0 4 2 3 3 4 983040 491520 737280 737492 998400 25 25 25 64 273 0 0 0 4 33 0 0 0 0 0 +1846 1783858774973223600 REFRESH 11 0 0.6593384001704683 0.37478705281090291 0 8 0 8 0 0 2118 37 411 3988052 55680 227.44575500488281 1.4334 341.13380000000001 20160 12169 0 0 0 0.75650727599635714 4096 2048 64 1 16 411 320 0 64 0 4262286828 42243396 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 25 25 47 63 251 0 0 1 3 33 0 0 0 0 0 +1847 1783858775396006200 REFRESH 17 0 0.66217841227488661 0.28109028960817717 0 7 0 7 0 0 3456 14 427 3987692 55200 227.56060791015625 1.4316 352.31779999999998 20160 12608 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 427 320 0 64 0 4263030592 42987160 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 25 276 76 1 0 0 1 12 0 0 0 0 0 +1848 1783858775795846900 REFRESH 31 0 0.65912719746042392 0.3594548551959113 2 6 2 6 0 0 2327 21 421 3987640 55200 227.71302795410156 1.4321999999999999 331.37779999999998 20160 12072 0 0 0.03771404607834776 0.98138218302019542 4096 2048 64 1 16 421 320 0 64 0 4263768236 43724804 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 28 215 128 0 0 0 4 17 0 0 0 0 0 +1849 1783858776179381100 REFRESH 57 0 0.66303581991473748 0.27342419080068137 1 6 1 6 1 0 3975 27 410 3987658 55200 228.34687805175781 1.4300999999999999 322.96719999999999 20160 12266 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 410 320 0 64 0 4264494660 44451228 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 160 175 0 0 1 3 23 0 0 0 0 1 +1850 1783858776539043400 REFRESH 7 0 0.65930676465440852 0.8356047700170357 1 12 1 12 0 0 832 17 424 3988073 55680 225.63839721679688 1.4315 301.2235 13440 7992 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 424 320 0 64 0 4265235364 45191932 1 0 4 2 3 3 4 983040 491520 737280 737507 998400 25 25 25 238 111 0 0 0 3 14 0 0 0 0 0 +1851 1783858778747552000 DEPTH 42 1 0.82672961385493826 0 0 4 0 4 1 0 4096 26 2602 23677898 81600 1312.2469177246094 8.7827999999999999 2148.6397000000002 120960 57426 1 1 0 0.0063601076835715798 4096 2048 384 12 96 2602 1920 0 384 1 4269748312 49704880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 432 150 150 1338 532 0 0 0 0 25 0 0 0 0 1 +1852 1783858780883329000 DEPTH 56 1 0.76292804259881075 0.17206132879045993 2 4 2 4 0 0 4096 59 2531 23742838 147840 1295.2299652099609 8.6106000000000016 2079.7489 80640 45049 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2531 1920 0 384 1 4274188840 54145408 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 150 150 202 197 1832 0 0 0 2 57 0 0 0 0 0 +1853 1783858783238457600 DEPTH 13 1 0.66011398866439519 0.27342419080068137 1 6 1 6 0 0 3850 79 2579 23677755 81600 1312.6225891113281 8.6340000000000003 2286.2478000000001 120960 58517 1 1 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2579 1920 0 384 1 4278678328 58634896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 156 729 1394 2 0 0 1 75 0 0 0 0 0 +1854 1783858785289820900 DEPTH 8 1 0.65993709741116802 0.26575809199318562 2 5 2 5 0 0 2309 45 2523 23677683 81600 1315.9301605224609 8.7307000000000006 1989.9673 120960 58814 1 0 0.030102368301037477 0.92558125821786852 4096 2048 384 12 96 2523 1920 0 384 1 4283110696 63067264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 150 150 156 593 1474 0 0 0 0 45 0 0 0 0 0 +1855 1783858788496137500 DEPTH 48 1 0.65950162151735015 0.26575809199318562 2 5 2 5 0 0 2253 52 2595 23677745 81600 1313.0005187988281 8.5913000000000004 3204.7552999999998 120960 60148 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2595 1920 0 384 1 4287616584 464928 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 153 773 1369 0 1 5 0 46 0 0 0 0 0 +1856 1783858790648478200 DEPTH 1 1 0.65720497855749727 0.36712095400340705 1 7 1 7 1 0 2725 43 2587 23677632 81600 1312.3564300537109 8.754999999999999 2084.8103999999998 120960 57993 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2587 1920 0 384 1 4292114232 4962576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 150 150 168 849 1270 0 1 0 2 40 0 0 0 0 1 +1857 1783858792938956600 DEPTH 53 1 0.65682505717393558 0.37478705281090291 0 8 0 8 0 0 4096 58 2557 23677557 81600 1308.3832397460938 8.6285000000000007 2129.0846000000001 120960 56974 1 0 0 0.2221103696426992 4096 2048 384 12 96 2557 1920 0 384 1 4296581280 9429624 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 150 977 1130 4 0 0 5 49 0 0 0 0 0 +1858 1783858795029342700 DEPTH 46 1 0.65681024665668186 0.37478705281090291 0 8 0 8 1 0 2569 40 2594 23677636 81600 1312.7551422119141 8.6791999999999998 2089.0016999999998 120960 58934 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2594 1920 0 384 1 4301086068 13934412 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 169 982 1143 1 0 4 0 35 0 0 0 0 1 +1859 1783858797032588600 DEPTH 49 1 0.69458817668197415 0.74190800681430991 1 11 1 10 1 0 1251 80 2536 23720815 124800 1302.2740631103516 8.6345999999999989 1877.9267 80640 37950 1 0 8.5649876112349287e-05 0.91402019597624573 4096 2048 384 12 96 2536 1920 0 384 1 4305531696 18380040 1 0 4 2 1 6 3 5898240 2949120 2703360 4672342 7488000 150 150 150 583 1503 1 0 0 7 72 0 0 0 1 2 +1860 1783858799145038400 DEPTH 52 1 0.65672519712731248 0.36712095400340705 1 7 1 7 0 0 1939 56 2589 23677522 81600 1305.3695983886719 8.6327999999999996 2054.9713999999999 120960 57335 1 1 6.8354824990224765e-05 2.0446519240449681 4096 2048 384 12 96 2589 1920 0 384 1 4310031384 22879728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 167 1500 622 0 5 4 0 46 0 0 0 0 0 +1861 1783858801090280200 DEPTH 27 1 0.65665905336768404 0.93696763202725719 0 14 0 14 0 0 856 56 2505 23699469 103680 1305.6470947265625 8.6449999999999996 1795.3963000000001 80640 38495 1 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 384 12 96 2505 1920 0 384 1 4314445392 27293736 1 0 4 2 3 3 4 5898240 2949120 4423680 4426480 5990400 150 150 150 208 1847 0 0 0 1 55 0 0 0 0 0 +1862 1783858803324808300 DEPTH 39 1 0.65660024902245184 0.55451448040885853 1 9 1 9 0 0 1510 47 2577 23677373 81600 1303.1649169921875 8.6069000000000013 2037.7923000000001 120960 57005 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2577 1920 0 384 1 4318932840 31781184 1 0 4 3 3 3 3 5898240 4423680 4423680 4426363 4492800 150 150 160 953 1164 0 0 1 0 46 0 0 0 0 0 +1863 1783858805523133300 DEPTH 42 1 0.69654648477406711 0 0 4 0 4 0 0 4096 20 2598 23678062 81600 1306.8339233398438 8.6734999999999989 2134.3069 120960 46355 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2598 1920 0 384 1 4323441708 36290052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426520 4492800 353 150 150 1455 490 0 0 0 0 20 0 0 0 0 0 +1864 1783858807527874100 DEPTH 18 1 0.65642482043067985 0.9293015332197615 1 13 1 13 0 0 437 70 2525 23713356 118080 1366.4892120361328 8.7374000000000009 1935.2584999999999 80640 38064 1 0 0.0012150407981630323 1.546403768140675 4096 2048 384 12 96 2525 1920 0 384 1 4327876116 40724460 1 0 4 2 3 3 4 5898240 2949120 4423680 3442811 6988800 156 150 150 450 1619 0 0 0 3 67 0 0 0 0 0 +1865 1783858809754907000 DEPTH 41 1 0.65620642177680089 0.55451448040885853 1 9 1 9 0 0 1985 47 2576 23677483 81600 1360.3564758300781 8.6059000000000001 2162.8726000000001 120960 57085 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2576 1920 0 384 1 4332362544 45210888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 172 604 1500 0 0 2 0 45 0 0 0 0 0 +1866 1783858811716561800 DEPTH 37 1 0.65606115596945414 0.8356047700170357 1 12 1 12 1 0 933 49 2532 23698534 103680 1313.3344879150391 8.6573999999999991 1885.4807000000001 120960 70824 1 0 0.010438987529659072 0.54524856454933346 4096 2048 384 12 96 2532 1920 0 384 1 4336804092 49652436 1 0 4 3 3 2 4 5898240 4423680 4423680 2950991 5990400 156 150 150 500 1576 0 0 4 0 45 0 0 0 0 3 +1867 1783858813757539300 DEPTH 16 1 0.65691665022050816 0.3594548551959113 2 6 2 6 0 0 2964 81 2551 23677630 81600 1328.1016998291016 8.6593000000000018 1965.7888 120960 57178 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2551 1920 0 384 1 4341265020 54113364 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 150 500 1601 0 0 0 2 79 0 0 0 0 0 +1868 1783858816019122300 DEPTH 33 1 0.65687898808023815 0.36712095400340705 1 7 1 7 0 0 3169 51 2547 23677564 81600 1316.1615447998047 8.5808999999999997 2195.7759000000001 120960 57914 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2547 1920 0 384 1 4345721868 58570212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 183 647 1417 0 0 1 2 48 0 0 0 0 0 +1869 1783858818250035800 DEPTH 21 1 0.65623590442949231 0.56218057921635434 0 10 0 10 1 0 2311 59 2574 23677506 81600 1307.8181915283203 8.8524999999999991 2165.0729999999999 120960 57296 1 0 2.0359296739914361e-05 1.0767229647665464 4096 2048 384 12 96 2574 1920 0 384 1 4350206256 63054600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 150 150 159 1065 1050 0 0 5 2 52 0 0 0 0 2 +1870 1783858821278998600 DEPTH 47 1 0.65605478482387569 0.8279386712095399 2 11 2 11 0 0 638 16 2594 23691212 96000 1301.3872680664062 8.6143000000000001 2976.4038 120960 70499 1 0 0.068593401730629888 1.3758323866124593 4096 2048 384 12 96 2594 1920 0 384 1 4354711124 450648 1 0 4 3 3 3 3 5898240 4423680 4423680 3442863 5491200 150 150 150 478 1666 0 0 0 1 15 0 0 0 0 0 +1871 1783858823163315200 DEPTH 5 1 0.65605240336141701 0.8279386712095399 2 11 2 11 1 0 818 34 2549 23698473 103680 1297.0303344726562 8.6134000000000004 1819.4006999999999 120960 70352 1 0 0.0052194513408313397 0.4590179950823875 4096 2048 384 12 96 2549 1920 0 384 1 4359170012 4909536 1 0 4 3 3 2 4 5898240 4423680 4423680 2950931 5990400 150 150 150 408 1691 0 1 0 0 33 0 0 0 0 1 +1872 1783858825060478300 DEPTH 23 1 0.65601633831037265 0.74190800681430991 1 11 1 11 0 0 3347 73 2492 23677389 81600 1310.9114837646484 8.6026999999999987 1827.7003999999999 120960 68184 1 0 0.019300925759138894 0.7442759509966006 4096 2048 384 12 96 2492 1920 0 384 1 4363570760 9310284 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 150 181 1861 0 0 0 0 73 0 0 0 0 0 +1873 1783858827042455600 DEPTH 12 1 0.65602054926976128 0.63287904599659284 3 8 3 8 0 0 1276 77 2625 23677433 81600 1354.0578308105469 8.7217000000000002 1905.4188999999999 120960 61289 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2625 1920 0 384 1 4368107168 13846692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 182 485 1658 0 0 1 3 73 0 0 0 0 0 +1874 1783858829406545900 DEPTH 40 1 0.65601354244628352 0.64821124361158422 1 10 1 10 0 0 1554 46 2586 23691208 96000 1334.4440307617188 8.6282999999999994 2280.3279000000002 120960 70762 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2586 1920 0 384 1 4372603796 18343320 1 0 4 3 3 3 3 5898240 4423680 4423680 3442862 5491200 150 150 156 593 1537 0 0 1 2 43 0 0 0 0 0 +1875 1783858831592755900 DEPTH 56 1 0.73291369702908704 0.17206132879045993 2 4 2 4 0 0 4096 61 2532 23742900 147840 1290.1324768066406 8.8461999999999996 2121.9184 80640 37588 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2532 1920 0 384 1 4377045344 22784868 1 0 4 2 2 2 6 5898240 2949120 2949120 2951048 8985600 150 150 210 214 1808 4 0 0 1 56 0 0 0 0 0 +1876 1783858833743897800 DEPTH 49 1 0.71114199380143406 0.64821124361158422 1 10 3 7 1 0 1261 60 2583 23691378 93120 1295.0315246582031 8.7864999999999984 2014.4471000000001 73920 29508 1 0 0.10078416369857203 2.5034247973340906 4096 2048 384 12 96 2583 1920 0 384 1 4381538912 27278436 1 0 4 1 1 4 6 5898240 2703360 1474560 8361036 5241600 150 150 150 1422 711 2 0 1 11 46 0 0 0 0 2 +1877 1783858835948806200 DEPTH 42 1 0.71630054636862728 0 0 4 0 4 0 0 4096 24 2596 23677979 81600 1309.1595764160156 8.6649999999999991 2202.6667000000002 120960 36554 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2596 1920 0 384 1 4386045740 31785264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426483 4492800 319 150 150 1483 494 0 0 0 0 24 0 0 0 0 0 +1878 1783858838171552500 DEPTH 57 1 0.66194558781222634 0.27342419080068137 1 6 1 6 0 0 3994 70 2546 23677750 81600 1316.9111022949219 8.6004999999999985 2137.9313000000002 120960 58478 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2546 1920 0 384 1 4390501568 36241092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 602 1494 0 0 0 0 70 0 0 0 0 0 +1879 1783858840325173000 DEPTH 9 1 0.66113381804714044 0.27342419080068137 1 6 1 6 0 0 2683 109 2521 23698873 103680 1311.8873748779297 8.7263000000000002 2085.2467999999999 120960 58792 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2521 1920 0 384 1 4394931896 40671420 1 0 4 3 3 2 4 5898240 4423680 4423680 2950983 5990400 150 150 239 201 1781 0 0 6 6 97 0 0 0 0 0 +1880 1783858842577664300 DEPTH 17 1 0.66013840384176303 0.28109028960817717 0 7 0 7 0 0 3474 58 2593 23677702 81600 1308.1815185546875 8.599499999999999 2183.5965000000001 120960 59608 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2593 1920 0 384 1 4399435664 45175188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 150 150 150 1293 850 5 0 5 1 47 0 0 0 0 0 +1881 1783858844797668300 DEPTH 11 1 0.65701104080565709 0.37478705281090291 0 8 0 8 1 0 2132 50 2544 23688530 93120 1301.6218414306641 8.6157000000000004 2153.0185999999999 120960 57030 1 0 0 0.75522476415591044 4096 2048 384 12 96 2544 1920 0 384 1 4403889452 49628976 1 0 4 3 3 3 3 5898240 4423680 4423680 3688642 5241600 150 150 209 411 1624 1 5 1 1 42 0 0 0 0 1 +1882 1783858846984364600 DEPTH 31 1 0.65681516988207023 0.3594548551959113 2 6 2 6 1 0 2344 56 2577 23677462 81600 1309.9673614501953 8.7456999999999994 2104.9205000000002 120960 57017 1 0 0.037866436097302322 0.98169835067461553 4096 2048 384 12 96 2577 1920 0 384 1 4408376900 54116424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426311 4492800 150 150 163 800 1314 4 1 3 0 48 0 0 0 0 1 +1883 1783858847346054100 REFRESH 35 0 0.65568273060637938 0.8279386712095399 2 11 2 11 0 0 1068 18 406 3987975 55680 226.41151428222656 1.4291 306.09519999999998 20160 14506 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 406 320 0 64 0 4409099244 54838768 1 0 4 3 3 2 4 983040 737280 737280 491651 998400 25 25 26 124 206 0 0 0 2 16 0 0 0 0 0 +1884 1783858847707948800 REFRESH 0 0 0.65198441849088073 0.8279386712095399 2 11 2 11 0 0 835 17 417 3988000 55680 226.29887390136719 1.4311 306.709 20160 14728 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 417 320 0 64 0 4409832808 55572332 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 27 34 306 0 0 0 2 15 0 0 0 0 0 +1885 1783858848080628600 REFRESH 14 0 0.65403534276990505 0.65587734241908002 0 11 0 11 0 0 1546 29 410 3987573 55200 227.73356628417969 1.4369000000000001 315.78359999999998 20160 13592 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 410 320 0 64 0 4410559232 56298756 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 25 29 306 0 0 0 0 29 0 0 0 0 0 +1886 1783858848464692900 REFRESH 19 0 0.65422564336447198 0.8279386712095399 2 11 2 11 0 0 831 9 421 3987990 55680 226.54873657226562 1.4300999999999999 310.26429999999999 20160 14497 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 421 320 0 64 0 4411296876 57036400 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 27 190 154 0 0 0 2 7 0 0 0 0 0 +1887 1783858848842590200 REFRESH 22 0 0.65543987226827671 0.91396933560476989 3 11 3 11 0 0 468 11 411 3988474 56160 227.34439086914062 1.4417 315.69400000000002 20160 14530 0 0 0.0083644257937872685 0.6977634741384231 4096 2048 64 1 16 411 320 0 64 0 4412024320 57763844 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 115 221 0 0 0 0 11 0 0 0 0 0 +1888 1783858849157377100 REFRESH 49 0 0.74940774936385368 0.53918228279386693 3 7 3 7 1 0 1285 59 411 3989089 56640 227.0750732421875 1.4307000000000001 312.72989999999999 6720 4642 0 0 0.00023265248925235423 2.5007172006880194 4096 2048 64 1 16 411 320 0 64 0 4412751764 58491288 1 0 4 1 1 4 6 983040 245760 245760 983323 1497600 25 25 25 94 242 0 0 1 16 42 0 0 0 0 1 +1889 1783858849533564700 REFRESH 15 0 0.65481746658554463 0.91396933560476989 3 11 3 11 0 0 316 12 418 3987983 55680 227.18258666992188 1.429 305.80020000000002 20160 13625 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 418 320 0 64 0 4413486348 59225872 1 0 4 3 3 2 4 983040 737280 737280 491661 998400 25 25 25 187 156 0 0 0 1 11 0 0 0 0 0 +1890 1783858849958351100 REFRESH 48 0 0.657574960981266 0.26575809199318562 2 5 2 5 0 0 2261 17 426 3987676 55200 227.12422180175781 1.4406000000000001 364.96539999999999 20160 12552 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 426 320 0 64 0 4414229092 59968616 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 33 196 147 0 0 1 3 13 0 0 0 0 0 +1891 1783858850354211000 REFRESH 30 0 0.65494806008853401 0.4608177172061329 1 8 1 8 0 0 3165 44 415 3987624 55200 226.88359069824219 1.4359999999999999 322.65499999999997 20160 11885 0 0 0.001086221762956746 1.7155418191579956 4096 2048 64 1 16 415 320 0 64 0 4414960616 60700140 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 145 195 1 0 0 5 38 0 0 0 0 0 +1892 1783858850721451800 REFRESH 51 0 0.65350069928449361 0.91396933560476989 3 11 3 11 0 0 524 4 423 3988006 55680 226.735107421875 1.4318 302.78629999999998 20160 13591 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 423 320 0 64 0 4415700300 61439824 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 29 268 76 0 0 0 0 4 0 0 0 0 0 +1893 1783858851130926600 REFRESH 6 0 0.64790341931767492 0.91396933560476989 3 11 3 11 0 0 376 11 413 3988941 56640 223.32415771484375 1.6589 352.93579999999997 13440 8856 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 413 320 0 64 0 4416429784 62169308 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 45 293 0 0 0 1 10 0 0 0 0 0 +1894 1783858851526196800 REFRESH 7 0 0.65624261288390384 0.8356047700170357 1 12 1 12 0 0 834 22 423 3988069 55680 225.31788635253906 1.5266 319.19819999999999 13440 7975 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 423 320 0 64 0 4417169468 62908992 1 0 4 2 3 3 4 983040 491520 737280 737504 998400 25 25 25 224 124 0 0 0 3 19 0 0 0 0 0 +1895 1783858851938579200 REFRESH 45 0 0.65497613773119068 0.45315161839863699 2 7 2 7 0 0 2004 30 416 3987727 55200 227.65875244140625 1.4370000000000001 331.88069999999999 20160 12088 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 4417902012 63641536 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 28 73 265 0 0 0 2 28 0 0 0 0 0 +1896 1783858852271063100 REFRESH 9 0 0.57894155121714375 0.27342419080068137 1 6 1 6 0 0 2729 79 413 3988059 55680 227.73043823242188 1.4395 330.89569999999998 20160 12518 0 0 0.00034298550913911891 0.32865072374265419 4096 2048 64 1 16 413 320 0 64 0 4418631496 64371020 1 0 4 3 3 2 4 983040 737280 737280 491682 998400 25 25 44 46 273 0 0 0 1 78 0 0 0 0 0 +1897 1783858852653419900 REFRESH 36 0 0.65083630559223538 0.82027257240204421 3 10 3 10 0 0 1118 10 422 3988004 55680 226.93171691894531 1.4427000000000001 312.13139999999999 20160 14365 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 422 320 0 64 0 4419370160 65109684 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 25 251 96 0 0 0 1 9 0 0 0 0 0 +1898 1783858853010220300 REFRESH 27 0 0.65353910045739494 0.93696763202725719 0 14 0 14 0 0 857 15 409 3988114 55680 225.24211120605469 1.4437 302.8272 13440 8066 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 409 320 0 64 0 4420095564 65835088 1 0 4 2 3 3 4 983040 491520 737280 737547 998400 25 25 25 107 227 0 0 0 2 13 0 0 0 0 0 +1899 1783858853399334300 REFRESH 18 0 0.65356347899343969 0.9293015332197615 1 13 1 13 0 0 437 9 414 3988088 55680 226.97882080078125 1.4413 318.75170000000003 13440 8215 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 414 320 0 64 0 4420826068 66565592 1 0 4 2 3 3 4 983040 491520 737280 737525 998400 26 25 25 142 196 0 0 0 0 9 0 0 0 0 0 +1900 1783858854892054000 REFRESH 47 0 0.65297672841368615 0.8279386712095399 2 11 2 11 1 0 640 12 410 3987603 55200 226.67570495605469 1.4415 1430.3492000000001 20160 13673 0 0 0.013860617513774254 1.4674127163907342 4096 2048 64 1 16 410 320 0 64 0 4421552572 184044 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 25 115 220 0 0 0 4 8 0 0 0 0 1 +1901 1783858855258424700 REFRESH 43 0 0.65489146505562834 0.8279386712095399 2 11 2 11 0 0 749 16 416 3988015 55680 226.23333740234375 1.4297 310.08409999999998 20160 14741 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 416 320 0 64 0 4422285116 916588 1 0 4 3 3 2 4 983040 737280 737280 491695 998400 25 25 25 100 241 0 0 0 2 14 0 0 0 0 0 +1902 1783858855614506200 REFRESH 40 0 0.6536767738491317 0.64821124361158422 1 10 1 10 0 0 1555 4 413 3987581 55200 225.74899291992188 1.4544999999999999 354.12900000000002 20160 13590 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 413 320 0 64 0 4423014600 1646072 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 26 79 258 0 0 1 0 3 0 0 0 0 0 +1903 1783858855970721500 REFRESH 17 0 0.63808431309425562 0.28109028960817717 0 7 0 7 0 0 3479 16 428 3987657 55200 226.44735717773438 1.4339 354.57920000000001 20160 12531 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 428 320 0 64 0 4423759384 2390856 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 275 78 1 0 1 0 14 0 0 0 0 0 +1904 1783858856340438100 REFRESH 58 0 0.65265070290770022 0.92163543441226559 2 12 2 12 0 0 517 15 414 3987983 55680 226.82316589355469 1.4882 307.4212 20160 14581 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 414 320 0 64 0 4424489888 3121360 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 25 25 25 202 137 0 1 0 1 13 0 0 0 0 0 +1905 1783858856729825400 REFRESH 32 0 0.65504611156858783 0.4608177172061329 1 8 1 8 0 0 2720 51 410 3987608 55200 227.60755920410156 1.4604999999999999 323.07330000000002 20160 11963 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 410 320 0 64 0 4425216312 3847784 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 29 88 243 0 0 1 1 49 0 0 0 0 0 +1906 1783858857134984200 REFRESH 38 0 0.65567796096296527 0.55451448040885853 1 9 1 9 0 0 1920 19 420 3987586 55200 226.40946960449219 1.4297 330.53179999999998 20160 11970 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 420 320 0 64 0 4425952936 4584408 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 35 237 98 0 0 0 4 15 0 0 0 0 0 +1907 1783858857540361300 REFRESH 1 0 0.65526094810152991 0.36712095400340705 1 7 1 7 0 0 2730 22 427 3987641 55200 227.05882263183594 1.4413 339.39269999999999 20160 12378 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 427 320 0 64 0 4426696700 5328172 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 31 205 141 0 0 0 2 20 0 0 0 0 0 +1908 1783858857918312000 REFRESH 55 0 0.65365861298975891 0.64054514480408853 2 9 2 9 0 0 1047 19 411 3987576 55200 227.74169921875 1.4321999999999999 315.4676 20160 12016 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 411 320 0 64 0 4427424144 6055616 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 25 192 144 0 0 0 1 18 0 0 0 0 0 +1909 1783858858295105300 REFRESH 23 0 0.65309169175231629 0.74190800681430991 1 11 1 11 0 0 3348 10 410 3987584 55200 227.51948547363281 1.4356 316.01560000000001 20160 14852 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 410 320 0 64 0 4428150568 6782040 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 25 35 300 0 0 0 1 9 0 0 0 0 0 +1910 1783858858652683100 REFRESH 34 0 0.6550289621994464 0.8356047700170357 1 12 1 12 0 0 685 27 421 3988102 55680 224.71372985839844 1.4285000000000001 297.35809999999998 13440 7892 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 421 320 0 64 0 4428888212 7519684 1 0 4 2 3 3 4 983040 491520 737280 737539 998400 25 25 25 70 276 0 0 0 1 26 0 0 0 0 0 +1911 1783858859081774700 REFRESH 13 0 0.65827119953023439 0.27342419080068137 1 6 1 6 0 0 3862 32 420 3987659 55200 228.26393127441406 1.5624 346.81799999999998 20160 12506 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 420 320 0 64 0 4429624836 8256308 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 26 181 163 0 0 0 3 29 0 0 0 0 0 +1912 1783858859552821500 REFRESH 50 0 0.65404990086677572 0.64054514480408853 2 9 2 9 0 0 987 19 427 3987974 55680 225.61074829101562 1.4564999999999999 336.99110000000002 26880 19567 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 427 320 0 64 0 4430368600 9000072 1 0 4 4 2 2 4 983040 983040 491520 491654 998400 25 25 25 48 304 0 0 0 2 17 0 0 0 0 0 +1913 1783858859918914300 REFRESH 42 0 0.82610220556615133 0 0 4 0 4 0 0 4096 10 428 3987688 55200 226.8590087890625 1.4353 364.6198 20160 12190 0 0 0 0.0063601076835715798 4096 2048 64 1 16 428 320 0 64 0 4431113384 9744856 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 79 25 25 221 78 0 0 0 0 10 0 0 0 0 0 +1914 1783858860308559000 REFRESH 26 0 0.65084875944090137 0.64821124361158422 1 10 1 10 0 0 1695 35 417 3987590 55200 227.33619689941406 1.429 319.18610000000001 20160 12276 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 417 320 0 64 0 4431846948 10478420 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 92 250 0 0 0 1 34 0 0 0 0 0 +1915 1783858860736049200 REFRESH 52 0 0.6548012183239168 0.36712095400340705 1 7 1 7 0 0 1944 14 430 3987633 55200 226.78732299804688 1.4399999999999999 359.47989999999999 20160 11988 0 0 6.8354824990224765e-05 2.0446519240449681 4096 2048 64 1 16 430 320 0 64 0 4432593772 11225244 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 28 268 84 0 1 0 2 11 0 0 0 0 0 +1916 1783858861099809100 REFRESH 5 0 0.65311999566099643 0.8279386712095399 2 11 2 11 0 0 821 19 420 3988019 55680 225.67526245117188 1.5530999999999999 309.21749999999997 20160 13549 0 0 0.0052194513408313397 0.4590179950823875 4096 2048 64 1 16 420 320 0 64 0 4433330396 11961868 1 0 4 3 3 2 4 983040 737280 737280 491698 998400 25 25 25 185 160 0 0 0 7 12 0 0 0 0 0 +1917 1783858861494990600 REFRESH 8 0 0.65814396495818062 0.26575809199318562 2 5 2 5 0 0 2311 19 410 3987632 55200 228.06221008300781 1.4639 321.21030000000002 20160 12196 0 0 0.030102368301037477 0.92558125821786852 4096 2048 64 1 16 410 320 0 64 0 4434056820 12688292 1 0 4 3 3 3 3 983040 737280 737280 737480 748800 25 25 26 152 182 0 0 0 2 17 0 0 0 0 0 +1918 1783858861871235400 REFRESH 29 0 0.65377966964204204 0.82027257240204421 3 10 3 10 0 0 1099 14 423 3988007 55680 226.65728759765625 1.4336 314.35000000000002 20160 14768 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 423 320 0 64 0 4434796504 13427976 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 34 314 0 0 1 0 13 0 0 0 0 0 +1919 1783858862265215900 REFRESH 24 0 0.6510797885388202 1 4 11 4 11 0 0 489 10 413 3988456 56160 225.39468383789062 1.4285000000000001 301.1635 13440 8056 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 413 320 0 64 0 4435525988 14157460 1 0 4 2 3 2 5 983040 491520 737280 491655 1248000 25 25 25 218 120 0 0 0 0 10 0 0 0 0 0 +1920 1783858862676379600 REFRESH 33 0 0.654730075157129 0.36712095400340705 1 7 1 7 0 0 3176 22 427 3987631 55200 228.24858093261719 1.4756 341.8929 20160 12159 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 427 320 0 64 0 4436269752 14901224 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 33 153 191 0 0 0 0 22 0 0 0 0 0 +1921 1783858863043039400 REFRESH 4 0 0.65093400909235877 0.8356047700170357 1 12 1 12 0 0 268 11 419 3987921 55680 225.86778259277344 1.6049 303.15370000000001 20160 14708 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 419 320 0 64 0 4437005356 15636828 1 0 6 3 2 1 4 1474560 737280 491520 245841 998400 27 25 54 76 237 0 0 0 0 11 0 0 0 0 0 +1922 1783858863432605500 REFRESH 41 0 0.65367422422508015 0.55451448040885853 1 9 1 9 0 0 1997 32 422 3987604 55200 226.68595886230469 1.4315 323.4468 20160 12190 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 422 320 0 64 0 4437744020 16375492 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 31 151 190 0 0 0 5 27 0 0 0 0 0 +1923 1783858863983054900 REFRESH 39 0 0.65450787769049579 0.55451448040885853 1 9 1 9 0 0 1513 13 432 3987596 55200 226.26815795898438 1.4301999999999999 352.07819999999998 20160 12012 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 432 320 0 64 0 4438492884 17124356 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 29 256 97 0 0 1 0 12 0 0 0 0 0 +1924 1783858864380459300 REFRESH 54 0 0.65517820320797693 0.4608177172061329 1 8 1 8 0 0 1096 17 415 3987640 55200 228.2608642578125 1.4571000000000001 333.07049999999998 20160 11951 0 0 0.00047943035387544786 1.0818619638605727 4096 2048 64 1 16 415 320 0 64 0 4439224408 17855880 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 27 108 230 1 0 0 1 15 0 0 0 0 0 +1925 1783858864806916900 REFRESH 46 0 0.65477045924187882 0.37478705281090291 0 8 0 8 0 0 2571 14 428 3987647 55200 228.19737243652344 1.4607000000000001 362.22579999999999 20160 12121 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 428 320 0 64 0 4439969192 18600664 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 31 233 114 0 0 0 1 13 0 0 0 0 0 +1926 1783858865221112500 REFRESH 21 0 0.65377588018939936 0.56218057921635434 0 10 0 10 0 0 2313 21 427 3987599 55200 227.03120422363281 1.4348000000000001 348.43709999999999 20160 12029 0 0 2.0359296739914361e-05 1.0767229647665464 4096 2048 64 1 16 427 320 0 64 0 4440712956 19344428 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 27 241 109 0 0 1 5 15 0 0 0 0 0 +1927 1783858865608075000 REFRESH 3 0 0.65615499905149943 0.64054514480408853 2 9 2 9 0 0 1050 18 420 3987607 55200 225.99168395996094 1.609 330.9606 20160 11918 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 420 320 0 64 0 4441449580 20081052 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 29 176 165 0 0 0 2 16 0 0 0 0 0 +1928 1783858866069339200 REFRESH 25 0 0.65419314440102039 0.4608177172061329 1 8 1 8 0 0 2184 9 422 3987615 55200 235.357177734375 1.4451000000000001 380.95890000000003 20160 12231 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 422 320 0 64 0 4442188244 20819716 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 26 268 78 0 1 0 1 7 0 0 0 0 0 +1929 1783858866473277100 REFRESH 28 0 0.65385756817400842 0.8279386712095399 2 11 2 11 0 0 614 12 409 3988050 55680 226.32550048828125 1.4378 319.06270000000001 13440 8131 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 409 320 0 64 0 4442913648 21545120 1 0 4 2 3 3 4 983040 491520 737280 737480 998400 26 25 25 164 169 0 0 0 0 12 0 0 0 0 0 +1930 1783858866887487800 REFRESH 53 0 0.65481572756949702 0.37478705281090291 0 8 0 8 0 0 4096 28 416 3987667 55200 232.71641540527344 1.4534 353.2131 20160 12061 0 0 0 0.2221103696426992 4096 2048 64 1 16 416 320 0 64 0 4443646192 22277664 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 238 103 0 0 0 8 20 0 0 0 0 0 +1931 1783858867297354800 REFRESH 20 0 0.65207959959445283 0.26575809199318562 2 5 2 5 0 0 1940 4 432 3987683 55200 228.91725158691406 1.4544999999999999 351.70429999999999 20160 12456 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 4444395056 23026528 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 46 159 177 0 0 1 0 3 0 0 0 0 0 +1932 1783858867671726500 REFRESH 2 0 0.65527657406140571 0.45315161839863699 2 7 2 7 0 0 3180 50 409 3987599 55200 228.12364196777344 1.4443999999999999 315.5333 20160 11883 0 0 0.27733999028252415 2.0908136996316111 4096 2048 64 1 16 409 320 0 64 0 4445120460 23751932 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 41 293 0 0 0 1 49 0 0 0 0 0 +1933 1783858868072693700 REFRESH 44 0 0.65575722231115008 0.36712095400340705 1 7 1 7 0 0 1907 8 437 3987656 55200 228.17178344726562 1.4288000000000001 348.66699999999997 20160 12168 0 0 0.025565153044813767 0.87258998270648613 4096 2048 64 1 16 437 320 0 64 0 4445874424 24505896 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 25 251 111 0 1 1 0 6 0 0 0 0 0 +1934 1783858868458713400 REFRESH 57 0 0.65991766524761675 0.27342419080068137 1 6 1 6 0 0 4009 38 415 3987700 55200 228.90188598632812 1.4357 324.23719999999997 20160 12384 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 415 320 0 64 0 4446605948 25237420 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 25 25 25 142 198 0 0 0 4 34 0 0 0 0 0 +1935 1783858868811608200 REFRESH 11 0 0.65486860225482257 0.37478705281090291 0 8 0 8 0 0 2134 14 418 3987649 55200 226.988037109375 1.431 351.41379999999998 20160 12150 0 0 0 0.75522476415591044 4096 2048 64 1 16 418 320 0 64 0 4447340532 25972004 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 40 199 129 0 1 3 3 7 0 0 0 0 0 +1936 1783858869191372800 REFRESH 37 0 0.65329903627043395 0.8356047700170357 1 12 1 12 0 0 935 26 415 3988007 55680 233.83552551269531 1.4433 319.9828 20160 13610 0 0 0.010438987529659072 0.54524856454933346 4096 2048 64 1 16 415 320 0 64 0 4448072056 26703528 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 26 25 26 204 134 0 0 0 13 13 0 0 0 0 0 +1937 1783858869545757500 REFRESH 10 0 0.64833234934153938 0.64821124361158422 1 10 1 10 0 0 1043 3 432 3988476 56160 224.5611572265625 1.4301999999999999 301.69229999999999 13440 7947 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 432 320 0 64 0 4448820920 27452392 1 0 4 2 3 2 5 983040 491520 737280 491674 1248000 25 25 25 229 128 0 0 0 0 3 0 0 0 0 0 +1938 1783858869912867200 REFRESH 16 0 0.65488895187989526 0.3594548551959113 2 6 2 6 0 0 2973 29 416 3987636 55200 227.92294311523438 1.4308000000000001 312.08300000000003 20160 12080 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 416 320 0 64 0 4449553464 28184936 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 25 116 225 0 0 0 4 25 0 0 0 0 0 +1939 1783858870306118000 REFRESH 56 0 0.74400274835030977 0.17206132879045993 2 4 2 4 0 0 4096 56 410 3988988 56640 224.69938659667969 1.4505999999999999 335.8954 13440 8121 0 0 0.0054819751749248715 0.88609877647480217 4096 2048 64 1 16 410 320 0 64 0 4450279888 28911360 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 33 36 291 0 0 0 1 55 0 0 0 0 0 +1940 1783858870700674200 REFRESH 31 0 0.65472190826236942 0.3594548551959113 2 6 2 6 0 0 2358 25 426 3987659 55200 227.66592407226562 1.4305000000000001 333.74239999999998 20160 12106 0 0 0.037866436097302322 0.98169835067461553 4096 2048 64 1 16 426 320 0 64 0 4451022632 29654104 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 28 202 146 0 0 1 1 23 0 0 0 0 0 +1941 1783858871058900100 REFRESH 12 0 0.65350607804824967 0.63287904599659284 3 8 3 8 0 0 1294 39 433 3987580 55200 226.840576171875 1.4343999999999999 301.9307 20160 11852 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 433 320 0 64 0 4451772516 30403988 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 37 147 199 0 0 0 5 34 0 0 0 0 0 +1942 1783858873020252200 DEPTH 49 1 0.85461908866770753 0.53918228279386693 3 7 3 6 1 0 1321 115 2525 23744579 147840 1303.1833648681641 8.6084999999999994 1902.7429 40320 23185 1 0 0.099963099572795866 2.3338105726421743 4096 2048 384 12 96 2525 1920 0 384 1 4456206924 34838396 1 0 4 1 1 4 6 5898240 1474560 1474560 5901957 8985600 150 150 150 415 1660 3 0 1 6 105 0 0 0 0 1 +1943 1783858875285174500 DEPTH 42 1 0.82581754622682091 0 0 4 0 4 0 0 4096 18 2600 23678070 81600 1309.2464599609375 8.8264999999999993 2200.4596000000001 120960 57977 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2600 1920 0 384 1 4460717832 39349304 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 382 150 150 1418 500 0 0 0 0 18 0 0 0 0 0 +1944 1783858877471134000 DEPTH 9 1 0.65700352946216989 0.27342419080068137 1 6 1 6 0 0 2744 42 2571 23680424 84480 1323.9153900146484 8.8001000000000005 2126.3816000000002 120960 59454 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2571 1920 0 384 1 4465199160 43830632 1 0 4 3 3 3 3 5898240 4423680 4423680 4180552 4742400 150 150 226 1055 990 0 2 1 4 35 0 0 0 0 0 +1945 1783858879638795400 DEPTH 13 1 0.65632078737172028 0.27342419080068137 1 6 1 6 0 0 3901 94 2582 23677888 81600 1318.9447631835938 9.0372000000000003 2165.8481999999999 120960 59339 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2582 1920 0 384 1 4469691708 48323180 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 156 706 1420 1 0 0 2 91 0 0 0 0 0 +1946 1783858881819842700 DEPTH 17 1 0.65620432942741469 0.28109028960817717 0 7 0 7 0 0 3496 55 2589 23677814 81600 1317.2326507568359 8.6418999999999997 2179.5522999999998 120960 60103 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2589 1920 0 384 1 4474191396 52822868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426405 4492800 150 150 150 1323 816 6 0 2 0 47 0 0 0 0 0 +1947 1783858883141623000 DEPTH 8 1 0.6561845231136294 0.26575809199318562 2 5 2 5 0 0 2314 33 1692 15789325 58560 892.7877197265625 5.7764000000000006 1320.5289 80640 41783 0 0 0.030102368301037477 0.92558125821786852 4096 2048 256 8 64 1692 1280 0 256 0 4477150132 55781604 1 0 4 3 3 3 3 3932160 2949120 2949120 2950987 2995200 100 100 104 412 976 0 0 0 0 33 0 0 0 0 0 diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/run.tsv b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/run.tsv new file mode 100644 index 00000000..901c96b5 --- /dev/null +++ b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/run.tsv @@ -0,0 +1,53 @@ +format szilassi-global-search-v5 +run_id 889b3dfb-118c-48ca-ace4-853da7900f9c +node_id LOOKICH +seed 1218485698 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-neural-v3 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 251197928 +training_neural_model_reserve_bytes 251197928 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000001_ed10a00c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000001_ed10a00c.szar new file mode 100644 index 00000000..0a19ea01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000001_ed10a00c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000002_ac6d5f0a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000002_ac6d5f0a.szar new file mode 100644 index 00000000..c2e0ce2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000002_ac6d5f0a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000003_2dc058a8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000003_2dc058a8.szar new file mode 100644 index 00000000..26d10011 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000003_2dc058a8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000004_cef929f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000004_cef929f8.szar new file mode 100644 index 00000000..fe7f6e33 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000004_cef929f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000005_56cbc523.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000005_56cbc523.szar new file mode 100644 index 00000000..b63c3892 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000005_56cbc523.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000006_edbb7a0a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000006_edbb7a0a.szar new file mode 100644 index 00000000..358beb0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000006_edbb7a0a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000007_94edcbab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000007_94edcbab.szar new file mode 100644 index 00000000..ac6417cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000007_94edcbab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000008_3736d11e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000008_3736d11e.szar new file mode 100644 index 00000000..77be9f19 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000008_3736d11e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000009_fb78d5f5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000009_fb78d5f5.szar new file mode 100644 index 00000000..d269bb77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000009_fb78d5f5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000010_59910540.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000010_59910540.szar new file mode 100644 index 00000000..12034feb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000010_59910540.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000011_e3e315b2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000011_e3e315b2.szar new file mode 100644 index 00000000..41aa46e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000011_e3e315b2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000012_c1abeaed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000012_c1abeaed.szar new file mode 100644 index 00000000..ad9a008c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000012_c1abeaed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000013_ade4e4c3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000013_ade4e4c3.szar new file mode 100644 index 00000000..c0d43921 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000013_ade4e4c3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000014_0623a85c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000014_0623a85c.szar new file mode 100644 index 00000000..8123d7ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000014_0623a85c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000015_9affdfb7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000015_9affdfb7.szar new file mode 100644 index 00000000..a5aef152 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000015_9affdfb7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000016_4719d511.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000016_4719d511.szar new file mode 100644 index 00000000..baa606ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000016_4719d511.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000017_841d0f24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000017_841d0f24.szar new file mode 100644 index 00000000..1f4b4095 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000017_841d0f24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000018_6eb0af21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000018_6eb0af21.szar new file mode 100644 index 00000000..4310c588 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000018_6eb0af21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000019_b0b2909e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000019_b0b2909e.szar new file mode 100644 index 00000000..b46b1782 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000019_b0b2909e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000020_0a86cca9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000020_0a86cca9.szar new file mode 100644 index 00000000..afef5b23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000020_0a86cca9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000021_dc80530a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000021_dc80530a.szar new file mode 100644 index 00000000..ae7ee0bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000021_dc80530a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000022_645be564.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000022_645be564.szar new file mode 100644 index 00000000..62e88bcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000022_645be564.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000023_7f69bdb0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000023_7f69bdb0.szar new file mode 100644 index 00000000..dbc49538 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000023_7f69bdb0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000024_d6060cef.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000024_d6060cef.szar new file mode 100644 index 00000000..e84835d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000024_d6060cef.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000025_c86d36af.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000025_c86d36af.szar new file mode 100644 index 00000000..18026514 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000025_c86d36af.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000026_8be3cd94.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000026_8be3cd94.szar new file mode 100644 index 00000000..1108da9d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/archive/delta_00000000000000000026_8be3cd94.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000001_ea4fde8d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000001_ea4fde8d.szcp new file mode 100644 index 00000000..a8ee782b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000001_ea4fde8d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000002_3947a5e0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000002_3947a5e0.szcp new file mode 100644 index 00000000..bf5d889d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000002_3947a5e0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000003_6bbce847.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000003_6bbce847.szcp new file mode 100644 index 00000000..473dc511 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000003_6bbce847.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000004_ae6bdd1b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000004_ae6bdd1b.szcp new file mode 100644 index 00000000..5bf3ec9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000004_ae6bdd1b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000005_6a45e3c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000005_6a45e3c8.szcp new file mode 100644 index 00000000..4c9a439b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000005_6a45e3c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000006_e59dce26.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000006_e59dce26.szcp new file mode 100644 index 00000000..5e56a624 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000006_e59dce26.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000007_cd0448e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000007_cd0448e4.szcp new file mode 100644 index 00000000..0489c003 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000007_cd0448e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000008_ff7f369d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000008_ff7f369d.szcp new file mode 100644 index 00000000..50355736 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000008_ff7f369d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000009_9b9231d4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000009_9b9231d4.szcp new file mode 100644 index 00000000..31ea9d3a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000009_9b9231d4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000010_1dce18a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000010_1dce18a9.szcp new file mode 100644 index 00000000..0e17ab90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000010_1dce18a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000011_56066ea4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000011_56066ea4.szcp new file mode 100644 index 00000000..90f3342b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000011_56066ea4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000012_bd6ec229.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000012_bd6ec229.szcp new file mode 100644 index 00000000..613536e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000012_bd6ec229.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000013_9cc88f42.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000013_9cc88f42.szcp new file mode 100644 index 00000000..63399e78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000013_9cc88f42.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000014_a132b5c5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000014_a132b5c5.szcp new file mode 100644 index 00000000..a964356f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000014_a132b5c5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000015_2e201012.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000015_2e201012.szcp new file mode 100644 index 00000000..fe92e8e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000015_2e201012.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000016_507e7dbc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000016_507e7dbc.szcp new file mode 100644 index 00000000..f87d1f07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000016_507e7dbc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000017_422a57e7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000017_422a57e7.szcp new file mode 100644 index 00000000..000d5f08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000017_422a57e7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000018_f85c2aae.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000018_f85c2aae.szcp new file mode 100644 index 00000000..4147ae08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000018_f85c2aae.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000019_df7e4332.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000019_df7e4332.szcp new file mode 100644 index 00000000..fb5ad49e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000019_df7e4332.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000020_f52d8ce2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000020_f52d8ce2.szcp new file mode 100644 index 00000000..b3bb2b85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000020_f52d8ce2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000021_90a98d43.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000021_90a98d43.szcp new file mode 100644 index 00000000..2b7429f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000021_90a98d43.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000022_365c8c84.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000022_365c8c84.szcp new file mode 100644 index 00000000..010334a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000022_365c8c84.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000023_ccd67c79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000023_ccd67c79.szcp new file mode 100644 index 00000000..3b2ac539 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000023_ccd67c79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000024_6fbc4bf9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000024_6fbc4bf9.szcp new file mode 100644 index 00000000..a0db016d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000024_6fbc4bf9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000025_4abcd29f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000025_4abcd29f.szcp new file mode 100644 index 00000000..576f9dbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000025_4abcd29f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000026_15c8d78b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000026_15c8d78b.szcp new file mode 100644 index 00000000..ead46bfa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_000/checkpoints/checkpoint_00000000000000000026_15c8d78b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000001_4a57154d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000001_4a57154d.szar new file mode 100644 index 00000000..d0741667 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000001_4a57154d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000002_1d3f85f9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000002_1d3f85f9.szar new file mode 100644 index 00000000..25204efa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000002_1d3f85f9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000003_f2b9d6d5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000003_f2b9d6d5.szar new file mode 100644 index 00000000..ba4b9af2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000003_f2b9d6d5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000004_c93c9c1e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000004_c93c9c1e.szar new file mode 100644 index 00000000..049ce9de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000004_c93c9c1e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000005_77dd2ec3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000005_77dd2ec3.szar new file mode 100644 index 00000000..2e0a5e2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000005_77dd2ec3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000006_0b50ab7c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000006_0b50ab7c.szar new file mode 100644 index 00000000..34a3bf76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000006_0b50ab7c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000007_6a008643.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000007_6a008643.szar new file mode 100644 index 00000000..550e65a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000007_6a008643.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000008_6c058d1d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000008_6c058d1d.szar new file mode 100644 index 00000000..f647851c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000008_6c058d1d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000009_515f405b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000009_515f405b.szar new file mode 100644 index 00000000..bf0317dd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000009_515f405b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000010_422be62d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000010_422be62d.szar new file mode 100644 index 00000000..92ac0d9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000010_422be62d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000011_fe45f90a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000011_fe45f90a.szar new file mode 100644 index 00000000..39d00dc5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000011_fe45f90a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000012_d5b1a49a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000012_d5b1a49a.szar new file mode 100644 index 00000000..2a2d485f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000012_d5b1a49a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000013_b9e4bd03.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000013_b9e4bd03.szar new file mode 100644 index 00000000..79a7d532 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000013_b9e4bd03.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000014_d5ca59ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000014_d5ca59ba.szar new file mode 100644 index 00000000..fd833516 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000014_d5ca59ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000015_062181bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000015_062181bd.szar new file mode 100644 index 00000000..dd550ecb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000015_062181bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000016_26ef0375.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000016_26ef0375.szar new file mode 100644 index 00000000..f9b84fa6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000016_26ef0375.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000017_710496ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000017_710496ae.szar new file mode 100644 index 00000000..7a300146 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000017_710496ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000018_b989d63c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000018_b989d63c.szar new file mode 100644 index 00000000..1b41fa15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000018_b989d63c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000019_1b27605a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000019_1b27605a.szar new file mode 100644 index 00000000..30120e26 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000019_1b27605a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000020_b4e788c0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000020_b4e788c0.szar new file mode 100644 index 00000000..54347f98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000020_b4e788c0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000021_809a7609.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000021_809a7609.szar new file mode 100644 index 00000000..8de00320 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000021_809a7609.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000022_e8a1ead2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000022_e8a1ead2.szar new file mode 100644 index 00000000..6ff4a060 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000022_e8a1ead2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000023_4ca970cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000023_4ca970cb.szar new file mode 100644 index 00000000..ac9942da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000023_4ca970cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000024_486d3f5d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000024_486d3f5d.szar new file mode 100644 index 00000000..bb5b8a5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000024_486d3f5d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000025_0f1b758f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000025_0f1b758f.szar new file mode 100644 index 00000000..7b315fe1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000025_0f1b758f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000026_0acab655.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000026_0acab655.szar new file mode 100644 index 00000000..a372afa7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000026_0acab655.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000027_524f8993.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000027_524f8993.szar new file mode 100644 index 00000000..f7455dd8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000027_524f8993.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000028_56c2d584.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000028_56c2d584.szar new file mode 100644 index 00000000..a1e518c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000028_56c2d584.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000029_a7b1b856.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000029_a7b1b856.szar new file mode 100644 index 00000000..217cff8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000029_a7b1b856.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000030_0931ff19.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000030_0931ff19.szar new file mode 100644 index 00000000..00565d7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000030_0931ff19.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000031_f20f2ff3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000031_f20f2ff3.szar new file mode 100644 index 00000000..4919da76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000031_f20f2ff3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000032_5ad63995.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000032_5ad63995.szar new file mode 100644 index 00000000..5fff93e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000032_5ad63995.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000033_1b9a58e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000033_1b9a58e9.szar new file mode 100644 index 00000000..e7749b43 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000033_1b9a58e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000034_06b253b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000034_06b253b6.szar new file mode 100644 index 00000000..0461f166 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000034_06b253b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000035_fc5cd22e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000035_fc5cd22e.szar new file mode 100644 index 00000000..da066daa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000035_fc5cd22e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000036_fcbb86a6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000036_fcbb86a6.szar new file mode 100644 index 00000000..1d83938d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000036_fcbb86a6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000037_77674cfc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000037_77674cfc.szar new file mode 100644 index 00000000..1fe0fb4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000037_77674cfc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000038_aaca3dfa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000038_aaca3dfa.szar new file mode 100644 index 00000000..8d0013aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/archive/delta_00000000000000000038_aaca3dfa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000001_d3d2d3e7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000001_d3d2d3e7.szcp new file mode 100644 index 00000000..989ce5ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000001_d3d2d3e7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000002_9f9bf7b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000002_9f9bf7b0.szcp new file mode 100644 index 00000000..447cda96 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000002_9f9bf7b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000003_d8633670.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000003_d8633670.szcp new file mode 100644 index 00000000..fbab5746 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000003_d8633670.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000004_94e65754.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000004_94e65754.szcp new file mode 100644 index 00000000..14bfea00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000004_94e65754.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000005_2d8ed798.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000005_2d8ed798.szcp new file mode 100644 index 00000000..87a5f2f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000005_2d8ed798.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000006_fe61ca14.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000006_fe61ca14.szcp new file mode 100644 index 00000000..882b6e9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000006_fe61ca14.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000007_0a9728b8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000007_0a9728b8.szcp new file mode 100644 index 00000000..ceadda07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000007_0a9728b8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000008_2e4cb3c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000008_2e4cb3c8.szcp new file mode 100644 index 00000000..c14bc209 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000008_2e4cb3c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000009_f507d1e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000009_f507d1e1.szcp new file mode 100644 index 00000000..b241eab5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000009_f507d1e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000010_6f2f443c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000010_6f2f443c.szcp new file mode 100644 index 00000000..ca525e8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000010_6f2f443c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000011_504ba072.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000011_504ba072.szcp new file mode 100644 index 00000000..f0ac2d52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000011_504ba072.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000012_93f4a9e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000012_93f4a9e4.szcp new file mode 100644 index 00000000..7c211d8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000012_93f4a9e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000013_8ee3b598.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000013_8ee3b598.szcp new file mode 100644 index 00000000..a9bdd452 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000013_8ee3b598.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000014_c8de3356.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000014_c8de3356.szcp new file mode 100644 index 00000000..18b692cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000014_c8de3356.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000015_9164ebdb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000015_9164ebdb.szcp new file mode 100644 index 00000000..295116ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000015_9164ebdb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000016_877b42d8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000016_877b42d8.szcp new file mode 100644 index 00000000..ed821f03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000016_877b42d8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000017_f7533277.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000017_f7533277.szcp new file mode 100644 index 00000000..21066c24 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000017_f7533277.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000018_3f4e7c78.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000018_3f4e7c78.szcp new file mode 100644 index 00000000..250062d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000018_3f4e7c78.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000019_93ac616c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000019_93ac616c.szcp new file mode 100644 index 00000000..3a7c4059 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000019_93ac616c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000020_4e30a92c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000020_4e30a92c.szcp new file mode 100644 index 00000000..54db5e8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000020_4e30a92c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000021_f7c2c4eb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000021_f7c2c4eb.szcp new file mode 100644 index 00000000..2c56bde0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000021_f7c2c4eb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000022_3d2fdf04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000022_3d2fdf04.szcp new file mode 100644 index 00000000..5ab7cba4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000022_3d2fdf04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000023_5dd0d701.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000023_5dd0d701.szcp new file mode 100644 index 00000000..b863adf3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000023_5dd0d701.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000024_2f9e2b6c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000024_2f9e2b6c.szcp new file mode 100644 index 00000000..01c6995e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000024_2f9e2b6c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000025_45069f81.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000025_45069f81.szcp new file mode 100644 index 00000000..95d3882d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000025_45069f81.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000026_58119d0e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000026_58119d0e.szcp new file mode 100644 index 00000000..e0afe232 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000026_58119d0e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000027_ebb0db6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000027_ebb0db6d.szcp new file mode 100644 index 00000000..2395853e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000027_ebb0db6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000028_4357f06c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000028_4357f06c.szcp new file mode 100644 index 00000000..f1f2c2be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000028_4357f06c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000029_8ff6c77d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000029_8ff6c77d.szcp new file mode 100644 index 00000000..68da2a74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000029_8ff6c77d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000030_78b58f05.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000030_78b58f05.szcp new file mode 100644 index 00000000..6359d572 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000030_78b58f05.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000031_0791c83a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000031_0791c83a.szcp new file mode 100644 index 00000000..3220f581 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000031_0791c83a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000032_3cfb0355.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000032_3cfb0355.szcp new file mode 100644 index 00000000..82c38b95 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000032_3cfb0355.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000033_67ad3917.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000033_67ad3917.szcp new file mode 100644 index 00000000..9455a653 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000033_67ad3917.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000034_64cbc149.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000034_64cbc149.szcp new file mode 100644 index 00000000..06b00c45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000034_64cbc149.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000035_7821c8c4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000035_7821c8c4.szcp new file mode 100644 index 00000000..55cb1097 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000035_7821c8c4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000036_9175f242.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000036_9175f242.szcp new file mode 100644 index 00000000..b1f60108 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000036_9175f242.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000037_9bf1ee6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000037_9bf1ee6a.szcp new file mode 100644 index 00000000..74ef0bcc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000037_9bf1ee6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000038_85909365.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000038_85909365.szcp new file mode 100644 index 00000000..7f472a52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_001/checkpoints/checkpoint_00000000000000000038_85909365.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000001_4bba7408.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000001_4bba7408.szar new file mode 100644 index 00000000..63a8b3f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000001_4bba7408.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000002_cb16f3ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000002_cb16f3ab.szar new file mode 100644 index 00000000..38e6c33d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000002_cb16f3ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000003_11ab4413.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000003_11ab4413.szar new file mode 100644 index 00000000..43e280a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000003_11ab4413.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000004_49123d5b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000004_49123d5b.szar new file mode 100644 index 00000000..adaa0a9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000004_49123d5b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000005_b9588755.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000005_b9588755.szar new file mode 100644 index 00000000..33a15160 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000005_b9588755.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000006_398cbb53.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000006_398cbb53.szar new file mode 100644 index 00000000..043146b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000006_398cbb53.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000007_36eae433.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000007_36eae433.szar new file mode 100644 index 00000000..a4b352d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000007_36eae433.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000008_fae33ba3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000008_fae33ba3.szar new file mode 100644 index 00000000..e352de2b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000008_fae33ba3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000009_d9d9164b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000009_d9d9164b.szar new file mode 100644 index 00000000..40aef43a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000009_d9d9164b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000010_64c59057.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000010_64c59057.szar new file mode 100644 index 00000000..a981b97d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000010_64c59057.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000011_4950aa77.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000011_4950aa77.szar new file mode 100644 index 00000000..7a29ebc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000011_4950aa77.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000012_435d27b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000012_435d27b6.szar new file mode 100644 index 00000000..24bbce4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000012_435d27b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000013_a719ec64.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000013_a719ec64.szar new file mode 100644 index 00000000..2d63a6e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000013_a719ec64.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000014_a9d8903e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000014_a9d8903e.szar new file mode 100644 index 00000000..c9ec6f99 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000014_a9d8903e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000015_4e2cc5c4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000015_4e2cc5c4.szar new file mode 100644 index 00000000..a8d13216 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000015_4e2cc5c4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000016_7fd8acfc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000016_7fd8acfc.szar new file mode 100644 index 00000000..3c039e95 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000016_7fd8acfc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000017_98d7c1e0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000017_98d7c1e0.szar new file mode 100644 index 00000000..6c11d0b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000017_98d7c1e0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000018_c4825c04.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000018_c4825c04.szar new file mode 100644 index 00000000..dbf6bcf9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000018_c4825c04.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000019_cf590f47.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000019_cf590f47.szar new file mode 100644 index 00000000..f23a5fc6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000019_cf590f47.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000020_2a985367.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000020_2a985367.szar new file mode 100644 index 00000000..9254d292 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000020_2a985367.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000021_e6713a57.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000021_e6713a57.szar new file mode 100644 index 00000000..70a87ae2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000021_e6713a57.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000022_525471d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000022_525471d1.szar new file mode 100644 index 00000000..541d28f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000022_525471d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000023_14d8c0eb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000023_14d8c0eb.szar new file mode 100644 index 00000000..33e9c956 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000023_14d8c0eb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000024_03a375b5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000024_03a375b5.szar new file mode 100644 index 00000000..fd7ac8ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000024_03a375b5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000025_ccf6ed35.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000025_ccf6ed35.szar new file mode 100644 index 00000000..2ef1c1ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000025_ccf6ed35.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000026_60a298b1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000026_60a298b1.szar new file mode 100644 index 00000000..819b45fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000026_60a298b1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000027_eb9a1087.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000027_eb9a1087.szar new file mode 100644 index 00000000..7ca9d4c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000027_eb9a1087.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000028_9a102cd6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000028_9a102cd6.szar new file mode 100644 index 00000000..83bc593e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000028_9a102cd6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000029_0a562794.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000029_0a562794.szar new file mode 100644 index 00000000..cb2184ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000029_0a562794.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000030_35c2e458.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000030_35c2e458.szar new file mode 100644 index 00000000..4acf5782 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000030_35c2e458.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000031_857986e6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000031_857986e6.szar new file mode 100644 index 00000000..6bdba4b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000031_857986e6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000032_f9ef606b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000032_f9ef606b.szar new file mode 100644 index 00000000..95753db1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000032_f9ef606b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000033_b5731343.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000033_b5731343.szar new file mode 100644 index 00000000..27c4079e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000033_b5731343.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000034_ae648f86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000034_ae648f86.szar new file mode 100644 index 00000000..ab39cac2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/archive/delta_00000000000000000034_ae648f86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000001_e06c4a76.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000001_e06c4a76.szcp new file mode 100644 index 00000000..b44f600e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000001_e06c4a76.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000002_f9a5396b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000002_f9a5396b.szcp new file mode 100644 index 00000000..0e561976 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000002_f9a5396b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000003_e748b23c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000003_e748b23c.szcp new file mode 100644 index 00000000..c3cf59f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000003_e748b23c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000004_17252210.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000004_17252210.szcp new file mode 100644 index 00000000..99b8748e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000004_17252210.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000005_273d9a52.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000005_273d9a52.szcp new file mode 100644 index 00000000..d50ef302 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000005_273d9a52.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000006_c3a358fd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000006_c3a358fd.szcp new file mode 100644 index 00000000..82a58baa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000006_c3a358fd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000007_da83843d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000007_da83843d.szcp new file mode 100644 index 00000000..89ab4716 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000007_da83843d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000008_a3fd465c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000008_a3fd465c.szcp new file mode 100644 index 00000000..9de8257f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000008_a3fd465c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000009_ee4d8561.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000009_ee4d8561.szcp new file mode 100644 index 00000000..a9797ed1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000009_ee4d8561.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000010_188036e9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000010_188036e9.szcp new file mode 100644 index 00000000..30d5a981 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000010_188036e9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000011_cf8de1c9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000011_cf8de1c9.szcp new file mode 100644 index 00000000..a43f4074 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000011_cf8de1c9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000012_784f8aba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000012_784f8aba.szcp new file mode 100644 index 00000000..f07bb74f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000012_784f8aba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000013_f08a9a07.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000013_f08a9a07.szcp new file mode 100644 index 00000000..530c5491 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000013_f08a9a07.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000014_7e896c55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000014_7e896c55.szcp new file mode 100644 index 00000000..ce754e71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000014_7e896c55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000015_15693f03.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000015_15693f03.szcp new file mode 100644 index 00000000..bcbad1ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000015_15693f03.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000016_df37a07f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000016_df37a07f.szcp new file mode 100644 index 00000000..b73a89cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000016_df37a07f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000017_3d455ee9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000017_3d455ee9.szcp new file mode 100644 index 00000000..368e7262 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000017_3d455ee9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000018_01cdaa1f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000018_01cdaa1f.szcp new file mode 100644 index 00000000..adcbb4d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000018_01cdaa1f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000019_8abe7ef6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000019_8abe7ef6.szcp new file mode 100644 index 00000000..c8bba2b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000019_8abe7ef6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000020_3b489eda.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000020_3b489eda.szcp new file mode 100644 index 00000000..669d34b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000020_3b489eda.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000021_505178b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000021_505178b0.szcp new file mode 100644 index 00000000..7c4b5196 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000021_505178b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000022_0342c2fc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000022_0342c2fc.szcp new file mode 100644 index 00000000..6ed4ce3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000022_0342c2fc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000023_366e6e21.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000023_366e6e21.szcp new file mode 100644 index 00000000..3f26158f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000023_366e6e21.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000024_87426b58.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000024_87426b58.szcp new file mode 100644 index 00000000..b230eb7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000024_87426b58.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000025_4e84964c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000025_4e84964c.szcp new file mode 100644 index 00000000..1372956b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000025_4e84964c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000026_9023e279.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000026_9023e279.szcp new file mode 100644 index 00000000..cdc8ef53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000026_9023e279.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000027_02ac1488.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000027_02ac1488.szcp new file mode 100644 index 00000000..dbe7880c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000027_02ac1488.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000028_55bcf70f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000028_55bcf70f.szcp new file mode 100644 index 00000000..dfb16c74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000028_55bcf70f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000029_4b1bb630.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000029_4b1bb630.szcp new file mode 100644 index 00000000..944c0ada Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000029_4b1bb630.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000030_165bd3a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000030_165bd3a1.szcp new file mode 100644 index 00000000..d6b86d9d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000030_165bd3a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000031_8df0fa77.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000031_8df0fa77.szcp new file mode 100644 index 00000000..67e5ee87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000031_8df0fa77.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000032_3e7b0f0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000032_3e7b0f0c.szcp new file mode 100644 index 00000000..0ceb0124 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000032_3e7b0f0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000033_f6f5e1cd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000033_f6f5e1cd.szcp new file mode 100644 index 00000000..1d395f44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000033_f6f5e1cd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000034_b5aa08cf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000034_b5aa08cf.szcp new file mode 100644 index 00000000..828b15f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_002/checkpoints/checkpoint_00000000000000000034_b5aa08cf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000001_2f503f10.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000001_2f503f10.szar new file mode 100644 index 00000000..072791c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000001_2f503f10.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000002_a4a8d0de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000002_a4a8d0de.szar new file mode 100644 index 00000000..b2a12ff2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000002_a4a8d0de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000003_4487c0f5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000003_4487c0f5.szar new file mode 100644 index 00000000..e9bb4178 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000003_4487c0f5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000004_e87a31ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000004_e87a31ee.szar new file mode 100644 index 00000000..53cd25fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000004_e87a31ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000005_accbdc27.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000005_accbdc27.szar new file mode 100644 index 00000000..f6b799b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000005_accbdc27.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000006_a9b35bb3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000006_a9b35bb3.szar new file mode 100644 index 00000000..cc54c4b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000006_a9b35bb3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000007_7a088cb2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000007_7a088cb2.szar new file mode 100644 index 00000000..bbf2d3ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000007_7a088cb2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000008_6d32c2af.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000008_6d32c2af.szar new file mode 100644 index 00000000..34f63eac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000008_6d32c2af.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000009_2377f262.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000009_2377f262.szar new file mode 100644 index 00000000..837cb4b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000009_2377f262.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000010_5a38e400.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000010_5a38e400.szar new file mode 100644 index 00000000..21536e45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000010_5a38e400.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000011_b382463a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000011_b382463a.szar new file mode 100644 index 00000000..fab46e4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000011_b382463a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000012_dae404e5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000012_dae404e5.szar new file mode 100644 index 00000000..29d38467 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000012_dae404e5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000013_4bd02d37.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000013_4bd02d37.szar new file mode 100644 index 00000000..07b20dde Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000013_4bd02d37.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000014_0812eca1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000014_0812eca1.szar new file mode 100644 index 00000000..1b7c96b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000014_0812eca1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000015_4a60f7d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000015_4a60f7d1.szar new file mode 100644 index 00000000..c58f74fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000015_4a60f7d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000016_a4791e66.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000016_a4791e66.szar new file mode 100644 index 00000000..fbe1e0ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000016_a4791e66.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000017_d98cc4b0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000017_d98cc4b0.szar new file mode 100644 index 00000000..2120b47f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000017_d98cc4b0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000018_792dbfae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000018_792dbfae.szar new file mode 100644 index 00000000..dbbba9bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000018_792dbfae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000019_df9f8645.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000019_df9f8645.szar new file mode 100644 index 00000000..6d392627 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000019_df9f8645.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000020_8829c91f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000020_8829c91f.szar new file mode 100644 index 00000000..2a258db9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000020_8829c91f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000021_af5df3b1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000021_af5df3b1.szar new file mode 100644 index 00000000..61ea8220 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000021_af5df3b1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000022_4392be9a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000022_4392be9a.szar new file mode 100644 index 00000000..bc8851a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000022_4392be9a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000023_98ab945a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000023_98ab945a.szar new file mode 100644 index 00000000..9695877c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000023_98ab945a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000024_9007f68f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000024_9007f68f.szar new file mode 100644 index 00000000..773098a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000024_9007f68f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000025_64568e86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000025_64568e86.szar new file mode 100644 index 00000000..4099c32f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000025_64568e86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000026_82f32d25.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000026_82f32d25.szar new file mode 100644 index 00000000..32004a2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000026_82f32d25.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000027_2e4674f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000027_2e4674f8.szar new file mode 100644 index 00000000..57e1e620 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000027_2e4674f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000028_48565445.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000028_48565445.szar new file mode 100644 index 00000000..80098552 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000028_48565445.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000029_eabc4bfb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000029_eabc4bfb.szar new file mode 100644 index 00000000..b286a85e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/archive/delta_00000000000000000029_eabc4bfb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000001_b82301c2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000001_b82301c2.szcp new file mode 100644 index 00000000..d90cfe65 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000001_b82301c2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000002_a76360ff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000002_a76360ff.szcp new file mode 100644 index 00000000..8200d108 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000002_a76360ff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000003_a35471f1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000003_a35471f1.szcp new file mode 100644 index 00000000..7f60c78a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000003_a35471f1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000004_b1e1d430.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000004_b1e1d430.szcp new file mode 100644 index 00000000..e90fb73a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000004_b1e1d430.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000005_90f9e0d3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000005_90f9e0d3.szcp new file mode 100644 index 00000000..6f8a4445 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000005_90f9e0d3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000006_e9d7d450.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000006_e9d7d450.szcp new file mode 100644 index 00000000..2a76fc45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000006_e9d7d450.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000007_7e2546c1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000007_7e2546c1.szcp new file mode 100644 index 00000000..00275a77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000007_7e2546c1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000008_edf9088f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000008_edf9088f.szcp new file mode 100644 index 00000000..50811db8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000008_edf9088f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000009_33aa398f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000009_33aa398f.szcp new file mode 100644 index 00000000..c94a448c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000009_33aa398f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000010_fb4cfb93.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000010_fb4cfb93.szcp new file mode 100644 index 00000000..f1047f53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000010_fb4cfb93.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000011_3ff018eb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000011_3ff018eb.szcp new file mode 100644 index 00000000..2f52ed14 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000011_3ff018eb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000012_06091ab3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000012_06091ab3.szcp new file mode 100644 index 00000000..029c5030 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000012_06091ab3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000013_3236ef26.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000013_3236ef26.szcp new file mode 100644 index 00000000..527d3a37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000013_3236ef26.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000014_b667515d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000014_b667515d.szcp new file mode 100644 index 00000000..c0e9759d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000014_b667515d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000015_9ed64a3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000015_9ed64a3c.szcp new file mode 100644 index 00000000..a1b6583a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000015_9ed64a3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000016_be112d20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000016_be112d20.szcp new file mode 100644 index 00000000..48beaa36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000016_be112d20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000017_7d501d21.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000017_7d501d21.szcp new file mode 100644 index 00000000..c8e2e995 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000017_7d501d21.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000018_effd3820.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000018_effd3820.szcp new file mode 100644 index 00000000..a863e548 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000018_effd3820.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000019_68674a50.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000019_68674a50.szcp new file mode 100644 index 00000000..cc6d3746 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000019_68674a50.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000020_5acba0d3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000020_5acba0d3.szcp new file mode 100644 index 00000000..31aef379 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000020_5acba0d3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000021_3a152414.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000021_3a152414.szcp new file mode 100644 index 00000000..ea2698ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000021_3a152414.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000022_c1c4cc84.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000022_c1c4cc84.szcp new file mode 100644 index 00000000..a17f7519 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000022_c1c4cc84.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000023_92a704c7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000023_92a704c7.szcp new file mode 100644 index 00000000..28b747af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000023_92a704c7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000024_45f70f67.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000024_45f70f67.szcp new file mode 100644 index 00000000..89a62799 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000024_45f70f67.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000025_540c999d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000025_540c999d.szcp new file mode 100644 index 00000000..75272ea9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000025_540c999d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000026_65cc211d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000026_65cc211d.szcp new file mode 100644 index 00000000..22c97866 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000026_65cc211d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000027_85e45d78.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000027_85e45d78.szcp new file mode 100644 index 00000000..68658a09 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000027_85e45d78.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000028_00f36c6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000028_00f36c6a.szcp new file mode 100644 index 00000000..0d64ef1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000028_00f36c6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000029_00b1a3d2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000029_00b1a3d2.szcp new file mode 100644 index 00000000..9ee9e7fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_003/checkpoints/checkpoint_00000000000000000029_00b1a3d2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000001_901e263c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000001_901e263c.szar new file mode 100644 index 00000000..0954e335 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000001_901e263c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000002_ab672be7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000002_ab672be7.szar new file mode 100644 index 00000000..fd216bb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000002_ab672be7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000003_5699fde9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000003_5699fde9.szar new file mode 100644 index 00000000..ebc63359 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000003_5699fde9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000004_dc049879.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000004_dc049879.szar new file mode 100644 index 00000000..44b757ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000004_dc049879.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000005_6405b689.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000005_6405b689.szar new file mode 100644 index 00000000..3a52ee7b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000005_6405b689.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000006_dfe6a021.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000006_dfe6a021.szar new file mode 100644 index 00000000..477fb61d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000006_dfe6a021.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000007_e8daebc4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000007_e8daebc4.szar new file mode 100644 index 00000000..04d0d292 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000007_e8daebc4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000008_2bbbb431.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000008_2bbbb431.szar new file mode 100644 index 00000000..10c07559 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000008_2bbbb431.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000009_395c86a5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000009_395c86a5.szar new file mode 100644 index 00000000..a095764a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000009_395c86a5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000010_af8015b5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000010_af8015b5.szar new file mode 100644 index 00000000..e3745abc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000010_af8015b5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000011_843df9d2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000011_843df9d2.szar new file mode 100644 index 00000000..3a0f5387 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000011_843df9d2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000012_58e1ec5e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000012_58e1ec5e.szar new file mode 100644 index 00000000..1325109b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000012_58e1ec5e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000013_29a35e35.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000013_29a35e35.szar new file mode 100644 index 00000000..817626c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000013_29a35e35.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000014_122d209c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000014_122d209c.szar new file mode 100644 index 00000000..c1149a99 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000014_122d209c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000015_1e14ded2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000015_1e14ded2.szar new file mode 100644 index 00000000..fceacb2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000015_1e14ded2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000016_64cccc86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000016_64cccc86.szar new file mode 100644 index 00000000..dafbe923 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000016_64cccc86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000017_77e994a4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000017_77e994a4.szar new file mode 100644 index 00000000..52c705cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000017_77e994a4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000018_f46d4f23.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000018_f46d4f23.szar new file mode 100644 index 00000000..a45775dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000018_f46d4f23.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000019_9b484e1e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000019_9b484e1e.szar new file mode 100644 index 00000000..9d2e96af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000019_9b484e1e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000020_0c307985.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000020_0c307985.szar new file mode 100644 index 00000000..c041572a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000020_0c307985.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000021_ded22090.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000021_ded22090.szar new file mode 100644 index 00000000..397caeb5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000021_ded22090.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000022_afbba64a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000022_afbba64a.szar new file mode 100644 index 00000000..505f6849 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/archive/delta_00000000000000000022_afbba64a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000001_43dcbfff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000001_43dcbfff.szcp new file mode 100644 index 00000000..12b15a56 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000001_43dcbfff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000002_f9122e79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000002_f9122e79.szcp new file mode 100644 index 00000000..34f78549 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000002_f9122e79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000003_45febe76.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000003_45febe76.szcp new file mode 100644 index 00000000..602b3bc4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000003_45febe76.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000004_d8983bb1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000004_d8983bb1.szcp new file mode 100644 index 00000000..2b3e9089 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000004_d8983bb1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000005_f333b281.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000005_f333b281.szcp new file mode 100644 index 00000000..dc4d4561 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000005_f333b281.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000006_d5af23ad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000006_d5af23ad.szcp new file mode 100644 index 00000000..d03e8730 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000006_d5af23ad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000007_f89ea7b8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000007_f89ea7b8.szcp new file mode 100644 index 00000000..9d1f5f57 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000007_f89ea7b8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000008_f52ae242.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000008_f52ae242.szcp new file mode 100644 index 00000000..e2e0214f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000008_f52ae242.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000009_69e216f4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000009_69e216f4.szcp new file mode 100644 index 00000000..9b4e8d04 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000009_69e216f4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000010_2e1f325c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000010_2e1f325c.szcp new file mode 100644 index 00000000..dd65f2a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000010_2e1f325c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000011_a9449141.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000011_a9449141.szcp new file mode 100644 index 00000000..9ed2ecf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000011_a9449141.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000012_8c415345.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000012_8c415345.szcp new file mode 100644 index 00000000..22b102c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000012_8c415345.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000013_50f27652.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000013_50f27652.szcp new file mode 100644 index 00000000..5e0cd62a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000013_50f27652.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000014_b23b35ab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000014_b23b35ab.szcp new file mode 100644 index 00000000..ffe3088c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000014_b23b35ab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000015_acef0a2e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000015_acef0a2e.szcp new file mode 100644 index 00000000..fc219460 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000015_acef0a2e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000016_fd790061.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000016_fd790061.szcp new file mode 100644 index 00000000..45b0813e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000016_fd790061.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000017_2bbfd9d4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000017_2bbfd9d4.szcp new file mode 100644 index 00000000..545e0c63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000017_2bbfd9d4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000018_c37f7996.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000018_c37f7996.szcp new file mode 100644 index 00000000..8dc590db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000018_c37f7996.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000019_ef25dfc1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000019_ef25dfc1.szcp new file mode 100644 index 00000000..d8b2cd67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000019_ef25dfc1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000020_c8c97fc0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000020_c8c97fc0.szcp new file mode 100644 index 00000000..91a63695 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000020_c8c97fc0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000021_01ddeb50.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000021_01ddeb50.szcp new file mode 100644 index 00000000..51108df0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000021_01ddeb50.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000022_83d8474d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000022_83d8474d.szcp new file mode 100644 index 00000000..57abc932 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_004/checkpoints/checkpoint_00000000000000000022_83d8474d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000001_53878dfb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000001_53878dfb.szar new file mode 100644 index 00000000..cd68ac32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000001_53878dfb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000002_d06a2101.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000002_d06a2101.szar new file mode 100644 index 00000000..c4792886 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000002_d06a2101.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000003_0bade82c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000003_0bade82c.szar new file mode 100644 index 00000000..7e3786c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000003_0bade82c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000004_035ada61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000004_035ada61.szar new file mode 100644 index 00000000..e7fb2bcc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000004_035ada61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000005_90f1784a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000005_90f1784a.szar new file mode 100644 index 00000000..1db710ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000005_90f1784a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000006_5e5090a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000006_5e5090a3.szar new file mode 100644 index 00000000..af1e5176 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000006_5e5090a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000007_b37b1d45.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000007_b37b1d45.szar new file mode 100644 index 00000000..acac061d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000007_b37b1d45.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000008_a6eb3680.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000008_a6eb3680.szar new file mode 100644 index 00000000..5f3c9857 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000008_a6eb3680.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000009_1ef7edf0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000009_1ef7edf0.szar new file mode 100644 index 00000000..a4c1fd50 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000009_1ef7edf0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000010_d9c735f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000010_d9c735f3.szar new file mode 100644 index 00000000..7407ba77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000010_d9c735f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000011_32adf0d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000011_32adf0d9.szar new file mode 100644 index 00000000..f30d1261 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000011_32adf0d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000012_59a28368.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000012_59a28368.szar new file mode 100644 index 00000000..d178311b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000012_59a28368.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000013_06a6c969.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000013_06a6c969.szar new file mode 100644 index 00000000..2966798f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000013_06a6c969.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000014_d913d502.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000014_d913d502.szar new file mode 100644 index 00000000..019c9300 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000014_d913d502.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000015_46905a02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000015_46905a02.szar new file mode 100644 index 00000000..f2c72f2f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000015_46905a02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000016_52b326e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000016_52b326e4.szar new file mode 100644 index 00000000..258cb49c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000016_52b326e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000017_18831af6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000017_18831af6.szar new file mode 100644 index 00000000..e57699ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000017_18831af6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000018_46f42883.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000018_46f42883.szar new file mode 100644 index 00000000..f5401643 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000018_46f42883.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000019_c6fbcd90.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000019_c6fbcd90.szar new file mode 100644 index 00000000..f0ae305d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000019_c6fbcd90.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000020_ec403316.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000020_ec403316.szar new file mode 100644 index 00000000..1939fc81 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000020_ec403316.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000021_d2b88aa0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000021_d2b88aa0.szar new file mode 100644 index 00000000..4e8d76fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000021_d2b88aa0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000022_ad52cace.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000022_ad52cace.szar new file mode 100644 index 00000000..6d8f2172 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000022_ad52cace.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000023_40a2b116.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000023_40a2b116.szar new file mode 100644 index 00000000..be47d816 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000023_40a2b116.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000024_bbb7e60e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000024_bbb7e60e.szar new file mode 100644 index 00000000..32a8c892 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000024_bbb7e60e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000025_a060384a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000025_a060384a.szar new file mode 100644 index 00000000..ff6464e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000025_a060384a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000026_12efd6c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000026_12efd6c5.szar new file mode 100644 index 00000000..1f0d4139 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000026_12efd6c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000027_91afac5b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000027_91afac5b.szar new file mode 100644 index 00000000..eb09c6f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000027_91afac5b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000028_63cf91a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000028_63cf91a0.szar new file mode 100644 index 00000000..e032c370 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/archive/delta_00000000000000000028_63cf91a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000001_16b75c2f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000001_16b75c2f.szcp new file mode 100644 index 00000000..f9fd5358 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000001_16b75c2f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000002_febf01b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000002_febf01b9.szcp new file mode 100644 index 00000000..ea1eaaae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000002_febf01b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000003_dd2693e7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000003_dd2693e7.szcp new file mode 100644 index 00000000..c29958ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000003_dd2693e7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000004_278f2332.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000004_278f2332.szcp new file mode 100644 index 00000000..9fd82012 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000004_278f2332.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000005_f37b0582.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000005_f37b0582.szcp new file mode 100644 index 00000000..8ba79730 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000005_f37b0582.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000006_f800cef8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000006_f800cef8.szcp new file mode 100644 index 00000000..2a785201 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000006_f800cef8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000007_f160b790.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000007_f160b790.szcp new file mode 100644 index 00000000..ceb38b13 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000007_f160b790.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000008_41993525.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000008_41993525.szcp new file mode 100644 index 00000000..94f3b890 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000008_41993525.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000009_3d1c877d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000009_3d1c877d.szcp new file mode 100644 index 00000000..0eb257cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000009_3d1c877d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000010_2d3ad00a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000010_2d3ad00a.szcp new file mode 100644 index 00000000..9a999b9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000010_2d3ad00a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000011_a5deb5d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000011_a5deb5d6.szcp new file mode 100644 index 00000000..f2e065fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000011_a5deb5d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000012_579d1b81.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000012_579d1b81.szcp new file mode 100644 index 00000000..eddefef0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000012_579d1b81.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000013_3a2bfd48.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000013_3a2bfd48.szcp new file mode 100644 index 00000000..f44e1a94 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000013_3a2bfd48.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000014_0d2d73e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000014_0d2d73e2.szcp new file mode 100644 index 00000000..28d6d0f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000014_0d2d73e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000015_f0b5184f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000015_f0b5184f.szcp new file mode 100644 index 00000000..c31768d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000015_f0b5184f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000016_88857a6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000016_88857a6b.szcp new file mode 100644 index 00000000..a1387b55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000016_88857a6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000017_22753577.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000017_22753577.szcp new file mode 100644 index 00000000..315e00a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000017_22753577.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000018_4c5aa840.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000018_4c5aa840.szcp new file mode 100644 index 00000000..5d229cd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000018_4c5aa840.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000019_8bf2a20d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000019_8bf2a20d.szcp new file mode 100644 index 00000000..fa648049 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000019_8bf2a20d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000020_596f1917.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000020_596f1917.szcp new file mode 100644 index 00000000..b7a554f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000020_596f1917.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000021_7758bf2c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000021_7758bf2c.szcp new file mode 100644 index 00000000..db15083f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000021_7758bf2c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000022_e0994310.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000022_e0994310.szcp new file mode 100644 index 00000000..8e2d9304 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000022_e0994310.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000023_57b1ddac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000023_57b1ddac.szcp new file mode 100644 index 00000000..a3eed4af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000023_57b1ddac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000024_f9fc6400.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000024_f9fc6400.szcp new file mode 100644 index 00000000..ab8555a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000024_f9fc6400.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000025_fcdc9b65.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000025_fcdc9b65.szcp new file mode 100644 index 00000000..9072beef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000025_fcdc9b65.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000026_87dd2385.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000026_87dd2385.szcp new file mode 100644 index 00000000..50fe0337 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000026_87dd2385.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000027_0dfab624.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000027_0dfab624.szcp new file mode 100644 index 00000000..3c302178 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000027_0dfab624.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000028_33140aee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000028_33140aee.szcp new file mode 100644 index 00000000..154c688a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_005/checkpoints/checkpoint_00000000000000000028_33140aee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000001_8843253c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000001_8843253c.szar new file mode 100644 index 00000000..610c6eeb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000001_8843253c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000002_f1fc7a61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000002_f1fc7a61.szar new file mode 100644 index 00000000..4e6e9608 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000002_f1fc7a61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000003_c2fd03de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000003_c2fd03de.szar new file mode 100644 index 00000000..dac6908e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000003_c2fd03de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000004_070aeaca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000004_070aeaca.szar new file mode 100644 index 00000000..d969399a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000004_070aeaca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000005_aeeb9650.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000005_aeeb9650.szar new file mode 100644 index 00000000..782d61ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000005_aeeb9650.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000006_ae81e5fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000006_ae81e5fd.szar new file mode 100644 index 00000000..60b401cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000006_ae81e5fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000007_0a1365e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000007_0a1365e4.szar new file mode 100644 index 00000000..f1bedc0d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000007_0a1365e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000008_225d3501.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000008_225d3501.szar new file mode 100644 index 00000000..22a20247 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000008_225d3501.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000009_81c3c299.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000009_81c3c299.szar new file mode 100644 index 00000000..45ab5b11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000009_81c3c299.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000010_d7adc552.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000010_d7adc552.szar new file mode 100644 index 00000000..6679ac90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000010_d7adc552.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000011_5465addd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000011_5465addd.szar new file mode 100644 index 00000000..011137e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000011_5465addd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000012_93de9824.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000012_93de9824.szar new file mode 100644 index 00000000..272f64e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000012_93de9824.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000013_fd65bc81.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000013_fd65bc81.szar new file mode 100644 index 00000000..e676e53c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000013_fd65bc81.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000014_fb47b5f7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000014_fb47b5f7.szar new file mode 100644 index 00000000..cfb6f39c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000014_fb47b5f7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000015_42c4540a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000015_42c4540a.szar new file mode 100644 index 00000000..e3dbf6bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000015_42c4540a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000016_643cbbed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000016_643cbbed.szar new file mode 100644 index 00000000..5ab1447e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000016_643cbbed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000017_dffc431c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000017_dffc431c.szar new file mode 100644 index 00000000..cd54173f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000017_dffc431c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000018_d1374621.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000018_d1374621.szar new file mode 100644 index 00000000..2bc77913 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000018_d1374621.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000019_8eec545e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000019_8eec545e.szar new file mode 100644 index 00000000..449b58b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000019_8eec545e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000020_bf93fac2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000020_bf93fac2.szar new file mode 100644 index 00000000..6a7ad53d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000020_bf93fac2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000021_dacfbde9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000021_dacfbde9.szar new file mode 100644 index 00000000..40814c49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000021_dacfbde9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000022_2a6ea869.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000022_2a6ea869.szar new file mode 100644 index 00000000..d0819692 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/archive/delta_00000000000000000022_2a6ea869.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000001_e783d61d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000001_e783d61d.szcp new file mode 100644 index 00000000..e7f8a72e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000001_e783d61d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000002_e16edb81.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000002_e16edb81.szcp new file mode 100644 index 00000000..890fd659 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000002_e16edb81.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000003_ededf940.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000003_ededf940.szcp new file mode 100644 index 00000000..5ec8854b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000003_ededf940.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000004_6ecb50bd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000004_6ecb50bd.szcp new file mode 100644 index 00000000..8396af2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000004_6ecb50bd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000005_5e396115.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000005_5e396115.szcp new file mode 100644 index 00000000..3e883502 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000005_5e396115.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000006_5fd9594b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000006_5fd9594b.szcp new file mode 100644 index 00000000..c62a96ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000006_5fd9594b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000007_5fe897c4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000007_5fe897c4.szcp new file mode 100644 index 00000000..25ba3133 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000007_5fe897c4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000008_6d70ccf7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000008_6d70ccf7.szcp new file mode 100644 index 00000000..babb3839 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000008_6d70ccf7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000009_71c14f76.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000009_71c14f76.szcp new file mode 100644 index 00000000..7fc62240 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000009_71c14f76.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000010_4b95b29f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000010_4b95b29f.szcp new file mode 100644 index 00000000..3111e9a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000010_4b95b29f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000011_5f43ee66.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000011_5f43ee66.szcp new file mode 100644 index 00000000..3698f6b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000011_5f43ee66.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000012_84813a38.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000012_84813a38.szcp new file mode 100644 index 00000000..e8e566a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000012_84813a38.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000013_73349f1a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000013_73349f1a.szcp new file mode 100644 index 00000000..0cffc6e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000013_73349f1a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000014_954cceb5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000014_954cceb5.szcp new file mode 100644 index 00000000..07848aef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000014_954cceb5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000015_0da7d947.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000015_0da7d947.szcp new file mode 100644 index 00000000..e7995bfc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000015_0da7d947.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000016_e98ef382.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000016_e98ef382.szcp new file mode 100644 index 00000000..127d487e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000016_e98ef382.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000017_13a010dc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000017_13a010dc.szcp new file mode 100644 index 00000000..7c0cc445 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000017_13a010dc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000018_92592398.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000018_92592398.szcp new file mode 100644 index 00000000..92618060 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000018_92592398.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000019_90dd11d1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000019_90dd11d1.szcp new file mode 100644 index 00000000..80fe35d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000019_90dd11d1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000020_c4ff77eb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000020_c4ff77eb.szcp new file mode 100644 index 00000000..01dd1e30 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000020_c4ff77eb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000021_4e216e5f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000021_4e216e5f.szcp new file mode 100644 index 00000000..2f699dad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000021_4e216e5f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000022_af2b1634.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000022_af2b1634.szcp new file mode 100644 index 00000000..a22f0d53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_006/checkpoints/checkpoint_00000000000000000022_af2b1634.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000001_cfa42b2a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000001_cfa42b2a.szar new file mode 100644 index 00000000..87ae31ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000001_cfa42b2a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000002_aae804fe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000002_aae804fe.szar new file mode 100644 index 00000000..5d2e520b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000002_aae804fe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000003_953e7dc5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000003_953e7dc5.szar new file mode 100644 index 00000000..d0081201 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000003_953e7dc5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000004_807a1dc3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000004_807a1dc3.szar new file mode 100644 index 00000000..60f45aad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000004_807a1dc3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000005_5af93e18.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000005_5af93e18.szar new file mode 100644 index 00000000..ccff633d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000005_5af93e18.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000006_c09752ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000006_c09752ee.szar new file mode 100644 index 00000000..c64474ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000006_c09752ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000007_5945e786.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000007_5945e786.szar new file mode 100644 index 00000000..9e52b0cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000007_5945e786.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000008_5828a997.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000008_5828a997.szar new file mode 100644 index 00000000..da22b709 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000008_5828a997.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000009_a207bf59.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000009_a207bf59.szar new file mode 100644 index 00000000..131c6f00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000009_a207bf59.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000010_94246da0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000010_94246da0.szar new file mode 100644 index 00000000..a529d521 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000010_94246da0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000011_c5743d43.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000011_c5743d43.szar new file mode 100644 index 00000000..9604d22e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000011_c5743d43.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000012_d14de439.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000012_d14de439.szar new file mode 100644 index 00000000..1568f99d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000012_d14de439.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000013_b70544ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000013_b70544ce.szar new file mode 100644 index 00000000..ba0db7f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000013_b70544ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000014_db23b573.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000014_db23b573.szar new file mode 100644 index 00000000..62b17db6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000014_db23b573.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000015_64fc2f6d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000015_64fc2f6d.szar new file mode 100644 index 00000000..319704b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000015_64fc2f6d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000016_c03c3b2f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000016_c03c3b2f.szar new file mode 100644 index 00000000..6c4ec05c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000016_c03c3b2f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000017_88f1c14e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000017_88f1c14e.szar new file mode 100644 index 00000000..df4c0bad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000017_88f1c14e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000018_347d5904.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000018_347d5904.szar new file mode 100644 index 00000000..92d9d79f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000018_347d5904.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000019_0cbdd151.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000019_0cbdd151.szar new file mode 100644 index 00000000..1becb2a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000019_0cbdd151.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000020_f29a5562.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000020_f29a5562.szar new file mode 100644 index 00000000..0c4376ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000020_f29a5562.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000021_2a992bc8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000021_2a992bc8.szar new file mode 100644 index 00000000..98ce0692 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000021_2a992bc8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000022_ac56679e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000022_ac56679e.szar new file mode 100644 index 00000000..ded2f907 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000022_ac56679e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000023_8a40a18a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000023_8a40a18a.szar new file mode 100644 index 00000000..1b8179cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000023_8a40a18a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000024_a11e9b00.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000024_a11e9b00.szar new file mode 100644 index 00000000..33d86394 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000024_a11e9b00.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000025_dc926659.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000025_dc926659.szar new file mode 100644 index 00000000..c53feb0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000025_dc926659.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000026_d0df7cd4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000026_d0df7cd4.szar new file mode 100644 index 00000000..6221893e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000026_d0df7cd4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000027_6d89a1b0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000027_6d89a1b0.szar new file mode 100644 index 00000000..89922efa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/archive/delta_00000000000000000027_6d89a1b0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000001_4a7fdded.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000001_4a7fdded.szcp new file mode 100644 index 00000000..925d4594 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000001_4a7fdded.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000002_a5cdad78.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000002_a5cdad78.szcp new file mode 100644 index 00000000..5a83111f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000002_a5cdad78.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000003_04f71404.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000003_04f71404.szcp new file mode 100644 index 00000000..c9d0e86d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000003_04f71404.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000004_1c1a3d00.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000004_1c1a3d00.szcp new file mode 100644 index 00000000..6f607491 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000004_1c1a3d00.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000005_2b3fbe5c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000005_2b3fbe5c.szcp new file mode 100644 index 00000000..fe4d96b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000005_2b3fbe5c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000006_9452e2ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000006_9452e2ea.szcp new file mode 100644 index 00000000..81004c60 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000006_9452e2ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000007_887a0fe5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000007_887a0fe5.szcp new file mode 100644 index 00000000..7ea4755b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000007_887a0fe5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000008_6755af82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000008_6755af82.szcp new file mode 100644 index 00000000..01c8f120 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000008_6755af82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000009_e8969b32.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000009_e8969b32.szcp new file mode 100644 index 00000000..a54dae68 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000009_e8969b32.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000010_ed76c0c9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000010_ed76c0c9.szcp new file mode 100644 index 00000000..26e6fac3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000010_ed76c0c9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000011_20595e23.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000011_20595e23.szcp new file mode 100644 index 00000000..45c48b1a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000011_20595e23.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000012_4948338f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000012_4948338f.szcp new file mode 100644 index 00000000..402efc07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000012_4948338f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000013_f7aa505f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000013_f7aa505f.szcp new file mode 100644 index 00000000..ecb68ffd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000013_f7aa505f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000014_ac39cfba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000014_ac39cfba.szcp new file mode 100644 index 00000000..746261db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000014_ac39cfba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000015_2a99bdc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000015_2a99bdc9.szcp new file mode 100644 index 00000000..e0250e0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000015_2a99bdc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000016_94b58eee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000016_94b58eee.szcp new file mode 100644 index 00000000..697023f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000016_94b58eee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000017_20621d54.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000017_20621d54.szcp new file mode 100644 index 00000000..94c866eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000017_20621d54.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000018_a2e38424.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000018_a2e38424.szcp new file mode 100644 index 00000000..3a8c3b03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000018_a2e38424.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000019_a5792614.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000019_a5792614.szcp new file mode 100644 index 00000000..8138f1db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000019_a5792614.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000020_a71e0056.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000020_a71e0056.szcp new file mode 100644 index 00000000..1c3ba1b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000020_a71e0056.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000021_5656712b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000021_5656712b.szcp new file mode 100644 index 00000000..205c994b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000021_5656712b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000022_e90fadb8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000022_e90fadb8.szcp new file mode 100644 index 00000000..bda1f378 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000022_e90fadb8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000023_db156df0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000023_db156df0.szcp new file mode 100644 index 00000000..a0ad411a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000023_db156df0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000024_6290e2cd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000024_6290e2cd.szcp new file mode 100644 index 00000000..ef9e65bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000024_6290e2cd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000025_56842f68.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000025_56842f68.szcp new file mode 100644 index 00000000..1ad17814 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000025_56842f68.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000026_19931214.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000026_19931214.szcp new file mode 100644 index 00000000..b4b5736a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000026_19931214.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000027_3cfef815.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000027_3cfef815.szcp new file mode 100644 index 00000000..e71edecf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_007/checkpoints/checkpoint_00000000000000000027_3cfef815.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000001_55a3f43d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000001_55a3f43d.szar new file mode 100644 index 00000000..51a3af55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000001_55a3f43d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000002_df9ec01a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000002_df9ec01a.szar new file mode 100644 index 00000000..120e9f5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000002_df9ec01a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000003_5b27656f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000003_5b27656f.szar new file mode 100644 index 00000000..6360b813 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000003_5b27656f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000004_9e653776.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000004_9e653776.szar new file mode 100644 index 00000000..6c112193 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000004_9e653776.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000005_c083632a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000005_c083632a.szar new file mode 100644 index 00000000..9390b2b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000005_c083632a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000006_d8f52c65.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000006_d8f52c65.szar new file mode 100644 index 00000000..6f44a447 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000006_d8f52c65.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000007_d87e39ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000007_d87e39ee.szar new file mode 100644 index 00000000..53b41325 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000007_d87e39ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000008_ee6a1466.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000008_ee6a1466.szar new file mode 100644 index 00000000..4550e84b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000008_ee6a1466.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000009_9089b87f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000009_9089b87f.szar new file mode 100644 index 00000000..89729222 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000009_9089b87f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000010_158c19e5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000010_158c19e5.szar new file mode 100644 index 00000000..bd2f7843 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000010_158c19e5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000011_65f75ff6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000011_65f75ff6.szar new file mode 100644 index 00000000..6fe69130 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000011_65f75ff6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000012_fc8f7996.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000012_fc8f7996.szar new file mode 100644 index 00000000..1274656b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000012_fc8f7996.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000013_01edbc0b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000013_01edbc0b.szar new file mode 100644 index 00000000..e96a08ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000013_01edbc0b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000014_260e1328.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000014_260e1328.szar new file mode 100644 index 00000000..001a6c91 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000014_260e1328.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000015_43f04bc7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000015_43f04bc7.szar new file mode 100644 index 00000000..72276f60 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000015_43f04bc7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000016_df56887d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000016_df56887d.szar new file mode 100644 index 00000000..380452ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000016_df56887d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000017_4df764f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000017_4df764f0.szar new file mode 100644 index 00000000..fc73b3a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000017_4df764f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000018_72c934cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000018_72c934cb.szar new file mode 100644 index 00000000..cd7af3c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000018_72c934cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000019_bdac5cd5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000019_bdac5cd5.szar new file mode 100644 index 00000000..b49b5009 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000019_bdac5cd5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000020_6f93f5c0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000020_6f93f5c0.szar new file mode 100644 index 00000000..f8f1d799 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000020_6f93f5c0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000021_b79ae185.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000021_b79ae185.szar new file mode 100644 index 00000000..71580009 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000021_b79ae185.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000022_c52dbb2a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000022_c52dbb2a.szar new file mode 100644 index 00000000..7d5a9d27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000022_c52dbb2a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000023_92b0eb9d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000023_92b0eb9d.szar new file mode 100644 index 00000000..63e8d9b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000023_92b0eb9d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000024_9ee6b271.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000024_9ee6b271.szar new file mode 100644 index 00000000..c787b58b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000024_9ee6b271.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000025_6841628e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000025_6841628e.szar new file mode 100644 index 00000000..86dc7a38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000025_6841628e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000026_74bab12e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000026_74bab12e.szar new file mode 100644 index 00000000..50ae1db7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000026_74bab12e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000027_9a94cd7a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000027_9a94cd7a.szar new file mode 100644 index 00000000..0ba5b96b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000027_9a94cd7a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000028_115f499b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000028_115f499b.szar new file mode 100644 index 00000000..1e2ad292 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000028_115f499b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000029_55d3324b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000029_55d3324b.szar new file mode 100644 index 00000000..fd135c7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000029_55d3324b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000030_6dc6aa56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000030_6dc6aa56.szar new file mode 100644 index 00000000..3e8e683c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000030_6dc6aa56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000031_72600a90.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000031_72600a90.szar new file mode 100644 index 00000000..9055e336 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000031_72600a90.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000032_5fae43e7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000032_5fae43e7.szar new file mode 100644 index 00000000..3a70e21c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000032_5fae43e7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000033_fe790745.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000033_fe790745.szar new file mode 100644 index 00000000..c9a11168 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000033_fe790745.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000034_f6158c6b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000034_f6158c6b.szar new file mode 100644 index 00000000..23983c40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000034_f6158c6b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000035_b168ec8a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000035_b168ec8a.szar new file mode 100644 index 00000000..640fdca5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000035_b168ec8a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000036_58d0c7a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000036_58d0c7a3.szar new file mode 100644 index 00000000..9fa8d43a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000036_58d0c7a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000037_f6bbfe36.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000037_f6bbfe36.szar new file mode 100644 index 00000000..42243641 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000037_f6bbfe36.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000038_169ccf90.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000038_169ccf90.szar new file mode 100644 index 00000000..a5b24e2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000038_169ccf90.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000039_2316dfa6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000039_2316dfa6.szar new file mode 100644 index 00000000..597ba953 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000039_2316dfa6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000040_76597a32.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000040_76597a32.szar new file mode 100644 index 00000000..682aa186 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000040_76597a32.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000041_c630815c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000041_c630815c.szar new file mode 100644 index 00000000..3378a484 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000041_c630815c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000042_478d9564.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000042_478d9564.szar new file mode 100644 index 00000000..c154ae54 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000042_478d9564.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000043_7c01bba1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000043_7c01bba1.szar new file mode 100644 index 00000000..fe6d9cb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000043_7c01bba1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000044_bb282314.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000044_bb282314.szar new file mode 100644 index 00000000..e66fbf37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/archive/delta_00000000000000000044_bb282314.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000001_80ccc1cc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000001_80ccc1cc.szcp new file mode 100644 index 00000000..798d9e48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000001_80ccc1cc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000002_2c9bce69.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000002_2c9bce69.szcp new file mode 100644 index 00000000..41ad1b48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000002_2c9bce69.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000003_e1b576ab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000003_e1b576ab.szcp new file mode 100644 index 00000000..7a11e058 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000003_e1b576ab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000004_c60ac24c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000004_c60ac24c.szcp new file mode 100644 index 00000000..c5a94aba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000004_c60ac24c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000005_a569615d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000005_a569615d.szcp new file mode 100644 index 00000000..fdabc967 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000005_a569615d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000006_f0c9f887.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000006_f0c9f887.szcp new file mode 100644 index 00000000..8a1ce0c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000006_f0c9f887.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000007_d3c18d2a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000007_d3c18d2a.szcp new file mode 100644 index 00000000..1ad13044 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000007_d3c18d2a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000008_a4cd6c1b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000008_a4cd6c1b.szcp new file mode 100644 index 00000000..816ecc18 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000008_a4cd6c1b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000009_28d9da55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000009_28d9da55.szcp new file mode 100644 index 00000000..0b7718b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000009_28d9da55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000010_b75f5dfe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000010_b75f5dfe.szcp new file mode 100644 index 00000000..b431f6d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000010_b75f5dfe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000011_c4d09aab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000011_c4d09aab.szcp new file mode 100644 index 00000000..f6744bd5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000011_c4d09aab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000012_6b50f240.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000012_6b50f240.szcp new file mode 100644 index 00000000..fd746a14 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000012_6b50f240.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000013_3d6b0008.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000013_3d6b0008.szcp new file mode 100644 index 00000000..a20d7fc8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000013_3d6b0008.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000014_36bb5d6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000014_36bb5d6a.szcp new file mode 100644 index 00000000..632f2525 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000014_36bb5d6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000015_bc0bc52f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000015_bc0bc52f.szcp new file mode 100644 index 00000000..e5499406 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000015_bc0bc52f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000016_70ab84f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000016_70ab84f2.szcp new file mode 100644 index 00000000..596fd7c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000016_70ab84f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000017_84775e7f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000017_84775e7f.szcp new file mode 100644 index 00000000..2e61d559 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000017_84775e7f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000018_6379c7e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000018_6379c7e4.szcp new file mode 100644 index 00000000..1ffe4a78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000018_6379c7e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000019_979762b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000019_979762b1.szcp new file mode 100644 index 00000000..fb1c3dad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000019_979762b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000020_6df9fd41.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000020_6df9fd41.szcp new file mode 100644 index 00000000..7333df7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000020_6df9fd41.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000021_178a77d9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000021_178a77d9.szcp new file mode 100644 index 00000000..f8b9125d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000021_178a77d9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000022_83a191e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000022_83a191e2.szcp new file mode 100644 index 00000000..9ff3cec0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000022_83a191e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000023_c5b22421.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000023_c5b22421.szcp new file mode 100644 index 00000000..63ab4156 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000023_c5b22421.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000024_967f0128.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000024_967f0128.szcp new file mode 100644 index 00000000..c407e985 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000024_967f0128.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000025_c6c15a21.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000025_c6c15a21.szcp new file mode 100644 index 00000000..707296a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000025_c6c15a21.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000026_f0ac5c7f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000026_f0ac5c7f.szcp new file mode 100644 index 00000000..cdddaded Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000026_f0ac5c7f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000027_ec7ca447.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000027_ec7ca447.szcp new file mode 100644 index 00000000..ac698f6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000027_ec7ca447.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000028_14c9b2ff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000028_14c9b2ff.szcp new file mode 100644 index 00000000..10b584c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000028_14c9b2ff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000029_bbd08ef7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000029_bbd08ef7.szcp new file mode 100644 index 00000000..62d9da29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000029_bbd08ef7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000030_8be245b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000030_8be245b7.szcp new file mode 100644 index 00000000..94f09222 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000030_8be245b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000031_07295e97.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000031_07295e97.szcp new file mode 100644 index 00000000..284b79ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000031_07295e97.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000032_fb1ad26c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000032_fb1ad26c.szcp new file mode 100644 index 00000000..8df11c1a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000032_fb1ad26c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000033_ee05a707.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000033_ee05a707.szcp new file mode 100644 index 00000000..612605f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000033_ee05a707.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000034_adb4ab0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000034_adb4ab0d.szcp new file mode 100644 index 00000000..117cda23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000034_adb4ab0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000035_19bdb58f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000035_19bdb58f.szcp new file mode 100644 index 00000000..bf49cf9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000035_19bdb58f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000036_f5a74987.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000036_f5a74987.szcp new file mode 100644 index 00000000..f5504327 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000036_f5a74987.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000037_1f864ee7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000037_1f864ee7.szcp new file mode 100644 index 00000000..1fd1f3e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000037_1f864ee7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000038_c3d2dbb9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000038_c3d2dbb9.szcp new file mode 100644 index 00000000..571c1fc6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000038_c3d2dbb9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000039_2d36ad7a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000039_2d36ad7a.szcp new file mode 100644 index 00000000..b33bc6a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000039_2d36ad7a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000040_dff1f43c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000040_dff1f43c.szcp new file mode 100644 index 00000000..e03b9c36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000040_dff1f43c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000041_a70bd08e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000041_a70bd08e.szcp new file mode 100644 index 00000000..510bf187 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000041_a70bd08e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000042_49041388.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000042_49041388.szcp new file mode 100644 index 00000000..252f8596 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000042_49041388.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000043_b2df80e5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000043_b2df80e5.szcp new file mode 100644 index 00000000..ec448e82 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000043_b2df80e5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000044_5b18a346.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000044_5b18a346.szcp new file mode 100644 index 00000000..0fa3e885 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_008/checkpoints/checkpoint_00000000000000000044_5b18a346.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000001_36e3d23b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000001_36e3d23b.szar new file mode 100644 index 00000000..2eb4763e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000001_36e3d23b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000002_d37326f1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000002_d37326f1.szar new file mode 100644 index 00000000..0289e5cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000002_d37326f1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000003_a6dc5aec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000003_a6dc5aec.szar new file mode 100644 index 00000000..f1d78783 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000003_a6dc5aec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000004_b3a0cffd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000004_b3a0cffd.szar new file mode 100644 index 00000000..f4915de6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000004_b3a0cffd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000005_ed185897.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000005_ed185897.szar new file mode 100644 index 00000000..6bffafe5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000005_ed185897.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000006_2a462e3a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000006_2a462e3a.szar new file mode 100644 index 00000000..284893b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000006_2a462e3a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000007_124eb2d5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000007_124eb2d5.szar new file mode 100644 index 00000000..57ef4b99 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000007_124eb2d5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000008_55e229d6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000008_55e229d6.szar new file mode 100644 index 00000000..6c8b1bd6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000008_55e229d6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000009_6ccb6537.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000009_6ccb6537.szar new file mode 100644 index 00000000..05a5a7b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000009_6ccb6537.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000010_18d3bff7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000010_18d3bff7.szar new file mode 100644 index 00000000..eac8caf1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000010_18d3bff7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000011_ee5c13b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000011_ee5c13b6.szar new file mode 100644 index 00000000..08725997 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000011_ee5c13b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000012_6fb6a738.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000012_6fb6a738.szar new file mode 100644 index 00000000..6c8d0940 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000012_6fb6a738.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000013_efc62039.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000013_efc62039.szar new file mode 100644 index 00000000..cc64e4c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000013_efc62039.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000014_7609e46a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000014_7609e46a.szar new file mode 100644 index 00000000..2851b985 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000014_7609e46a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000015_c43ecaf6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000015_c43ecaf6.szar new file mode 100644 index 00000000..534acb76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000015_c43ecaf6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000016_31fdb6e6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000016_31fdb6e6.szar new file mode 100644 index 00000000..af9e24ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000016_31fdb6e6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000017_1ca37c24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000017_1ca37c24.szar new file mode 100644 index 00000000..94d6af1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000017_1ca37c24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000018_4b8f9de8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000018_4b8f9de8.szar new file mode 100644 index 00000000..d2e8030f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000018_4b8f9de8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000019_364be27d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000019_364be27d.szar new file mode 100644 index 00000000..d1e76ccf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000019_364be27d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000020_8e2d975f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000020_8e2d975f.szar new file mode 100644 index 00000000..bec0847e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000020_8e2d975f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000021_5af44f7a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000021_5af44f7a.szar new file mode 100644 index 00000000..573a850b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000021_5af44f7a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000022_a4c11b2b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000022_a4c11b2b.szar new file mode 100644 index 00000000..1eb2b2f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000022_a4c11b2b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000023_af581da5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000023_af581da5.szar new file mode 100644 index 00000000..47e81f40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000023_af581da5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000024_111747b4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000024_111747b4.szar new file mode 100644 index 00000000..461d90f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000024_111747b4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000025_da63b866.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000025_da63b866.szar new file mode 100644 index 00000000..5633588a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000025_da63b866.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000026_1caf82e5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000026_1caf82e5.szar new file mode 100644 index 00000000..5625d0c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000026_1caf82e5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000027_d06a77a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000027_d06a77a2.szar new file mode 100644 index 00000000..9c582b72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000027_d06a77a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000028_dd44c21d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000028_dd44c21d.szar new file mode 100644 index 00000000..2826f311 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000028_dd44c21d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000029_346963b7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000029_346963b7.szar new file mode 100644 index 00000000..5896d559 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000029_346963b7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000030_53494787.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000030_53494787.szar new file mode 100644 index 00000000..3ad9d385 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000030_53494787.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000031_2bc3aca7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000031_2bc3aca7.szar new file mode 100644 index 00000000..298ce5bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000031_2bc3aca7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000032_f662a8ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000032_f662a8ee.szar new file mode 100644 index 00000000..085404d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000032_f662a8ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000033_c5d51465.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000033_c5d51465.szar new file mode 100644 index 00000000..e13ac3b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000033_c5d51465.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000034_4ceacd67.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000034_4ceacd67.szar new file mode 100644 index 00000000..cc9ff642 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000034_4ceacd67.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000035_5ea50cc7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000035_5ea50cc7.szar new file mode 100644 index 00000000..91ce87c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000035_5ea50cc7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000036_792408b7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000036_792408b7.szar new file mode 100644 index 00000000..bc578b86 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000036_792408b7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000037_c9eeade5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000037_c9eeade5.szar new file mode 100644 index 00000000..7edcfaa2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000037_c9eeade5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000038_8a7ba38d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000038_8a7ba38d.szar new file mode 100644 index 00000000..930bc580 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000038_8a7ba38d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000039_227a2e1c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000039_227a2e1c.szar new file mode 100644 index 00000000..362f43db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000039_227a2e1c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000040_223fd0ec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000040_223fd0ec.szar new file mode 100644 index 00000000..3693b61b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000040_223fd0ec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000041_b373dfcf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000041_b373dfcf.szar new file mode 100644 index 00000000..0d00dd42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000041_b373dfcf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000042_8000f09e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000042_8000f09e.szar new file mode 100644 index 00000000..8ff4d5da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000042_8000f09e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000043_f70060df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000043_f70060df.szar new file mode 100644 index 00000000..5e497e82 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000043_f70060df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000044_dbf8271a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000044_dbf8271a.szar new file mode 100644 index 00000000..c96b88d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/archive/delta_00000000000000000044_dbf8271a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000001_3896d1b3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000001_3896d1b3.szcp new file mode 100644 index 00000000..fcc5e787 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000001_3896d1b3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000002_95416a0a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000002_95416a0a.szcp new file mode 100644 index 00000000..0b7019a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000002_95416a0a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000003_6416c51a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000003_6416c51a.szcp new file mode 100644 index 00000000..85b7d995 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000003_6416c51a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000004_0aa67b1f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000004_0aa67b1f.szcp new file mode 100644 index 00000000..67710dd5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000004_0aa67b1f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000005_7399c918.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000005_7399c918.szcp new file mode 100644 index 00000000..63039ad2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000005_7399c918.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000006_a94d1d60.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000006_a94d1d60.szcp new file mode 100644 index 00000000..6d27171c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000006_a94d1d60.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000007_8e6b7a5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000007_8e6b7a5b.szcp new file mode 100644 index 00000000..2c3980c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000007_8e6b7a5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000008_487dd44e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000008_487dd44e.szcp new file mode 100644 index 00000000..684f7a9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000008_487dd44e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000009_fd2ce3dd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000009_fd2ce3dd.szcp new file mode 100644 index 00000000..b98112cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000009_fd2ce3dd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000010_34504948.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000010_34504948.szcp new file mode 100644 index 00000000..dabf825b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000010_34504948.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000011_9804ffe0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000011_9804ffe0.szcp new file mode 100644 index 00000000..924d5219 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000011_9804ffe0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000012_2d0fd285.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000012_2d0fd285.szcp new file mode 100644 index 00000000..cfb83e2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000012_2d0fd285.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000013_4a772756.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000013_4a772756.szcp new file mode 100644 index 00000000..ef774db7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000013_4a772756.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000014_fdbf210e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000014_fdbf210e.szcp new file mode 100644 index 00000000..4a4db72e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000014_fdbf210e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000015_90a38bee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000015_90a38bee.szcp new file mode 100644 index 00000000..492b3db2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000015_90a38bee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000016_359004b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000016_359004b9.szcp new file mode 100644 index 00000000..dac58d31 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000016_359004b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000017_90edbf44.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000017_90edbf44.szcp new file mode 100644 index 00000000..8c884cb0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000017_90edbf44.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000018_971dd88c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000018_971dd88c.szcp new file mode 100644 index 00000000..fbdf89e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000018_971dd88c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000019_1798bbae.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000019_1798bbae.szcp new file mode 100644 index 00000000..74c401ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000019_1798bbae.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000020_32af7a1e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000020_32af7a1e.szcp new file mode 100644 index 00000000..2180ed3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000020_32af7a1e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000021_13ae905a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000021_13ae905a.szcp new file mode 100644 index 00000000..e84976b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000021_13ae905a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000022_3ce12c1e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000022_3ce12c1e.szcp new file mode 100644 index 00000000..7567c9c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000022_3ce12c1e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000023_247df60f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000023_247df60f.szcp new file mode 100644 index 00000000..4a3e6081 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000023_247df60f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000024_25fc1335.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000024_25fc1335.szcp new file mode 100644 index 00000000..3fefcfa9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000024_25fc1335.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000025_127010a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000025_127010a8.szcp new file mode 100644 index 00000000..2cc8507c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000025_127010a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000026_455ef543.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000026_455ef543.szcp new file mode 100644 index 00000000..c4ec696a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000026_455ef543.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000027_636d592d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000027_636d592d.szcp new file mode 100644 index 00000000..e7c09f34 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000027_636d592d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000028_32fb9201.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000028_32fb9201.szcp new file mode 100644 index 00000000..e636073e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000028_32fb9201.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000029_04c09c11.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000029_04c09c11.szcp new file mode 100644 index 00000000..4e214801 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000029_04c09c11.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000030_164da7d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000030_164da7d0.szcp new file mode 100644 index 00000000..f99f2408 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000030_164da7d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000031_11c9b446.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000031_11c9b446.szcp new file mode 100644 index 00000000..d12e9dbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000031_11c9b446.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000032_7b81f4c5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000032_7b81f4c5.szcp new file mode 100644 index 00000000..edd12241 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000032_7b81f4c5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000033_437323c1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000033_437323c1.szcp new file mode 100644 index 00000000..b3239d16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000033_437323c1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000034_82784b28.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000034_82784b28.szcp new file mode 100644 index 00000000..9319e596 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000034_82784b28.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000035_b3e509fd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000035_b3e509fd.szcp new file mode 100644 index 00000000..08fb181c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000035_b3e509fd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000036_819c6102.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000036_819c6102.szcp new file mode 100644 index 00000000..65de6e3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000036_819c6102.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000037_bcaff961.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000037_bcaff961.szcp new file mode 100644 index 00000000..6e2a12b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000037_bcaff961.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000038_76e32eaf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000038_76e32eaf.szcp new file mode 100644 index 00000000..32a833c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000038_76e32eaf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000039_7cdcbc7c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000039_7cdcbc7c.szcp new file mode 100644 index 00000000..47a123e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000039_7cdcbc7c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000040_92b62a62.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000040_92b62a62.szcp new file mode 100644 index 00000000..a77fe257 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000040_92b62a62.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000041_1a7f4aff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000041_1a7f4aff.szcp new file mode 100644 index 00000000..fa261501 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000041_1a7f4aff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000042_24be4b01.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000042_24be4b01.szcp new file mode 100644 index 00000000..0322a9a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000042_24be4b01.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000043_cb1b23b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000043_cb1b23b6.szcp new file mode 100644 index 00000000..81a676a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000043_cb1b23b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000044_3802c1d5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000044_3802c1d5.szcp new file mode 100644 index 00000000..de06c22b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_009/checkpoints/checkpoint_00000000000000000044_3802c1d5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000001_8bd7fd38.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000001_8bd7fd38.szar new file mode 100644 index 00000000..173af62a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000001_8bd7fd38.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000002_2672f64f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000002_2672f64f.szar new file mode 100644 index 00000000..e01f9326 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000002_2672f64f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000003_5bcc6b87.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000003_5bcc6b87.szar new file mode 100644 index 00000000..6767b651 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000003_5bcc6b87.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000004_99edc65b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000004_99edc65b.szar new file mode 100644 index 00000000..52845bc1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000004_99edc65b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000005_eb4d0144.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000005_eb4d0144.szar new file mode 100644 index 00000000..e80f42e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000005_eb4d0144.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000006_db8598ad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000006_db8598ad.szar new file mode 100644 index 00000000..1b94d0f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000006_db8598ad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000007_bc454d21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000007_bc454d21.szar new file mode 100644 index 00000000..296f77ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000007_bc454d21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000008_46a7110c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000008_46a7110c.szar new file mode 100644 index 00000000..c1026b6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000008_46a7110c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000009_4eb98281.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000009_4eb98281.szar new file mode 100644 index 00000000..58c286d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000009_4eb98281.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000010_7e02826a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000010_7e02826a.szar new file mode 100644 index 00000000..f72fa020 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000010_7e02826a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000011_b4e52926.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000011_b4e52926.szar new file mode 100644 index 00000000..6615b309 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000011_b4e52926.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000012_a61288e8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000012_a61288e8.szar new file mode 100644 index 00000000..5f7e76b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000012_a61288e8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000013_2b3c3c9d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000013_2b3c3c9d.szar new file mode 100644 index 00000000..c24f0957 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000013_2b3c3c9d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000014_5c23a677.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000014_5c23a677.szar new file mode 100644 index 00000000..c547926d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000014_5c23a677.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000015_8031a49b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000015_8031a49b.szar new file mode 100644 index 00000000..1253232b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000015_8031a49b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000016_e1fe45c2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000016_e1fe45c2.szar new file mode 100644 index 00000000..af6b73e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000016_e1fe45c2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000017_11084c7d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000017_11084c7d.szar new file mode 100644 index 00000000..a3fd3c5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000017_11084c7d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000018_830c2e1f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000018_830c2e1f.szar new file mode 100644 index 00000000..42157793 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000018_830c2e1f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000019_4b14b7b5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000019_4b14b7b5.szar new file mode 100644 index 00000000..7905ea6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000019_4b14b7b5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000020_e50c401a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000020_e50c401a.szar new file mode 100644 index 00000000..21d15ec4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000020_e50c401a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000021_9f347ba9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000021_9f347ba9.szar new file mode 100644 index 00000000..2548dce0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000021_9f347ba9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000022_65a8addb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000022_65a8addb.szar new file mode 100644 index 00000000..88871e33 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000022_65a8addb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000023_c1f17ae3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000023_c1f17ae3.szar new file mode 100644 index 00000000..891d58a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000023_c1f17ae3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000024_eb647b6e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000024_eb647b6e.szar new file mode 100644 index 00000000..02d43f84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000024_eb647b6e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000025_5b93edee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000025_5b93edee.szar new file mode 100644 index 00000000..9b1f74a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000025_5b93edee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000026_8cd8beee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000026_8cd8beee.szar new file mode 100644 index 00000000..97b45b58 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/archive/delta_00000000000000000026_8cd8beee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000001_5a1ba882.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000001_5a1ba882.szcp new file mode 100644 index 00000000..5d713136 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000001_5a1ba882.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000002_0383b71b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000002_0383b71b.szcp new file mode 100644 index 00000000..8c9add1a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000002_0383b71b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000003_88ccf447.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000003_88ccf447.szcp new file mode 100644 index 00000000..aded63f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000003_88ccf447.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000004_3a2fa9e9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000004_3a2fa9e9.szcp new file mode 100644 index 00000000..b69b4b72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000004_3a2fa9e9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000005_4cb98121.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000005_4cb98121.szcp new file mode 100644 index 00000000..24182b8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000005_4cb98121.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000006_ffb68115.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000006_ffb68115.szcp new file mode 100644 index 00000000..b8602ea5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000006_ffb68115.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000007_1af666ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000007_1af666ec.szcp new file mode 100644 index 00000000..a554b2e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000007_1af666ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000008_c7041ad6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000008_c7041ad6.szcp new file mode 100644 index 00000000..51788e88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000008_c7041ad6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000009_1519b165.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000009_1519b165.szcp new file mode 100644 index 00000000..5124a5f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000009_1519b165.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000010_2b8c48af.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000010_2b8c48af.szcp new file mode 100644 index 00000000..6f00cdc9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000010_2b8c48af.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000011_4bc23f3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000011_4bc23f3c.szcp new file mode 100644 index 00000000..dcffc618 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000011_4bc23f3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000012_6881ffae.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000012_6881ffae.szcp new file mode 100644 index 00000000..1000c42f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000012_6881ffae.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000013_b1521a1d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000013_b1521a1d.szcp new file mode 100644 index 00000000..d3af6fea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000013_b1521a1d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000014_deabfbde.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000014_deabfbde.szcp new file mode 100644 index 00000000..6de7b9c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000014_deabfbde.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000015_ebbcffed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000015_ebbcffed.szcp new file mode 100644 index 00000000..a3362d35 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000015_ebbcffed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000016_60660b61.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000016_60660b61.szcp new file mode 100644 index 00000000..694015a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000016_60660b61.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000017_6c6b70e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000017_6c6b70e1.szcp new file mode 100644 index 00000000..70abfd5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000017_6c6b70e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000018_eb83cbc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000018_eb83cbc7.szcp new file mode 100644 index 00000000..397c21e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000018_eb83cbc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000019_f50f785a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000019_f50f785a.szcp new file mode 100644 index 00000000..1f335bca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000019_f50f785a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000020_df736892.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000020_df736892.szcp new file mode 100644 index 00000000..85a0d3b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000020_df736892.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000021_9affed1a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000021_9affed1a.szcp new file mode 100644 index 00000000..743793ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000021_9affed1a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000022_da85b206.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000022_da85b206.szcp new file mode 100644 index 00000000..ff7224de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000022_da85b206.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000023_a5ac32f4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000023_a5ac32f4.szcp new file mode 100644 index 00000000..c5c6977a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000023_a5ac32f4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000024_92c6101f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000024_92c6101f.szcp new file mode 100644 index 00000000..b24c4b88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000024_92c6101f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000025_6cbfb6c2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000025_6cbfb6c2.szcp new file mode 100644 index 00000000..f88be161 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000025_6cbfb6c2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000026_f5d7f063.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000026_f5d7f063.szcp new file mode 100644 index 00000000..197caa45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_010/checkpoints/checkpoint_00000000000000000026_f5d7f063.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000001_171efc85.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000001_171efc85.szar new file mode 100644 index 00000000..3a015c2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000001_171efc85.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000002_c64d95f1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000002_c64d95f1.szar new file mode 100644 index 00000000..27d80016 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000002_c64d95f1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000003_0af2e74f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000003_0af2e74f.szar new file mode 100644 index 00000000..a783cd73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000003_0af2e74f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000004_1f534e19.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000004_1f534e19.szar new file mode 100644 index 00000000..8823f04a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000004_1f534e19.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000005_8659d2f9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000005_8659d2f9.szar new file mode 100644 index 00000000..0f10142e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000005_8659d2f9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000006_58c5519a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000006_58c5519a.szar new file mode 100644 index 00000000..5dfdb777 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000006_58c5519a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000007_9b331ffc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000007_9b331ffc.szar new file mode 100644 index 00000000..ad9a1bad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000007_9b331ffc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000008_a02f8c1c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000008_a02f8c1c.szar new file mode 100644 index 00000000..b5860b0e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000008_a02f8c1c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000009_f2c7932f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000009_f2c7932f.szar new file mode 100644 index 00000000..55d1380e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000009_f2c7932f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000010_d929e674.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000010_d929e674.szar new file mode 100644 index 00000000..9ad7010c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000010_d929e674.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000011_f113d93c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000011_f113d93c.szar new file mode 100644 index 00000000..3aa7e68a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000011_f113d93c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000012_62c91665.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000012_62c91665.szar new file mode 100644 index 00000000..d3996c1f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000012_62c91665.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000013_197230cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000013_197230cf.szar new file mode 100644 index 00000000..9521beed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000013_197230cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000014_e9f9339f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000014_e9f9339f.szar new file mode 100644 index 00000000..0399f646 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000014_e9f9339f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000015_1eb95256.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000015_1eb95256.szar new file mode 100644 index 00000000..99dd9909 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000015_1eb95256.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000016_6c8b0912.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000016_6c8b0912.szar new file mode 100644 index 00000000..b64f39e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000016_6c8b0912.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000017_8d843354.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000017_8d843354.szar new file mode 100644 index 00000000..12786754 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000017_8d843354.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000018_93fb80cc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000018_93fb80cc.szar new file mode 100644 index 00000000..b5f06a5d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000018_93fb80cc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000019_beb28eea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000019_beb28eea.szar new file mode 100644 index 00000000..d288f0a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000019_beb28eea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000020_632f95d7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000020_632f95d7.szar new file mode 100644 index 00000000..3ef86e15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000020_632f95d7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000021_2b56e196.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000021_2b56e196.szar new file mode 100644 index 00000000..d2288863 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000021_2b56e196.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000022_d4bf2ea6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000022_d4bf2ea6.szar new file mode 100644 index 00000000..d023c996 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000022_d4bf2ea6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000023_e9bf8725.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000023_e9bf8725.szar new file mode 100644 index 00000000..12c587db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000023_e9bf8725.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000024_c40bf94d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000024_c40bf94d.szar new file mode 100644 index 00000000..24495dff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000024_c40bf94d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000025_489c01f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000025_489c01f0.szar new file mode 100644 index 00000000..d02b1429 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000025_489c01f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000026_beeb3156.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000026_beeb3156.szar new file mode 100644 index 00000000..e1028fec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000026_beeb3156.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000027_6459acf7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000027_6459acf7.szar new file mode 100644 index 00000000..37234719 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000027_6459acf7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000028_13abc53b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000028_13abc53b.szar new file mode 100644 index 00000000..343baf98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000028_13abc53b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000029_f5db52ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000029_f5db52ba.szar new file mode 100644 index 00000000..3a4ff00f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000029_f5db52ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000030_abe1008a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000030_abe1008a.szar new file mode 100644 index 00000000..d9c70152 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000030_abe1008a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000031_5cb0cf84.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000031_5cb0cf84.szar new file mode 100644 index 00000000..e45ae167 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000031_5cb0cf84.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000032_b42a64d6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000032_b42a64d6.szar new file mode 100644 index 00000000..455dafd2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000032_b42a64d6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000033_9aad820a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000033_9aad820a.szar new file mode 100644 index 00000000..88312944 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000033_9aad820a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000034_3ac2e8eb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000034_3ac2e8eb.szar new file mode 100644 index 00000000..877e069e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000034_3ac2e8eb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000035_02f65b1e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000035_02f65b1e.szar new file mode 100644 index 00000000..95e1b7bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000035_02f65b1e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000036_24f8bb36.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000036_24f8bb36.szar new file mode 100644 index 00000000..0ad77db6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000036_24f8bb36.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000037_d9ae28d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000037_d9ae28d1.szar new file mode 100644 index 00000000..f8283677 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000037_d9ae28d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000038_41fea21e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000038_41fea21e.szar new file mode 100644 index 00000000..109c206a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/archive/delta_00000000000000000038_41fea21e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000001_dbe5b0f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000001_dbe5b0f7.szcp new file mode 100644 index 00000000..ed4d7dbb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000001_dbe5b0f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000002_7229dcdd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000002_7229dcdd.szcp new file mode 100644 index 00000000..867c8316 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000002_7229dcdd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000003_06409d10.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000003_06409d10.szcp new file mode 100644 index 00000000..64fd060f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000003_06409d10.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000004_810e17ae.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000004_810e17ae.szcp new file mode 100644 index 00000000..19b07628 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000004_810e17ae.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000005_cda2ce7d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000005_cda2ce7d.szcp new file mode 100644 index 00000000..92cb8de1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000005_cda2ce7d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000006_78ca7167.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000006_78ca7167.szcp new file mode 100644 index 00000000..314e9bd5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000006_78ca7167.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000007_52d82f0b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000007_52d82f0b.szcp new file mode 100644 index 00000000..ad3f0c4f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000007_52d82f0b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000008_97924521.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000008_97924521.szcp new file mode 100644 index 00000000..f17b14c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000008_97924521.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000009_3505847b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000009_3505847b.szcp new file mode 100644 index 00000000..52c1e05a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000009_3505847b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000010_d9235c12.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000010_d9235c12.szcp new file mode 100644 index 00000000..fefe361d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000010_d9235c12.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000011_2beb048a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000011_2beb048a.szcp new file mode 100644 index 00000000..3a057a4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000011_2beb048a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000012_d2184ba8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000012_d2184ba8.szcp new file mode 100644 index 00000000..b85c0891 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000012_d2184ba8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000013_0b8dccb6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000013_0b8dccb6.szcp new file mode 100644 index 00000000..85abb5e3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000013_0b8dccb6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000014_9e486615.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000014_9e486615.szcp new file mode 100644 index 00000000..482f29e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000014_9e486615.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000015_d8ccac65.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000015_d8ccac65.szcp new file mode 100644 index 00000000..ae800e40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000015_d8ccac65.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000016_ce2fb6aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000016_ce2fb6aa.szcp new file mode 100644 index 00000000..7a58de1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000016_ce2fb6aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000017_c7e52b1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000017_c7e52b1c.szcp new file mode 100644 index 00000000..1cda18c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000017_c7e52b1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000018_1ee04412.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000018_1ee04412.szcp new file mode 100644 index 00000000..b7769f8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000018_1ee04412.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000019_409c5385.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000019_409c5385.szcp new file mode 100644 index 00000000..609f0bb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000019_409c5385.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000020_703c4374.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000020_703c4374.szcp new file mode 100644 index 00000000..266118a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000020_703c4374.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000021_2b3cb83d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000021_2b3cb83d.szcp new file mode 100644 index 00000000..83cdef59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000021_2b3cb83d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000022_c4e36843.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000022_c4e36843.szcp new file mode 100644 index 00000000..04c1977c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000022_c4e36843.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000023_8ecb642b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000023_8ecb642b.szcp new file mode 100644 index 00000000..2077892b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000023_8ecb642b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000024_9901d447.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000024_9901d447.szcp new file mode 100644 index 00000000..951d5d86 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000024_9901d447.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000025_c8210945.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000025_c8210945.szcp new file mode 100644 index 00000000..016f2e27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000025_c8210945.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000026_b01dcb48.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000026_b01dcb48.szcp new file mode 100644 index 00000000..58523264 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000026_b01dcb48.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000027_6799b5ab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000027_6799b5ab.szcp new file mode 100644 index 00000000..b1bd88fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000027_6799b5ab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000028_9d868173.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000028_9d868173.szcp new file mode 100644 index 00000000..73ddc5a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000028_9d868173.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000029_99f3852a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000029_99f3852a.szcp new file mode 100644 index 00000000..78924da4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000029_99f3852a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000030_9352d245.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000030_9352d245.szcp new file mode 100644 index 00000000..11b0f466 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000030_9352d245.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000031_8ade607a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000031_8ade607a.szcp new file mode 100644 index 00000000..00c5c3c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000031_8ade607a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000032_80c6261c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000032_80c6261c.szcp new file mode 100644 index 00000000..effefaef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000032_80c6261c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000033_a75ae241.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000033_a75ae241.szcp new file mode 100644 index 00000000..fa570b83 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000033_a75ae241.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000034_8fa818b2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000034_8fa818b2.szcp new file mode 100644 index 00000000..ea09b272 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000034_8fa818b2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000035_91954171.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000035_91954171.szcp new file mode 100644 index 00000000..5a552b40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000035_91954171.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000036_85cf4e4e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000036_85cf4e4e.szcp new file mode 100644 index 00000000..cf08450f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000036_85cf4e4e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000037_59c01eeb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000037_59c01eeb.szcp new file mode 100644 index 00000000..cb2bbf8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000037_59c01eeb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000038_f2a32671.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000038_f2a32671.szcp new file mode 100644 index 00000000..11173306 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_011/checkpoints/checkpoint_00000000000000000038_f2a32671.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000001_37fd7279.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000001_37fd7279.szar new file mode 100644 index 00000000..2e932a9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000001_37fd7279.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000002_d4776d6f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000002_d4776d6f.szar new file mode 100644 index 00000000..80b9e118 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000002_d4776d6f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000003_1ebab6bb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000003_1ebab6bb.szar new file mode 100644 index 00000000..edbc64f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000003_1ebab6bb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000004_98ec02ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000004_98ec02ae.szar new file mode 100644 index 00000000..7ee30652 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000004_98ec02ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000005_8a0c562b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000005_8a0c562b.szar new file mode 100644 index 00000000..e1c32ae6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000005_8a0c562b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000006_2decfb41.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000006_2decfb41.szar new file mode 100644 index 00000000..7610e0d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000006_2decfb41.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000007_122b7ed2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000007_122b7ed2.szar new file mode 100644 index 00000000..efd9c363 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000007_122b7ed2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000008_d6645741.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000008_d6645741.szar new file mode 100644 index 00000000..b389496a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000008_d6645741.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000009_df0aa73d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000009_df0aa73d.szar new file mode 100644 index 00000000..e61374e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000009_df0aa73d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000010_67656b10.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000010_67656b10.szar new file mode 100644 index 00000000..257c99b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000010_67656b10.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000011_2200ea71.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000011_2200ea71.szar new file mode 100644 index 00000000..0639cd4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000011_2200ea71.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000012_90601a7b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000012_90601a7b.szar new file mode 100644 index 00000000..4bf5663a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000012_90601a7b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000013_385ea108.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000013_385ea108.szar new file mode 100644 index 00000000..090090f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000013_385ea108.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000014_35be32fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000014_35be32fd.szar new file mode 100644 index 00000000..bfa94783 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000014_35be32fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000015_bef4bdad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000015_bef4bdad.szar new file mode 100644 index 00000000..ac36e8c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000015_bef4bdad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000016_feb33577.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000016_feb33577.szar new file mode 100644 index 00000000..1fb1d8f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000016_feb33577.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000017_61767917.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000017_61767917.szar new file mode 100644 index 00000000..cb92570a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000017_61767917.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000018_06c443ad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000018_06c443ad.szar new file mode 100644 index 00000000..0b7d1368 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000018_06c443ad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000019_77b8a7be.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000019_77b8a7be.szar new file mode 100644 index 00000000..8897ec88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000019_77b8a7be.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000020_fcad1551.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000020_fcad1551.szar new file mode 100644 index 00000000..d0d5922d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000020_fcad1551.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000021_4bf3f158.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000021_4bf3f158.szar new file mode 100644 index 00000000..277e0e3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000021_4bf3f158.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000022_7ce88565.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000022_7ce88565.szar new file mode 100644 index 00000000..2fb641ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000022_7ce88565.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000023_6e8d1311.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000023_6e8d1311.szar new file mode 100644 index 00000000..94047219 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000023_6e8d1311.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000024_2c337a0f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000024_2c337a0f.szar new file mode 100644 index 00000000..4dfe088f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000024_2c337a0f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000025_471fafe3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000025_471fafe3.szar new file mode 100644 index 00000000..f8e45971 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000025_471fafe3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000026_86ec9891.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000026_86ec9891.szar new file mode 100644 index 00000000..a23ff718 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000026_86ec9891.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000027_efb3f5a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000027_efb3f5a3.szar new file mode 100644 index 00000000..3141002a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000027_efb3f5a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000028_16f2ee5a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000028_16f2ee5a.szar new file mode 100644 index 00000000..a58c6276 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000028_16f2ee5a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000029_42126770.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000029_42126770.szar new file mode 100644 index 00000000..8dfa3c58 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000029_42126770.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000030_9e0a287b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000030_9e0a287b.szar new file mode 100644 index 00000000..bedaf835 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/archive/delta_00000000000000000030_9e0a287b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000001_f9c867af.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000001_f9c867af.szcp new file mode 100644 index 00000000..1fd849c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000001_f9c867af.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000002_2fcfd563.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000002_2fcfd563.szcp new file mode 100644 index 00000000..de563cbb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000002_2fcfd563.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000003_31d7378f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000003_31d7378f.szcp new file mode 100644 index 00000000..08264267 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000003_31d7378f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000004_67fb163b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000004_67fb163b.szcp new file mode 100644 index 00000000..2761586f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000004_67fb163b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000005_3ffe5deb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000005_3ffe5deb.szcp new file mode 100644 index 00000000..c2c83330 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000005_3ffe5deb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000006_8651f5bf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000006_8651f5bf.szcp new file mode 100644 index 00000000..5862944e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000006_8651f5bf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000007_3fdbf622.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000007_3fdbf622.szcp new file mode 100644 index 00000000..54218eee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000007_3fdbf622.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000008_30ae959b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000008_30ae959b.szcp new file mode 100644 index 00000000..6fa96155 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000008_30ae959b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000009_d81000a2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000009_d81000a2.szcp new file mode 100644 index 00000000..4ea7c2d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000009_d81000a2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000010_150c6cb1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000010_150c6cb1.szcp new file mode 100644 index 00000000..63e2792a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000010_150c6cb1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000011_2dedb647.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000011_2dedb647.szcp new file mode 100644 index 00000000..ab789f90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000011_2dedb647.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000012_cfe212e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000012_cfe212e2.szcp new file mode 100644 index 00000000..06b3ad07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000012_cfe212e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000013_f1c042b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000013_f1c042b4.szcp new file mode 100644 index 00000000..0568f83f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000013_f1c042b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000014_5d4236fd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000014_5d4236fd.szcp new file mode 100644 index 00000000..c32e2bac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000014_5d4236fd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000015_ef07ec2c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000015_ef07ec2c.szcp new file mode 100644 index 00000000..a5f7ff7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000015_ef07ec2c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000016_73e240a3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000016_73e240a3.szcp new file mode 100644 index 00000000..a637bfc3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000016_73e240a3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000017_24a09f8e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000017_24a09f8e.szcp new file mode 100644 index 00000000..bfeb738f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000017_24a09f8e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000018_8879f9b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000018_8879f9b9.szcp new file mode 100644 index 00000000..b49b4647 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000018_8879f9b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000019_79067a5d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000019_79067a5d.szcp new file mode 100644 index 00000000..14f67cd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000019_79067a5d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000020_67f494dc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000020_67f494dc.szcp new file mode 100644 index 00000000..f87ee821 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000020_67f494dc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000021_03b13a6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000021_03b13a6e.szcp new file mode 100644 index 00000000..227b153d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000021_03b13a6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000022_2c6fdfab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000022_2c6fdfab.szcp new file mode 100644 index 00000000..ba2fb326 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000022_2c6fdfab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000023_934994ac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000023_934994ac.szcp new file mode 100644 index 00000000..4ac61830 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000023_934994ac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000024_eac546fa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000024_eac546fa.szcp new file mode 100644 index 00000000..f60404d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000024_eac546fa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000025_38a70add.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000025_38a70add.szcp new file mode 100644 index 00000000..fb3c9589 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000025_38a70add.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000026_50b75a46.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000026_50b75a46.szcp new file mode 100644 index 00000000..67f54f95 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000026_50b75a46.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000027_2cece096.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000027_2cece096.szcp new file mode 100644 index 00000000..b5895f4c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000027_2cece096.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000028_2cbaecf7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000028_2cbaecf7.szcp new file mode 100644 index 00000000..2f27a96c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000028_2cbaecf7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000029_b447db01.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000029_b447db01.szcp new file mode 100644 index 00000000..8b0a4092 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000029_b447db01.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000030_6a847c59.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000030_6a847c59.szcp new file mode 100644 index 00000000..4315df6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_012/checkpoints/checkpoint_00000000000000000030_6a847c59.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000001_52ee7b0e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000001_52ee7b0e.szar new file mode 100644 index 00000000..7ae4125e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000001_52ee7b0e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000002_80cbf722.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000002_80cbf722.szar new file mode 100644 index 00000000..55a03da8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000002_80cbf722.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000003_64b090c2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000003_64b090c2.szar new file mode 100644 index 00000000..bc2361d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000003_64b090c2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000004_31166b86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000004_31166b86.szar new file mode 100644 index 00000000..aab6f5f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000004_31166b86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000005_3d2469f7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000005_3d2469f7.szar new file mode 100644 index 00000000..121bb0e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000005_3d2469f7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000006_2d32c540.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000006_2d32c540.szar new file mode 100644 index 00000000..754ff880 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000006_2d32c540.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000007_407dd395.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000007_407dd395.szar new file mode 100644 index 00000000..e25380f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000007_407dd395.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000008_babc0b37.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000008_babc0b37.szar new file mode 100644 index 00000000..fd6559d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000008_babc0b37.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000009_3bd69468.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000009_3bd69468.szar new file mode 100644 index 00000000..dcfe2010 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000009_3bd69468.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000010_adac4530.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000010_adac4530.szar new file mode 100644 index 00000000..3db25079 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000010_adac4530.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000011_c9d175ea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000011_c9d175ea.szar new file mode 100644 index 00000000..e6f8ae44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000011_c9d175ea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000012_922d8f4b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000012_922d8f4b.szar new file mode 100644 index 00000000..e88e5869 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000012_922d8f4b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000013_3ffd37e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000013_3ffd37e9.szar new file mode 100644 index 00000000..fb022c9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000013_3ffd37e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000014_a67483cd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000014_a67483cd.szar new file mode 100644 index 00000000..905f5259 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000014_a67483cd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000015_8efb52c7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000015_8efb52c7.szar new file mode 100644 index 00000000..d5f1a603 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000015_8efb52c7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000016_b074ac43.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000016_b074ac43.szar new file mode 100644 index 00000000..1de3adee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000016_b074ac43.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000017_b57c4a4b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000017_b57c4a4b.szar new file mode 100644 index 00000000..9882c863 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000017_b57c4a4b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000018_4a3ff544.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000018_4a3ff544.szar new file mode 100644 index 00000000..b2d932cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000018_4a3ff544.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000019_e400526d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000019_e400526d.szar new file mode 100644 index 00000000..ec14bed5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000019_e400526d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000020_c79dfd64.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000020_c79dfd64.szar new file mode 100644 index 00000000..fd240752 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000020_c79dfd64.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000021_e018ec28.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000021_e018ec28.szar new file mode 100644 index 00000000..d1f00e6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000021_e018ec28.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000022_a7799a52.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000022_a7799a52.szar new file mode 100644 index 00000000..95751286 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000022_a7799a52.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000023_2e8f6bc6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000023_2e8f6bc6.szar new file mode 100644 index 00000000..794db5f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000023_2e8f6bc6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000024_3c5d45d7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000024_3c5d45d7.szar new file mode 100644 index 00000000..a11720b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000024_3c5d45d7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000025_8fa8f9b2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000025_8fa8f9b2.szar new file mode 100644 index 00000000..6b8156d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000025_8fa8f9b2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000026_1f1af59e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000026_1f1af59e.szar new file mode 100644 index 00000000..fef29a32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000026_1f1af59e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000027_0876337d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000027_0876337d.szar new file mode 100644 index 00000000..5f2ee965 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000027_0876337d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000028_a970a75a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000028_a970a75a.szar new file mode 100644 index 00000000..bb744ede Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000028_a970a75a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000029_b6ba6894.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000029_b6ba6894.szar new file mode 100644 index 00000000..f8c45e17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000029_b6ba6894.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000030_065640a1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000030_065640a1.szar new file mode 100644 index 00000000..2925aa79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000030_065640a1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000031_5724058d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000031_5724058d.szar new file mode 100644 index 00000000..0cd862f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000031_5724058d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000032_5b15f46f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000032_5b15f46f.szar new file mode 100644 index 00000000..8436abf3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000032_5b15f46f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000033_cdbd99f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000033_cdbd99f3.szar new file mode 100644 index 00000000..ccaad783 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000033_cdbd99f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000034_ca3f1060.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000034_ca3f1060.szar new file mode 100644 index 00000000..54ec5ca7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000034_ca3f1060.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000035_0d6839a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000035_0d6839a3.szar new file mode 100644 index 00000000..d31f82ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000035_0d6839a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000036_3af20d83.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000036_3af20d83.szar new file mode 100644 index 00000000..42f2f4f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000036_3af20d83.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000037_f2e6291f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000037_f2e6291f.szar new file mode 100644 index 00000000..dc788987 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000037_f2e6291f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000038_3ae5f927.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000038_3ae5f927.szar new file mode 100644 index 00000000..44c50d9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000038_3ae5f927.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000039_27eeb21b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000039_27eeb21b.szar new file mode 100644 index 00000000..ef7c4263 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000039_27eeb21b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000040_d59bcaa0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000040_d59bcaa0.szar new file mode 100644 index 00000000..1059f2f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000040_d59bcaa0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000041_05f706db.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000041_05f706db.szar new file mode 100644 index 00000000..f009b753 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000041_05f706db.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000042_01cb7976.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000042_01cb7976.szar new file mode 100644 index 00000000..abd73799 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000042_01cb7976.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000043_21089515.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000043_21089515.szar new file mode 100644 index 00000000..4f4c6917 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000043_21089515.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000044_a6d9fac5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000044_a6d9fac5.szar new file mode 100644 index 00000000..433b8004 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/archive/delta_00000000000000000044_a6d9fac5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000001_2fa20956.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000001_2fa20956.szcp new file mode 100644 index 00000000..6d272707 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000001_2fa20956.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000002_ffe2523f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000002_ffe2523f.szcp new file mode 100644 index 00000000..2177fd17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000002_ffe2523f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000003_e702ab2f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000003_e702ab2f.szcp new file mode 100644 index 00000000..f88a21ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000003_e702ab2f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000004_4bc8ba13.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000004_4bc8ba13.szcp new file mode 100644 index 00000000..edb2c35a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000004_4bc8ba13.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000005_75ab2fc2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000005_75ab2fc2.szcp new file mode 100644 index 00000000..7fd81c90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000005_75ab2fc2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000006_3698a600.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000006_3698a600.szcp new file mode 100644 index 00000000..195f2183 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000006_3698a600.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000007_9e149143.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000007_9e149143.szcp new file mode 100644 index 00000000..4ef2a356 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000007_9e149143.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000008_903cc60d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000008_903cc60d.szcp new file mode 100644 index 00000000..42a171ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000008_903cc60d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000009_67e27529.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000009_67e27529.szcp new file mode 100644 index 00000000..123751d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000009_67e27529.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000010_33fa67a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000010_33fa67a1.szcp new file mode 100644 index 00000000..c2022354 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000010_33fa67a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000011_7cf07f49.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000011_7cf07f49.szcp new file mode 100644 index 00000000..7babae7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000011_7cf07f49.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000012_4b10f05d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000012_4b10f05d.szcp new file mode 100644 index 00000000..90e76021 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000012_4b10f05d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000013_f031a6c7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000013_f031a6c7.szcp new file mode 100644 index 00000000..edf31703 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000013_f031a6c7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000014_acc14ec0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000014_acc14ec0.szcp new file mode 100644 index 00000000..dd0c9737 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000014_acc14ec0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000015_7b6d744d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000015_7b6d744d.szcp new file mode 100644 index 00000000..7caa72cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000015_7b6d744d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000016_383b9ced.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000016_383b9ced.szcp new file mode 100644 index 00000000..a00a3601 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000016_383b9ced.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000017_265ad7bc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000017_265ad7bc.szcp new file mode 100644 index 00000000..197e208a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000017_265ad7bc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000018_456ce72b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000018_456ce72b.szcp new file mode 100644 index 00000000..1bdc498c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000018_456ce72b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000019_81e0fb73.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000019_81e0fb73.szcp new file mode 100644 index 00000000..ac9a4b88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000019_81e0fb73.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000020_79f07e82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000020_79f07e82.szcp new file mode 100644 index 00000000..313ffb53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000020_79f07e82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000021_42b90571.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000021_42b90571.szcp new file mode 100644 index 00000000..c4aa430c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000021_42b90571.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000022_2f0f6969.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000022_2f0f6969.szcp new file mode 100644 index 00000000..98990380 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000022_2f0f6969.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000023_0c2475b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000023_0c2475b9.szcp new file mode 100644 index 00000000..2d8a98e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000023_0c2475b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000024_c824f715.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000024_c824f715.szcp new file mode 100644 index 00000000..e9df7392 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000024_c824f715.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000025_afe7ef34.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000025_afe7ef34.szcp new file mode 100644 index 00000000..85065066 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000025_afe7ef34.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000026_26b9ac56.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000026_26b9ac56.szcp new file mode 100644 index 00000000..5f513691 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000026_26b9ac56.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000027_89ce79ef.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000027_89ce79ef.szcp new file mode 100644 index 00000000..aa2ebefb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000027_89ce79ef.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000028_8e3f37f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000028_8e3f37f2.szcp new file mode 100644 index 00000000..2e35c300 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000028_8e3f37f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000029_c4115057.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000029_c4115057.szcp new file mode 100644 index 00000000..ceb2c8d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000029_c4115057.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000030_986abc12.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000030_986abc12.szcp new file mode 100644 index 00000000..1dee15a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000030_986abc12.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000031_5ceb5762.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000031_5ceb5762.szcp new file mode 100644 index 00000000..77d20efa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000031_5ceb5762.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000032_2dfd2f04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000032_2dfd2f04.szcp new file mode 100644 index 00000000..10ea49ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000032_2dfd2f04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000033_c1114518.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000033_c1114518.szcp new file mode 100644 index 00000000..94edaa01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000033_c1114518.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000034_c9980fa5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000034_c9980fa5.szcp new file mode 100644 index 00000000..331b5e9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000034_c9980fa5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000035_cba06730.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000035_cba06730.szcp new file mode 100644 index 00000000..2e9a02f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000035_cba06730.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000036_c97bbd75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000036_c97bbd75.szcp new file mode 100644 index 00000000..35a50e86 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000036_c97bbd75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000037_e0afb218.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000037_e0afb218.szcp new file mode 100644 index 00000000..badaf9f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000037_e0afb218.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000038_efa14a96.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000038_efa14a96.szcp new file mode 100644 index 00000000..f3741800 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000038_efa14a96.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000039_0ac63d8e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000039_0ac63d8e.szcp new file mode 100644 index 00000000..c31c2f1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000039_0ac63d8e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000040_61cccf0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000040_61cccf0c.szcp new file mode 100644 index 00000000..f41a11e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000040_61cccf0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000041_ae6b89e5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000041_ae6b89e5.szcp new file mode 100644 index 00000000..fbffaf35 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000041_ae6b89e5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000042_1cb1d539.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000042_1cb1d539.szcp new file mode 100644 index 00000000..9a13d332 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000042_1cb1d539.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000043_21a04f11.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000043_21a04f11.szcp new file mode 100644 index 00000000..fc298655 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000043_21a04f11.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000044_17b69d72.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000044_17b69d72.szcp new file mode 100644 index 00000000..ee67d9fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_013/checkpoints/checkpoint_00000000000000000044_17b69d72.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000001_7fc603d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000001_7fc603d4.szar new file mode 100644 index 00000000..286ca7d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000001_7fc603d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000002_db56893c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000002_db56893c.szar new file mode 100644 index 00000000..aa3d9372 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000002_db56893c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000003_98a9d490.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000003_98a9d490.szar new file mode 100644 index 00000000..0a433f9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000003_98a9d490.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000004_e255b8a5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000004_e255b8a5.szar new file mode 100644 index 00000000..5f66d27c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000004_e255b8a5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000005_ead71435.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000005_ead71435.szar new file mode 100644 index 00000000..457dd52d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000005_ead71435.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000006_b4282bd3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000006_b4282bd3.szar new file mode 100644 index 00000000..3704d6f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000006_b4282bd3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000007_936c76b4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000007_936c76b4.szar new file mode 100644 index 00000000..3d02762b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000007_936c76b4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000008_cdb5f05d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000008_cdb5f05d.szar new file mode 100644 index 00000000..7b59a700 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000008_cdb5f05d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000009_a022ab8f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000009_a022ab8f.szar new file mode 100644 index 00000000..a7d00c35 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000009_a022ab8f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000010_1a3eea50.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000010_1a3eea50.szar new file mode 100644 index 00000000..b05314c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000010_1a3eea50.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000011_6c66de42.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000011_6c66de42.szar new file mode 100644 index 00000000..0d9bc554 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000011_6c66de42.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000012_e2bcf268.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000012_e2bcf268.szar new file mode 100644 index 00000000..76d39aac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000012_e2bcf268.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000013_77e2f449.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000013_77e2f449.szar new file mode 100644 index 00000000..20fcbc7e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000013_77e2f449.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000014_7f120749.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000014_7f120749.szar new file mode 100644 index 00000000..b802e58e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000014_7f120749.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000015_787fd6c7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000015_787fd6c7.szar new file mode 100644 index 00000000..1882dc98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000015_787fd6c7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000016_1b1582c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000016_1b1582c5.szar new file mode 100644 index 00000000..c3d830da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000016_1b1582c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000017_49c37762.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000017_49c37762.szar new file mode 100644 index 00000000..9d9f5b3c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000017_49c37762.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000018_eff0b678.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000018_eff0b678.szar new file mode 100644 index 00000000..9cf1386f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000018_eff0b678.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000019_63794117.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000019_63794117.szar new file mode 100644 index 00000000..b185e4b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000019_63794117.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000020_96bf4d19.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000020_96bf4d19.szar new file mode 100644 index 00000000..fa115ec4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000020_96bf4d19.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000021_fadfd679.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000021_fadfd679.szar new file mode 100644 index 00000000..479bf275 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000021_fadfd679.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000022_77c2e1f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000022_77c2e1f4.szar new file mode 100644 index 00000000..e802c148 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000022_77c2e1f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000023_839bdb56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000023_839bdb56.szar new file mode 100644 index 00000000..fd3b9fe8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000023_839bdb56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000024_adc619d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000024_adc619d9.szar new file mode 100644 index 00000000..e1e037a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000024_adc619d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000025_04b646be.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000025_04b646be.szar new file mode 100644 index 00000000..fe3b2238 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000025_04b646be.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000026_d2ead18a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000026_d2ead18a.szar new file mode 100644 index 00000000..388b8e52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000026_d2ead18a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000027_c66a81de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000027_c66a81de.szar new file mode 100644 index 00000000..827bd4c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000027_c66a81de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000028_dfd60127.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000028_dfd60127.szar new file mode 100644 index 00000000..f89c3b84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000028_dfd60127.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000029_3cef4b2a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000029_3cef4b2a.szar new file mode 100644 index 00000000..0e1d2287 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000029_3cef4b2a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000030_676d1c08.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000030_676d1c08.szar new file mode 100644 index 00000000..487c2320 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/archive/delta_00000000000000000030_676d1c08.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000001_276cebe5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000001_276cebe5.szcp new file mode 100644 index 00000000..3776ce82 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000001_276cebe5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000002_0f76eddd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000002_0f76eddd.szcp new file mode 100644 index 00000000..60fffda5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000002_0f76eddd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000003_020fb411.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000003_020fb411.szcp new file mode 100644 index 00000000..3bf70c7b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000003_020fb411.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000004_752e6859.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000004_752e6859.szcp new file mode 100644 index 00000000..b0d156af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000004_752e6859.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000005_300e3b7f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000005_300e3b7f.szcp new file mode 100644 index 00000000..5ecb8551 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000005_300e3b7f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000006_9807fb6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000006_9807fb6e.szcp new file mode 100644 index 00000000..b8913817 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000006_9807fb6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000007_ddf66b8e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000007_ddf66b8e.szcp new file mode 100644 index 00000000..7f457eee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000007_ddf66b8e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000008_ab16c970.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000008_ab16c970.szcp new file mode 100644 index 00000000..bb1de215 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000008_ab16c970.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000009_78d57a5e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000009_78d57a5e.szcp new file mode 100644 index 00000000..e7d80e2a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000009_78d57a5e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000010_8fa33838.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000010_8fa33838.szcp new file mode 100644 index 00000000..f612e55a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000010_8fa33838.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000011_a3434ef1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000011_a3434ef1.szcp new file mode 100644 index 00000000..31084e87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000011_a3434ef1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000012_abd74b8c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000012_abd74b8c.szcp new file mode 100644 index 00000000..1a82475e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000012_abd74b8c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000013_004ed63f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000013_004ed63f.szcp new file mode 100644 index 00000000..53fa8065 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000013_004ed63f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000014_99876346.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000014_99876346.szcp new file mode 100644 index 00000000..6a67ffbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000014_99876346.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000015_907d26a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000015_907d26a8.szcp new file mode 100644 index 00000000..94d17290 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000015_907d26a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000016_4ec4a9b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000016_4ec4a9b9.szcp new file mode 100644 index 00000000..8fafda7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000016_4ec4a9b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000017_c16d9be5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000017_c16d9be5.szcp new file mode 100644 index 00000000..acd35d1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000017_c16d9be5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000018_4c58826d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000018_4c58826d.szcp new file mode 100644 index 00000000..854b911f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000018_4c58826d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000019_dedc766a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000019_dedc766a.szcp new file mode 100644 index 00000000..f3d5475a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000019_dedc766a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000020_18c97b95.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000020_18c97b95.szcp new file mode 100644 index 00000000..4b134cbc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000020_18c97b95.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000021_918155e5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000021_918155e5.szcp new file mode 100644 index 00000000..49c0f9bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000021_918155e5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000022_a8cb17ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000022_a8cb17ba.szcp new file mode 100644 index 00000000..cbdd37c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000022_a8cb17ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000023_b723a481.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000023_b723a481.szcp new file mode 100644 index 00000000..0251ac98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000023_b723a481.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000024_3500f01c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000024_3500f01c.szcp new file mode 100644 index 00000000..efe45097 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000024_3500f01c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000025_72ec231a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000025_72ec231a.szcp new file mode 100644 index 00000000..042c5770 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000025_72ec231a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000026_8ae88aeb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000026_8ae88aeb.szcp new file mode 100644 index 00000000..496aa873 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000026_8ae88aeb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000027_38debb59.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000027_38debb59.szcp new file mode 100644 index 00000000..63f26a67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000027_38debb59.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000028_5638d181.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000028_5638d181.szcp new file mode 100644 index 00000000..782849aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000028_5638d181.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000029_6e633657.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000029_6e633657.szcp new file mode 100644 index 00000000..7f7f5bc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000029_6e633657.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000030_d15e4a8b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000030_d15e4a8b.szcp new file mode 100644 index 00000000..2aaa5687 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_014/checkpoints/checkpoint_00000000000000000030_d15e4a8b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000001_a04278de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000001_a04278de.szar new file mode 100644 index 00000000..01bd3e3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000001_a04278de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000002_a7b76937.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000002_a7b76937.szar new file mode 100644 index 00000000..c91d5eef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000002_a7b76937.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000003_0581ada9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000003_0581ada9.szar new file mode 100644 index 00000000..16053d37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000003_0581ada9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000004_26acb4f9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000004_26acb4f9.szar new file mode 100644 index 00000000..ff3039f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000004_26acb4f9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000005_7134cabf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000005_7134cabf.szar new file mode 100644 index 00000000..e48bf3ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000005_7134cabf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000006_6b4a6de4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000006_6b4a6de4.szar new file mode 100644 index 00000000..ea8b615e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000006_6b4a6de4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000007_960c7d7c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000007_960c7d7c.szar new file mode 100644 index 00000000..9b3160a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000007_960c7d7c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000008_40c3159f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000008_40c3159f.szar new file mode 100644 index 00000000..23a9e8a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000008_40c3159f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000009_43791195.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000009_43791195.szar new file mode 100644 index 00000000..23b6f464 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000009_43791195.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000010_c9054978.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000010_c9054978.szar new file mode 100644 index 00000000..8bf8bd00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000010_c9054978.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000011_bc5e8d18.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000011_bc5e8d18.szar new file mode 100644 index 00000000..fe5f853a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000011_bc5e8d18.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000012_86851870.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000012_86851870.szar new file mode 100644 index 00000000..6d2d83c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000012_86851870.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000013_5451a0f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000013_5451a0f3.szar new file mode 100644 index 00000000..2368192b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000013_5451a0f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000014_6d3a9aa5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000014_6d3a9aa5.szar new file mode 100644 index 00000000..cc33c082 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000014_6d3a9aa5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000015_a21f0baa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000015_a21f0baa.szar new file mode 100644 index 00000000..8584233e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000015_a21f0baa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000016_db252c71.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000016_db252c71.szar new file mode 100644 index 00000000..3999ed8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000016_db252c71.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000017_d767b483.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000017_d767b483.szar new file mode 100644 index 00000000..51f41cec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000017_d767b483.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000018_91f105bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000018_91f105bc.szar new file mode 100644 index 00000000..dc233779 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000018_91f105bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000019_1076aaac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000019_1076aaac.szar new file mode 100644 index 00000000..7796d9cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000019_1076aaac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000020_e52e01ff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000020_e52e01ff.szar new file mode 100644 index 00000000..b9b8ab49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000020_e52e01ff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000021_28d0f4c6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000021_28d0f4c6.szar new file mode 100644 index 00000000..5492aa7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000021_28d0f4c6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000022_dbe28c6c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000022_dbe28c6c.szar new file mode 100644 index 00000000..36d0554a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000022_dbe28c6c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000023_6b8adcb4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000023_6b8adcb4.szar new file mode 100644 index 00000000..fbcbcf6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000023_6b8adcb4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000024_5fadfac0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000024_5fadfac0.szar new file mode 100644 index 00000000..5c7d7fbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000024_5fadfac0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000025_7b755874.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000025_7b755874.szar new file mode 100644 index 00000000..137ab1a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000025_7b755874.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000026_294daa8a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000026_294daa8a.szar new file mode 100644 index 00000000..f3910435 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/archive/delta_00000000000000000026_294daa8a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000001_18870ff8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000001_18870ff8.szcp new file mode 100644 index 00000000..e8919a62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000001_18870ff8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000002_fd06a857.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000002_fd06a857.szcp new file mode 100644 index 00000000..57622e97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000002_fd06a857.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000003_8883459b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000003_8883459b.szcp new file mode 100644 index 00000000..45876870 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000003_8883459b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000004_d722de8d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000004_d722de8d.szcp new file mode 100644 index 00000000..8716e98d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000004_d722de8d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000005_efb8802f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000005_efb8802f.szcp new file mode 100644 index 00000000..7492b808 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000005_efb8802f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000006_8cf4838b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000006_8cf4838b.szcp new file mode 100644 index 00000000..543b73b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000006_8cf4838b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000007_76fae5fe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000007_76fae5fe.szcp new file mode 100644 index 00000000..b731af47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000007_76fae5fe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000008_936001c7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000008_936001c7.szcp new file mode 100644 index 00000000..f1621c6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000008_936001c7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000009_eb846691.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000009_eb846691.szcp new file mode 100644 index 00000000..cb444f9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000009_eb846691.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000010_c1276fe6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000010_c1276fe6.szcp new file mode 100644 index 00000000..7d08bab1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000010_c1276fe6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000011_1d32bc0a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000011_1d32bc0a.szcp new file mode 100644 index 00000000..ce3f229e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000011_1d32bc0a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000012_682b3607.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000012_682b3607.szcp new file mode 100644 index 00000000..8536ae5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000012_682b3607.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000013_2e9378e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000013_2e9378e2.szcp new file mode 100644 index 00000000..afb316b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000013_2e9378e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000014_ce2e8421.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000014_ce2e8421.szcp new file mode 100644 index 00000000..a6fd3e32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000014_ce2e8421.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000015_130f9b1f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000015_130f9b1f.szcp new file mode 100644 index 00000000..1e8aca41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000015_130f9b1f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000016_3f3e3c00.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000016_3f3e3c00.szcp new file mode 100644 index 00000000..ce3db7b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000016_3f3e3c00.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000017_a280c19b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000017_a280c19b.szcp new file mode 100644 index 00000000..9df51eac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000017_a280c19b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000018_09218b04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000018_09218b04.szcp new file mode 100644 index 00000000..067e0840 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000018_09218b04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000019_7c41b314.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000019_7c41b314.szcp new file mode 100644 index 00000000..5e19c3d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000019_7c41b314.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000020_9773dfd1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000020_9773dfd1.szcp new file mode 100644 index 00000000..289ca265 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000020_9773dfd1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000021_76c9647a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000021_76c9647a.szcp new file mode 100644 index 00000000..751378a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000021_76c9647a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000022_86e6e1e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000022_86e6e1e4.szcp new file mode 100644 index 00000000..4868ff2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000022_86e6e1e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000023_d7123e3b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000023_d7123e3b.szcp new file mode 100644 index 00000000..3dd35dee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000023_d7123e3b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000024_29b1e387.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000024_29b1e387.szcp new file mode 100644 index 00000000..bb5af8b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000024_29b1e387.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000025_d8dd3578.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000025_d8dd3578.szcp new file mode 100644 index 00000000..d91bb6be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000025_d8dd3578.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000026_52879d5a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000026_52879d5a.szcp new file mode 100644 index 00000000..6c3b7877 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_015/checkpoints/checkpoint_00000000000000000026_52879d5a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000001_77553c95.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000001_77553c95.szar new file mode 100644 index 00000000..d0d2f93a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000001_77553c95.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000002_ecbb8a97.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000002_ecbb8a97.szar new file mode 100644 index 00000000..67346d3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000002_ecbb8a97.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000003_f2a91267.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000003_f2a91267.szar new file mode 100644 index 00000000..adbe7ddc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000003_f2a91267.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000004_a85496bb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000004_a85496bb.szar new file mode 100644 index 00000000..e49f0908 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000004_a85496bb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000005_cdfc4cb4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000005_cdfc4cb4.szar new file mode 100644 index 00000000..cd2f2941 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000005_cdfc4cb4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000006_52db350e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000006_52db350e.szar new file mode 100644 index 00000000..032b326a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000006_52db350e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000007_851e184d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000007_851e184d.szar new file mode 100644 index 00000000..b278ea08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000007_851e184d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000008_5956ad69.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000008_5956ad69.szar new file mode 100644 index 00000000..62f32e20 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000008_5956ad69.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000009_7f315fb6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000009_7f315fb6.szar new file mode 100644 index 00000000..70d73a9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000009_7f315fb6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000010_960289d6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000010_960289d6.szar new file mode 100644 index 00000000..f3a9aef3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000010_960289d6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000011_67836dde.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000011_67836dde.szar new file mode 100644 index 00000000..3b9a58be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000011_67836dde.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000012_efa5b276.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000012_efa5b276.szar new file mode 100644 index 00000000..0fa738d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000012_efa5b276.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000013_f3a42ac4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000013_f3a42ac4.szar new file mode 100644 index 00000000..29f45d50 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000013_f3a42ac4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000014_7c4fd9e2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000014_7c4fd9e2.szar new file mode 100644 index 00000000..2d9607be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000014_7c4fd9e2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000015_01f38ce7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000015_01f38ce7.szar new file mode 100644 index 00000000..9ebc632b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000015_01f38ce7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000016_d008e61f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000016_d008e61f.szar new file mode 100644 index 00000000..5e38930e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000016_d008e61f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000017_5c900c5e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000017_5c900c5e.szar new file mode 100644 index 00000000..dcd548c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000017_5c900c5e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000018_c23af755.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000018_c23af755.szar new file mode 100644 index 00000000..3738ad53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000018_c23af755.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000019_59a1b4a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000019_59a1b4a2.szar new file mode 100644 index 00000000..0a648261 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000019_59a1b4a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000020_2931eb80.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000020_2931eb80.szar new file mode 100644 index 00000000..0fde1344 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000020_2931eb80.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000021_f2c2ec8d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000021_f2c2ec8d.szar new file mode 100644 index 00000000..ba71bb0d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000021_f2c2ec8d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000022_1e62cddc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000022_1e62cddc.szar new file mode 100644 index 00000000..dfb39586 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000022_1e62cddc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000023_5cc53403.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000023_5cc53403.szar new file mode 100644 index 00000000..3ce51620 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000023_5cc53403.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000024_b4ff86fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000024_b4ff86fb.szar new file mode 100644 index 00000000..341db58b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000024_b4ff86fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000025_83b70af8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000025_83b70af8.szar new file mode 100644 index 00000000..cd2a9306 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000025_83b70af8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000026_6888c544.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000026_6888c544.szar new file mode 100644 index 00000000..79948275 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000026_6888c544.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000027_3e6d2f2f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000027_3e6d2f2f.szar new file mode 100644 index 00000000..89f7b0bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000027_3e6d2f2f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000028_f3e782f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000028_f3e782f3.szar new file mode 100644 index 00000000..34192a4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000028_f3e782f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000029_3c7a314b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000029_3c7a314b.szar new file mode 100644 index 00000000..2ca5944c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000029_3c7a314b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000030_9fb490d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000030_9fb490d9.szar new file mode 100644 index 00000000..ab4370b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000030_9fb490d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000031_d888531f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000031_d888531f.szar new file mode 100644 index 00000000..2fc7c29b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000031_d888531f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000032_a788f132.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000032_a788f132.szar new file mode 100644 index 00000000..0586eedf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000032_a788f132.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000033_52e4e41f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000033_52e4e41f.szar new file mode 100644 index 00000000..1ca349be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000033_52e4e41f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000034_f33c57e6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000034_f33c57e6.szar new file mode 100644 index 00000000..ff26709f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000034_f33c57e6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000035_6f970ffe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000035_6f970ffe.szar new file mode 100644 index 00000000..e7dba4a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000035_6f970ffe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000036_c3c7bd3f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000036_c3c7bd3f.szar new file mode 100644 index 00000000..4ae435fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000036_c3c7bd3f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000037_f7d540dc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000037_f7d540dc.szar new file mode 100644 index 00000000..32b69bfa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000037_f7d540dc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000038_79b83bcf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000038_79b83bcf.szar new file mode 100644 index 00000000..6765f5c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/archive/delta_00000000000000000038_79b83bcf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000001_bbe3eda7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000001_bbe3eda7.szcp new file mode 100644 index 00000000..93b37449 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000001_bbe3eda7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000002_bdba8c43.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000002_bdba8c43.szcp new file mode 100644 index 00000000..9ca8da15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000002_bdba8c43.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000003_5ec388b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000003_5ec388b1.szcp new file mode 100644 index 00000000..f9228924 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000003_5ec388b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000004_0c17b98a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000004_0c17b98a.szcp new file mode 100644 index 00000000..b54f0c5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000004_0c17b98a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000005_b9d85f47.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000005_b9d85f47.szcp new file mode 100644 index 00000000..8b7f483d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000005_b9d85f47.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000006_38c9dc9d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000006_38c9dc9d.szcp new file mode 100644 index 00000000..ceff1f23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000006_38c9dc9d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000007_f95021f3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000007_f95021f3.szcp new file mode 100644 index 00000000..e3c24284 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000007_f95021f3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000008_1f9a1a5c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000008_1f9a1a5c.szcp new file mode 100644 index 00000000..a2929512 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000008_1f9a1a5c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000009_e19ac222.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000009_e19ac222.szcp new file mode 100644 index 00000000..0d4d2bd0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000009_e19ac222.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000010_0b2f9099.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000010_0b2f9099.szcp new file mode 100644 index 00000000..5dcbbef1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000010_0b2f9099.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000011_d30c66f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000011_d30c66f2.szcp new file mode 100644 index 00000000..7a3d2e5d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000011_d30c66f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000012_cdbf456b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000012_cdbf456b.szcp new file mode 100644 index 00000000..9cdc113d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000012_cdbf456b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000013_c7b6db18.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000013_c7b6db18.szcp new file mode 100644 index 00000000..2454df3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000013_c7b6db18.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000014_20d53e1e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000014_20d53e1e.szcp new file mode 100644 index 00000000..fd8e8411 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000014_20d53e1e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000015_54b1ea5c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000015_54b1ea5c.szcp new file mode 100644 index 00000000..d43c866a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000015_54b1ea5c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000016_4b7b0ead.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000016_4b7b0ead.szcp new file mode 100644 index 00000000..cdd8947c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000016_4b7b0ead.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000017_e3605bf9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000017_e3605bf9.szcp new file mode 100644 index 00000000..24bc7005 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000017_e3605bf9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000018_52eb1732.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000018_52eb1732.szcp new file mode 100644 index 00000000..7b451957 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000018_52eb1732.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000019_86c5faf0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000019_86c5faf0.szcp new file mode 100644 index 00000000..c66fb5fd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000019_86c5faf0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000020_eb6e545e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000020_eb6e545e.szcp new file mode 100644 index 00000000..e0e09da5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000020_eb6e545e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000021_2db84774.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000021_2db84774.szcp new file mode 100644 index 00000000..1b775f2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000021_2db84774.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000022_a0438b80.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000022_a0438b80.szcp new file mode 100644 index 00000000..c69e6cf9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000022_a0438b80.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000023_52d8598a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000023_52d8598a.szcp new file mode 100644 index 00000000..72c5e198 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000023_52d8598a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000024_9bf37ee4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000024_9bf37ee4.szcp new file mode 100644 index 00000000..06f3bb24 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000024_9bf37ee4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000025_83853c68.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000025_83853c68.szcp new file mode 100644 index 00000000..1328ee95 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000025_83853c68.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000026_0bd94c12.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000026_0bd94c12.szcp new file mode 100644 index 00000000..6b46121c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000026_0bd94c12.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000027_0a3fd8b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000027_0a3fd8b7.szcp new file mode 100644 index 00000000..7382051d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000027_0a3fd8b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000028_599ec6bf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000028_599ec6bf.szcp new file mode 100644 index 00000000..9bee6867 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000028_599ec6bf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000029_e3d6e79e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000029_e3d6e79e.szcp new file mode 100644 index 00000000..a7f72ae1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000029_e3d6e79e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000030_0596221f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000030_0596221f.szcp new file mode 100644 index 00000000..3249758f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000030_0596221f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000031_5b32468e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000031_5b32468e.szcp new file mode 100644 index 00000000..655c8306 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000031_5b32468e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000032_4ad7f91c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000032_4ad7f91c.szcp new file mode 100644 index 00000000..9daa17e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000032_4ad7f91c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000033_44f6452b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000033_44f6452b.szcp new file mode 100644 index 00000000..19875a44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000033_44f6452b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000034_b3068c59.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000034_b3068c59.szcp new file mode 100644 index 00000000..c757f49d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000034_b3068c59.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000035_17ea7186.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000035_17ea7186.szcp new file mode 100644 index 00000000..1263a8aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000035_17ea7186.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000036_71b4b8fb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000036_71b4b8fb.szcp new file mode 100644 index 00000000..6613568d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000036_71b4b8fb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000037_3075f183.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000037_3075f183.szcp new file mode 100644 index 00000000..18ad0c7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000037_3075f183.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000038_4489f629.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000038_4489f629.szcp new file mode 100644 index 00000000..d2369701 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_016/checkpoints/checkpoint_00000000000000000038_4489f629.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000001_e169114f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000001_e169114f.szar new file mode 100644 index 00000000..6837d4d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000001_e169114f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000002_c2bd3d33.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000002_c2bd3d33.szar new file mode 100644 index 00000000..99193707 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000002_c2bd3d33.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000003_1870bbde.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000003_1870bbde.szar new file mode 100644 index 00000000..694b1aab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000003_1870bbde.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000004_d331d45b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000004_d331d45b.szar new file mode 100644 index 00000000..17651d9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000004_d331d45b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000005_dc18ace6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000005_dc18ace6.szar new file mode 100644 index 00000000..f98aa54c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000005_dc18ace6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000006_fe226d20.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000006_fe226d20.szar new file mode 100644 index 00000000..b16da700 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000006_fe226d20.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000007_41b5d55c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000007_41b5d55c.szar new file mode 100644 index 00000000..24ae30d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000007_41b5d55c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000008_48d37213.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000008_48d37213.szar new file mode 100644 index 00000000..3c8aa1e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000008_48d37213.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000009_0991e6de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000009_0991e6de.szar new file mode 100644 index 00000000..2bee1eec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000009_0991e6de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000010_42883147.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000010_42883147.szar new file mode 100644 index 00000000..736c0105 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000010_42883147.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000011_9914731b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000011_9914731b.szar new file mode 100644 index 00000000..b622c7ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000011_9914731b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000012_d37366f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000012_d37366f4.szar new file mode 100644 index 00000000..b3505ecb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000012_d37366f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000013_95e68adb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000013_95e68adb.szar new file mode 100644 index 00000000..9bf046b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000013_95e68adb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000014_528283b3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000014_528283b3.szar new file mode 100644 index 00000000..dcbbcb2a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000014_528283b3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000015_35bece16.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000015_35bece16.szar new file mode 100644 index 00000000..d84bf2b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000015_35bece16.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000016_4c8fea84.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000016_4c8fea84.szar new file mode 100644 index 00000000..ef66c71c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000016_4c8fea84.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000017_67397720.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000017_67397720.szar new file mode 100644 index 00000000..7dd14b56 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000017_67397720.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000018_a2d4ccb7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000018_a2d4ccb7.szar new file mode 100644 index 00000000..44946b3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000018_a2d4ccb7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000019_86dcb31b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000019_86dcb31b.szar new file mode 100644 index 00000000..7212eca1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000019_86dcb31b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000020_587f7e5e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000020_587f7e5e.szar new file mode 100644 index 00000000..57afbcdc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000020_587f7e5e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000021_287ea3ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000021_287ea3ae.szar new file mode 100644 index 00000000..299e39d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000021_287ea3ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000022_66f1ce9f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000022_66f1ce9f.szar new file mode 100644 index 00000000..47395593 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000022_66f1ce9f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000023_dd8131b0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000023_dd8131b0.szar new file mode 100644 index 00000000..11ef4d79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000023_dd8131b0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000024_92218e85.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000024_92218e85.szar new file mode 100644 index 00000000..58c1e2ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000024_92218e85.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000025_a6de13d3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000025_a6de13d3.szar new file mode 100644 index 00000000..b11d6cb3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000025_a6de13d3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000026_1fa739e1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000026_1fa739e1.szar new file mode 100644 index 00000000..2c89f64e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000026_1fa739e1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000027_dff69e86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000027_dff69e86.szar new file mode 100644 index 00000000..4ce937f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000027_dff69e86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000028_7323afdd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000028_7323afdd.szar new file mode 100644 index 00000000..6721fcdf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000028_7323afdd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000029_def3e526.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000029_def3e526.szar new file mode 100644 index 00000000..b66af578 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000029_def3e526.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000030_a3e66174.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000030_a3e66174.szar new file mode 100644 index 00000000..f71c3587 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000030_a3e66174.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000031_650fc5da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000031_650fc5da.szar new file mode 100644 index 00000000..961cab0d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000031_650fc5da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000032_eefc1fe8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000032_eefc1fe8.szar new file mode 100644 index 00000000..483be71b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000032_eefc1fe8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000033_a43c2b7b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000033_a43c2b7b.szar new file mode 100644 index 00000000..58171a51 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000033_a43c2b7b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000034_14008aca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000034_14008aca.szar new file mode 100644 index 00000000..f3ba8089 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000034_14008aca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000035_268d4af6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000035_268d4af6.szar new file mode 100644 index 00000000..e5526bea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000035_268d4af6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000036_df27c942.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000036_df27c942.szar new file mode 100644 index 00000000..4ecca7e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000036_df27c942.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000037_2ada761d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000037_2ada761d.szar new file mode 100644 index 00000000..6f6c6921 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000037_2ada761d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000038_019a72b3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000038_019a72b3.szar new file mode 100644 index 00000000..6ade64e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000038_019a72b3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000039_89164afd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000039_89164afd.szar new file mode 100644 index 00000000..d22bdfa1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000039_89164afd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000040_9b0e57ff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000040_9b0e57ff.szar new file mode 100644 index 00000000..1c7c717a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000040_9b0e57ff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000041_4e2bc3d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000041_4e2bc3d9.szar new file mode 100644 index 00000000..5e4630b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000041_4e2bc3d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000042_5ed29031.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000042_5ed29031.szar new file mode 100644 index 00000000..19f8efa7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000042_5ed29031.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000043_98301787.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000043_98301787.szar new file mode 100644 index 00000000..2208f2bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000043_98301787.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000044_d5b5817e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000044_d5b5817e.szar new file mode 100644 index 00000000..db5aa267 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/archive/delta_00000000000000000044_d5b5817e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000001_4db2d10a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000001_4db2d10a.szcp new file mode 100644 index 00000000..22aefae3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000001_4db2d10a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000002_3f23f93d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000002_3f23f93d.szcp new file mode 100644 index 00000000..c7203fb4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000002_3f23f93d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000003_24d60ac1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000003_24d60ac1.szcp new file mode 100644 index 00000000..836eb66d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000003_24d60ac1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000004_f59649bd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000004_f59649bd.szcp new file mode 100644 index 00000000..6298eb8f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000004_f59649bd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000005_f0bc1aba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000005_f0bc1aba.szcp new file mode 100644 index 00000000..c77dd7ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000005_f0bc1aba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000006_49cb84c3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000006_49cb84c3.szcp new file mode 100644 index 00000000..9c7002ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000006_49cb84c3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000007_858e7771.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000007_858e7771.szcp new file mode 100644 index 00000000..9ad400f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000007_858e7771.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000008_69bcae44.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000008_69bcae44.szcp new file mode 100644 index 00000000..efe0725f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000008_69bcae44.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000009_fd058f30.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000009_fd058f30.szcp new file mode 100644 index 00000000..feadd236 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000009_fd058f30.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000010_c56cb9e6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000010_c56cb9e6.szcp new file mode 100644 index 00000000..c198c9e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000010_c56cb9e6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000011_19943b55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000011_19943b55.szcp new file mode 100644 index 00000000..5d82a231 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000011_19943b55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000012_56d62dfd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000012_56d62dfd.szcp new file mode 100644 index 00000000..759e7d61 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000012_56d62dfd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000013_8ddbc5ac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000013_8ddbc5ac.szcp new file mode 100644 index 00000000..23e25229 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000013_8ddbc5ac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000014_0194d206.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000014_0194d206.szcp new file mode 100644 index 00000000..0e9fd007 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000014_0194d206.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000015_924555d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000015_924555d6.szcp new file mode 100644 index 00000000..9bffc6cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000015_924555d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000016_c56c4402.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000016_c56c4402.szcp new file mode 100644 index 00000000..71d68344 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000016_c56c4402.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000017_2db9244f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000017_2db9244f.szcp new file mode 100644 index 00000000..73b48787 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000017_2db9244f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000018_56587709.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000018_56587709.szcp new file mode 100644 index 00000000..0f52b712 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000018_56587709.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000019_4dc033f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000019_4dc033f7.szcp new file mode 100644 index 00000000..589cd7d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000019_4dc033f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000020_727204da.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000020_727204da.szcp new file mode 100644 index 00000000..dcb165f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000020_727204da.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000021_252ce447.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000021_252ce447.szcp new file mode 100644 index 00000000..f43da590 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000021_252ce447.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000022_f105a45b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000022_f105a45b.szcp new file mode 100644 index 00000000..7a8ab166 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000022_f105a45b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000023_c834199b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000023_c834199b.szcp new file mode 100644 index 00000000..e2235161 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000023_c834199b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000024_c6edacba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000024_c6edacba.szcp new file mode 100644 index 00000000..335c759d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000024_c6edacba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000025_309745b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000025_309745b9.szcp new file mode 100644 index 00000000..72a83e8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000025_309745b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000026_7cb92c65.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000026_7cb92c65.szcp new file mode 100644 index 00000000..302799dd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000026_7cb92c65.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000027_ebc00f8a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000027_ebc00f8a.szcp new file mode 100644 index 00000000..ca8e1d9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000027_ebc00f8a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000028_2fc2e41b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000028_2fc2e41b.szcp new file mode 100644 index 00000000..4606a8f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000028_2fc2e41b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000029_550ec1e7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000029_550ec1e7.szcp new file mode 100644 index 00000000..9082ed47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000029_550ec1e7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000030_ebc48b71.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000030_ebc48b71.szcp new file mode 100644 index 00000000..cba83baa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000030_ebc48b71.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000031_b1dd2376.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000031_b1dd2376.szcp new file mode 100644 index 00000000..84f574b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000031_b1dd2376.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000032_901647c9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000032_901647c9.szcp new file mode 100644 index 00000000..3611ee02 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000032_901647c9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000033_253bd9e8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000033_253bd9e8.szcp new file mode 100644 index 00000000..d0e6038c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000033_253bd9e8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000034_7e843df5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000034_7e843df5.szcp new file mode 100644 index 00000000..adffe83b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000034_7e843df5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000035_ab23752c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000035_ab23752c.szcp new file mode 100644 index 00000000..f1725c97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000035_ab23752c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000036_80b6a54d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000036_80b6a54d.szcp new file mode 100644 index 00000000..26adee6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000036_80b6a54d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000037_eb50a315.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000037_eb50a315.szcp new file mode 100644 index 00000000..e973c73d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000037_eb50a315.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000038_bc055e51.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000038_bc055e51.szcp new file mode 100644 index 00000000..0c0357e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000038_bc055e51.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000039_0fd067b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000039_0fd067b7.szcp new file mode 100644 index 00000000..3320743f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000039_0fd067b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000040_8ed4b63a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000040_8ed4b63a.szcp new file mode 100644 index 00000000..66e7a247 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000040_8ed4b63a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000041_7f35f149.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000041_7f35f149.szcp new file mode 100644 index 00000000..26a651cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000041_7f35f149.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000042_35236b5a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000042_35236b5a.szcp new file mode 100644 index 00000000..755e97c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000042_35236b5a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000043_29c45ed0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000043_29c45ed0.szcp new file mode 100644 index 00000000..c50b721d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000043_29c45ed0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000044_8af236b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000044_8af236b4.szcp new file mode 100644 index 00000000..e8cad3d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_017/checkpoints/checkpoint_00000000000000000044_8af236b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000001_571723f5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000001_571723f5.szar new file mode 100644 index 00000000..6e95204b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000001_571723f5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000002_f1e91e93.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000002_f1e91e93.szar new file mode 100644 index 00000000..b00fee47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000002_f1e91e93.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000003_6de01f06.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000003_6de01f06.szar new file mode 100644 index 00000000..4b6ec475 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000003_6de01f06.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000004_a062ffab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000004_a062ffab.szar new file mode 100644 index 00000000..255225cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000004_a062ffab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000005_8d4d9283.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000005_8d4d9283.szar new file mode 100644 index 00000000..88a94520 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000005_8d4d9283.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000006_c72bda4f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000006_c72bda4f.szar new file mode 100644 index 00000000..05cc12ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000006_c72bda4f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000007_9b97d116.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000007_9b97d116.szar new file mode 100644 index 00000000..e5b68566 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000007_9b97d116.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000008_9b448f9f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000008_9b448f9f.szar new file mode 100644 index 00000000..7a5f56c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000008_9b448f9f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000009_5d33f92b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000009_5d33f92b.szar new file mode 100644 index 00000000..0227642e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000009_5d33f92b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000010_88fee386.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000010_88fee386.szar new file mode 100644 index 00000000..2bea239f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000010_88fee386.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000011_634286fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000011_634286fd.szar new file mode 100644 index 00000000..e9b2e0de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000011_634286fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000012_b4bd9799.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000012_b4bd9799.szar new file mode 100644 index 00000000..dafc3259 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000012_b4bd9799.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000013_53544ea5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000013_53544ea5.szar new file mode 100644 index 00000000..72a0d266 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000013_53544ea5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000014_13aa7e48.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000014_13aa7e48.szar new file mode 100644 index 00000000..c73af919 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000014_13aa7e48.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000015_0c9e8a4c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000015_0c9e8a4c.szar new file mode 100644 index 00000000..675685af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000015_0c9e8a4c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000016_0608c42c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000016_0608c42c.szar new file mode 100644 index 00000000..66c5ae90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000016_0608c42c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000017_92d51791.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000017_92d51791.szar new file mode 100644 index 00000000..be87c5e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000017_92d51791.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000018_189ea157.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000018_189ea157.szar new file mode 100644 index 00000000..2474b61c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000018_189ea157.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000019_10123c39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000019_10123c39.szar new file mode 100644 index 00000000..881b04b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000019_10123c39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000020_c1013338.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000020_c1013338.szar new file mode 100644 index 00000000..10655370 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000020_c1013338.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000021_19495336.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000021_19495336.szar new file mode 100644 index 00000000..a8bb60f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000021_19495336.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000022_ef6234c9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000022_ef6234c9.szar new file mode 100644 index 00000000..78c93106 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000022_ef6234c9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000023_f488aa49.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000023_f488aa49.szar new file mode 100644 index 00000000..4442529a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000023_f488aa49.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000024_0455c3f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000024_0455c3f3.szar new file mode 100644 index 00000000..b3659a94 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000024_0455c3f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000025_0f31e460.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000025_0f31e460.szar new file mode 100644 index 00000000..5bdbe0e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000025_0f31e460.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000026_0a0e2002.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000026_0a0e2002.szar new file mode 100644 index 00000000..40756416 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/archive/delta_00000000000000000026_0a0e2002.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000001_897b9a75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000001_897b9a75.szcp new file mode 100644 index 00000000..cfb69d04 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000001_897b9a75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000002_25890c2e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000002_25890c2e.szcp new file mode 100644 index 00000000..325bb582 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000002_25890c2e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000003_4f2dd64d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000003_4f2dd64d.szcp new file mode 100644 index 00000000..7d8c4ce6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000003_4f2dd64d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000004_091a38ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000004_091a38ba.szcp new file mode 100644 index 00000000..9ebf04b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000004_091a38ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000005_5b99e2b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000005_5b99e2b4.szcp new file mode 100644 index 00000000..c00dcf3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000005_5b99e2b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000006_02ffec6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000006_02ffec6e.szcp new file mode 100644 index 00000000..f85a60c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000006_02ffec6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000007_f32b4885.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000007_f32b4885.szcp new file mode 100644 index 00000000..f0af0aac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000007_f32b4885.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000008_5be8aec9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000008_5be8aec9.szcp new file mode 100644 index 00000000..f597d9f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000008_5be8aec9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000009_00ecff1b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000009_00ecff1b.szcp new file mode 100644 index 00000000..3ebdc26d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000009_00ecff1b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000010_cf975f70.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000010_cf975f70.szcp new file mode 100644 index 00000000..85f55e80 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000010_cf975f70.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000011_5f5dbfaf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000011_5f5dbfaf.szcp new file mode 100644 index 00000000..edc1c45e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000011_5f5dbfaf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000012_d6272930.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000012_d6272930.szcp new file mode 100644 index 00000000..fb021544 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000012_d6272930.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000013_e978a36a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000013_e978a36a.szcp new file mode 100644 index 00000000..1cb0f827 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000013_e978a36a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000014_00204395.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000014_00204395.szcp new file mode 100644 index 00000000..9ebf45e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000014_00204395.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000015_a46e41ee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000015_a46e41ee.szcp new file mode 100644 index 00000000..53091046 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000015_a46e41ee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000016_eccabc51.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000016_eccabc51.szcp new file mode 100644 index 00000000..0092003d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000016_eccabc51.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000017_ca6d36dd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000017_ca6d36dd.szcp new file mode 100644 index 00000000..f809332c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000017_ca6d36dd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000018_1eda279d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000018_1eda279d.szcp new file mode 100644 index 00000000..5036d1dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000018_1eda279d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000019_871c9cea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000019_871c9cea.szcp new file mode 100644 index 00000000..5dbe5526 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000019_871c9cea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000020_17cc3189.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000020_17cc3189.szcp new file mode 100644 index 00000000..7117f3f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000020_17cc3189.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000021_28f5d1dd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000021_28f5d1dd.szcp new file mode 100644 index 00000000..990c1a9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000021_28f5d1dd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000022_2b0d8cfb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000022_2b0d8cfb.szcp new file mode 100644 index 00000000..ae7c1d4a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000022_2b0d8cfb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000023_0164117c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000023_0164117c.szcp new file mode 100644 index 00000000..c638b104 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000023_0164117c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000024_dd44679c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000024_dd44679c.szcp new file mode 100644 index 00000000..02c76ea2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000024_dd44679c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000025_bee5e66e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000025_bee5e66e.szcp new file mode 100644 index 00000000..654f494f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000025_bee5e66e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000026_73ce2995.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000026_73ce2995.szcp new file mode 100644 index 00000000..78b9a840 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_018/checkpoints/checkpoint_00000000000000000026_73ce2995.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000001_22b99f28.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000001_22b99f28.szar new file mode 100644 index 00000000..a09e0533 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000001_22b99f28.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000002_6780bfe6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000002_6780bfe6.szar new file mode 100644 index 00000000..394ea9b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000002_6780bfe6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000003_229484f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000003_229484f4.szar new file mode 100644 index 00000000..f1ec8b8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000003_229484f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000004_e5dbc861.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000004_e5dbc861.szar new file mode 100644 index 00000000..4a20da39 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000004_e5dbc861.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000005_2b898013.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000005_2b898013.szar new file mode 100644 index 00000000..288b3dc3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000005_2b898013.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000006_e5fec96c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000006_e5fec96c.szar new file mode 100644 index 00000000..673bf216 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000006_e5fec96c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000007_f168ad0a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000007_f168ad0a.szar new file mode 100644 index 00000000..7e3d6bb8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000007_f168ad0a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000008_8740657b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000008_8740657b.szar new file mode 100644 index 00000000..e738a928 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000008_8740657b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000009_c1ecff51.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000009_c1ecff51.szar new file mode 100644 index 00000000..edc0bc74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000009_c1ecff51.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000010_16173f45.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000010_16173f45.szar new file mode 100644 index 00000000..964dd3cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000010_16173f45.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000011_bb7d0bd7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000011_bb7d0bd7.szar new file mode 100644 index 00000000..6e151f90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000011_bb7d0bd7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000012_bf5f659e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000012_bf5f659e.szar new file mode 100644 index 00000000..585810c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000012_bf5f659e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000013_bc14a021.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000013_bc14a021.szar new file mode 100644 index 00000000..7be8ec72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000013_bc14a021.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000014_11b13c48.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000014_11b13c48.szar new file mode 100644 index 00000000..9635d2e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000014_11b13c48.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000015_c61c9a5f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000015_c61c9a5f.szar new file mode 100644 index 00000000..dbda863c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000015_c61c9a5f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000016_e3887786.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000016_e3887786.szar new file mode 100644 index 00000000..a5884e08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000016_e3887786.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000017_3816a7bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000017_3816a7bf.szar new file mode 100644 index 00000000..ca0c3429 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000017_3816a7bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000018_40401f74.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000018_40401f74.szar new file mode 100644 index 00000000..95b2cb6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000018_40401f74.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000019_38c17d07.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000019_38c17d07.szar new file mode 100644 index 00000000..8c8b656d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000019_38c17d07.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000020_168a750f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000020_168a750f.szar new file mode 100644 index 00000000..dcf008e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000020_168a750f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000021_bcbef43f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000021_bcbef43f.szar new file mode 100644 index 00000000..2e86fa22 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000021_bcbef43f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000022_fd8946a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000022_fd8946a2.szar new file mode 100644 index 00000000..b4934830 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000022_fd8946a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000023_776ec35b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000023_776ec35b.szar new file mode 100644 index 00000000..6794d624 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000023_776ec35b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000024_4aeae093.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000024_4aeae093.szar new file mode 100644 index 00000000..75d0dd54 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000024_4aeae093.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000025_a6065395.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000025_a6065395.szar new file mode 100644 index 00000000..3109b99f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000025_a6065395.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000026_3f22923c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000026_3f22923c.szar new file mode 100644 index 00000000..b79f832b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000026_3f22923c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000027_5f135186.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000027_5f135186.szar new file mode 100644 index 00000000..dcb68402 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/archive/delta_00000000000000000027_5f135186.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000001_28fd0703.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000001_28fd0703.szcp new file mode 100644 index 00000000..f1385304 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000001_28fd0703.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000002_46e66864.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000002_46e66864.szcp new file mode 100644 index 00000000..9f432437 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000002_46e66864.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000003_0078b8a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000003_0078b8a9.szcp new file mode 100644 index 00000000..cc57a3e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000003_0078b8a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000004_4cd6d9e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000004_4cd6d9e1.szcp new file mode 100644 index 00000000..5457d0c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000004_4cd6d9e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000005_03d61db0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000005_03d61db0.szcp new file mode 100644 index 00000000..57737ba2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000005_03d61db0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000006_3601104d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000006_3601104d.szcp new file mode 100644 index 00000000..ca540f16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000006_3601104d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000007_c6efefed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000007_c6efefed.szcp new file mode 100644 index 00000000..2a49c6ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000007_c6efefed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000008_05756a00.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000008_05756a00.szcp new file mode 100644 index 00000000..2b16151c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000008_05756a00.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000009_6f1e9c35.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000009_6f1e9c35.szcp new file mode 100644 index 00000000..e8e902e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000009_6f1e9c35.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000010_c0d61eca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000010_c0d61eca.szcp new file mode 100644 index 00000000..d212d396 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000010_c0d61eca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000011_7b3a067e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000011_7b3a067e.szcp new file mode 100644 index 00000000..0aa49dba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000011_7b3a067e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000012_01f6ebf9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000012_01f6ebf9.szcp new file mode 100644 index 00000000..5a4164ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000012_01f6ebf9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000013_7d053f39.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000013_7d053f39.szcp new file mode 100644 index 00000000..015b3176 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000013_7d053f39.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000014_d0138d5d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000014_d0138d5d.szcp new file mode 100644 index 00000000..9a59d622 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000014_d0138d5d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000015_a2e9dc22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000015_a2e9dc22.szcp new file mode 100644 index 00000000..6921aa0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000015_a2e9dc22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000016_24ff0a28.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000016_24ff0a28.szcp new file mode 100644 index 00000000..494aa15c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000016_24ff0a28.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000017_d930a29d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000017_d930a29d.szcp new file mode 100644 index 00000000..c34ffc73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000017_d930a29d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000018_6f0ab4a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000018_6f0ab4a1.szcp new file mode 100644 index 00000000..135be939 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000018_6f0ab4a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000019_a60416d2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000019_a60416d2.szcp new file mode 100644 index 00000000..9288e6e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000019_a60416d2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000020_23000083.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000020_23000083.szcp new file mode 100644 index 00000000..761e0590 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000020_23000083.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000021_c9835227.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000021_c9835227.szcp new file mode 100644 index 00000000..7e4e1751 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000021_c9835227.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000022_7a303c15.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000022_7a303c15.szcp new file mode 100644 index 00000000..16a15f3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000022_7a303c15.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000023_d395cc4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000023_d395cc4d.szcp new file mode 100644 index 00000000..3bfbf1d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000023_d395cc4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000024_85fb4767.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000024_85fb4767.szcp new file mode 100644 index 00000000..310e759b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000024_85fb4767.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000025_5080f8bc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000025_5080f8bc.szcp new file mode 100644 index 00000000..ca06215e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000025_5080f8bc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000026_a549b40a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000026_a549b40a.szcp new file mode 100644 index 00000000..325ade7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000026_a549b40a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000027_ddf293c3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000027_ddf293c3.szcp new file mode 100644 index 00000000..d861b027 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_019/checkpoints/checkpoint_00000000000000000027_ddf293c3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000001_fd0098cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000001_fd0098cf.szar new file mode 100644 index 00000000..abbe8c43 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000001_fd0098cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000002_20091924.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000002_20091924.szar new file mode 100644 index 00000000..42345680 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000002_20091924.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000003_3fea1d72.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000003_3fea1d72.szar new file mode 100644 index 00000000..80c85aaa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000003_3fea1d72.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000004_19bce06e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000004_19bce06e.szar new file mode 100644 index 00000000..4471cf79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000004_19bce06e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000005_9fae3091.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000005_9fae3091.szar new file mode 100644 index 00000000..e57e3418 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000005_9fae3091.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000006_82f40c38.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000006_82f40c38.szar new file mode 100644 index 00000000..0e693edd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000006_82f40c38.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000007_fc9d6d02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000007_fc9d6d02.szar new file mode 100644 index 00000000..f4cf5bbe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000007_fc9d6d02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000008_5356f93f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000008_5356f93f.szar new file mode 100644 index 00000000..423ae337 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000008_5356f93f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000009_77e85d8d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000009_77e85d8d.szar new file mode 100644 index 00000000..995d01e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000009_77e85d8d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000010_82030a9e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000010_82030a9e.szar new file mode 100644 index 00000000..0555b59b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000010_82030a9e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000011_ae9e093e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000011_ae9e093e.szar new file mode 100644 index 00000000..7943437c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000011_ae9e093e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000012_b56b268a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000012_b56b268a.szar new file mode 100644 index 00000000..23d4d99a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000012_b56b268a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000013_66cdf0c2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000013_66cdf0c2.szar new file mode 100644 index 00000000..a3ec52f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000013_66cdf0c2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000014_36b234e3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000014_36b234e3.szar new file mode 100644 index 00000000..3820456a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000014_36b234e3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000015_a643db1f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000015_a643db1f.szar new file mode 100644 index 00000000..405d8994 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000015_a643db1f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000016_62748c39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000016_62748c39.szar new file mode 100644 index 00000000..85efc27e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000016_62748c39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000017_af3ff306.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000017_af3ff306.szar new file mode 100644 index 00000000..23a17fbf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000017_af3ff306.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000018_20a6ebb8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000018_20a6ebb8.szar new file mode 100644 index 00000000..66a00576 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000018_20a6ebb8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000019_38482fb8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000019_38482fb8.szar new file mode 100644 index 00000000..7269f61e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000019_38482fb8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000020_3d1dca63.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000020_3d1dca63.szar new file mode 100644 index 00000000..05e57e42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000020_3d1dca63.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000021_d9682459.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000021_d9682459.szar new file mode 100644 index 00000000..a7085d68 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000021_d9682459.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000022_62ffde6a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000022_62ffde6a.szar new file mode 100644 index 00000000..2cd7798c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000022_62ffde6a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000023_0a387a43.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000023_0a387a43.szar new file mode 100644 index 00000000..bbe43a30 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000023_0a387a43.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000024_ddd81b1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000024_ddd81b1a.szar new file mode 100644 index 00000000..c5c6ace4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000024_ddd81b1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000025_ea95b85c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000025_ea95b85c.szar new file mode 100644 index 00000000..4e8067d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000025_ea95b85c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000026_36bc299f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000026_36bc299f.szar new file mode 100644 index 00000000..ed1450c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000026_36bc299f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000027_89b959f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000027_89b959f4.szar new file mode 100644 index 00000000..45070ac0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000027_89b959f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000028_ca287099.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000028_ca287099.szar new file mode 100644 index 00000000..d14ce376 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000028_ca287099.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000029_f37e6c02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000029_f37e6c02.szar new file mode 100644 index 00000000..c73bbbe1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000029_f37e6c02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000030_96c64ff1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000030_96c64ff1.szar new file mode 100644 index 00000000..cddffb5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000030_96c64ff1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000031_f3c4d33f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000031_f3c4d33f.szar new file mode 100644 index 00000000..892cb2f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000031_f3c4d33f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000032_6273ffa6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000032_6273ffa6.szar new file mode 100644 index 00000000..e1db8831 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000032_6273ffa6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000033_2fabefd0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000033_2fabefd0.szar new file mode 100644 index 00000000..36155a75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000033_2fabefd0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000034_cf2c373e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000034_cf2c373e.szar new file mode 100644 index 00000000..710e7cca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000034_cf2c373e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000035_6b361773.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000035_6b361773.szar new file mode 100644 index 00000000..036f62ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000035_6b361773.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000036_11d29ddc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000036_11d29ddc.szar new file mode 100644 index 00000000..0dfab02c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000036_11d29ddc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000037_41a945ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000037_41a945ae.szar new file mode 100644 index 00000000..75f9f95e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000037_41a945ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000038_f79abd4c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000038_f79abd4c.szar new file mode 100644 index 00000000..973cb4cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000038_f79abd4c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000039_aad562ad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000039_aad562ad.szar new file mode 100644 index 00000000..becea8a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000039_aad562ad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000040_b7ae7c9c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000040_b7ae7c9c.szar new file mode 100644 index 00000000..18814e21 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/archive/delta_00000000000000000040_b7ae7c9c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000001_24caf374.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000001_24caf374.szcp new file mode 100644 index 00000000..b9ed713e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000001_24caf374.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000002_86dcbeb8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000002_86dcbeb8.szcp new file mode 100644 index 00000000..e956c9f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000002_86dcbeb8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000003_b83d478f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000003_b83d478f.szcp new file mode 100644 index 00000000..b44f907d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000003_b83d478f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000004_ff38edc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000004_ff38edc7.szcp new file mode 100644 index 00000000..a47e60cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000004_ff38edc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000005_21b2f794.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000005_21b2f794.szcp new file mode 100644 index 00000000..2b19c16b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000005_21b2f794.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000006_085becd5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000006_085becd5.szcp new file mode 100644 index 00000000..fe402d63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000006_085becd5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000007_00555cda.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000007_00555cda.szcp new file mode 100644 index 00000000..8cd47c7e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000007_00555cda.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000008_b1d2acb0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000008_b1d2acb0.szcp new file mode 100644 index 00000000..f71f5b28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000008_b1d2acb0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000009_59a0a3ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000009_59a0a3ea.szcp new file mode 100644 index 00000000..3bc0633e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000009_59a0a3ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000010_09ce769a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000010_09ce769a.szcp new file mode 100644 index 00000000..8546d199 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000010_09ce769a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000011_f5189287.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000011_f5189287.szcp new file mode 100644 index 00000000..420775f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000011_f5189287.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000012_122aefcc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000012_122aefcc.szcp new file mode 100644 index 00000000..38bf1e07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000012_122aefcc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000013_fe9c7040.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000013_fe9c7040.szcp new file mode 100644 index 00000000..c563b21a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000013_fe9c7040.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000014_5e2895f9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000014_5e2895f9.szcp new file mode 100644 index 00000000..519e6633 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000014_5e2895f9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000015_2a3922db.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000015_2a3922db.szcp new file mode 100644 index 00000000..bbaa6f5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000015_2a3922db.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000016_eede4e6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000016_eede4e6e.szcp new file mode 100644 index 00000000..47b96dbf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000016_eede4e6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000017_3237f021.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000017_3237f021.szcp new file mode 100644 index 00000000..d5ba667a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000017_3237f021.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000018_b0adc9f1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000018_b0adc9f1.szcp new file mode 100644 index 00000000..4252c334 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000018_b0adc9f1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000019_7b8eb781.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000019_7b8eb781.szcp new file mode 100644 index 00000000..7520108b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000019_7b8eb781.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000020_a29730b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000020_a29730b0.szcp new file mode 100644 index 00000000..78d28b9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000020_a29730b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000021_25289039.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000021_25289039.szcp new file mode 100644 index 00000000..6cda9d6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000021_25289039.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000022_d4009dc0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000022_d4009dc0.szcp new file mode 100644 index 00000000..12889575 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000022_d4009dc0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000023_2519fda4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000023_2519fda4.szcp new file mode 100644 index 00000000..f115f43f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000023_2519fda4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000024_8d928e75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000024_8d928e75.szcp new file mode 100644 index 00000000..2f508251 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000024_8d928e75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000025_71811e8f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000025_71811e8f.szcp new file mode 100644 index 00000000..9df6c9ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000025_71811e8f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000026_bca09491.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000026_bca09491.szcp new file mode 100644 index 00000000..43955920 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000026_bca09491.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000027_de4aa792.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000027_de4aa792.szcp new file mode 100644 index 00000000..2c5b3e92 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000027_de4aa792.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000028_08efa650.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000028_08efa650.szcp new file mode 100644 index 00000000..278908a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000028_08efa650.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000029_4275d3ad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000029_4275d3ad.szcp new file mode 100644 index 00000000..aa069b32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000029_4275d3ad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000030_7034bfb0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000030_7034bfb0.szcp new file mode 100644 index 00000000..e155e0a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000030_7034bfb0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000031_2238d012.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000031_2238d012.szcp new file mode 100644 index 00000000..1ed00640 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000031_2238d012.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000032_069aff21.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000032_069aff21.szcp new file mode 100644 index 00000000..ca2a260d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000032_069aff21.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000033_176516e8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000033_176516e8.szcp new file mode 100644 index 00000000..24577402 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000033_176516e8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000034_90fd3f84.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000034_90fd3f84.szcp new file mode 100644 index 00000000..a058de4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000034_90fd3f84.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000035_a9614e34.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000035_a9614e34.szcp new file mode 100644 index 00000000..a0172421 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000035_a9614e34.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000036_46d96700.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000036_46d96700.szcp new file mode 100644 index 00000000..9dcf33e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000036_46d96700.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000037_99f45fc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000037_99f45fc9.szcp new file mode 100644 index 00000000..217ac3c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000037_99f45fc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000038_5904441e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000038_5904441e.szcp new file mode 100644 index 00000000..652917c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000038_5904441e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000039_caff0933.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000039_caff0933.szcp new file mode 100644 index 00000000..8e17591d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000039_caff0933.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000040_99f5c15c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000040_99f5c15c.szcp new file mode 100644 index 00000000..6baf803c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_020/checkpoints/checkpoint_00000000000000000040_99f5c15c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000001_cf3d902b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000001_cf3d902b.szar new file mode 100644 index 00000000..c936e940 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000001_cf3d902b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000002_8d98ae13.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000002_8d98ae13.szar new file mode 100644 index 00000000..8ddf0698 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000002_8d98ae13.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000003_677452d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000003_677452d1.szar new file mode 100644 index 00000000..42eb3654 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000003_677452d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000004_b2e3a1ac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000004_b2e3a1ac.szar new file mode 100644 index 00000000..6005897f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000004_b2e3a1ac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000005_92b60649.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000005_92b60649.szar new file mode 100644 index 00000000..7b0c2752 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000005_92b60649.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000006_743b8a85.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000006_743b8a85.szar new file mode 100644 index 00000000..f43783bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000006_743b8a85.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000007_1d4c4970.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000007_1d4c4970.szar new file mode 100644 index 00000000..d8de681b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000007_1d4c4970.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000008_ef963383.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000008_ef963383.szar new file mode 100644 index 00000000..a8b87c6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000008_ef963383.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000009_5109e84a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000009_5109e84a.szar new file mode 100644 index 00000000..d0ee555f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000009_5109e84a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000010_d5ae5364.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000010_d5ae5364.szar new file mode 100644 index 00000000..3dc97564 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000010_d5ae5364.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000011_26011509.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000011_26011509.szar new file mode 100644 index 00000000..4dd2783c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000011_26011509.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000012_e980de92.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000012_e980de92.szar new file mode 100644 index 00000000..92c6c22b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000012_e980de92.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000013_1b82ba59.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000013_1b82ba59.szar new file mode 100644 index 00000000..7962d4f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000013_1b82ba59.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000014_a2c2b8e5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000014_a2c2b8e5.szar new file mode 100644 index 00000000..16bdb9c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000014_a2c2b8e5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000015_065294dd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000015_065294dd.szar new file mode 100644 index 00000000..0536ac85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000015_065294dd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000016_47c78d60.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000016_47c78d60.szar new file mode 100644 index 00000000..34446af2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000016_47c78d60.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000017_3b7753c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000017_3b7753c5.szar new file mode 100644 index 00000000..e18c0a4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000017_3b7753c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000018_424f3482.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000018_424f3482.szar new file mode 100644 index 00000000..872e34d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000018_424f3482.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000019_39f12aef.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000019_39f12aef.szar new file mode 100644 index 00000000..a2470707 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000019_39f12aef.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000020_10661b01.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000020_10661b01.szar new file mode 100644 index 00000000..b49c3e0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000020_10661b01.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000021_246f6830.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000021_246f6830.szar new file mode 100644 index 00000000..56b8d20f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000021_246f6830.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000022_c0ff4f2b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000022_c0ff4f2b.szar new file mode 100644 index 00000000..ff05e36e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000022_c0ff4f2b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000023_4263a911.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000023_4263a911.szar new file mode 100644 index 00000000..773afe65 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000023_4263a911.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000024_df727bed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000024_df727bed.szar new file mode 100644 index 00000000..fe857c9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000024_df727bed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000025_4e6a767b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000025_4e6a767b.szar new file mode 100644 index 00000000..6a4ed983 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000025_4e6a767b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000026_90bf9185.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000026_90bf9185.szar new file mode 100644 index 00000000..4f41d47a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000026_90bf9185.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000027_fd245cbf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000027_fd245cbf.szar new file mode 100644 index 00000000..6232b74d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000027_fd245cbf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000028_b99818e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000028_b99818e9.szar new file mode 100644 index 00000000..ab3152be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000028_b99818e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000029_c8bb2e03.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000029_c8bb2e03.szar new file mode 100644 index 00000000..2ec943e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000029_c8bb2e03.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000030_b261bcaa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000030_b261bcaa.szar new file mode 100644 index 00000000..5e968bcc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000030_b261bcaa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000031_94c1d8f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000031_94c1d8f8.szar new file mode 100644 index 00000000..bfbef1e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000031_94c1d8f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000032_9a410963.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000032_9a410963.szar new file mode 100644 index 00000000..ff81ba04 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/archive/delta_00000000000000000032_9a410963.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000001_0d201d16.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000001_0d201d16.szcp new file mode 100644 index 00000000..e9b116d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000001_0d201d16.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000002_dc06c0ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000002_dc06c0ec.szcp new file mode 100644 index 00000000..01df2976 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000002_dc06c0ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000003_6b9aa26b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000003_6b9aa26b.szcp new file mode 100644 index 00000000..8a195bbb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000003_6b9aa26b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000004_1d3e540a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000004_1d3e540a.szcp new file mode 100644 index 00000000..6446c822 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000004_1d3e540a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000005_7852c566.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000005_7852c566.szcp new file mode 100644 index 00000000..fa200c87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000005_7852c566.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000006_1f454a2f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000006_1f454a2f.szcp new file mode 100644 index 00000000..017f8b3a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000006_1f454a2f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000007_23ee9cce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000007_23ee9cce.szcp new file mode 100644 index 00000000..0f89a360 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000007_23ee9cce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000008_a59f5a3f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000008_a59f5a3f.szcp new file mode 100644 index 00000000..59e566d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000008_a59f5a3f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000009_a5eae127.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000009_a5eae127.szcp new file mode 100644 index 00000000..a0e11f8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000009_a5eae127.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000010_5bbb35aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000010_5bbb35aa.szcp new file mode 100644 index 00000000..5c196239 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000010_5bbb35aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000011_daa7ee9e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000011_daa7ee9e.szcp new file mode 100644 index 00000000..c949bca9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000011_daa7ee9e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000012_16e8fb79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000012_16e8fb79.szcp new file mode 100644 index 00000000..6281ecac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000012_16e8fb79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000013_269c36c5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000013_269c36c5.szcp new file mode 100644 index 00000000..7296111a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000013_269c36c5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000014_77509287.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000014_77509287.szcp new file mode 100644 index 00000000..82868146 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000014_77509287.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000015_0825baad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000015_0825baad.szcp new file mode 100644 index 00000000..121a058a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000015_0825baad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000016_c8c65732.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000016_c8c65732.szcp new file mode 100644 index 00000000..e956005c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000016_c8c65732.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000017_36454c07.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000017_36454c07.szcp new file mode 100644 index 00000000..b0a1f880 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000017_36454c07.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000018_53915627.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000018_53915627.szcp new file mode 100644 index 00000000..eab9f692 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000018_53915627.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000019_7f8d6876.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000019_7f8d6876.szcp new file mode 100644 index 00000000..16bfa5af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000019_7f8d6876.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000020_28d768f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000020_28d768f7.szcp new file mode 100644 index 00000000..eec8c7c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000020_28d768f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000021_b017b327.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000021_b017b327.szcp new file mode 100644 index 00000000..79e31332 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000021_b017b327.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000022_325e559e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000022_325e559e.szcp new file mode 100644 index 00000000..af9f0a12 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000022_325e559e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000023_a9a7b13d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000023_a9a7b13d.szcp new file mode 100644 index 00000000..7d879cec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000023_a9a7b13d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000024_ff770762.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000024_ff770762.szcp new file mode 100644 index 00000000..3fcfb13f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000024_ff770762.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000025_61e1534c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000025_61e1534c.szcp new file mode 100644 index 00000000..f9d93b45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000025_61e1534c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000026_7386d935.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000026_7386d935.szcp new file mode 100644 index 00000000..59efcc76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000026_7386d935.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000027_02dac6ad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000027_02dac6ad.szcp new file mode 100644 index 00000000..f2b99079 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000027_02dac6ad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000028_ad77ce6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000028_ad77ce6e.szcp new file mode 100644 index 00000000..a8d3de54 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000028_ad77ce6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000029_f8e37dfd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000029_f8e37dfd.szcp new file mode 100644 index 00000000..95e60ccd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000029_f8e37dfd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000030_6ce89ce9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000030_6ce89ce9.szcp new file mode 100644 index 00000000..ac0ce06f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000030_6ce89ce9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000031_d24702cd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000031_d24702cd.szcp new file mode 100644 index 00000000..c7369a8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000031_d24702cd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000032_5d100a8a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000032_5d100a8a.szcp new file mode 100644 index 00000000..cea626a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_021/checkpoints/checkpoint_00000000000000000032_5d100a8a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000001_70cc83aa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000001_70cc83aa.szar new file mode 100644 index 00000000..797a2ee1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000001_70cc83aa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000002_ae75d958.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000002_ae75d958.szar new file mode 100644 index 00000000..63f8bffa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000002_ae75d958.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000003_108d8005.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000003_108d8005.szar new file mode 100644 index 00000000..9966ddc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000003_108d8005.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000004_8b9f0b1d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000004_8b9f0b1d.szar new file mode 100644 index 00000000..46f0b4ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000004_8b9f0b1d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000005_17db20cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000005_17db20cf.szar new file mode 100644 index 00000000..10d9df76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000005_17db20cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000006_f9638b6e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000006_f9638b6e.szar new file mode 100644 index 00000000..333b3f8b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000006_f9638b6e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000007_bef4b153.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000007_bef4b153.szar new file mode 100644 index 00000000..3de5e392 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000007_bef4b153.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000008_4eb08a76.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000008_4eb08a76.szar new file mode 100644 index 00000000..120ab324 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000008_4eb08a76.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000009_840e88e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000009_840e88e4.szar new file mode 100644 index 00000000..6d426364 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000009_840e88e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000010_01ae263e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000010_01ae263e.szar new file mode 100644 index 00000000..3c72f1cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000010_01ae263e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000011_47b60df6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000011_47b60df6.szar new file mode 100644 index 00000000..f2a09b84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000011_47b60df6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000012_9c4d3ae8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000012_9c4d3ae8.szar new file mode 100644 index 00000000..29600b2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000012_9c4d3ae8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000013_30828d1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000013_30828d1a.szar new file mode 100644 index 00000000..daa840fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000013_30828d1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000014_92921450.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000014_92921450.szar new file mode 100644 index 00000000..0692bcfa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000014_92921450.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000015_7f49fc81.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000015_7f49fc81.szar new file mode 100644 index 00000000..7c16d52a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000015_7f49fc81.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000016_61ade2ec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000016_61ade2ec.szar new file mode 100644 index 00000000..a4a812b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000016_61ade2ec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000017_e24d0884.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000017_e24d0884.szar new file mode 100644 index 00000000..24f65ccb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000017_e24d0884.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000018_61cbda94.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000018_61cbda94.szar new file mode 100644 index 00000000..bfdb8338 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000018_61cbda94.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000019_b7511f09.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000019_b7511f09.szar new file mode 100644 index 00000000..a5ed36d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000019_b7511f09.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000020_dd485f1b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000020_dd485f1b.szar new file mode 100644 index 00000000..0fa013cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000020_dd485f1b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000021_a1a61e2f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000021_a1a61e2f.szar new file mode 100644 index 00000000..ce01ada5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000021_a1a61e2f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000022_b580ab56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000022_b580ab56.szar new file mode 100644 index 00000000..e0d8bba9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000022_b580ab56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000023_b65d649b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000023_b65d649b.szar new file mode 100644 index 00000000..dcbcdcd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000023_b65d649b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000024_7c0c0365.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000024_7c0c0365.szar new file mode 100644 index 00000000..ba6936b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000024_7c0c0365.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000025_5a518047.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000025_5a518047.szar new file mode 100644 index 00000000..1a47b435 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/archive/delta_00000000000000000025_5a518047.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000001_648e3cf0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000001_648e3cf0.szcp new file mode 100644 index 00000000..3f99e3d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000001_648e3cf0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000002_24064420.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000002_24064420.szcp new file mode 100644 index 00000000..f3014d60 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000002_24064420.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000003_568657ab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000003_568657ab.szcp new file mode 100644 index 00000000..b59c718e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000003_568657ab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000004_bc784dac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000004_bc784dac.szcp new file mode 100644 index 00000000..e9933ae4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000004_bc784dac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000005_1cce25a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000005_1cce25a8.szcp new file mode 100644 index 00000000..f01bbb53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000005_1cce25a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000006_838e8b35.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000006_838e8b35.szcp new file mode 100644 index 00000000..53345aa3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000006_838e8b35.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000007_05645774.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000007_05645774.szcp new file mode 100644 index 00000000..ca9597f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000007_05645774.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000008_d1017f69.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000008_d1017f69.szcp new file mode 100644 index 00000000..8df589ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000008_d1017f69.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000009_d739b03c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000009_d739b03c.szcp new file mode 100644 index 00000000..cce9f558 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000009_d739b03c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000010_37a85c49.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000010_37a85c49.szcp new file mode 100644 index 00000000..79b041ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000010_37a85c49.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000011_1ba86b6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000011_1ba86b6b.szcp new file mode 100644 index 00000000..edbb123f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000011_1ba86b6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000012_8e36a65a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000012_8e36a65a.szcp new file mode 100644 index 00000000..38852e80 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000012_8e36a65a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000013_63dcba19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000013_63dcba19.szcp new file mode 100644 index 00000000..7188f224 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000013_63dcba19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000014_3d2ec9c2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000014_3d2ec9c2.szcp new file mode 100644 index 00000000..e0324a78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000014_3d2ec9c2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000015_b15756ff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000015_b15756ff.szcp new file mode 100644 index 00000000..58be75ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000015_b15756ff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000016_92773c7a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000016_92773c7a.szcp new file mode 100644 index 00000000..d1090225 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000016_92773c7a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000017_0d7d596f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000017_0d7d596f.szcp new file mode 100644 index 00000000..48d0ef8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000017_0d7d596f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000018_afff466b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000018_afff466b.szcp new file mode 100644 index 00000000..dd6a00ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000018_afff466b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000019_77da6c44.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000019_77da6c44.szcp new file mode 100644 index 00000000..1df5d54f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000019_77da6c44.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000020_9e1814ca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000020_9e1814ca.szcp new file mode 100644 index 00000000..7d31ad92 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000020_9e1814ca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000021_44793811.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000021_44793811.szcp new file mode 100644 index 00000000..cc11369b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000021_44793811.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000022_3c206cd8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000022_3c206cd8.szcp new file mode 100644 index 00000000..53eecd20 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000022_3c206cd8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000023_cba32aa6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000023_cba32aa6.szcp new file mode 100644 index 00000000..0b4bfced Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000023_cba32aa6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000024_1ea48b3b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000024_1ea48b3b.szcp new file mode 100644 index 00000000..4ac721b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000024_1ea48b3b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000025_354b0cc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000025_354b0cc9.szcp new file mode 100644 index 00000000..7d486f4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_022/checkpoints/checkpoint_00000000000000000025_354b0cc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000001_82367b47.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000001_82367b47.szar new file mode 100644 index 00000000..1455ef25 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000001_82367b47.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000002_3da5a0be.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000002_3da5a0be.szar new file mode 100644 index 00000000..623c3024 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000002_3da5a0be.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000003_bee762bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000003_bee762bf.szar new file mode 100644 index 00000000..4a2e7b5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000003_bee762bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000004_a3d0aeb4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000004_a3d0aeb4.szar new file mode 100644 index 00000000..b9122e06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000004_a3d0aeb4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000005_cfda6286.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000005_cfda6286.szar new file mode 100644 index 00000000..512f502e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000005_cfda6286.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000006_702fd4f2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000006_702fd4f2.szar new file mode 100644 index 00000000..e83f41d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000006_702fd4f2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000007_e0bc318c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000007_e0bc318c.szar new file mode 100644 index 00000000..1a13efdd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000007_e0bc318c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000008_d26a7d5e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000008_d26a7d5e.szar new file mode 100644 index 00000000..a3dffdcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000008_d26a7d5e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000009_cf89bb3b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000009_cf89bb3b.szar new file mode 100644 index 00000000..04b8e0b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000009_cf89bb3b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000010_9c4c9ca5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000010_9c4c9ca5.szar new file mode 100644 index 00000000..c4725031 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000010_9c4c9ca5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000011_d8df146b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000011_d8df146b.szar new file mode 100644 index 00000000..0b812607 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000011_d8df146b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000012_0cb8b658.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000012_0cb8b658.szar new file mode 100644 index 00000000..98296fda Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000012_0cb8b658.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000013_f65fa828.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000013_f65fa828.szar new file mode 100644 index 00000000..0d940c98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000013_f65fa828.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000014_df137f11.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000014_df137f11.szar new file mode 100644 index 00000000..0c11e64b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000014_df137f11.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000015_3b9c3855.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000015_3b9c3855.szar new file mode 100644 index 00000000..a3ed2563 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000015_3b9c3855.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000016_fca99f91.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000016_fca99f91.szar new file mode 100644 index 00000000..7c92e5b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000016_fca99f91.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000017_97d05473.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000017_97d05473.szar new file mode 100644 index 00000000..02e05568 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000017_97d05473.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000018_487ee230.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000018_487ee230.szar new file mode 100644 index 00000000..fe7fe5d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000018_487ee230.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000019_f36e2d06.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000019_f36e2d06.szar new file mode 100644 index 00000000..76fdb16b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000019_f36e2d06.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000020_0d08445e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000020_0d08445e.szar new file mode 100644 index 00000000..1760fd23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000020_0d08445e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000021_f0b5ac62.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000021_f0b5ac62.szar new file mode 100644 index 00000000..a2e3e642 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000021_f0b5ac62.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000022_1046241d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000022_1046241d.szar new file mode 100644 index 00000000..c5c7f7c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000022_1046241d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000023_b0741167.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000023_b0741167.szar new file mode 100644 index 00000000..9039e921 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000023_b0741167.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000024_2235d6ed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000024_2235d6ed.szar new file mode 100644 index 00000000..be5439be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000024_2235d6ed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000025_b563bfbd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000025_b563bfbd.szar new file mode 100644 index 00000000..d5704f87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000025_b563bfbd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000026_3d70f389.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000026_3d70f389.szar new file mode 100644 index 00000000..4df54df6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000026_3d70f389.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000027_c44fc3a6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000027_c44fc3a6.szar new file mode 100644 index 00000000..87670042 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000027_c44fc3a6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000028_3eaf307e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000028_3eaf307e.szar new file mode 100644 index 00000000..5ade655d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000028_3eaf307e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000029_cda982eb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000029_cda982eb.szar new file mode 100644 index 00000000..be397a77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/archive/delta_00000000000000000029_cda982eb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000001_d10098d4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000001_d10098d4.szcp new file mode 100644 index 00000000..2c7e6564 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000001_d10098d4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000002_469b500a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000002_469b500a.szcp new file mode 100644 index 00000000..a7e2bd0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000002_469b500a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000003_36be4dc1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000003_36be4dc1.szcp new file mode 100644 index 00000000..eedc8728 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000003_36be4dc1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000004_077f2527.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000004_077f2527.szcp new file mode 100644 index 00000000..5f450684 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000004_077f2527.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000005_0a831fe1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000005_0a831fe1.szcp new file mode 100644 index 00000000..b7d4c879 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000005_0a831fe1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000006_d2eba670.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000006_d2eba670.szcp new file mode 100644 index 00000000..d9fe00bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000006_d2eba670.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000007_fd974750.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000007_fd974750.szcp new file mode 100644 index 00000000..b6d19907 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000007_fd974750.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000008_b5a6e920.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000008_b5a6e920.szcp new file mode 100644 index 00000000..95f6c33b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000008_b5a6e920.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000009_a6ee909e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000009_a6ee909e.szcp new file mode 100644 index 00000000..8cf474b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000009_a6ee909e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000010_0947f301.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000010_0947f301.szcp new file mode 100644 index 00000000..7115af9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000010_0947f301.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000011_de8ce8e3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000011_de8ce8e3.szcp new file mode 100644 index 00000000..77135a4a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000011_de8ce8e3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000012_ae93e7c2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000012_ae93e7c2.szcp new file mode 100644 index 00000000..0f859e96 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000012_ae93e7c2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000013_e9f64a8a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000013_e9f64a8a.szcp new file mode 100644 index 00000000..88f1bcfe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000013_e9f64a8a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000014_23cd0989.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000014_23cd0989.szcp new file mode 100644 index 00000000..72149fc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000014_23cd0989.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000015_b8e96a82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000015_b8e96a82.szcp new file mode 100644 index 00000000..5ee011fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000015_b8e96a82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000016_ae0efcfb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000016_ae0efcfb.szcp new file mode 100644 index 00000000..ae5422fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000016_ae0efcfb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000017_6420923f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000017_6420923f.szcp new file mode 100644 index 00000000..7fe24064 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000017_6420923f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000018_155d110c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000018_155d110c.szcp new file mode 100644 index 00000000..dbc0dd59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000018_155d110c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000019_cd406043.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000019_cd406043.szcp new file mode 100644 index 00000000..c1157e37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000019_cd406043.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000020_63aa1816.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000020_63aa1816.szcp new file mode 100644 index 00000000..18d5c432 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000020_63aa1816.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000021_34c34264.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000021_34c34264.szcp new file mode 100644 index 00000000..49da3462 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000021_34c34264.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000022_bec38dcb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000022_bec38dcb.szcp new file mode 100644 index 00000000..eef83547 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000022_bec38dcb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000023_492fcca3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000023_492fcca3.szcp new file mode 100644 index 00000000..79a981fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000023_492fcca3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000024_25473745.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000024_25473745.szcp new file mode 100644 index 00000000..9a624947 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000024_25473745.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000025_d25a8937.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000025_d25a8937.szcp new file mode 100644 index 00000000..1b590dc5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000025_d25a8937.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000026_41a82d88.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000026_41a82d88.szcp new file mode 100644 index 00000000..1f5b9e59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000026_41a82d88.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000027_5de17701.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000027_5de17701.szcp new file mode 100644 index 00000000..6e588ced Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000027_5de17701.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000028_c4ab7000.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000028_c4ab7000.szcp new file mode 100644 index 00000000..118a8600 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000028_c4ab7000.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000029_fd3e2229.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000029_fd3e2229.szcp new file mode 100644 index 00000000..9d552f73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_023/checkpoints/checkpoint_00000000000000000029_fd3e2229.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000001_7b26d719.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000001_7b26d719.szar new file mode 100644 index 00000000..c16330ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000001_7b26d719.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000002_36d55022.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000002_36d55022.szar new file mode 100644 index 00000000..1a1e3eb1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000002_36d55022.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000003_d149e814.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000003_d149e814.szar new file mode 100644 index 00000000..38e11115 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000003_d149e814.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000004_752669da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000004_752669da.szar new file mode 100644 index 00000000..a78b9b84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000004_752669da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000005_8896b964.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000005_8896b964.szar new file mode 100644 index 00000000..a0152033 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000005_8896b964.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000006_02c3e1a5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000006_02c3e1a5.szar new file mode 100644 index 00000000..cf9cd8ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000006_02c3e1a5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000007_c4d459e3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000007_c4d459e3.szar new file mode 100644 index 00000000..dbc90b52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000007_c4d459e3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000008_d1c49cf8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000008_d1c49cf8.szar new file mode 100644 index 00000000..9fd7fb58 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000008_d1c49cf8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000009_5ad9ee6e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000009_5ad9ee6e.szar new file mode 100644 index 00000000..b0492604 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000009_5ad9ee6e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000010_e5a603d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000010_e5a603d4.szar new file mode 100644 index 00000000..748d6de5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000010_e5a603d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000011_75017d71.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000011_75017d71.szar new file mode 100644 index 00000000..ce723557 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000011_75017d71.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000012_03f54c29.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000012_03f54c29.szar new file mode 100644 index 00000000..0e27af0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000012_03f54c29.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000013_4c6f7336.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000013_4c6f7336.szar new file mode 100644 index 00000000..51313b28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000013_4c6f7336.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000014_81060bb7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000014_81060bb7.szar new file mode 100644 index 00000000..19cdfc43 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000014_81060bb7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000015_41aca02c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000015_41aca02c.szar new file mode 100644 index 00000000..ab6c9bf9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000015_41aca02c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000016_e6dc311f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000016_e6dc311f.szar new file mode 100644 index 00000000..8a917c84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000016_e6dc311f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000017_2de6a043.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000017_2de6a043.szar new file mode 100644 index 00000000..3587dc4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000017_2de6a043.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000018_f96c2013.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000018_f96c2013.szar new file mode 100644 index 00000000..ed092911 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000018_f96c2013.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000019_38c7ba7d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000019_38c7ba7d.szar new file mode 100644 index 00000000..0df8658d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000019_38c7ba7d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000020_4e2f6ef8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000020_4e2f6ef8.szar new file mode 100644 index 00000000..c0707076 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000020_4e2f6ef8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000021_87d41aca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000021_87d41aca.szar new file mode 100644 index 00000000..67240e62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000021_87d41aca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000022_539104f6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000022_539104f6.szar new file mode 100644 index 00000000..ed95c2d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000022_539104f6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000023_3471cad1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000023_3471cad1.szar new file mode 100644 index 00000000..39036c5d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000023_3471cad1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000024_2066f4bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000024_2066f4bf.szar new file mode 100644 index 00000000..ddb65f12 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000024_2066f4bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000025_62de675b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000025_62de675b.szar new file mode 100644 index 00000000..56943ab6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/archive/delta_00000000000000000025_62de675b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000001_c4e75471.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000001_c4e75471.szcp new file mode 100644 index 00000000..679e0140 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000001_c4e75471.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000002_9a57e643.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000002_9a57e643.szcp new file mode 100644 index 00000000..cb9ed1e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000002_9a57e643.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000003_c28e167a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000003_c28e167a.szcp new file mode 100644 index 00000000..2a7855fd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000003_c28e167a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000004_b9017de4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000004_b9017de4.szcp new file mode 100644 index 00000000..dff4cffd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000004_b9017de4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000005_5cfe6df4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000005_5cfe6df4.szcp new file mode 100644 index 00000000..969f186d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000005_5cfe6df4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000006_ec1a9186.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000006_ec1a9186.szcp new file mode 100644 index 00000000..0e2a97b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000006_ec1a9186.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000007_7e98ec35.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000007_7e98ec35.szcp new file mode 100644 index 00000000..42d2abfd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000007_7e98ec35.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000008_ef0396f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000008_ef0396f6.szcp new file mode 100644 index 00000000..e5818196 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000008_ef0396f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000009_f071e3ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000009_f071e3ce.szcp new file mode 100644 index 00000000..48818c29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000009_f071e3ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000010_25fbda41.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000010_25fbda41.szcp new file mode 100644 index 00000000..b378b89d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000010_25fbda41.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000011_f19104be.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000011_f19104be.szcp new file mode 100644 index 00000000..1b31d3b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000011_f19104be.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000012_633797a7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000012_633797a7.szcp new file mode 100644 index 00000000..6617a987 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000012_633797a7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000013_6fdd43c9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000013_6fdd43c9.szcp new file mode 100644 index 00000000..509302dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000013_6fdd43c9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000014_75f4f8ed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000014_75f4f8ed.szcp new file mode 100644 index 00000000..4181f5b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000014_75f4f8ed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000015_a0f0c910.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000015_a0f0c910.szcp new file mode 100644 index 00000000..5601393e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000015_a0f0c910.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000016_d9d41cd7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000016_d9d41cd7.szcp new file mode 100644 index 00000000..084f7946 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000016_d9d41cd7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000017_0dd69b20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000017_0dd69b20.szcp new file mode 100644 index 00000000..3998d5c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000017_0dd69b20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000018_c49e191c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000018_c49e191c.szcp new file mode 100644 index 00000000..355d5a53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000018_c49e191c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000019_48d81de9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000019_48d81de9.szcp new file mode 100644 index 00000000..3606699b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000019_48d81de9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000020_c53a9a63.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000020_c53a9a63.szcp new file mode 100644 index 00000000..da07bbfb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000020_c53a9a63.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000021_6838c1a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000021_6838c1a8.szcp new file mode 100644 index 00000000..3f89880a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000021_6838c1a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000022_3001b046.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000022_3001b046.szcp new file mode 100644 index 00000000..531c64fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000022_3001b046.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000023_7b696ada.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000023_7b696ada.szcp new file mode 100644 index 00000000..59b9afd6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000023_7b696ada.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000024_61b94834.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000024_61b94834.szcp new file mode 100644 index 00000000..1878626a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000024_61b94834.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000025_7d128e79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000025_7d128e79.szcp new file mode 100644 index 00000000..ca2ecadd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_024/checkpoints/checkpoint_00000000000000000025_7d128e79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000001_89286942.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000001_89286942.szar new file mode 100644 index 00000000..0c7f9c6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000001_89286942.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000002_feb2c822.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000002_feb2c822.szar new file mode 100644 index 00000000..c32dfeb7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000002_feb2c822.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000003_76e652cc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000003_76e652cc.szar new file mode 100644 index 00000000..3d680ff0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000003_76e652cc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000004_caffa9df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000004_caffa9df.szar new file mode 100644 index 00000000..eb734b17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000004_caffa9df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000005_99387d96.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000005_99387d96.szar new file mode 100644 index 00000000..a397dce5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000005_99387d96.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000006_462ad856.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000006_462ad856.szar new file mode 100644 index 00000000..aff5a4bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000006_462ad856.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000007_e91fab39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000007_e91fab39.szar new file mode 100644 index 00000000..79d2791d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000007_e91fab39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000008_34e474a6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000008_34e474a6.szar new file mode 100644 index 00000000..47fca84a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000008_34e474a6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000009_2bbd3c0a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000009_2bbd3c0a.szar new file mode 100644 index 00000000..43c19bdf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000009_2bbd3c0a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000010_4b4ac82b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000010_4b4ac82b.szar new file mode 100644 index 00000000..c473ce3c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000010_4b4ac82b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000011_9033c3c3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000011_9033c3c3.szar new file mode 100644 index 00000000..7beffb5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000011_9033c3c3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000012_fa87b502.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000012_fa87b502.szar new file mode 100644 index 00000000..32111a3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000012_fa87b502.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000013_fa0c17de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000013_fa0c17de.szar new file mode 100644 index 00000000..ddc022df Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000013_fa0c17de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000014_31556b1c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000014_31556b1c.szar new file mode 100644 index 00000000..cd82bc1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000014_31556b1c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000015_c378613e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000015_c378613e.szar new file mode 100644 index 00000000..dd10ebe9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000015_c378613e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000016_0f9445ff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000016_0f9445ff.szar new file mode 100644 index 00000000..5b5e25ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000016_0f9445ff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000017_4466f98a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000017_4466f98a.szar new file mode 100644 index 00000000..8e21834f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000017_4466f98a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000018_0fa09fe4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000018_0fa09fe4.szar new file mode 100644 index 00000000..a1ac35e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000018_0fa09fe4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000019_ec9deeeb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000019_ec9deeeb.szar new file mode 100644 index 00000000..6ef11088 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000019_ec9deeeb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000020_42954591.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000020_42954591.szar new file mode 100644 index 00000000..3c744ef4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000020_42954591.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000021_9cd243b9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000021_9cd243b9.szar new file mode 100644 index 00000000..9673e9b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000021_9cd243b9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000022_14386624.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000022_14386624.szar new file mode 100644 index 00000000..f1cb2171 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000022_14386624.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000023_3fd0ea24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000023_3fd0ea24.szar new file mode 100644 index 00000000..0524efc8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000023_3fd0ea24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000024_2c5835b2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000024_2c5835b2.szar new file mode 100644 index 00000000..f04c30f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000024_2c5835b2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000025_0031aa8d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000025_0031aa8d.szar new file mode 100644 index 00000000..6a802893 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000025_0031aa8d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000026_9c3084af.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000026_9c3084af.szar new file mode 100644 index 00000000..46716767 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000026_9c3084af.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000027_f0479660.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000027_f0479660.szar new file mode 100644 index 00000000..48e54614 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000027_f0479660.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000028_a53b6463.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000028_a53b6463.szar new file mode 100644 index 00000000..99ee3d1a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000028_a53b6463.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000029_7499aa4b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000029_7499aa4b.szar new file mode 100644 index 00000000..556d2fab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000029_7499aa4b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000030_72a5c701.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000030_72a5c701.szar new file mode 100644 index 00000000..6a15a3fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000030_72a5c701.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000031_b7d37365.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000031_b7d37365.szar new file mode 100644 index 00000000..5c2248a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/archive/delta_00000000000000000031_b7d37365.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000001_0f7c0d35.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000001_0f7c0d35.szcp new file mode 100644 index 00000000..7cfcc376 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000001_0f7c0d35.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000002_f42e038c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000002_f42e038c.szcp new file mode 100644 index 00000000..e2e6912f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000002_f42e038c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000003_b1df8cc0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000003_b1df8cc0.szcp new file mode 100644 index 00000000..77298983 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000003_b1df8cc0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000004_74c24617.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000004_74c24617.szcp new file mode 100644 index 00000000..9214de57 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000004_74c24617.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000005_060677cc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000005_060677cc.szcp new file mode 100644 index 00000000..c5c700a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000005_060677cc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000006_9af48414.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000006_9af48414.szcp new file mode 100644 index 00000000..c0c2f44a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000006_9af48414.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000007_e2ac6623.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000007_e2ac6623.szcp new file mode 100644 index 00000000..32b3d6e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000007_e2ac6623.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000008_fe851e34.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000008_fe851e34.szcp new file mode 100644 index 00000000..090b987b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000008_fe851e34.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000009_c7b65a6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000009_c7b65a6a.szcp new file mode 100644 index 00000000..a949bcc4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000009_c7b65a6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000010_f743ff1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000010_f743ff1c.szcp new file mode 100644 index 00000000..c4bdaea3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000010_f743ff1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000011_f81a6b0a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000011_f81a6b0a.szcp new file mode 100644 index 00000000..817c79ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000011_f81a6b0a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000012_b47fd394.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000012_b47fd394.szcp new file mode 100644 index 00000000..e6563ae4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000012_b47fd394.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000013_11aa934a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000013_11aa934a.szcp new file mode 100644 index 00000000..3b2e0170 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000013_11aa934a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000014_34cac6fe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000014_34cac6fe.szcp new file mode 100644 index 00000000..db1ab82b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000014_34cac6fe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000015_ed69aa17.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000015_ed69aa17.szcp new file mode 100644 index 00000000..6378bbcb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000015_ed69aa17.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000016_abafa275.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000016_abafa275.szcp new file mode 100644 index 00000000..2339b9b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000016_abafa275.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000017_05314f1d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000017_05314f1d.szcp new file mode 100644 index 00000000..9e44baa5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000017_05314f1d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000018_04948c7f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000018_04948c7f.szcp new file mode 100644 index 00000000..f1b9fd31 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000018_04948c7f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000019_3aeabca1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000019_3aeabca1.szcp new file mode 100644 index 00000000..2ad3687f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000019_3aeabca1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000020_94928fbb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000020_94928fbb.szcp new file mode 100644 index 00000000..745b64ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000020_94928fbb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000021_a5f671f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000021_a5f671f0.szcp new file mode 100644 index 00000000..9960ec05 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000021_a5f671f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000022_53c93415.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000022_53c93415.szcp new file mode 100644 index 00000000..f040d729 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000022_53c93415.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000023_42301e4f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000023_42301e4f.szcp new file mode 100644 index 00000000..90fedcbe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000023_42301e4f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000024_094e816b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000024_094e816b.szcp new file mode 100644 index 00000000..23cb980f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000024_094e816b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000025_77bfa8b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000025_77bfa8b7.szcp new file mode 100644 index 00000000..b1914e2f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000025_77bfa8b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000026_ab24f436.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000026_ab24f436.szcp new file mode 100644 index 00000000..bf58cfa7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000026_ab24f436.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000027_79dd65cd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000027_79dd65cd.szcp new file mode 100644 index 00000000..e95ddfc9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000027_79dd65cd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000028_b6e38bda.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000028_b6e38bda.szcp new file mode 100644 index 00000000..1c26c5d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000028_b6e38bda.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000029_5dafe9b5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000029_5dafe9b5.szcp new file mode 100644 index 00000000..582182e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000029_5dafe9b5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000030_41ea3c7e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000030_41ea3c7e.szcp new file mode 100644 index 00000000..442d28b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000030_41ea3c7e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000031_923fbd19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000031_923fbd19.szcp new file mode 100644 index 00000000..05bca195 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_025/checkpoints/checkpoint_00000000000000000031_923fbd19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000001_431400fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000001_431400fb.szar new file mode 100644 index 00000000..72c2d4a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000001_431400fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000002_d2672e48.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000002_d2672e48.szar new file mode 100644 index 00000000..30d85508 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000002_d2672e48.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000003_463e68a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000003_463e68a0.szar new file mode 100644 index 00000000..f52ca4ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000003_463e68a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000004_233fcd7a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000004_233fcd7a.szar new file mode 100644 index 00000000..d741ac4c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000004_233fcd7a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000005_4704e266.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000005_4704e266.szar new file mode 100644 index 00000000..98979ae4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000005_4704e266.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000006_2a4de796.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000006_2a4de796.szar new file mode 100644 index 00000000..caf0fd2b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000006_2a4de796.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000007_1fcd187b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000007_1fcd187b.szar new file mode 100644 index 00000000..7be8c506 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000007_1fcd187b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000008_7711dcf9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000008_7711dcf9.szar new file mode 100644 index 00000000..3ded0b6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000008_7711dcf9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000009_d6217f3c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000009_d6217f3c.szar new file mode 100644 index 00000000..16484dfb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000009_d6217f3c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000010_c5cd68a4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000010_c5cd68a4.szar new file mode 100644 index 00000000..16d042f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000010_c5cd68a4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000011_bf9072c7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000011_bf9072c7.szar new file mode 100644 index 00000000..2440e455 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000011_bf9072c7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000012_d5d32e34.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000012_d5d32e34.szar new file mode 100644 index 00000000..c9d0e440 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000012_d5d32e34.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000013_6f4f7e29.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000013_6f4f7e29.szar new file mode 100644 index 00000000..d3ca9265 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000013_6f4f7e29.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000014_5817cbf9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000014_5817cbf9.szar new file mode 100644 index 00000000..80b6848f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000014_5817cbf9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000015_19e1767b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000015_19e1767b.szar new file mode 100644 index 00000000..59ad0eba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000015_19e1767b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000016_ae17df72.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000016_ae17df72.szar new file mode 100644 index 00000000..7e76a5ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000016_ae17df72.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000017_3d89440b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000017_3d89440b.szar new file mode 100644 index 00000000..d72ae4f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000017_3d89440b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000018_e5a29a42.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000018_e5a29a42.szar new file mode 100644 index 00000000..2675cf15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000018_e5a29a42.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000019_50550dff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000019_50550dff.szar new file mode 100644 index 00000000..a02dae29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000019_50550dff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000020_b42f3b35.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000020_b42f3b35.szar new file mode 100644 index 00000000..c5658307 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000020_b42f3b35.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000021_45a54fae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000021_45a54fae.szar new file mode 100644 index 00000000..4a44ea86 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000021_45a54fae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000022_a2257d33.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000022_a2257d33.szar new file mode 100644 index 00000000..001d5f20 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000022_a2257d33.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000023_009407fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000023_009407fd.szar new file mode 100644 index 00000000..6bb10dc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000023_009407fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000024_6ce3d9ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000024_6ce3d9ee.szar new file mode 100644 index 00000000..87e71ad2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000024_6ce3d9ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000025_82d49e84.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000025_82d49e84.szar new file mode 100644 index 00000000..ce5b3e1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000025_82d49e84.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000026_d03b009a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000026_d03b009a.szar new file mode 100644 index 00000000..9757c94e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000026_d03b009a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000027_0be09aca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000027_0be09aca.szar new file mode 100644 index 00000000..165d01b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000027_0be09aca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000028_0fe15c58.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000028_0fe15c58.szar new file mode 100644 index 00000000..e8da942b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000028_0fe15c58.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000029_a0adbaff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000029_a0adbaff.szar new file mode 100644 index 00000000..ead4be40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000029_a0adbaff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000030_d1810a39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000030_d1810a39.szar new file mode 100644 index 00000000..1d894684 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000030_d1810a39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000031_1eb732d0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000031_1eb732d0.szar new file mode 100644 index 00000000..d9abd980 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000031_1eb732d0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000032_aaa44729.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000032_aaa44729.szar new file mode 100644 index 00000000..7e9b7f33 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000032_aaa44729.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000033_701300ea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000033_701300ea.szar new file mode 100644 index 00000000..92578512 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000033_701300ea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000034_db48e191.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000034_db48e191.szar new file mode 100644 index 00000000..827b62eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000034_db48e191.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000035_af3db424.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000035_af3db424.szar new file mode 100644 index 00000000..eaea4f99 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000035_af3db424.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000036_a983b655.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000036_a983b655.szar new file mode 100644 index 00000000..85413e35 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000036_a983b655.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000037_eedf6b77.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000037_eedf6b77.szar new file mode 100644 index 00000000..e1840691 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000037_eedf6b77.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000038_f4c3fa3e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000038_f4c3fa3e.szar new file mode 100644 index 00000000..6a3151b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000038_f4c3fa3e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000039_932c5c2c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000039_932c5c2c.szar new file mode 100644 index 00000000..e7b73b20 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/archive/delta_00000000000000000039_932c5c2c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000001_0db80472.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000001_0db80472.szcp new file mode 100644 index 00000000..ea3da8d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000001_0db80472.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000002_c3efd623.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000002_c3efd623.szcp new file mode 100644 index 00000000..155ddaa5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000002_c3efd623.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000003_8cd2cce2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000003_8cd2cce2.szcp new file mode 100644 index 00000000..2f02f4f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000003_8cd2cce2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000004_621acb94.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000004_621acb94.szcp new file mode 100644 index 00000000..735650fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000004_621acb94.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000005_50b4f761.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000005_50b4f761.szcp new file mode 100644 index 00000000..80a9e25f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000005_50b4f761.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000006_b338fb38.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000006_b338fb38.szcp new file mode 100644 index 00000000..3f4bcaf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000006_b338fb38.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000007_b64795a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000007_b64795a1.szcp new file mode 100644 index 00000000..65e520ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000007_b64795a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000008_17baf106.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000008_17baf106.szcp new file mode 100644 index 00000000..5ae3941b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000008_17baf106.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000009_a83b3c02.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000009_a83b3c02.szcp new file mode 100644 index 00000000..a755ef4f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000009_a83b3c02.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000010_b01ea2d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000010_b01ea2d6.szcp new file mode 100644 index 00000000..69b54fb0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000010_b01ea2d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000011_e0c32b00.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000011_e0c32b00.szcp new file mode 100644 index 00000000..532fed55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000011_e0c32b00.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000012_96353107.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000012_96353107.szcp new file mode 100644 index 00000000..6a95556d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000012_96353107.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000013_a7d6b8b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000013_a7d6b8b4.szcp new file mode 100644 index 00000000..28e10ac2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000013_a7d6b8b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000014_691b2cde.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000014_691b2cde.szcp new file mode 100644 index 00000000..a9264697 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000014_691b2cde.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000015_ae29a866.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000015_ae29a866.szcp new file mode 100644 index 00000000..5117bd15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000015_ae29a866.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000016_3ac9d205.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000016_3ac9d205.szcp new file mode 100644 index 00000000..d0691dd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000016_3ac9d205.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000017_ba980365.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000017_ba980365.szcp new file mode 100644 index 00000000..6782817c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000017_ba980365.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000018_85d1d966.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000018_85d1d966.szcp new file mode 100644 index 00000000..09f02fe2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000018_85d1d966.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000019_be5de244.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000019_be5de244.szcp new file mode 100644 index 00000000..25966074 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000019_be5de244.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000020_1527596e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000020_1527596e.szcp new file mode 100644 index 00000000..68257ce9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000020_1527596e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000021_62c40f9c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000021_62c40f9c.szcp new file mode 100644 index 00000000..9d9d7798 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000021_62c40f9c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000022_fb22818f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000022_fb22818f.szcp new file mode 100644 index 00000000..2f4be59d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000022_fb22818f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000023_f98dc11a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000023_f98dc11a.szcp new file mode 100644 index 00000000..682c5fe3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000023_f98dc11a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000024_a63a9dc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000024_a63a9dc9.szcp new file mode 100644 index 00000000..47bde9f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000024_a63a9dc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000025_af42a90c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000025_af42a90c.szcp new file mode 100644 index 00000000..52f02c74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000025_af42a90c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000026_0aaa6181.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000026_0aaa6181.szcp new file mode 100644 index 00000000..1e7e09a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000026_0aaa6181.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000027_b9c6ac50.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000027_b9c6ac50.szcp new file mode 100644 index 00000000..54945a79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000027_b9c6ac50.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000028_92ef9898.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000028_92ef9898.szcp new file mode 100644 index 00000000..2532e9d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000028_92ef9898.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000029_41b343ee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000029_41b343ee.szcp new file mode 100644 index 00000000..60ca4d09 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000029_41b343ee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000030_9d93bff9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000030_9d93bff9.szcp new file mode 100644 index 00000000..bba97fe7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000030_9d93bff9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000031_3a4c9680.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000031_3a4c9680.szcp new file mode 100644 index 00000000..b794839c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000031_3a4c9680.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000032_08055c3f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000032_08055c3f.szcp new file mode 100644 index 00000000..5fc3bc4a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000032_08055c3f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000033_8f67af49.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000033_8f67af49.szcp new file mode 100644 index 00000000..41d0f261 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000033_8f67af49.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000034_8d3b2ecd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000034_8d3b2ecd.szcp new file mode 100644 index 00000000..da96509c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000034_8d3b2ecd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000035_e3e21e2d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000035_e3e21e2d.szcp new file mode 100644 index 00000000..c92b9401 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000035_e3e21e2d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000036_1cbe5b0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000036_1cbe5b0d.szcp new file mode 100644 index 00000000..0041bf8f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000036_1cbe5b0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000037_1a0bd56c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000037_1a0bd56c.szcp new file mode 100644 index 00000000..3ca6aec7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000037_1a0bd56c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000038_74fddef6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000038_74fddef6.szcp new file mode 100644 index 00000000..c074411e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000038_74fddef6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000039_b2afcd84.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000039_b2afcd84.szcp new file mode 100644 index 00000000..8702fc62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_026/checkpoints/checkpoint_00000000000000000039_b2afcd84.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000001_577e3817.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000001_577e3817.szar new file mode 100644 index 00000000..a4255145 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000001_577e3817.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000002_7488d172.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000002_7488d172.szar new file mode 100644 index 00000000..c6397c49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000002_7488d172.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000003_350eecee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000003_350eecee.szar new file mode 100644 index 00000000..acbc44a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000003_350eecee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000004_55cb5d62.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000004_55cb5d62.szar new file mode 100644 index 00000000..fbe782c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000004_55cb5d62.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000005_9dce733d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000005_9dce733d.szar new file mode 100644 index 00000000..c75a8d5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000005_9dce733d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000006_9cbf557c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000006_9cbf557c.szar new file mode 100644 index 00000000..06a2af6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000006_9cbf557c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000007_680cf998.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000007_680cf998.szar new file mode 100644 index 00000000..17d600ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000007_680cf998.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000008_4c522a21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000008_4c522a21.szar new file mode 100644 index 00000000..d751d308 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000008_4c522a21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000009_b0cfc073.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000009_b0cfc073.szar new file mode 100644 index 00000000..7adf85ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000009_b0cfc073.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000010_50c5338a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000010_50c5338a.szar new file mode 100644 index 00000000..554e01dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000010_50c5338a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000011_fc2120ed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000011_fc2120ed.szar new file mode 100644 index 00000000..39d334f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000011_fc2120ed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000012_6583722a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000012_6583722a.szar new file mode 100644 index 00000000..9cbca9f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000012_6583722a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000013_39fa1e67.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000013_39fa1e67.szar new file mode 100644 index 00000000..971b12d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000013_39fa1e67.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000014_5c1660c7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000014_5c1660c7.szar new file mode 100644 index 00000000..8ae82260 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000014_5c1660c7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000015_663974e6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000015_663974e6.szar new file mode 100644 index 00000000..10ca6903 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000015_663974e6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000016_28cf7d7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000016_28cf7d7f.szar new file mode 100644 index 00000000..c907ca79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000016_28cf7d7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000017_421cd36f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000017_421cd36f.szar new file mode 100644 index 00000000..ee4ad84b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000017_421cd36f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000018_95d04048.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000018_95d04048.szar new file mode 100644 index 00000000..7d0a26fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000018_95d04048.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000019_dd5836f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000019_dd5836f4.szar new file mode 100644 index 00000000..0a10983f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000019_dd5836f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000020_e37e9319.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000020_e37e9319.szar new file mode 100644 index 00000000..e2fc4d22 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000020_e37e9319.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000021_f673f443.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000021_f673f443.szar new file mode 100644 index 00000000..0c93d7e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000021_f673f443.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000022_87729366.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000022_87729366.szar new file mode 100644 index 00000000..f0de0753 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000022_87729366.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000023_ba139bc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000023_ba139bc2.szar new file mode 100644 index 00000000..70f66663 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000023_ba139bc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000024_2ad17d11.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000024_2ad17d11.szar new file mode 100644 index 00000000..8902cda5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000024_2ad17d11.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000025_4de88fc9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000025_4de88fc9.szar new file mode 100644 index 00000000..8cd20244 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000025_4de88fc9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000026_9ed24b4e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000026_9ed24b4e.szar new file mode 100644 index 00000000..34d67435 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000026_9ed24b4e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000027_e458f694.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000027_e458f694.szar new file mode 100644 index 00000000..aa6393c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/archive/delta_00000000000000000027_e458f694.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000001_6745baf1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000001_6745baf1.szcp new file mode 100644 index 00000000..71ed3746 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000001_6745baf1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000002_5ceff065.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000002_5ceff065.szcp new file mode 100644 index 00000000..ca28168c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000002_5ceff065.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000003_d61254b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000003_d61254b0.szcp new file mode 100644 index 00000000..48261b6a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000003_d61254b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000004_33165961.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000004_33165961.szcp new file mode 100644 index 00000000..939a2920 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000004_33165961.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000005_688cd26e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000005_688cd26e.szcp new file mode 100644 index 00000000..0e97521f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000005_688cd26e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000006_d7492ea4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000006_d7492ea4.szcp new file mode 100644 index 00000000..c50dee27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000006_d7492ea4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000007_503fd8c0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000007_503fd8c0.szcp new file mode 100644 index 00000000..ce13b404 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000007_503fd8c0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000008_477a1ba9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000008_477a1ba9.szcp new file mode 100644 index 00000000..62df8628 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000008_477a1ba9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000009_09eef101.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000009_09eef101.szcp new file mode 100644 index 00000000..570674cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000009_09eef101.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000010_324f0991.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000010_324f0991.szcp new file mode 100644 index 00000000..97ed4912 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000010_324f0991.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000011_5fe65dc6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000011_5fe65dc6.szcp new file mode 100644 index 00000000..62320037 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000011_5fe65dc6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000012_90df1d0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000012_90df1d0c.szcp new file mode 100644 index 00000000..fd0def9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000012_90df1d0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000013_9926cd20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000013_9926cd20.szcp new file mode 100644 index 00000000..fbe61b30 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000013_9926cd20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000014_a102525a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000014_a102525a.szcp new file mode 100644 index 00000000..af42f645 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000014_a102525a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000015_ba874dba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000015_ba874dba.szcp new file mode 100644 index 00000000..d49df1c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000015_ba874dba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000016_d6b4b854.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000016_d6b4b854.szcp new file mode 100644 index 00000000..c17995d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000016_d6b4b854.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000017_7de4d1f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000017_7de4d1f0.szcp new file mode 100644 index 00000000..b42e5351 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000017_7de4d1f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000018_8dec2bc3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000018_8dec2bc3.szcp new file mode 100644 index 00000000..db46479e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000018_8dec2bc3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000019_23314f91.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000019_23314f91.szcp new file mode 100644 index 00000000..ed6309e3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000019_23314f91.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000020_ab73d2fa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000020_ab73d2fa.szcp new file mode 100644 index 00000000..6effd4f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000020_ab73d2fa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000021_8dcc85d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000021_8dcc85d6.szcp new file mode 100644 index 00000000..425c9b83 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000021_8dcc85d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000022_de62b53f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000022_de62b53f.szcp new file mode 100644 index 00000000..ec7d5f01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000022_de62b53f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000023_5cf328b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000023_5cf328b9.szcp new file mode 100644 index 00000000..7738b512 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000023_5cf328b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000024_31bcaee8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000024_31bcaee8.szcp new file mode 100644 index 00000000..96afd46f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000024_31bcaee8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000025_3a2aae3e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000025_3a2aae3e.szcp new file mode 100644 index 00000000..e3fec039 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000025_3a2aae3e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000026_d28b839c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000026_d28b839c.szcp new file mode 100644 index 00000000..3f1abd5c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000026_d28b839c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000027_a67e53c1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000027_a67e53c1.szcp new file mode 100644 index 00000000..77359204 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_027/checkpoints/checkpoint_00000000000000000027_a67e53c1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000001_1cdd28a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000001_1cdd28a0.szar new file mode 100644 index 00000000..62bc76a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000001_1cdd28a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000002_9498b2ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000002_9498b2ce.szar new file mode 100644 index 00000000..bd82417d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000002_9498b2ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000003_d26eb17a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000003_d26eb17a.szar new file mode 100644 index 00000000..c9c5f419 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000003_d26eb17a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000004_c12c41a7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000004_c12c41a7.szar new file mode 100644 index 00000000..8ec40672 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000004_c12c41a7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000005_29052759.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000005_29052759.szar new file mode 100644 index 00000000..4a39f022 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000005_29052759.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000006_386cab2c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000006_386cab2c.szar new file mode 100644 index 00000000..ee503c00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000006_386cab2c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000007_17f3899b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000007_17f3899b.szar new file mode 100644 index 00000000..26691e6a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000007_17f3899b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000008_3d0e881a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000008_3d0e881a.szar new file mode 100644 index 00000000..46ae3222 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000008_3d0e881a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000009_2455a427.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000009_2455a427.szar new file mode 100644 index 00000000..f7286bf2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000009_2455a427.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000010_47d0f2f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000010_47d0f2f0.szar new file mode 100644 index 00000000..1da02b9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000010_47d0f2f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000011_8f28abec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000011_8f28abec.szar new file mode 100644 index 00000000..e41bc65f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000011_8f28abec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000012_8f68ba74.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000012_8f68ba74.szar new file mode 100644 index 00000000..651208b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000012_8f68ba74.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000013_d68d4cc5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000013_d68d4cc5.szar new file mode 100644 index 00000000..0f9c9d8a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000013_d68d4cc5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000014_2034682e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000014_2034682e.szar new file mode 100644 index 00000000..df7481a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000014_2034682e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000015_0b8af2a1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000015_0b8af2a1.szar new file mode 100644 index 00000000..eb1ac8dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000015_0b8af2a1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000016_bdc31fc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000016_bdc31fc2.szar new file mode 100644 index 00000000..9064bdb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000016_bdc31fc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000017_bdcb8e04.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000017_bdcb8e04.szar new file mode 100644 index 00000000..de9e4a12 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000017_bdcb8e04.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000018_de602f35.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000018_de602f35.szar new file mode 100644 index 00000000..267f992e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000018_de602f35.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000019_aade4712.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000019_aade4712.szar new file mode 100644 index 00000000..8385bc06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000019_aade4712.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000020_af5ae3a7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000020_af5ae3a7.szar new file mode 100644 index 00000000..8c1b79d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000020_af5ae3a7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000021_b408fca4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000021_b408fca4.szar new file mode 100644 index 00000000..5e072ace Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000021_b408fca4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000022_b59693a6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000022_b59693a6.szar new file mode 100644 index 00000000..28088f13 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000022_b59693a6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000023_e137e422.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000023_e137e422.szar new file mode 100644 index 00000000..5411f2ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000023_e137e422.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000024_ed547803.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000024_ed547803.szar new file mode 100644 index 00000000..6878cd71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000024_ed547803.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000025_ad608483.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000025_ad608483.szar new file mode 100644 index 00000000..58854334 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000025_ad608483.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000026_b860c04e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000026_b860c04e.szar new file mode 100644 index 00000000..8eecea83 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000026_b860c04e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000027_74d70e9d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000027_74d70e9d.szar new file mode 100644 index 00000000..20a57c51 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000027_74d70e9d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000028_46c73238.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000028_46c73238.szar new file mode 100644 index 00000000..72ffd5c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/archive/delta_00000000000000000028_46c73238.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000001_044db18f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000001_044db18f.szcp new file mode 100644 index 00000000..92ad1def Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000001_044db18f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000002_40d32462.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000002_40d32462.szcp new file mode 100644 index 00000000..3cf60a41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000002_40d32462.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000003_3a67b6a5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000003_3a67b6a5.szcp new file mode 100644 index 00000000..abaf077d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000003_3a67b6a5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000004_2ce6e127.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000004_2ce6e127.szcp new file mode 100644 index 00000000..c012d91e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000004_2ce6e127.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000005_432f6bcd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000005_432f6bcd.szcp new file mode 100644 index 00000000..51b8d464 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000005_432f6bcd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000006_67dac719.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000006_67dac719.szcp new file mode 100644 index 00000000..36e42f08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000006_67dac719.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000007_3fcc6daa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000007_3fcc6daa.szcp new file mode 100644 index 00000000..535742bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000007_3fcc6daa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000008_83643ef5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000008_83643ef5.szcp new file mode 100644 index 00000000..47b0621f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000008_83643ef5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000009_b3fb322b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000009_b3fb322b.szcp new file mode 100644 index 00000000..1126fd57 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000009_b3fb322b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000010_a755093e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000010_a755093e.szcp new file mode 100644 index 00000000..2efda772 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000010_a755093e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000011_bf7d3791.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000011_bf7d3791.szcp new file mode 100644 index 00000000..1aff67a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000011_bf7d3791.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000012_3486b556.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000012_3486b556.szcp new file mode 100644 index 00000000..240397c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000012_3486b556.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000013_0cd8d6d7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000013_0cd8d6d7.szcp new file mode 100644 index 00000000..73c3c939 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000013_0cd8d6d7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000014_eb78d425.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000014_eb78d425.szcp new file mode 100644 index 00000000..47568708 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000014_eb78d425.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000015_ef2ed053.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000015_ef2ed053.szcp new file mode 100644 index 00000000..3eee72c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000015_ef2ed053.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000016_67493e79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000016_67493e79.szcp new file mode 100644 index 00000000..6d6ce092 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000016_67493e79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000017_9b91247b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000017_9b91247b.szcp new file mode 100644 index 00000000..f7cb7bdb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000017_9b91247b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000018_f31bf988.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000018_f31bf988.szcp new file mode 100644 index 00000000..2e5c7c6b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000018_f31bf988.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000019_bdea42ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000019_bdea42ec.szcp new file mode 100644 index 00000000..579a33c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000019_bdea42ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000020_b8e86759.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000020_b8e86759.szcp new file mode 100644 index 00000000..3dd175e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000020_b8e86759.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000021_541d6dc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000021_541d6dc9.szcp new file mode 100644 index 00000000..89ca47f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000021_541d6dc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000022_60d6d4a2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000022_60d6d4a2.szcp new file mode 100644 index 00000000..b01ccdc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000022_60d6d4a2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000023_d6d25812.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000023_d6d25812.szcp new file mode 100644 index 00000000..842ec9cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000023_d6d25812.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000024_1983e2f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000024_1983e2f5.szcp new file mode 100644 index 00000000..b667e361 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000024_1983e2f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000025_3eec999f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000025_3eec999f.szcp new file mode 100644 index 00000000..99db27a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000025_3eec999f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000026_9772f145.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000026_9772f145.szcp new file mode 100644 index 00000000..ef30d68b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000026_9772f145.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000027_4ed11bf7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000027_4ed11bf7.szcp new file mode 100644 index 00000000..dc7b1dea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000027_4ed11bf7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000028_838a8b82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000028_838a8b82.szcp new file mode 100644 index 00000000..e441702d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_028/checkpoints/checkpoint_00000000000000000028_838a8b82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000001_59e225f1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000001_59e225f1.szar new file mode 100644 index 00000000..97a06981 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000001_59e225f1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000002_ff6c1043.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000002_ff6c1043.szar new file mode 100644 index 00000000..dc5c9732 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000002_ff6c1043.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000003_a242642c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000003_a242642c.szar new file mode 100644 index 00000000..3e0743b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000003_a242642c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000004_2b82c6a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000004_2b82c6a3.szar new file mode 100644 index 00000000..7e296f89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000004_2b82c6a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000005_3669fa75.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000005_3669fa75.szar new file mode 100644 index 00000000..8d021d1e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000005_3669fa75.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000006_efa220f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000006_efa220f0.szar new file mode 100644 index 00000000..4711b542 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000006_efa220f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000007_a1f5a561.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000007_a1f5a561.szar new file mode 100644 index 00000000..f513c031 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000007_a1f5a561.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000008_2bf784bb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000008_2bf784bb.szar new file mode 100644 index 00000000..c7fb5f6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000008_2bf784bb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000009_439b0016.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000009_439b0016.szar new file mode 100644 index 00000000..2db95cce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000009_439b0016.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000010_fdf1c34e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000010_fdf1c34e.szar new file mode 100644 index 00000000..eca7ecb8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000010_fdf1c34e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000011_95dbe64c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000011_95dbe64c.szar new file mode 100644 index 00000000..a3dd883b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000011_95dbe64c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000012_60266193.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000012_60266193.szar new file mode 100644 index 00000000..96da28b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000012_60266193.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000013_bd9875e2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000013_bd9875e2.szar new file mode 100644 index 00000000..0ed184ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000013_bd9875e2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000014_8ba15488.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000014_8ba15488.szar new file mode 100644 index 00000000..48e14a28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000014_8ba15488.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000015_bf2e9426.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000015_bf2e9426.szar new file mode 100644 index 00000000..3205e672 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000015_bf2e9426.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000016_fa30a415.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000016_fa30a415.szar new file mode 100644 index 00000000..09cfb727 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000016_fa30a415.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000017_6e3cbb4f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000017_6e3cbb4f.szar new file mode 100644 index 00000000..d34b24c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000017_6e3cbb4f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000018_7ace3934.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000018_7ace3934.szar new file mode 100644 index 00000000..6d194afe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000018_7ace3934.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000019_ec323199.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000019_ec323199.szar new file mode 100644 index 00000000..116dce16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000019_ec323199.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000020_aba4a6d2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000020_aba4a6d2.szar new file mode 100644 index 00000000..834821f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000020_aba4a6d2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000021_fbc2e486.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000021_fbc2e486.szar new file mode 100644 index 00000000..f9caef66 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000021_fbc2e486.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000022_74a77f7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000022_74a77f7f.szar new file mode 100644 index 00000000..032df72e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000022_74a77f7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000023_da8c6d0e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000023_da8c6d0e.szar new file mode 100644 index 00000000..68c500d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000023_da8c6d0e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000024_725a6476.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000024_725a6476.szar new file mode 100644 index 00000000..89731ee5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000024_725a6476.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000025_0b126c8f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000025_0b126c8f.szar new file mode 100644 index 00000000..818a88be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000025_0b126c8f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000026_56754b3a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000026_56754b3a.szar new file mode 100644 index 00000000..bf5ebae2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/archive/delta_00000000000000000026_56754b3a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000001_87b0ef1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000001_87b0ef1c.szcp new file mode 100644 index 00000000..9aa2a771 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000001_87b0ef1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000002_d553325d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000002_d553325d.szcp new file mode 100644 index 00000000..6f2f0d6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000002_d553325d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000003_9a7ac34d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000003_9a7ac34d.szcp new file mode 100644 index 00000000..83c6be9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000003_9a7ac34d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000004_b47e6854.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000004_b47e6854.szcp new file mode 100644 index 00000000..ea60883f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000004_b47e6854.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000005_54baf756.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000005_54baf756.szcp new file mode 100644 index 00000000..b70d480d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000005_54baf756.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000006_234adc22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000006_234adc22.szcp new file mode 100644 index 00000000..c37ad862 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000006_234adc22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000007_7bed945b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000007_7bed945b.szcp new file mode 100644 index 00000000..58920c36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000007_7bed945b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000008_41ef1c31.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000008_41ef1c31.szcp new file mode 100644 index 00000000..26215077 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000008_41ef1c31.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000009_49535bae.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000009_49535bae.szcp new file mode 100644 index 00000000..00d08038 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000009_49535bae.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000010_91b4c952.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000010_91b4c952.szcp new file mode 100644 index 00000000..ba6744aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000010_91b4c952.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000011_b7713e91.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000011_b7713e91.szcp new file mode 100644 index 00000000..0b4e03d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000011_b7713e91.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000012_684b4afe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000012_684b4afe.szcp new file mode 100644 index 00000000..7bcff81a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000012_684b4afe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000013_c9b1d72e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000013_c9b1d72e.szcp new file mode 100644 index 00000000..70bdb03e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000013_c9b1d72e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000014_c4ea6cac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000014_c4ea6cac.szcp new file mode 100644 index 00000000..16bf935d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000014_c4ea6cac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000015_9bcdc517.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000015_9bcdc517.szcp new file mode 100644 index 00000000..0b097dbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000015_9bcdc517.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000016_188a29cd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000016_188a29cd.szcp new file mode 100644 index 00000000..3fc73f98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000016_188a29cd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000017_65dd84a0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000017_65dd84a0.szcp new file mode 100644 index 00000000..acb818be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000017_65dd84a0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000018_e9e28a0b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000018_e9e28a0b.szcp new file mode 100644 index 00000000..5764f758 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000018_e9e28a0b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000019_6e797f42.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000019_6e797f42.szcp new file mode 100644 index 00000000..91dc53be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000019_6e797f42.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000020_b1f7f465.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000020_b1f7f465.szcp new file mode 100644 index 00000000..64052d53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000020_b1f7f465.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000021_486e966b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000021_486e966b.szcp new file mode 100644 index 00000000..2097fd46 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000021_486e966b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000022_e85ab958.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000022_e85ab958.szcp new file mode 100644 index 00000000..96d3d65f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000022_e85ab958.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000023_735da006.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000023_735da006.szcp new file mode 100644 index 00000000..f4a16371 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000023_735da006.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000024_dec7ed58.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000024_dec7ed58.szcp new file mode 100644 index 00000000..9bfffd51 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000024_dec7ed58.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000025_b67955a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000025_b67955a9.szcp new file mode 100644 index 00000000..eede5cec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000025_b67955a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000026_f456692b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000026_f456692b.szcp new file mode 100644 index 00000000..2ea63fe3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_029/checkpoints/checkpoint_00000000000000000026_f456692b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000001_6abe9261.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000001_6abe9261.szar new file mode 100644 index 00000000..13a807af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000001_6abe9261.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000002_0d052d98.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000002_0d052d98.szar new file mode 100644 index 00000000..898ac82b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000002_0d052d98.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000003_688319e2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000003_688319e2.szar new file mode 100644 index 00000000..d07f918b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000003_688319e2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000004_50e6c1dc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000004_50e6c1dc.szar new file mode 100644 index 00000000..e47cf984 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000004_50e6c1dc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000005_8824d314.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000005_8824d314.szar new file mode 100644 index 00000000..8c0ad00c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000005_8824d314.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000006_be2db197.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000006_be2db197.szar new file mode 100644 index 00000000..be64254a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000006_be2db197.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000007_8ebb4991.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000007_8ebb4991.szar new file mode 100644 index 00000000..986d56af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000007_8ebb4991.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000008_61e4ea0e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000008_61e4ea0e.szar new file mode 100644 index 00000000..d9db08fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000008_61e4ea0e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000009_03765915.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000009_03765915.szar new file mode 100644 index 00000000..17b7c96c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000009_03765915.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000010_d37df7ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000010_d37df7ba.szar new file mode 100644 index 00000000..bf95ced6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000010_d37df7ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000011_cedb8305.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000011_cedb8305.szar new file mode 100644 index 00000000..ed335cb3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000011_cedb8305.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000012_5d9f27f1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000012_5d9f27f1.szar new file mode 100644 index 00000000..d44675a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000012_5d9f27f1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000013_164fd5c9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000013_164fd5c9.szar new file mode 100644 index 00000000..5c3a527d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000013_164fd5c9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000014_98412cdd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000014_98412cdd.szar new file mode 100644 index 00000000..628fdded Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000014_98412cdd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000015_03468786.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000015_03468786.szar new file mode 100644 index 00000000..21b02b0c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000015_03468786.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000016_94405cb2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000016_94405cb2.szar new file mode 100644 index 00000000..a1ed4352 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000016_94405cb2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000017_a7bda9f7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000017_a7bda9f7.szar new file mode 100644 index 00000000..d66bfa5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000017_a7bda9f7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000018_05be92df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000018_05be92df.szar new file mode 100644 index 00000000..2875c39b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000018_05be92df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000019_d7c78020.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000019_d7c78020.szar new file mode 100644 index 00000000..2518f169 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000019_d7c78020.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000020_2bf62bcd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000020_2bf62bcd.szar new file mode 100644 index 00000000..234b7a9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000020_2bf62bcd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000021_b857ecda.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000021_b857ecda.szar new file mode 100644 index 00000000..e265cde1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000021_b857ecda.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000022_51d4f14a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000022_51d4f14a.szar new file mode 100644 index 00000000..1a49cc11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000022_51d4f14a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000023_caef9992.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000023_caef9992.szar new file mode 100644 index 00000000..45f44198 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000023_caef9992.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000024_65c7a5e3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000024_65c7a5e3.szar new file mode 100644 index 00000000..e7c04f02 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000024_65c7a5e3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000025_d9703e68.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000025_d9703e68.szar new file mode 100644 index 00000000..2d44c74d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000025_d9703e68.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000026_93fee59d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000026_93fee59d.szar new file mode 100644 index 00000000..198955c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000026_93fee59d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000027_a1e79ada.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000027_a1e79ada.szar new file mode 100644 index 00000000..470c1541 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000027_a1e79ada.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000028_df1b9b29.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000028_df1b9b29.szar new file mode 100644 index 00000000..274e643e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000028_df1b9b29.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000029_4eab48cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000029_4eab48cf.szar new file mode 100644 index 00000000..833138d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000029_4eab48cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000030_2d5452ea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000030_2d5452ea.szar new file mode 100644 index 00000000..7e03810d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000030_2d5452ea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000031_2991daff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000031_2991daff.szar new file mode 100644 index 00000000..cbc9b928 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000031_2991daff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000032_aab9ad01.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000032_aab9ad01.szar new file mode 100644 index 00000000..0cdaf337 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000032_aab9ad01.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000033_a9ecb7a8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000033_a9ecb7a8.szar new file mode 100644 index 00000000..3db99868 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000033_a9ecb7a8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000034_fd0c7070.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000034_fd0c7070.szar new file mode 100644 index 00000000..0d9dea4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/archive/delta_00000000000000000034_fd0c7070.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000001_c3a3c676.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000001_c3a3c676.szcp new file mode 100644 index 00000000..c772fe27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000001_c3a3c676.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000002_dc9e776b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000002_dc9e776b.szcp new file mode 100644 index 00000000..97de43c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000002_dc9e776b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000003_abba992e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000003_abba992e.szcp new file mode 100644 index 00000000..152846aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000003_abba992e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000004_cd774a5f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000004_cd774a5f.szcp new file mode 100644 index 00000000..428b49e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000004_cd774a5f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000005_affcb54a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000005_affcb54a.szcp new file mode 100644 index 00000000..97001cf5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000005_affcb54a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000006_4a2c789f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000006_4a2c789f.szcp new file mode 100644 index 00000000..ca0ce922 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000006_4a2c789f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000007_3708d6b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000007_3708d6b1.szcp new file mode 100644 index 00000000..e7a82f0d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000007_3708d6b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000008_8d6a3d8f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000008_8d6a3d8f.szcp new file mode 100644 index 00000000..e0b266bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000008_8d6a3d8f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000009_5e20b1b8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000009_5e20b1b8.szcp new file mode 100644 index 00000000..8ecfaa2f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000009_5e20b1b8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000010_2ba32564.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000010_2ba32564.szcp new file mode 100644 index 00000000..12053ceb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000010_2ba32564.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000011_2e669aaa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000011_2e669aaa.szcp new file mode 100644 index 00000000..75e39ec8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000011_2e669aaa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000012_a849721a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000012_a849721a.szcp new file mode 100644 index 00000000..26dc49a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000012_a849721a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000013_1b89be12.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000013_1b89be12.szcp new file mode 100644 index 00000000..606f1a78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000013_1b89be12.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000014_4161254b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000014_4161254b.szcp new file mode 100644 index 00000000..812089e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000014_4161254b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000015_c1efd718.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000015_c1efd718.szcp new file mode 100644 index 00000000..2d4075d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000015_c1efd718.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000016_11cd834e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000016_11cd834e.szcp new file mode 100644 index 00000000..46a173df Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000016_11cd834e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000017_b81427f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000017_b81427f6.szcp new file mode 100644 index 00000000..486aee03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000017_b81427f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000018_6b3269ee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000018_6b3269ee.szcp new file mode 100644 index 00000000..3fbb2d18 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000018_6b3269ee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000019_0d2b1bf2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000019_0d2b1bf2.szcp new file mode 100644 index 00000000..5d837c24 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000019_0d2b1bf2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000020_2f537456.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000020_2f537456.szcp new file mode 100644 index 00000000..69931d97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000020_2f537456.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000021_5c7478af.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000021_5c7478af.szcp new file mode 100644 index 00000000..a40c8500 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000021_5c7478af.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000022_9d8de806.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000022_9d8de806.szcp new file mode 100644 index 00000000..2dfcedc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000022_9d8de806.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000023_bbb399b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000023_bbb399b7.szcp new file mode 100644 index 00000000..9ae178a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000023_bbb399b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000024_b6a8c66f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000024_b6a8c66f.szcp new file mode 100644 index 00000000..c2f2c77c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000024_b6a8c66f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000025_bbb6e32d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000025_bbb6e32d.szcp new file mode 100644 index 00000000..8e975196 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000025_bbb6e32d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000026_fa619d62.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000026_fa619d62.szcp new file mode 100644 index 00000000..7707d3b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000026_fa619d62.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000027_8398be4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000027_8398be4d.szcp new file mode 100644 index 00000000..e7ed533f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000027_8398be4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000028_eabee5d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000028_eabee5d6.szcp new file mode 100644 index 00000000..0edaeb54 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000028_eabee5d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000029_365c2acb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000029_365c2acb.szcp new file mode 100644 index 00000000..13a9f113 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000029_365c2acb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000030_222e49e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000030_222e49e4.szcp new file mode 100644 index 00000000..d789b2c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000030_222e49e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000031_aba8ff04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000031_aba8ff04.szcp new file mode 100644 index 00000000..d22605d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000031_aba8ff04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000032_347688e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000032_347688e2.szcp new file mode 100644 index 00000000..4806d903 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000032_347688e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000033_bd0b5eaf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000033_bd0b5eaf.szcp new file mode 100644 index 00000000..b4e13f2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000033_bd0b5eaf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000034_c4b24bbe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000034_c4b24bbe.szcp new file mode 100644 index 00000000..8b75135c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_030/checkpoints/checkpoint_00000000000000000034_c4b24bbe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000001_c349cd6d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000001_c349cd6d.szar new file mode 100644 index 00000000..481e3a12 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000001_c349cd6d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000002_4e430cd5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000002_4e430cd5.szar new file mode 100644 index 00000000..eddb3ff6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000002_4e430cd5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000003_e5523a6e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000003_e5523a6e.szar new file mode 100644 index 00000000..9b9d7e2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000003_e5523a6e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000004_3867b1bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000004_3867b1bd.szar new file mode 100644 index 00000000..51af7efe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000004_3867b1bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000005_33b298fe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000005_33b298fe.szar new file mode 100644 index 00000000..7e76424b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000005_33b298fe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000006_624ffb5d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000006_624ffb5d.szar new file mode 100644 index 00000000..3b4fc612 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000006_624ffb5d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000007_f8ff90c9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000007_f8ff90c9.szar new file mode 100644 index 00000000..f69dd6c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000007_f8ff90c9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000008_06810c3b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000008_06810c3b.szar new file mode 100644 index 00000000..07538664 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000008_06810c3b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000009_7b8969ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000009_7b8969ba.szar new file mode 100644 index 00000000..cbc71d0e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000009_7b8969ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000010_d9cf1f1d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000010_d9cf1f1d.szar new file mode 100644 index 00000000..b45be374 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000010_d9cf1f1d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000011_ecb52f45.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000011_ecb52f45.szar new file mode 100644 index 00000000..94cd4108 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000011_ecb52f45.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000012_b0d3b9c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000012_b0d3b9c5.szar new file mode 100644 index 00000000..eb82ffd3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000012_b0d3b9c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000013_2fdf691d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000013_2fdf691d.szar new file mode 100644 index 00000000..227c53d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000013_2fdf691d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000014_499e82f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000014_499e82f3.szar new file mode 100644 index 00000000..f2529423 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000014_499e82f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000015_11a73bff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000015_11a73bff.szar new file mode 100644 index 00000000..c910c8fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000015_11a73bff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000016_d7395852.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000016_d7395852.szar new file mode 100644 index 00000000..23840db4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000016_d7395852.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000017_a3a1af7e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000017_a3a1af7e.szar new file mode 100644 index 00000000..4dfd0ce4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000017_a3a1af7e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000018_4bb95fec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000018_4bb95fec.szar new file mode 100644 index 00000000..87845f42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000018_4bb95fec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000019_ac3559ef.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000019_ac3559ef.szar new file mode 100644 index 00000000..1514fd75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000019_ac3559ef.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000020_d518b9fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000020_d518b9fb.szar new file mode 100644 index 00000000..77a00281 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000020_d518b9fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000021_d2f47442.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000021_d2f47442.szar new file mode 100644 index 00000000..6b855488 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000021_d2f47442.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000022_2b3b0579.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000022_2b3b0579.szar new file mode 100644 index 00000000..00db06d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000022_2b3b0579.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000023_9af128df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000023_9af128df.szar new file mode 100644 index 00000000..7d9ff047 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000023_9af128df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000024_de930ac8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000024_de930ac8.szar new file mode 100644 index 00000000..a2f00ea5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000024_de930ac8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000025_d3acef8a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000025_d3acef8a.szar new file mode 100644 index 00000000..da1aecbc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000025_d3acef8a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000026_e9965222.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000026_e9965222.szar new file mode 100644 index 00000000..6a25a6b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000026_e9965222.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000027_f394bb4b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000027_f394bb4b.szar new file mode 100644 index 00000000..0f9506f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000027_f394bb4b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000028_12556869.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000028_12556869.szar new file mode 100644 index 00000000..2f808df4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000028_12556869.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000029_790fb2a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000029_790fb2a0.szar new file mode 100644 index 00000000..e55091ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000029_790fb2a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000030_a72a65d7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000030_a72a65d7.szar new file mode 100644 index 00000000..0b7689bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000030_a72a65d7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000031_63619514.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000031_63619514.szar new file mode 100644 index 00000000..18684509 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000031_63619514.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000032_b904792e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000032_b904792e.szar new file mode 100644 index 00000000..0846c290 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000032_b904792e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000033_3afbff55.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000033_3afbff55.szar new file mode 100644 index 00000000..6bfb4557 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000033_3afbff55.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000034_cde67456.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000034_cde67456.szar new file mode 100644 index 00000000..b753763a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000034_cde67456.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000035_89814f30.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000035_89814f30.szar new file mode 100644 index 00000000..5e19ba89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000035_89814f30.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000036_0c837245.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000036_0c837245.szar new file mode 100644 index 00000000..9b198497 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000036_0c837245.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000037_e0ca9eb4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000037_e0ca9eb4.szar new file mode 100644 index 00000000..3df6d21c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000037_e0ca9eb4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000038_2294bdb7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000038_2294bdb7.szar new file mode 100644 index 00000000..5d910a75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/archive/delta_00000000000000000038_2294bdb7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000001_521e66ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000001_521e66ba.szcp new file mode 100644 index 00000000..f0b63aa8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000001_521e66ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000002_1469fde1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000002_1469fde1.szcp new file mode 100644 index 00000000..e26bf92d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000002_1469fde1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000003_bc819640.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000003_bc819640.szcp new file mode 100644 index 00000000..f8962192 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000003_bc819640.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000004_d76e1dfe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000004_d76e1dfe.szcp new file mode 100644 index 00000000..2dfa5941 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000004_d76e1dfe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000005_2aa3527d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000005_2aa3527d.szcp new file mode 100644 index 00000000..c9eac42e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000005_2aa3527d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000006_8763889d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000006_8763889d.szcp new file mode 100644 index 00000000..c9cb1159 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000006_8763889d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000007_23ad57ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000007_23ad57ea.szcp new file mode 100644 index 00000000..9405932f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000007_23ad57ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000008_57910db5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000008_57910db5.szcp new file mode 100644 index 00000000..5e2a38e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000008_57910db5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000009_bcb1c9c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000009_bcb1c9c8.szcp new file mode 100644 index 00000000..7110cb87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000009_bcb1c9c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000010_5b5008bb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000010_5b5008bb.szcp new file mode 100644 index 00000000..1163b6c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000010_5b5008bb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000011_e8b25974.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000011_e8b25974.szcp new file mode 100644 index 00000000..26866c1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000011_e8b25974.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000012_ed7a0d22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000012_ed7a0d22.szcp new file mode 100644 index 00000000..da66a197 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000012_ed7a0d22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000013_d8d0ad8f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000013_d8d0ad8f.szcp new file mode 100644 index 00000000..f18950f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000013_d8d0ad8f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000014_dda5d070.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000014_dda5d070.szcp new file mode 100644 index 00000000..6caa4d41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000014_dda5d070.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000015_8a86eb23.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000015_8a86eb23.szcp new file mode 100644 index 00000000..1d5dc1ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000015_8a86eb23.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000016_cd64a543.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000016_cd64a543.szcp new file mode 100644 index 00000000..1bb267f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000016_cd64a543.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000017_a2e9c181.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000017_a2e9c181.szcp new file mode 100644 index 00000000..ea5896a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000017_a2e9c181.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000018_c57256bc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000018_c57256bc.szcp new file mode 100644 index 00000000..74f46913 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000018_c57256bc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000019_8e06bc0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000019_8e06bc0d.szcp new file mode 100644 index 00000000..d4f4fc1e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000019_8e06bc0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000020_5575e75a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000020_5575e75a.szcp new file mode 100644 index 00000000..db8bb571 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000020_5575e75a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000021_3af8f737.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000021_3af8f737.szcp new file mode 100644 index 00000000..02e5d14d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000021_3af8f737.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000022_d91d71aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000022_d91d71aa.szcp new file mode 100644 index 00000000..d74d4f1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000022_d91d71aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000023_94affd8a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000023_94affd8a.szcp new file mode 100644 index 00000000..79fed628 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000023_94affd8a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000024_7d4e0d24.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000024_7d4e0d24.szcp new file mode 100644 index 00000000..4f909475 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000024_7d4e0d24.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000025_5ce94d60.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000025_5ce94d60.szcp new file mode 100644 index 00000000..a84d62b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000025_5ce94d60.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000026_43caba01.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000026_43caba01.szcp new file mode 100644 index 00000000..e602fbde Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000026_43caba01.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000027_3decf695.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000027_3decf695.szcp new file mode 100644 index 00000000..68db76ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000027_3decf695.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000028_73acb13c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000028_73acb13c.szcp new file mode 100644 index 00000000..192716f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000028_73acb13c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000029_618113da.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000029_618113da.szcp new file mode 100644 index 00000000..8902a474 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000029_618113da.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000030_fa5d8473.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000030_fa5d8473.szcp new file mode 100644 index 00000000..6a247cc7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000030_fa5d8473.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000031_e39d058d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000031_e39d058d.szcp new file mode 100644 index 00000000..2f24eb38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000031_e39d058d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000032_e892de25.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000032_e892de25.szcp new file mode 100644 index 00000000..58d1ffea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000032_e892de25.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000033_14181b19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000033_14181b19.szcp new file mode 100644 index 00000000..232b4045 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000033_14181b19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000034_d37627f4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000034_d37627f4.szcp new file mode 100644 index 00000000..c795e26c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000034_d37627f4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000035_811b11b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000035_811b11b7.szcp new file mode 100644 index 00000000..cb113bf5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000035_811b11b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000036_afb10cbd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000036_afb10cbd.szcp new file mode 100644 index 00000000..e841101e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000036_afb10cbd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000037_5e7d067c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000037_5e7d067c.szcp new file mode 100644 index 00000000..c379bf7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000037_5e7d067c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000038_b701b350.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000038_b701b350.szcp new file mode 100644 index 00000000..cb708a20 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_031/checkpoints/checkpoint_00000000000000000038_b701b350.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000001_3568fa2e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000001_3568fa2e.szar new file mode 100644 index 00000000..f1124544 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000001_3568fa2e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000002_ca3e0e88.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000002_ca3e0e88.szar new file mode 100644 index 00000000..5ae43776 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000002_ca3e0e88.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000003_c46c8242.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000003_c46c8242.szar new file mode 100644 index 00000000..c9379d78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000003_c46c8242.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000004_410a03f2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000004_410a03f2.szar new file mode 100644 index 00000000..63076e17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000004_410a03f2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000005_991d52cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000005_991d52cb.szar new file mode 100644 index 00000000..a4dbd208 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000005_991d52cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000006_06f1ddbe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000006_06f1ddbe.szar new file mode 100644 index 00000000..7b0a2ba1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000006_06f1ddbe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000007_4d322db5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000007_4d322db5.szar new file mode 100644 index 00000000..cf9d3a29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000007_4d322db5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000008_37be9b21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000008_37be9b21.szar new file mode 100644 index 00000000..1626c53c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000008_37be9b21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000009_e3366126.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000009_e3366126.szar new file mode 100644 index 00000000..43123bc9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000009_e3366126.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000010_b32877fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000010_b32877fd.szar new file mode 100644 index 00000000..9bd8cfbc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000010_b32877fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000011_ae980644.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000011_ae980644.szar new file mode 100644 index 00000000..edd21386 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000011_ae980644.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000012_88e29be4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000012_88e29be4.szar new file mode 100644 index 00000000..2399346d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000012_88e29be4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000013_629e5040.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000013_629e5040.szar new file mode 100644 index 00000000..da8d9b64 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000013_629e5040.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000014_069c4d51.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000014_069c4d51.szar new file mode 100644 index 00000000..ca731935 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000014_069c4d51.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000015_7574b08c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000015_7574b08c.szar new file mode 100644 index 00000000..96957f07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000015_7574b08c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000016_080ace9b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000016_080ace9b.szar new file mode 100644 index 00000000..94495d42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000016_080ace9b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000017_bd4aef44.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000017_bd4aef44.szar new file mode 100644 index 00000000..2667cf5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000017_bd4aef44.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000018_b75c7f30.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000018_b75c7f30.szar new file mode 100644 index 00000000..43c93fa3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000018_b75c7f30.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000019_2f608b51.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000019_2f608b51.szar new file mode 100644 index 00000000..ebe862ed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000019_2f608b51.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000020_cb2ba5f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000020_cb2ba5f8.szar new file mode 100644 index 00000000..356f6744 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000020_cb2ba5f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000021_cdd64044.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000021_cdd64044.szar new file mode 100644 index 00000000..0d8cd9f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000021_cdd64044.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000022_87543417.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000022_87543417.szar new file mode 100644 index 00000000..c6ed98bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000022_87543417.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000023_16c036fa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000023_16c036fa.szar new file mode 100644 index 00000000..388c638d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000023_16c036fa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000024_3d4af6aa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000024_3d4af6aa.szar new file mode 100644 index 00000000..ef4371ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000024_3d4af6aa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000025_eed3ffc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000025_eed3ffc2.szar new file mode 100644 index 00000000..afd8bbec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000025_eed3ffc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000026_7f390b1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000026_7f390b1a.szar new file mode 100644 index 00000000..f1661f6f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000026_7f390b1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000027_8a228f1e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000027_8a228f1e.szar new file mode 100644 index 00000000..d63f096f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000027_8a228f1e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000028_86b29d4d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000028_86b29d4d.szar new file mode 100644 index 00000000..7902140c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000028_86b29d4d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000029_61bec47e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000029_61bec47e.szar new file mode 100644 index 00000000..43a9087d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000029_61bec47e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000030_77d0fcb1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000030_77d0fcb1.szar new file mode 100644 index 00000000..a7c87ef2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000030_77d0fcb1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000031_78c2192d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000031_78c2192d.szar new file mode 100644 index 00000000..aac48744 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000031_78c2192d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000032_5ad3a6a4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000032_5ad3a6a4.szar new file mode 100644 index 00000000..7fcff8eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000032_5ad3a6a4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000033_d71ffe61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000033_d71ffe61.szar new file mode 100644 index 00000000..58bbb6eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000033_d71ffe61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000034_ac58ea04.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000034_ac58ea04.szar new file mode 100644 index 00000000..d00c7b66 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/archive/delta_00000000000000000034_ac58ea04.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000001_2ccd6610.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000001_2ccd6610.szcp new file mode 100644 index 00000000..b389d3af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000001_2ccd6610.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000002_2702204e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000002_2702204e.szcp new file mode 100644 index 00000000..413160a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000002_2702204e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000003_2f1ad0a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000003_2f1ad0a9.szcp new file mode 100644 index 00000000..ca5fa858 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000003_2f1ad0a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000004_25d9f08a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000004_25d9f08a.szcp new file mode 100644 index 00000000..26c5c680 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000004_25d9f08a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000005_aa47de8e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000005_aa47de8e.szcp new file mode 100644 index 00000000..55a58978 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000005_aa47de8e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000006_ba1f6dcb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000006_ba1f6dcb.szcp new file mode 100644 index 00000000..c5e7ac9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000006_ba1f6dcb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000007_02bc79a5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000007_02bc79a5.szcp new file mode 100644 index 00000000..ab06cfbf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000007_02bc79a5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000008_8c486ef0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000008_8c486ef0.szcp new file mode 100644 index 00000000..e9c539a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000008_8c486ef0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000009_e2587727.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000009_e2587727.szcp new file mode 100644 index 00000000..d7e3fe3a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000009_e2587727.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000010_acda300e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000010_acda300e.szcp new file mode 100644 index 00000000..7e9a86bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000010_acda300e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000011_daffcceb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000011_daffcceb.szcp new file mode 100644 index 00000000..5c4c04b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000011_daffcceb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000012_3334e483.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000012_3334e483.szcp new file mode 100644 index 00000000..96c487f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000012_3334e483.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000013_a60dfd69.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000013_a60dfd69.szcp new file mode 100644 index 00000000..aba8a940 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000013_a60dfd69.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000014_142d3089.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000014_142d3089.szcp new file mode 100644 index 00000000..ed5b3678 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000014_142d3089.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000015_5a7be4b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000015_5a7be4b4.szcp new file mode 100644 index 00000000..800a76b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000015_5a7be4b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000016_0e094f53.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000016_0e094f53.szcp new file mode 100644 index 00000000..e5ba268b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000016_0e094f53.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000017_59c511f3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000017_59c511f3.szcp new file mode 100644 index 00000000..8bc17229 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000017_59c511f3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000018_f3bd91a4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000018_f3bd91a4.szcp new file mode 100644 index 00000000..df7d56f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000018_f3bd91a4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000019_33829af1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000019_33829af1.szcp new file mode 100644 index 00000000..9cc59116 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000019_33829af1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000020_100da6e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000020_100da6e2.szcp new file mode 100644 index 00000000..5f76727c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000020_100da6e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000021_d8cca6de.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000021_d8cca6de.szcp new file mode 100644 index 00000000..4dc554e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000021_d8cca6de.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000022_b455ae60.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000022_b455ae60.szcp new file mode 100644 index 00000000..3da2c4b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000022_b455ae60.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000023_0ad59398.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000023_0ad59398.szcp new file mode 100644 index 00000000..675e573e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000023_0ad59398.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000024_869bfab5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000024_869bfab5.szcp new file mode 100644 index 00000000..8183f6c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000024_869bfab5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000025_7656a2ff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000025_7656a2ff.szcp new file mode 100644 index 00000000..e8abec36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000025_7656a2ff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000026_c12b85f1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000026_c12b85f1.szcp new file mode 100644 index 00000000..be8006c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000026_c12b85f1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000027_54fe5add.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000027_54fe5add.szcp new file mode 100644 index 00000000..53cef47a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000027_54fe5add.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000028_288d387f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000028_288d387f.szcp new file mode 100644 index 00000000..810bf8a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000028_288d387f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000029_e40b30c0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000029_e40b30c0.szcp new file mode 100644 index 00000000..7ff6079d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000029_e40b30c0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000030_4e802740.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000030_4e802740.szcp new file mode 100644 index 00000000..ea979ffe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000030_4e802740.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000031_a385d82a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000031_a385d82a.szcp new file mode 100644 index 00000000..066641c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000031_a385d82a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000032_d37df23b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000032_d37df23b.szcp new file mode 100644 index 00000000..7cc7f642 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000032_d37df23b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000033_6d5f7bcf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000033_6d5f7bcf.szcp new file mode 100644 index 00000000..2c257085 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000033_6d5f7bcf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000034_10487f29.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000034_10487f29.szcp new file mode 100644 index 00000000..ccb86040 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_032/checkpoints/checkpoint_00000000000000000034_10487f29.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000001_cc596f40.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000001_cc596f40.szar new file mode 100644 index 00000000..d982db89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000001_cc596f40.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000002_87bf7793.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000002_87bf7793.szar new file mode 100644 index 00000000..69f71a52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000002_87bf7793.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000003_a0de8745.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000003_a0de8745.szar new file mode 100644 index 00000000..11b21af6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000003_a0de8745.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000004_a0a31335.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000004_a0a31335.szar new file mode 100644 index 00000000..795086c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000004_a0a31335.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000005_eb9b3316.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000005_eb9b3316.szar new file mode 100644 index 00000000..6130bd06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000005_eb9b3316.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000006_2f49e570.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000006_2f49e570.szar new file mode 100644 index 00000000..4ca22804 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000006_2f49e570.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000007_2d95e463.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000007_2d95e463.szar new file mode 100644 index 00000000..dc1c9a07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000007_2d95e463.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000008_3014c2d3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000008_3014c2d3.szar new file mode 100644 index 00000000..20b81b45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000008_3014c2d3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000009_34c29665.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000009_34c29665.szar new file mode 100644 index 00000000..35787994 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000009_34c29665.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000010_dca8381c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000010_dca8381c.szar new file mode 100644 index 00000000..c31f4f8e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000010_dca8381c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000011_696344fc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000011_696344fc.szar new file mode 100644 index 00000000..6ee4eee1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000011_696344fc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000012_64cec882.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000012_64cec882.szar new file mode 100644 index 00000000..f2632ec9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000012_64cec882.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000013_1453848d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000013_1453848d.szar new file mode 100644 index 00000000..d85e0dbe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000013_1453848d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000014_3cf44681.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000014_3cf44681.szar new file mode 100644 index 00000000..adf83d48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000014_3cf44681.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000015_9dbd2850.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000015_9dbd2850.szar new file mode 100644 index 00000000..bfcbb758 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000015_9dbd2850.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000016_b0e83fc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000016_b0e83fc2.szar new file mode 100644 index 00000000..4d72162d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000016_b0e83fc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000017_223cb94c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000017_223cb94c.szar new file mode 100644 index 00000000..ee6698f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000017_223cb94c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000018_cec52625.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000018_cec52625.szar new file mode 100644 index 00000000..4922128e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000018_cec52625.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000019_99385d69.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000019_99385d69.szar new file mode 100644 index 00000000..862a697a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000019_99385d69.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000020_2b30cd92.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000020_2b30cd92.szar new file mode 100644 index 00000000..d2008c27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000020_2b30cd92.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000021_98496986.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000021_98496986.szar new file mode 100644 index 00000000..2ca0edd9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000021_98496986.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000022_0df9e8c1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000022_0df9e8c1.szar new file mode 100644 index 00000000..befdfda3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000022_0df9e8c1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000023_d8be8eb2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000023_d8be8eb2.szar new file mode 100644 index 00000000..96c2b2f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000023_d8be8eb2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000024_c451db61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000024_c451db61.szar new file mode 100644 index 00000000..29146bb3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000024_c451db61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000025_2f9a1316.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000025_2f9a1316.szar new file mode 100644 index 00000000..58681883 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000025_2f9a1316.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000026_d148ec39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000026_d148ec39.szar new file mode 100644 index 00000000..588693cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000026_d148ec39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000027_8ae7b994.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000027_8ae7b994.szar new file mode 100644 index 00000000..46d97e99 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000027_8ae7b994.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000028_bbcebc87.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000028_bbcebc87.szar new file mode 100644 index 00000000..a6b3a4ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000028_bbcebc87.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000029_e4557edc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000029_e4557edc.szar new file mode 100644 index 00000000..f0bdc354 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000029_e4557edc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000030_2b0d5769.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000030_2b0d5769.szar new file mode 100644 index 00000000..2a1c0cec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000030_2b0d5769.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000031_d8021d88.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000031_d8021d88.szar new file mode 100644 index 00000000..705c6b06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000031_d8021d88.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000032_232db913.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000032_232db913.szar new file mode 100644 index 00000000..ff3fcd27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000032_232db913.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000033_f818d370.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000033_f818d370.szar new file mode 100644 index 00000000..46ebcb38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000033_f818d370.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000034_30c72eac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000034_30c72eac.szar new file mode 100644 index 00000000..fe48a658 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000034_30c72eac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000035_a5eb8b06.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000035_a5eb8b06.szar new file mode 100644 index 00000000..a43dc450 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000035_a5eb8b06.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000036_c9756d43.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000036_c9756d43.szar new file mode 100644 index 00000000..4698dceb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000036_c9756d43.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000037_ae7951bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000037_ae7951bc.szar new file mode 100644 index 00000000..dbe15631 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000037_ae7951bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000038_b64b9141.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000038_b64b9141.szar new file mode 100644 index 00000000..3172ef9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/archive/delta_00000000000000000038_b64b9141.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000001_40df9b3f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000001_40df9b3f.szcp new file mode 100644 index 00000000..cba1a9d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000001_40df9b3f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000002_b9abc13a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000002_b9abc13a.szcp new file mode 100644 index 00000000..eda2e22a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000002_b9abc13a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000003_11d8027f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000003_11d8027f.szcp new file mode 100644 index 00000000..2fc49f8e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000003_11d8027f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000004_19d38afb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000004_19d38afb.szcp new file mode 100644 index 00000000..25dd74d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000004_19d38afb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000005_8cab460a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000005_8cab460a.szcp new file mode 100644 index 00000000..5f19f67a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000005_8cab460a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000006_d29f1b0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000006_d29f1b0d.szcp new file mode 100644 index 00000000..3eede4c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000006_d29f1b0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000007_479b74cb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000007_479b74cb.szcp new file mode 100644 index 00000000..4a02998a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000007_479b74cb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000008_24a669f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000008_24a669f2.szcp new file mode 100644 index 00000000..09534ee8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000008_24a669f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000009_4792f428.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000009_4792f428.szcp new file mode 100644 index 00000000..dbe2d52f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000009_4792f428.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000010_8b146fbd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000010_8b146fbd.szcp new file mode 100644 index 00000000..82bc673d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000010_8b146fbd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000011_fd66efc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000011_fd66efc7.szcp new file mode 100644 index 00000000..feb598ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000011_fd66efc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000012_d08aed88.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000012_d08aed88.szcp new file mode 100644 index 00000000..01cbefd3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000012_d08aed88.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000013_3e891b22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000013_3e891b22.szcp new file mode 100644 index 00000000..6c516f39 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000013_3e891b22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000014_73a78eb2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000014_73a78eb2.szcp new file mode 100644 index 00000000..eb98503f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000014_73a78eb2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000015_ac8c63c5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000015_ac8c63c5.szcp new file mode 100644 index 00000000..bb7191e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000015_ac8c63c5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000016_00112ad9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000016_00112ad9.szcp new file mode 100644 index 00000000..70a04e9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000016_00112ad9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000017_39dcca74.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000017_39dcca74.szcp new file mode 100644 index 00000000..40880bd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000017_39dcca74.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000018_9a23094e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000018_9a23094e.szcp new file mode 100644 index 00000000..42d8c00f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000018_9a23094e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000019_61b47beb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000019_61b47beb.szcp new file mode 100644 index 00000000..00b65883 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000019_61b47beb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000020_5c12f08f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000020_5c12f08f.szcp new file mode 100644 index 00000000..a38d5e34 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000020_5c12f08f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000021_b073f4b3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000021_b073f4b3.szcp new file mode 100644 index 00000000..c6441e43 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000021_b073f4b3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000022_df621599.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000022_df621599.szcp new file mode 100644 index 00000000..88858c07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000022_df621599.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000023_3141cb62.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000023_3141cb62.szcp new file mode 100644 index 00000000..28ff276e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000023_3141cb62.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000024_bdefa977.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000024_bdefa977.szcp new file mode 100644 index 00000000..773a8c28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000024_bdefa977.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000025_bda0cc0e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000025_bda0cc0e.szcp new file mode 100644 index 00000000..11c988eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000025_bda0cc0e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000026_19cd2a4e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000026_19cd2a4e.szcp new file mode 100644 index 00000000..858c5406 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000026_19cd2a4e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000027_c37cd0c0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000027_c37cd0c0.szcp new file mode 100644 index 00000000..ce744dc9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000027_c37cd0c0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000028_1bf3d053.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000028_1bf3d053.szcp new file mode 100644 index 00000000..2ddb6bd0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000028_1bf3d053.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000029_17c73354.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000029_17c73354.szcp new file mode 100644 index 00000000..5bb154d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000029_17c73354.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000030_b7659f3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000030_b7659f3c.szcp new file mode 100644 index 00000000..215577c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000030_b7659f3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000031_08237fdf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000031_08237fdf.szcp new file mode 100644 index 00000000..d9b1aac4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000031_08237fdf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000032_c6e08a1e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000032_c6e08a1e.szcp new file mode 100644 index 00000000..e94f47fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000032_c6e08a1e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000033_6ba15371.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000033_6ba15371.szcp new file mode 100644 index 00000000..18525ec2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000033_6ba15371.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000034_27e9cea7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000034_27e9cea7.szcp new file mode 100644 index 00000000..905dd9d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000034_27e9cea7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000035_c0e40d18.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000035_c0e40d18.szcp new file mode 100644 index 00000000..904e8c3f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000035_c0e40d18.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000036_1c41fb54.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000036_1c41fb54.szcp new file mode 100644 index 00000000..cccbfd4f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000036_1c41fb54.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000037_962bacf0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000037_962bacf0.szcp new file mode 100644 index 00000000..ef246cd8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000037_962bacf0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000038_02053c88.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000038_02053c88.szcp new file mode 100644 index 00000000..671d8613 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_033/checkpoints/checkpoint_00000000000000000038_02053c88.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000001_f84e96d3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000001_f84e96d3.szar new file mode 100644 index 00000000..0fbd4421 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000001_f84e96d3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000002_ea62e4a4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000002_ea62e4a4.szar new file mode 100644 index 00000000..98c1db1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000002_ea62e4a4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000003_2ae07de1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000003_2ae07de1.szar new file mode 100644 index 00000000..5409c1f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000003_2ae07de1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000004_471453e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000004_471453e4.szar new file mode 100644 index 00000000..70aaa211 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000004_471453e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000005_b080db97.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000005_b080db97.szar new file mode 100644 index 00000000..b4258bd5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000005_b080db97.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000006_bd0d334f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000006_bd0d334f.szar new file mode 100644 index 00000000..41359f8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000006_bd0d334f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000007_21c30870.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000007_21c30870.szar new file mode 100644 index 00000000..3e036dcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000007_21c30870.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000008_5dd42ee5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000008_5dd42ee5.szar new file mode 100644 index 00000000..a3f6c314 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000008_5dd42ee5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000009_83b074c8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000009_83b074c8.szar new file mode 100644 index 00000000..6239465d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000009_83b074c8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000010_0dac8fb0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000010_0dac8fb0.szar new file mode 100644 index 00000000..b89bacb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000010_0dac8fb0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000011_ea4da248.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000011_ea4da248.szar new file mode 100644 index 00000000..e07a7f1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000011_ea4da248.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000012_d8838525.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000012_d8838525.szar new file mode 100644 index 00000000..7e1447da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000012_d8838525.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000013_65929bec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000013_65929bec.szar new file mode 100644 index 00000000..752dc713 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000013_65929bec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000014_462abb61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000014_462abb61.szar new file mode 100644 index 00000000..2a2def8e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000014_462abb61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000015_b452118c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000015_b452118c.szar new file mode 100644 index 00000000..3f476e31 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000015_b452118c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000016_590163fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000016_590163fb.szar new file mode 100644 index 00000000..97ad99e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000016_590163fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000017_9a064516.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000017_9a064516.szar new file mode 100644 index 00000000..e05eeb67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000017_9a064516.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000018_a036ed4a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000018_a036ed4a.szar new file mode 100644 index 00000000..d617afe4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000018_a036ed4a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000019_688c77db.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000019_688c77db.szar new file mode 100644 index 00000000..f0094e48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000019_688c77db.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000020_a80fba98.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000020_a80fba98.szar new file mode 100644 index 00000000..793d4024 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000020_a80fba98.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000021_4aa9dac2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000021_4aa9dac2.szar new file mode 100644 index 00000000..2114ca08 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000021_4aa9dac2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000022_72e2170f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000022_72e2170f.szar new file mode 100644 index 00000000..8197aa72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000022_72e2170f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000023_eb820f29.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000023_eb820f29.szar new file mode 100644 index 00000000..f9c7ffd9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000023_eb820f29.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000024_b70afe64.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000024_b70afe64.szar new file mode 100644 index 00000000..cd404cb5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000024_b70afe64.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000025_5ee8c4a8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000025_5ee8c4a8.szar new file mode 100644 index 00000000..49b46e37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000025_5ee8c4a8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000026_343cdefb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000026_343cdefb.szar new file mode 100644 index 00000000..a447229b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000026_343cdefb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000027_6ed13d7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000027_6ed13d7f.szar new file mode 100644 index 00000000..130bdebf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/archive/delta_00000000000000000027_6ed13d7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000001_1f4e980c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000001_1f4e980c.szcp new file mode 100644 index 00000000..5df9d066 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000001_1f4e980c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000002_70eabffe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000002_70eabffe.szcp new file mode 100644 index 00000000..160afa79 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000002_70eabffe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000003_dbd2987e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000003_dbd2987e.szcp new file mode 100644 index 00000000..9d5cd05e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000003_dbd2987e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000004_2ec85f52.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000004_2ec85f52.szcp new file mode 100644 index 00000000..0d63f053 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000004_2ec85f52.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000005_d9158054.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000005_d9158054.szcp new file mode 100644 index 00000000..58c96dc9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000005_d9158054.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000006_59501356.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000006_59501356.szcp new file mode 100644 index 00000000..4ec71a10 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000006_59501356.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000007_a11f32f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000007_a11f32f0.szcp new file mode 100644 index 00000000..bf74a4f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000007_a11f32f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000008_b75b7e31.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000008_b75b7e31.szcp new file mode 100644 index 00000000..d397faec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000008_b75b7e31.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000009_1fb7c10f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000009_1fb7c10f.szcp new file mode 100644 index 00000000..51d861b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000009_1fb7c10f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000010_d3df2ddf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000010_d3df2ddf.szcp new file mode 100644 index 00000000..bb687b9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000010_d3df2ddf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000011_43a695bb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000011_43a695bb.szcp new file mode 100644 index 00000000..c083df05 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000011_43a695bb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000012_7642e65f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000012_7642e65f.szcp new file mode 100644 index 00000000..8c98c470 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000012_7642e65f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000013_52079306.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000013_52079306.szcp new file mode 100644 index 00000000..e0035aac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000013_52079306.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000014_de212a68.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000014_de212a68.szcp new file mode 100644 index 00000000..05c9c684 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000014_de212a68.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000015_80fe765f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000015_80fe765f.szcp new file mode 100644 index 00000000..2ecaec34 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000015_80fe765f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000016_c010d7fd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000016_c010d7fd.szcp new file mode 100644 index 00000000..4df7f745 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000016_c010d7fd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000017_437113fd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000017_437113fd.szcp new file mode 100644 index 00000000..97129512 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000017_437113fd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000018_ca5f6b51.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000018_ca5f6b51.szcp new file mode 100644 index 00000000..6565d6f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000018_ca5f6b51.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000019_35aeebb4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000019_35aeebb4.szcp new file mode 100644 index 00000000..f76af2bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000019_35aeebb4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000020_06e455cf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000020_06e455cf.szcp new file mode 100644 index 00000000..4289afce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000020_06e455cf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000021_8fb5e0ad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000021_8fb5e0ad.szcp new file mode 100644 index 00000000..df92d47f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000021_8fb5e0ad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000022_73a6886b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000022_73a6886b.szcp new file mode 100644 index 00000000..0c08a2a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000022_73a6886b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000023_b5261fe7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000023_b5261fe7.szcp new file mode 100644 index 00000000..7df1bcdb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000023_b5261fe7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000024_fa9027de.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000024_fa9027de.szcp new file mode 100644 index 00000000..1300e71e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000024_fa9027de.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000025_f231f063.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000025_f231f063.szcp new file mode 100644 index 00000000..be47543a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000025_f231f063.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000026_8ecfc737.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000026_8ecfc737.szcp new file mode 100644 index 00000000..3ca0dd22 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000026_8ecfc737.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000027_b189ffa4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000027_b189ffa4.szcp new file mode 100644 index 00000000..29710f58 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_034/checkpoints/checkpoint_00000000000000000027_b189ffa4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000001_1b254e9a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000001_1b254e9a.szar new file mode 100644 index 00000000..fc8a736a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000001_1b254e9a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000002_c5698cac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000002_c5698cac.szar new file mode 100644 index 00000000..8af14396 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000002_c5698cac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000003_6c5a64cd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000003_6c5a64cd.szar new file mode 100644 index 00000000..2209591a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000003_6c5a64cd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000004_ad22cba8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000004_ad22cba8.szar new file mode 100644 index 00000000..5fcdffaf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000004_ad22cba8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000005_fcabd687.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000005_fcabd687.szar new file mode 100644 index 00000000..f53230d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000005_fcabd687.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000006_4d1d2fea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000006_4d1d2fea.szar new file mode 100644 index 00000000..a3388afd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000006_4d1d2fea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000007_8f667138.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000007_8f667138.szar new file mode 100644 index 00000000..e32ee4df Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000007_8f667138.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000008_9018db91.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000008_9018db91.szar new file mode 100644 index 00000000..79569dab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000008_9018db91.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000009_25a7936b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000009_25a7936b.szar new file mode 100644 index 00000000..bc62a1b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000009_25a7936b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000010_755b3957.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000010_755b3957.szar new file mode 100644 index 00000000..e1e01142 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000010_755b3957.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000011_07271f05.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000011_07271f05.szar new file mode 100644 index 00000000..ef235fcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000011_07271f05.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000012_b065d576.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000012_b065d576.szar new file mode 100644 index 00000000..d71ba45e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000012_b065d576.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000013_6f386058.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000013_6f386058.szar new file mode 100644 index 00000000..0b1d8aa0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000013_6f386058.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000014_b00619ca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000014_b00619ca.szar new file mode 100644 index 00000000..f80d1164 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000014_b00619ca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000015_9c0ffb61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000015_9c0ffb61.szar new file mode 100644 index 00000000..1e32629d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000015_9c0ffb61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000016_a77c8339.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000016_a77c8339.szar new file mode 100644 index 00000000..0255f842 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000016_a77c8339.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000017_8c6071b8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000017_8c6071b8.szar new file mode 100644 index 00000000..470644c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000017_8c6071b8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000018_1b030cad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000018_1b030cad.szar new file mode 100644 index 00000000..32b7b54d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000018_1b030cad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000019_9c420e9b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000019_9c420e9b.szar new file mode 100644 index 00000000..b226804b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000019_9c420e9b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000020_a4aa6238.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000020_a4aa6238.szar new file mode 100644 index 00000000..0895d3ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000020_a4aa6238.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000021_f5d583e1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000021_f5d583e1.szar new file mode 100644 index 00000000..295008cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000021_f5d583e1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000022_49cc5945.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000022_49cc5945.szar new file mode 100644 index 00000000..c77f084f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000022_49cc5945.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000023_4a042bb7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000023_4a042bb7.szar new file mode 100644 index 00000000..90142985 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000023_4a042bb7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000024_2c385b77.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000024_2c385b77.szar new file mode 100644 index 00000000..b724ddc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000024_2c385b77.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000025_e4972720.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000025_e4972720.szar new file mode 100644 index 00000000..7f81447b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000025_e4972720.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000026_38abef33.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000026_38abef33.szar new file mode 100644 index 00000000..47c39c12 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000026_38abef33.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000027_b0077db1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000027_b0077db1.szar new file mode 100644 index 00000000..be598aba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/archive/delta_00000000000000000027_b0077db1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000001_b53ec2b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000001_b53ec2b0.szcp new file mode 100644 index 00000000..e34d3a87 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000001_b53ec2b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000002_5c185aba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000002_5c185aba.szcp new file mode 100644 index 00000000..05ec6041 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000002_5c185aba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000003_9ba0c6f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000003_9ba0c6f0.szcp new file mode 100644 index 00000000..58609427 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000003_9ba0c6f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000004_79d9c4ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000004_79d9c4ea.szcp new file mode 100644 index 00000000..76d0e492 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000004_79d9c4ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000005_071456a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000005_071456a9.szcp new file mode 100644 index 00000000..fc32847e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000005_071456a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000006_f78f48a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000006_f78f48a8.szcp new file mode 100644 index 00000000..9fbe8063 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000006_f78f48a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000007_f46828f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000007_f46828f5.szcp new file mode 100644 index 00000000..72993789 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000007_f46828f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000008_9472b52f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000008_9472b52f.szcp new file mode 100644 index 00000000..acc3d064 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000008_9472b52f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000009_16ea294f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000009_16ea294f.szcp new file mode 100644 index 00000000..caebe60d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000009_16ea294f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000010_54fa6e44.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000010_54fa6e44.szcp new file mode 100644 index 00000000..e1bd4a6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000010_54fa6e44.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000011_36fab535.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000011_36fab535.szcp new file mode 100644 index 00000000..9f4a7a27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000011_36fab535.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000012_00499c20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000012_00499c20.szcp new file mode 100644 index 00000000..4bb14c27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000012_00499c20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000013_b9f3e660.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000013_b9f3e660.szcp new file mode 100644 index 00000000..57f8c1dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000013_b9f3e660.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000014_03eb3015.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000014_03eb3015.szcp new file mode 100644 index 00000000..14895fc4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000014_03eb3015.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000015_748fb86c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000015_748fb86c.szcp new file mode 100644 index 00000000..4ce66e8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000015_748fb86c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000016_b585cc97.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000016_b585cc97.szcp new file mode 100644 index 00000000..75351ca5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000016_b585cc97.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000017_950aed8d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000017_950aed8d.szcp new file mode 100644 index 00000000..b2a074c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000017_950aed8d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000018_953fa149.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000018_953fa149.szcp new file mode 100644 index 00000000..56956c1f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000018_953fa149.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000019_4456341d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000019_4456341d.szcp new file mode 100644 index 00000000..a43eaa6b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000019_4456341d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000020_7597a09c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000020_7597a09c.szcp new file mode 100644 index 00000000..cbec6ac6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000020_7597a09c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000021_21c9c557.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000021_21c9c557.szcp new file mode 100644 index 00000000..6b44d143 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000021_21c9c557.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000022_90f752de.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000022_90f752de.szcp new file mode 100644 index 00000000..a765b7a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000022_90f752de.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000023_52efbe20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000023_52efbe20.szcp new file mode 100644 index 00000000..7e5bdaf9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000023_52efbe20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000024_43777d3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000024_43777d3c.szcp new file mode 100644 index 00000000..340819b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000024_43777d3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000025_0f2c44e8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000025_0f2c44e8.szcp new file mode 100644 index 00000000..8d195fdf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000025_0f2c44e8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000026_c52b5bfa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000026_c52b5bfa.szcp new file mode 100644 index 00000000..1ca1c14a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000026_c52b5bfa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000027_7feaaca3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000027_7feaaca3.szcp new file mode 100644 index 00000000..defcf52a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_035/checkpoints/checkpoint_00000000000000000027_7feaaca3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000001_40bb7259.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000001_40bb7259.szar new file mode 100644 index 00000000..f25f4790 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000001_40bb7259.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000002_aada793d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000002_aada793d.szar new file mode 100644 index 00000000..9e47dc9d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000002_aada793d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000003_4557cdb3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000003_4557cdb3.szar new file mode 100644 index 00000000..c210de59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000003_4557cdb3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000004_4e4012f4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000004_4e4012f4.szar new file mode 100644 index 00000000..8e74cf1f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000004_4e4012f4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000005_241d1461.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000005_241d1461.szar new file mode 100644 index 00000000..b2bec5c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000005_241d1461.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000006_789cce06.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000006_789cce06.szar new file mode 100644 index 00000000..da894f13 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000006_789cce06.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000007_bf0bd539.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000007_bf0bd539.szar new file mode 100644 index 00000000..c393ddb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000007_bf0bd539.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000008_44a05f88.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000008_44a05f88.szar new file mode 100644 index 00000000..1653a969 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000008_44a05f88.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000009_8bc72f87.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000009_8bc72f87.szar new file mode 100644 index 00000000..5e052d1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000009_8bc72f87.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000010_5ff94b9e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000010_5ff94b9e.szar new file mode 100644 index 00000000..f378ce29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000010_5ff94b9e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000011_937ccebc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000011_937ccebc.szar new file mode 100644 index 00000000..726fc56c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000011_937ccebc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000012_f6c2172c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000012_f6c2172c.szar new file mode 100644 index 00000000..17213423 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000012_f6c2172c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000013_c6e0b39b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000013_c6e0b39b.szar new file mode 100644 index 00000000..d939862b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000013_c6e0b39b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000014_04f2fc2b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000014_04f2fc2b.szar new file mode 100644 index 00000000..1e078c75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000014_04f2fc2b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000015_bcac7d68.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000015_bcac7d68.szar new file mode 100644 index 00000000..41746bc8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000015_bcac7d68.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000016_1c5f3bb3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000016_1c5f3bb3.szar new file mode 100644 index 00000000..cf9c0913 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000016_1c5f3bb3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000017_2bbbb273.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000017_2bbbb273.szar new file mode 100644 index 00000000..6a6c732a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000017_2bbbb273.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000018_1c9edded.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000018_1c9edded.szar new file mode 100644 index 00000000..3bd4087c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000018_1c9edded.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000019_d3b2bfae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000019_d3b2bfae.szar new file mode 100644 index 00000000..975bb28e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000019_d3b2bfae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000020_60a7f03a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000020_60a7f03a.szar new file mode 100644 index 00000000..ecf60cbf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000020_60a7f03a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000021_373f1f32.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000021_373f1f32.szar new file mode 100644 index 00000000..55a6b3c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000021_373f1f32.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000022_e959bb4c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000022_e959bb4c.szar new file mode 100644 index 00000000..a7e3536a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000022_e959bb4c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000023_eb4f352d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000023_eb4f352d.szar new file mode 100644 index 00000000..a017b49d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000023_eb4f352d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000024_73ca02d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000024_73ca02d1.szar new file mode 100644 index 00000000..8063bd03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000024_73ca02d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000025_2dc35a37.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000025_2dc35a37.szar new file mode 100644 index 00000000..4e925680 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000025_2dc35a37.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000026_5b379867.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000026_5b379867.szar new file mode 100644 index 00000000..3c481b52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000026_5b379867.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000027_3470a5a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000027_3470a5a0.szar new file mode 100644 index 00000000..00f9c2fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/archive/delta_00000000000000000027_3470a5a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000001_27dc86ac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000001_27dc86ac.szcp new file mode 100644 index 00000000..0a2a2bff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000001_27dc86ac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000002_1d1ff022.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000002_1d1ff022.szcp new file mode 100644 index 00000000..16cf5ecc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000002_1d1ff022.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000003_596332a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000003_596332a1.szcp new file mode 100644 index 00000000..f9039e55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000003_596332a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000004_e3d24844.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000004_e3d24844.szcp new file mode 100644 index 00000000..d235ba63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000004_e3d24844.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000005_509957dc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000005_509957dc.szcp new file mode 100644 index 00000000..b051c20d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000005_509957dc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000006_3bf4d767.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000006_3bf4d767.szcp new file mode 100644 index 00000000..c2109f69 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000006_3bf4d767.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000007_5b90d0e0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000007_5b90d0e0.szcp new file mode 100644 index 00000000..15abc924 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000007_5b90d0e0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000008_9fcb07d3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000008_9fcb07d3.szcp new file mode 100644 index 00000000..28883302 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000008_9fcb07d3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000009_abcb3300.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000009_abcb3300.szcp new file mode 100644 index 00000000..39e52ca3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000009_abcb3300.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000010_4f15269e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000010_4f15269e.szcp new file mode 100644 index 00000000..5a0a4362 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000010_4f15269e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000011_d34b5e6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000011_d34b5e6a.szcp new file mode 100644 index 00000000..c910b760 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000011_d34b5e6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000012_78ff6cdf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000012_78ff6cdf.szcp new file mode 100644 index 00000000..1016a370 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000012_78ff6cdf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000013_5bb093a6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000013_5bb093a6.szcp new file mode 100644 index 00000000..fc47dc01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000013_5bb093a6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000014_6e126426.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000014_6e126426.szcp new file mode 100644 index 00000000..8db38a26 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000014_6e126426.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000015_b0d18889.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000015_b0d18889.szcp new file mode 100644 index 00000000..e8417b83 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000015_b0d18889.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000016_36513798.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000016_36513798.szcp new file mode 100644 index 00000000..c8fe9161 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000016_36513798.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000017_389b8305.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000017_389b8305.szcp new file mode 100644 index 00000000..2dbd560e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000017_389b8305.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000018_9cfad866.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000018_9cfad866.szcp new file mode 100644 index 00000000..a325c36e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000018_9cfad866.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000019_e8bbfe36.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000019_e8bbfe36.szcp new file mode 100644 index 00000000..f6a7f8fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000019_e8bbfe36.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000020_1e4baed5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000020_1e4baed5.szcp new file mode 100644 index 00000000..8ceedcd0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000020_1e4baed5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000021_6cdfc8f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000021_6cdfc8f6.szcp new file mode 100644 index 00000000..5209cfa3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000021_6cdfc8f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000022_dacabc63.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000022_dacabc63.szcp new file mode 100644 index 00000000..32b1b48d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000022_dacabc63.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000023_ef9cf8b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000023_ef9cf8b6.szcp new file mode 100644 index 00000000..26bfb6d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000023_ef9cf8b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000024_199cb15f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000024_199cb15f.szcp new file mode 100644 index 00000000..63d09d9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000024_199cb15f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000025_c22859f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000025_c22859f7.szcp new file mode 100644 index 00000000..4559985e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000025_c22859f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000026_b4519c9c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000026_b4519c9c.szcp new file mode 100644 index 00000000..ab007dec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000026_b4519c9c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000027_4f4f2bb9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000027_4f4f2bb9.szcp new file mode 100644 index 00000000..43b122eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_036/checkpoints/checkpoint_00000000000000000027_4f4f2bb9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000001_1e566029.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000001_1e566029.szar new file mode 100644 index 00000000..4aae61ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000001_1e566029.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000002_a3903b93.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000002_a3903b93.szar new file mode 100644 index 00000000..a87404f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000002_a3903b93.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000003_48ac360f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000003_48ac360f.szar new file mode 100644 index 00000000..d4e59e9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000003_48ac360f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000004_efc0efcd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000004_efc0efcd.szar new file mode 100644 index 00000000..88ce69e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000004_efc0efcd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000005_ec82aa46.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000005_ec82aa46.szar new file mode 100644 index 00000000..f33e10f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000005_ec82aa46.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000006_ed8d90d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000006_ed8d90d9.szar new file mode 100644 index 00000000..b226b224 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000006_ed8d90d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000007_9acc8190.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000007_9acc8190.szar new file mode 100644 index 00000000..7f1dffb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000007_9acc8190.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000008_d4b3b714.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000008_d4b3b714.szar new file mode 100644 index 00000000..fa1e1d18 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000008_d4b3b714.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000009_93b39e2c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000009_93b39e2c.szar new file mode 100644 index 00000000..837c7ba3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000009_93b39e2c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000010_846e2b1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000010_846e2b1a.szar new file mode 100644 index 00000000..dff83639 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000010_846e2b1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000011_5f2ac3ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000011_5f2ac3ba.szar new file mode 100644 index 00000000..ced1f052 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000011_5f2ac3ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000012_7a8bc04b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000012_7a8bc04b.szar new file mode 100644 index 00000000..21559433 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000012_7a8bc04b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000013_f7bc0d09.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000013_f7bc0d09.szar new file mode 100644 index 00000000..5aed4f3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000013_f7bc0d09.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000014_fb177477.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000014_fb177477.szar new file mode 100644 index 00000000..0a248e1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000014_fb177477.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000015_c8e915bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000015_c8e915bf.szar new file mode 100644 index 00000000..3a588ed6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000015_c8e915bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000016_b8a05b58.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000016_b8a05b58.szar new file mode 100644 index 00000000..3cb92baf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000016_b8a05b58.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000017_208ad649.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000017_208ad649.szar new file mode 100644 index 00000000..0ff25142 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000017_208ad649.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000018_08f29c7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000018_08f29c7f.szar new file mode 100644 index 00000000..475c403e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000018_08f29c7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000019_128d989d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000019_128d989d.szar new file mode 100644 index 00000000..e3e647cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000019_128d989d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000020_10780138.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000020_10780138.szar new file mode 100644 index 00000000..947e2a8e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000020_10780138.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000021_e089f613.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000021_e089f613.szar new file mode 100644 index 00000000..2652b073 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000021_e089f613.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000022_21fe44fe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000022_21fe44fe.szar new file mode 100644 index 00000000..0a365913 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000022_21fe44fe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000023_06fad593.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000023_06fad593.szar new file mode 100644 index 00000000..6bf5c5ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000023_06fad593.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000024_24d77416.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000024_24d77416.szar new file mode 100644 index 00000000..44892e9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000024_24d77416.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000025_8485f0ed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000025_8485f0ed.szar new file mode 100644 index 00000000..20cd8f62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000025_8485f0ed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000026_cfac7d8a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000026_cfac7d8a.szar new file mode 100644 index 00000000..8338b603 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000026_cfac7d8a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000027_229f3fe4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000027_229f3fe4.szar new file mode 100644 index 00000000..6f6d6e57 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000027_229f3fe4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000028_3b1a0430.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000028_3b1a0430.szar new file mode 100644 index 00000000..2f2bc54e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/archive/delta_00000000000000000028_3b1a0430.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000001_9902a8bb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000001_9902a8bb.szcp new file mode 100644 index 00000000..137e21c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000001_9902a8bb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000002_cdc732f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000002_cdc732f5.szcp new file mode 100644 index 00000000..52066907 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000002_cdc732f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000003_298d3b92.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000003_298d3b92.szcp new file mode 100644 index 00000000..228e7253 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000003_298d3b92.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000004_008b28b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000004_008b28b4.szcp new file mode 100644 index 00000000..4e649c31 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000004_008b28b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000005_de11abfb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000005_de11abfb.szcp new file mode 100644 index 00000000..03cc1820 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000005_de11abfb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000006_33069437.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000006_33069437.szcp new file mode 100644 index 00000000..96fb3731 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000006_33069437.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000007_951fb657.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000007_951fb657.szcp new file mode 100644 index 00000000..292227c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000007_951fb657.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000008_11622ba1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000008_11622ba1.szcp new file mode 100644 index 00000000..4e22b85f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000008_11622ba1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000009_3fcb39a3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000009_3fcb39a3.szcp new file mode 100644 index 00000000..333a81b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000009_3fcb39a3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000010_0dc6d764.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000010_0dc6d764.szcp new file mode 100644 index 00000000..2d933b4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000010_0dc6d764.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000011_4dec1b06.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000011_4dec1b06.szcp new file mode 100644 index 00000000..21cbb82d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000011_4dec1b06.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000012_f20b6013.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000012_f20b6013.szcp new file mode 100644 index 00000000..aa51e4db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000012_f20b6013.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000013_cfb4adb2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000013_cfb4adb2.szcp new file mode 100644 index 00000000..134341b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000013_cfb4adb2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000014_86f63471.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000014_86f63471.szcp new file mode 100644 index 00000000..72e542d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000014_86f63471.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000015_3d9f56e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000015_3d9f56e4.szcp new file mode 100644 index 00000000..9eb2787a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000015_3d9f56e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000016_7178ed6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000016_7178ed6a.szcp new file mode 100644 index 00000000..0f70385a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000016_7178ed6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000017_40a3b1b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000017_40a3b1b1.szcp new file mode 100644 index 00000000..15773550 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000017_40a3b1b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000018_45b44fd4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000018_45b44fd4.szcp new file mode 100644 index 00000000..54ed945e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000018_45b44fd4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000019_39fb2e0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000019_39fb2e0c.szcp new file mode 100644 index 00000000..d69500b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000019_39fb2e0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000020_a4473095.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000020_a4473095.szcp new file mode 100644 index 00000000..35aad742 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000020_a4473095.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000021_a11227b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000021_a11227b0.szcp new file mode 100644 index 00000000..07f9469c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000021_a11227b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000022_b5534425.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000022_b5534425.szcp new file mode 100644 index 00000000..878e2ed7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000022_b5534425.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000023_f6a45dcd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000023_f6a45dcd.szcp new file mode 100644 index 00000000..751bb232 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000023_f6a45dcd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000024_80b076dd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000024_80b076dd.szcp new file mode 100644 index 00000000..0d89b663 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000024_80b076dd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000025_8c42bf3a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000025_8c42bf3a.szcp new file mode 100644 index 00000000..1ae3038b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000025_8c42bf3a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000026_0114f187.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000026_0114f187.szcp new file mode 100644 index 00000000..1424107d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000026_0114f187.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000027_30c7ba97.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000027_30c7ba97.szcp new file mode 100644 index 00000000..56713693 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000027_30c7ba97.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000028_ecc1bd7b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000028_ecc1bd7b.szcp new file mode 100644 index 00000000..98abd54d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_037/checkpoints/checkpoint_00000000000000000028_ecc1bd7b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000001_18b7de6a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000001_18b7de6a.szar new file mode 100644 index 00000000..4a5a8c78 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000001_18b7de6a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000002_aab8a9ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000002_aab8a9ce.szar new file mode 100644 index 00000000..be462123 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000002_aab8a9ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000003_271a63ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000003_271a63ab.szar new file mode 100644 index 00000000..d0a2df31 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000003_271a63ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000004_17819a0c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000004_17819a0c.szar new file mode 100644 index 00000000..43c1e869 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000004_17819a0c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000005_aa02aac9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000005_aa02aac9.szar new file mode 100644 index 00000000..3cf4259b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000005_aa02aac9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000006_4b347f27.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000006_4b347f27.szar new file mode 100644 index 00000000..d76198f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000006_4b347f27.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000007_4fad3ba5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000007_4fad3ba5.szar new file mode 100644 index 00000000..a3f96b1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000007_4fad3ba5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000008_f4740c7c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000008_f4740c7c.szar new file mode 100644 index 00000000..4c6e8b38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000008_f4740c7c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000009_addd4ee4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000009_addd4ee4.szar new file mode 100644 index 00000000..4d40b5a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000009_addd4ee4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000010_93236bf9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000010_93236bf9.szar new file mode 100644 index 00000000..690899ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000010_93236bf9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000011_40ff2a49.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000011_40ff2a49.szar new file mode 100644 index 00000000..0b04e1b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000011_40ff2a49.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000012_ee781352.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000012_ee781352.szar new file mode 100644 index 00000000..523e78de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000012_ee781352.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000013_3eb45cc4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000013_3eb45cc4.szar new file mode 100644 index 00000000..d3510f74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000013_3eb45cc4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000014_1a36c71f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000014_1a36c71f.szar new file mode 100644 index 00000000..156c7ca7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000014_1a36c71f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000015_d1a91ced.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000015_d1a91ced.szar new file mode 100644 index 00000000..394bb7f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000015_d1a91ced.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000016_363538a6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000016_363538a6.szar new file mode 100644 index 00000000..ba6a0774 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000016_363538a6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000017_db04d08b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000017_db04d08b.szar new file mode 100644 index 00000000..62f1d081 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000017_db04d08b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000018_d82e8e9e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000018_d82e8e9e.szar new file mode 100644 index 00000000..033e7581 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000018_d82e8e9e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000019_e483f926.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000019_e483f926.szar new file mode 100644 index 00000000..aba058a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000019_e483f926.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000020_e1273a51.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000020_e1273a51.szar new file mode 100644 index 00000000..2e643efe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000020_e1273a51.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000021_935d8c8b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000021_935d8c8b.szar new file mode 100644 index 00000000..5209cc0f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000021_935d8c8b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000022_726ec670.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000022_726ec670.szar new file mode 100644 index 00000000..2456beb7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000022_726ec670.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000023_6bb37df3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000023_6bb37df3.szar new file mode 100644 index 00000000..82eb8b38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000023_6bb37df3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000024_0c289086.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000024_0c289086.szar new file mode 100644 index 00000000..ee660480 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000024_0c289086.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000025_91ee1797.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000025_91ee1797.szar new file mode 100644 index 00000000..86dfdf67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000025_91ee1797.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000026_e110cdd7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000026_e110cdd7.szar new file mode 100644 index 00000000..1152536f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000026_e110cdd7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000027_5a0335f7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000027_5a0335f7.szar new file mode 100644 index 00000000..09962d0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000027_5a0335f7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000028_8b7dac91.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000028_8b7dac91.szar new file mode 100644 index 00000000..b93eb496 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000028_8b7dac91.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000029_3b7dbac4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000029_3b7dbac4.szar new file mode 100644 index 00000000..27d7c808 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000029_3b7dbac4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000030_f0ae51de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000030_f0ae51de.szar new file mode 100644 index 00000000..2b38cbb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000030_f0ae51de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000031_00026a75.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000031_00026a75.szar new file mode 100644 index 00000000..2052d304 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/archive/delta_00000000000000000031_00026a75.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000001_8328df6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000001_8328df6b.szcp new file mode 100644 index 00000000..4a22e41e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000001_8328df6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000002_34821320.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000002_34821320.szcp new file mode 100644 index 00000000..d65681e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000002_34821320.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000003_c7db6ae6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000003_c7db6ae6.szcp new file mode 100644 index 00000000..7d090d5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000003_c7db6ae6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000004_3a28c022.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000004_3a28c022.szcp new file mode 100644 index 00000000..b627c3a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000004_3a28c022.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000005_0c7da4a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000005_0c7da4a9.szcp new file mode 100644 index 00000000..f6898f11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000005_0c7da4a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000006_4975aac6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000006_4975aac6.szcp new file mode 100644 index 00000000..264e8192 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000006_4975aac6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000007_5b5fab5d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000007_5b5fab5d.szcp new file mode 100644 index 00000000..ba8d9e88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000007_5b5fab5d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000008_2d85c275.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000008_2d85c275.szcp new file mode 100644 index 00000000..8ab4bd59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000008_2d85c275.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000009_0ca0865b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000009_0ca0865b.szcp new file mode 100644 index 00000000..39e5af6a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000009_0ca0865b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000010_796730b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000010_796730b6.szcp new file mode 100644 index 00000000..af343e85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000010_796730b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000011_e0321937.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000011_e0321937.szcp new file mode 100644 index 00000000..acb13f1e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000011_e0321937.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000012_e7151e6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000012_e7151e6d.szcp new file mode 100644 index 00000000..9ac8ab4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000012_e7151e6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000013_290206a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000013_290206a9.szcp new file mode 100644 index 00000000..bbb1f6a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000013_290206a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000014_344c2fa6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000014_344c2fa6.szcp new file mode 100644 index 00000000..d839dae2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000014_344c2fa6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000015_70c139d8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000015_70c139d8.szcp new file mode 100644 index 00000000..da566f4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000015_70c139d8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000016_47a68a2f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000016_47a68a2f.szcp new file mode 100644 index 00000000..00421de7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000016_47a68a2f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000017_454cebca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000017_454cebca.szcp new file mode 100644 index 00000000..670590b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000017_454cebca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000018_7ee3e960.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000018_7ee3e960.szcp new file mode 100644 index 00000000..11bb81f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000018_7ee3e960.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000019_d1578607.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000019_d1578607.szcp new file mode 100644 index 00000000..afc4be56 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000019_d1578607.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000020_7225199c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000020_7225199c.szcp new file mode 100644 index 00000000..e817968d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000020_7225199c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000021_9b6895d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000021_9b6895d0.szcp new file mode 100644 index 00000000..d1ed3848 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000021_9b6895d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000022_fb0824ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000022_fb0824ec.szcp new file mode 100644 index 00000000..040868c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000022_fb0824ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000023_ce455e36.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000023_ce455e36.szcp new file mode 100644 index 00000000..e134f27a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000023_ce455e36.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000024_ce7cc28c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000024_ce7cc28c.szcp new file mode 100644 index 00000000..db7eadb4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000024_ce7cc28c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000025_baac8867.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000025_baac8867.szcp new file mode 100644 index 00000000..a4f54473 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000025_baac8867.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000026_ab1c9f05.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000026_ab1c9f05.szcp new file mode 100644 index 00000000..cf09f3f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000026_ab1c9f05.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000027_477c5211.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000027_477c5211.szcp new file mode 100644 index 00000000..8022e42a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000027_477c5211.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000028_6633a24b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000028_6633a24b.szcp new file mode 100644 index 00000000..9022bf0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000028_6633a24b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000029_4723c166.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000029_4723c166.szcp new file mode 100644 index 00000000..54a030c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000029_4723c166.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000030_61c710ed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000030_61c710ed.szcp new file mode 100644 index 00000000..033e392f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000030_61c710ed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000031_32816035.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000031_32816035.szcp new file mode 100644 index 00000000..063d1977 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_038/checkpoints/checkpoint_00000000000000000031_32816035.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000001_d98c4680.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000001_d98c4680.szar new file mode 100644 index 00000000..c50b6032 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000001_d98c4680.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000002_783ac659.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000002_783ac659.szar new file mode 100644 index 00000000..d4f72b9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000002_783ac659.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000003_9f97f3d0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000003_9f97f3d0.szar new file mode 100644 index 00000000..faad9e77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000003_9f97f3d0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000004_f78edc32.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000004_f78edc32.szar new file mode 100644 index 00000000..ed25b2c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000004_f78edc32.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000005_f552e796.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000005_f552e796.szar new file mode 100644 index 00000000..a72b44b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000005_f552e796.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000006_e9348550.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000006_e9348550.szar new file mode 100644 index 00000000..9bf3abd2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000006_e9348550.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000007_397baf5d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000007_397baf5d.szar new file mode 100644 index 00000000..2a4894d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000007_397baf5d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000008_18e25a1f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000008_18e25a1f.szar new file mode 100644 index 00000000..4c4a9354 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000008_18e25a1f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000009_1b26aade.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000009_1b26aade.szar new file mode 100644 index 00000000..2801499a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000009_1b26aade.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000010_a8a3a9ed.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000010_a8a3a9ed.szar new file mode 100644 index 00000000..be7b28b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000010_a8a3a9ed.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000011_f4517041.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000011_f4517041.szar new file mode 100644 index 00000000..71cc24fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000011_f4517041.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000012_cbb49d8f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000012_cbb49d8f.szar new file mode 100644 index 00000000..45d36906 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000012_cbb49d8f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000013_5a8362f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000013_5a8362f0.szar new file mode 100644 index 00000000..6a282ed3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000013_5a8362f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000014_e330555d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000014_e330555d.szar new file mode 100644 index 00000000..143dd8bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000014_e330555d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000015_85ec73df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000015_85ec73df.szar new file mode 100644 index 00000000..7c95b402 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000015_85ec73df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000016_36e4f7e2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000016_36e4f7e2.szar new file mode 100644 index 00000000..7b33ab1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000016_36e4f7e2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000017_aa16bb9f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000017_aa16bb9f.szar new file mode 100644 index 00000000..e9ed3f0c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000017_aa16bb9f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000018_74a1d26a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000018_74a1d26a.szar new file mode 100644 index 00000000..4d375adc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000018_74a1d26a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000019_738e807a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000019_738e807a.szar new file mode 100644 index 00000000..c695232d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000019_738e807a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000020_e5b1e59b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000020_e5b1e59b.szar new file mode 100644 index 00000000..132064aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000020_e5b1e59b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000021_cc7ff1ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000021_cc7ff1ee.szar new file mode 100644 index 00000000..8ef70ed1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000021_cc7ff1ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000022_1f6861a9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000022_1f6861a9.szar new file mode 100644 index 00000000..83d234ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000022_1f6861a9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000023_053f4a54.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000023_053f4a54.szar new file mode 100644 index 00000000..18f50b01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000023_053f4a54.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000024_39cbc13f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000024_39cbc13f.szar new file mode 100644 index 00000000..a78432c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000024_39cbc13f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000025_f23128f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000025_f23128f8.szar new file mode 100644 index 00000000..f9cdbf43 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000025_f23128f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000026_b51185b8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000026_b51185b8.szar new file mode 100644 index 00000000..b144201e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000026_b51185b8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000027_60e39654.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000027_60e39654.szar new file mode 100644 index 00000000..e5b5045d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000027_60e39654.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000028_94d0f123.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000028_94d0f123.szar new file mode 100644 index 00000000..0c0543d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000028_94d0f123.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000029_c04d3541.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000029_c04d3541.szar new file mode 100644 index 00000000..23a79e40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000029_c04d3541.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000030_f44eba18.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000030_f44eba18.szar new file mode 100644 index 00000000..9ded3423 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/archive/delta_00000000000000000030_f44eba18.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000001_822c8960.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000001_822c8960.szcp new file mode 100644 index 00000000..082480db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000001_822c8960.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000002_99172f48.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000002_99172f48.szcp new file mode 100644 index 00000000..bee85085 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000002_99172f48.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000003_ee996af2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000003_ee996af2.szcp new file mode 100644 index 00000000..bcec7b9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000003_ee996af2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000004_409e9992.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000004_409e9992.szcp new file mode 100644 index 00000000..c14e9b7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000004_409e9992.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000005_ec9b0073.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000005_ec9b0073.szcp new file mode 100644 index 00000000..9ff6b2c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000005_ec9b0073.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000006_6353de6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000006_6353de6d.szcp new file mode 100644 index 00000000..a6fb6ed8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000006_6353de6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000007_9ce33a67.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000007_9ce33a67.szcp new file mode 100644 index 00000000..23ded441 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000007_9ce33a67.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000008_81752068.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000008_81752068.szcp new file mode 100644 index 00000000..7104836b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000008_81752068.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000009_e8169139.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000009_e8169139.szcp new file mode 100644 index 00000000..5bfcef28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000009_e8169139.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000010_1617c8b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000010_1617c8b4.szcp new file mode 100644 index 00000000..c2578c80 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000010_1617c8b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000011_00098f5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000011_00098f5b.szcp new file mode 100644 index 00000000..a2347ce3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000011_00098f5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000012_18f039ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000012_18f039ec.szcp new file mode 100644 index 00000000..4c8cbda9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000012_18f039ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000013_3e854163.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000013_3e854163.szcp new file mode 100644 index 00000000..673f353d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000013_3e854163.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000014_85cd8703.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000014_85cd8703.szcp new file mode 100644 index 00000000..990535f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000014_85cd8703.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000015_2b24ad79.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000015_2b24ad79.szcp new file mode 100644 index 00000000..d752ccfd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000015_2b24ad79.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000016_24b82183.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000016_24b82183.szcp new file mode 100644 index 00000000..62c06664 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000016_24b82183.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000017_7c14483e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000017_7c14483e.szcp new file mode 100644 index 00000000..8c0a1b7f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000017_7c14483e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000018_58c85433.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000018_58c85433.szcp new file mode 100644 index 00000000..2f440903 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000018_58c85433.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000019_89120b25.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000019_89120b25.szcp new file mode 100644 index 00000000..4a2a10de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000019_89120b25.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000020_dd0621a7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000020_dd0621a7.szcp new file mode 100644 index 00000000..6b14555c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000020_dd0621a7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000021_f5529b33.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000021_f5529b33.szcp new file mode 100644 index 00000000..edbef7ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000021_f5529b33.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000022_e65d6ece.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000022_e65d6ece.szcp new file mode 100644 index 00000000..a28d639c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000022_e65d6ece.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000023_c422e3d7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000023_c422e3d7.szcp new file mode 100644 index 00000000..d77a17b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000023_c422e3d7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000024_2f844a6a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000024_2f844a6a.szcp new file mode 100644 index 00000000..8cec81ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000024_2f844a6a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000025_b6c42677.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000025_b6c42677.szcp new file mode 100644 index 00000000..f6ba21e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000025_b6c42677.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000026_5babfc3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000026_5babfc3c.szcp new file mode 100644 index 00000000..3b51a725 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000026_5babfc3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000027_a60247ab.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000027_a60247ab.szcp new file mode 100644 index 00000000..57698274 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000027_a60247ab.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000028_ffcb51e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000028_ffcb51e1.szcp new file mode 100644 index 00000000..71cd267f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000028_ffcb51e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000029_b989e449.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000029_b989e449.szcp new file mode 100644 index 00000000..0d06da21 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000029_b989e449.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000030_8b5b75ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000030_8b5b75ba.szcp new file mode 100644 index 00000000..0762ed28 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_039/checkpoints/checkpoint_00000000000000000030_8b5b75ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000001_d33849b1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000001_d33849b1.szar new file mode 100644 index 00000000..4f0ebcb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000001_d33849b1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000002_fce02bb9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000002_fce02bb9.szar new file mode 100644 index 00000000..ae786092 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000002_fce02bb9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000003_3c58de8c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000003_3c58de8c.szar new file mode 100644 index 00000000..b0f14cb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000003_3c58de8c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000004_8f01cc31.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000004_8f01cc31.szar new file mode 100644 index 00000000..8bb2f67b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000004_8f01cc31.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000005_cdfc9620.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000005_cdfc9620.szar new file mode 100644 index 00000000..374b49bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000005_cdfc9620.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000006_e3a381a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000006_e3a381a0.szar new file mode 100644 index 00000000..2dd25d4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000006_e3a381a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000007_8019d487.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000007_8019d487.szar new file mode 100644 index 00000000..23b4cc37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000007_8019d487.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000008_1595a427.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000008_1595a427.szar new file mode 100644 index 00000000..c9d67c5a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000008_1595a427.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000009_d161e73d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000009_d161e73d.szar new file mode 100644 index 00000000..b9e5f87c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000009_d161e73d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000010_9b6fb4b4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000010_9b6fb4b4.szar new file mode 100644 index 00000000..25028bc3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000010_9b6fb4b4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000011_bb291e56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000011_bb291e56.szar new file mode 100644 index 00000000..e8cb9d36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000011_bb291e56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000012_f3e472d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000012_f3e472d4.szar new file mode 100644 index 00000000..c5b02055 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000012_f3e472d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000013_92b8ca24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000013_92b8ca24.szar new file mode 100644 index 00000000..ad6407f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000013_92b8ca24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000014_52399250.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000014_52399250.szar new file mode 100644 index 00000000..16e46cff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000014_52399250.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000015_0a662852.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000015_0a662852.szar new file mode 100644 index 00000000..6b646435 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000015_0a662852.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000016_c618308a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000016_c618308a.szar new file mode 100644 index 00000000..f7dfef65 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000016_c618308a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000017_6a3b0406.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000017_6a3b0406.szar new file mode 100644 index 00000000..9a39217f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000017_6a3b0406.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000018_5a357ab9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000018_5a357ab9.szar new file mode 100644 index 00000000..36f3ad7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000018_5a357ab9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000019_d0a5e34a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000019_d0a5e34a.szar new file mode 100644 index 00000000..badb15cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000019_d0a5e34a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000020_6928a101.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000020_6928a101.szar new file mode 100644 index 00000000..826463c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000020_6928a101.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000021_7b665f6b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000021_7b665f6b.szar new file mode 100644 index 00000000..52af94e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000021_7b665f6b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000022_573158e3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000022_573158e3.szar new file mode 100644 index 00000000..911f9d55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000022_573158e3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000023_85451fad.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000023_85451fad.szar new file mode 100644 index 00000000..eebac417 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000023_85451fad.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000024_9d9e7fce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000024_9d9e7fce.szar new file mode 100644 index 00000000..56568ca4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000024_9d9e7fce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000025_7980c915.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000025_7980c915.szar new file mode 100644 index 00000000..59ca9694 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000025_7980c915.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000026_65130f17.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000026_65130f17.szar new file mode 100644 index 00000000..fe30814a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000026_65130f17.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000027_f7684142.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000027_f7684142.szar new file mode 100644 index 00000000..4e13432a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000027_f7684142.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000028_4e6d0e33.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000028_4e6d0e33.szar new file mode 100644 index 00000000..71001b6a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/archive/delta_00000000000000000028_4e6d0e33.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000001_fb509c9d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000001_fb509c9d.szcp new file mode 100644 index 00000000..b42f2f9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000001_fb509c9d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000002_6d710655.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000002_6d710655.szcp new file mode 100644 index 00000000..36473665 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000002_6d710655.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000003_ff358b55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000003_ff358b55.szcp new file mode 100644 index 00000000..7df36344 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000003_ff358b55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000004_45620edc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000004_45620edc.szcp new file mode 100644 index 00000000..5c13a516 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000004_45620edc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000005_fea93b8e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000005_fea93b8e.szcp new file mode 100644 index 00000000..c17967db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000005_fea93b8e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000006_f8846270.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000006_f8846270.szcp new file mode 100644 index 00000000..eb47f624 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000006_f8846270.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000007_c6c3fd19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000007_c6c3fd19.szcp new file mode 100644 index 00000000..a2e66653 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000007_c6c3fd19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000008_5d85d3b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000008_5d85d3b7.szcp new file mode 100644 index 00000000..bd21b2f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000008_5d85d3b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000009_56f9cee0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000009_56f9cee0.szcp new file mode 100644 index 00000000..1024c207 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000009_56f9cee0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000010_9bc80c53.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000010_9bc80c53.szcp new file mode 100644 index 00000000..a3fc99ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000010_9bc80c53.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000011_647baa6c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000011_647baa6c.szcp new file mode 100644 index 00000000..fd96c0f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000011_647baa6c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000012_cecc335c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000012_cecc335c.szcp new file mode 100644 index 00000000..1c09a634 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000012_cecc335c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000013_e67f9c3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000013_e67f9c3c.szcp new file mode 100644 index 00000000..0c521c73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000013_e67f9c3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000014_f517b92d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000014_f517b92d.szcp new file mode 100644 index 00000000..1da27a40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000014_f517b92d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000015_461b44e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000015_461b44e2.szcp new file mode 100644 index 00000000..ff15384a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000015_461b44e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000016_1e0ca063.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000016_1e0ca063.szcp new file mode 100644 index 00000000..5e885f6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000016_1e0ca063.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000017_5647e35d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000017_5647e35d.szcp new file mode 100644 index 00000000..5893492f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000017_5647e35d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000018_c5ea2da3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000018_c5ea2da3.szcp new file mode 100644 index 00000000..09417a6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000018_c5ea2da3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000019_86a97df9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000019_86a97df9.szcp new file mode 100644 index 00000000..c8d09a23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000019_86a97df9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000020_0942fdfa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000020_0942fdfa.szcp new file mode 100644 index 00000000..0971d993 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000020_0942fdfa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000021_f12cf24b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000021_f12cf24b.szcp new file mode 100644 index 00000000..ac91acd6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000021_f12cf24b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000022_6a1ee4f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000022_6a1ee4f5.szcp new file mode 100644 index 00000000..c9151a17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000022_6a1ee4f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000023_2b6abc0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000023_2b6abc0c.szcp new file mode 100644 index 00000000..f4533bb4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000023_2b6abc0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000024_4691f463.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000024_4691f463.szcp new file mode 100644 index 00000000..79d9bad7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000024_4691f463.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000025_0ced1163.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000025_0ced1163.szcp new file mode 100644 index 00000000..80ad3404 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000025_0ced1163.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000026_bbf34922.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000026_bbf34922.szcp new file mode 100644 index 00000000..d41d84a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000026_bbf34922.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000027_e55c24b3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000027_e55c24b3.szcp new file mode 100644 index 00000000..4981e718 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000027_e55c24b3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000028_7609942f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000028_7609942f.szcp new file mode 100644 index 00000000..a5f350eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_040/checkpoints/checkpoint_00000000000000000028_7609942f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000001_77a70aba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000001_77a70aba.szar new file mode 100644 index 00000000..1dbf76be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000001_77a70aba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000002_cb0f7449.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000002_cb0f7449.szar new file mode 100644 index 00000000..f2a869cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000002_cb0f7449.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000003_5c9c7610.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000003_5c9c7610.szar new file mode 100644 index 00000000..a21fd2d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000003_5c9c7610.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000004_9d9c9c74.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000004_9d9c9c74.szar new file mode 100644 index 00000000..acf3d8e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000004_9d9c9c74.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000005_21a67d99.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000005_21a67d99.szar new file mode 100644 index 00000000..79bf237f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000005_21a67d99.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000006_73c00e7a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000006_73c00e7a.szar new file mode 100644 index 00000000..714a5b9d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000006_73c00e7a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000007_e833b4f8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000007_e833b4f8.szar new file mode 100644 index 00000000..79725dde Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000007_e833b4f8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000008_51d6b3b2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000008_51d6b3b2.szar new file mode 100644 index 00000000..e1bea45d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000008_51d6b3b2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000009_3bb47e0d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000009_3bb47e0d.szar new file mode 100644 index 00000000..cf4c3fd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000009_3bb47e0d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000010_f102788f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000010_f102788f.szar new file mode 100644 index 00000000..eea82c62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000010_f102788f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000011_77b024bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000011_77b024bc.szar new file mode 100644 index 00000000..3a87482e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000011_77b024bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000012_41d9c975.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000012_41d9c975.szar new file mode 100644 index 00000000..341ca236 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000012_41d9c975.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000013_a96a063b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000013_a96a063b.szar new file mode 100644 index 00000000..e624ecc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000013_a96a063b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000014_e81e6e09.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000014_e81e6e09.szar new file mode 100644 index 00000000..4461b3d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000014_e81e6e09.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000015_b01e7acd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000015_b01e7acd.szar new file mode 100644 index 00000000..97e95b93 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000015_b01e7acd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000016_477f8118.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000016_477f8118.szar new file mode 100644 index 00000000..881bb4f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000016_477f8118.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000017_a3c005b1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000017_a3c005b1.szar new file mode 100644 index 00000000..12a470e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000017_a3c005b1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000018_082c38dd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000018_082c38dd.szar new file mode 100644 index 00000000..60d95ea1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000018_082c38dd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000019_114aafe6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000019_114aafe6.szar new file mode 100644 index 00000000..417a2777 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000019_114aafe6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000020_72416cc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000020_72416cc2.szar new file mode 100644 index 00000000..7f3a37a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000020_72416cc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000021_8992008a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000021_8992008a.szar new file mode 100644 index 00000000..6f0aa952 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000021_8992008a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000022_e04bc61f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000022_e04bc61f.szar new file mode 100644 index 00000000..1f4e3295 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000022_e04bc61f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000023_22c6eb57.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000023_22c6eb57.szar new file mode 100644 index 00000000..e67b1492 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000023_22c6eb57.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000024_753b0673.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000024_753b0673.szar new file mode 100644 index 00000000..38a01eb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000024_753b0673.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000025_e9a9bf8c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000025_e9a9bf8c.szar new file mode 100644 index 00000000..ce645470 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000025_e9a9bf8c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000026_067cdb9e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000026_067cdb9e.szar new file mode 100644 index 00000000..9d0902ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000026_067cdb9e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000027_ce66a8a8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000027_ce66a8a8.szar new file mode 100644 index 00000000..0d794751 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000027_ce66a8a8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000028_d9ccee21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000028_d9ccee21.szar new file mode 100644 index 00000000..c1a850e7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000028_d9ccee21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000029_f551d501.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000029_f551d501.szar new file mode 100644 index 00000000..9a7eff04 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000029_f551d501.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000030_702c2a22.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000030_702c2a22.szar new file mode 100644 index 00000000..533cecf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000030_702c2a22.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000031_e10ada43.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000031_e10ada43.szar new file mode 100644 index 00000000..5bff3178 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000031_e10ada43.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000032_d75f11d3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000032_d75f11d3.szar new file mode 100644 index 00000000..85c340f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/archive/delta_00000000000000000032_d75f11d3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000001_29d06c93.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000001_29d06c93.szcp new file mode 100644 index 00000000..3c2f4cd9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000001_29d06c93.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000002_47f02516.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000002_47f02516.szcp new file mode 100644 index 00000000..67b6625c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000002_47f02516.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000003_d6b90a38.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000003_d6b90a38.szcp new file mode 100644 index 00000000..6257b3eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000003_d6b90a38.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000004_8f238524.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000004_8f238524.szcp new file mode 100644 index 00000000..b7c49254 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000004_8f238524.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000005_4a556f72.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000005_4a556f72.szcp new file mode 100644 index 00000000..30130001 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000005_4a556f72.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000006_30d6f586.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000006_30d6f586.szcp new file mode 100644 index 00000000..32b86e5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000006_30d6f586.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000007_e020d2b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000007_e020d2b0.szcp new file mode 100644 index 00000000..e2e9c1c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000007_e020d2b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000008_5e96efb3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000008_5e96efb3.szcp new file mode 100644 index 00000000..30d339da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000008_5e96efb3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000009_3dd88d9a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000009_3dd88d9a.szcp new file mode 100644 index 00000000..22a6d4da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000009_3dd88d9a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000010_41c92cb7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000010_41c92cb7.szcp new file mode 100644 index 00000000..44f72a3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000010_41c92cb7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000011_0fbdd5ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000011_0fbdd5ec.szcp new file mode 100644 index 00000000..7a0426fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000011_0fbdd5ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000012_38616b0e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000012_38616b0e.szcp new file mode 100644 index 00000000..c6aee4f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000012_38616b0e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000013_953864b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000013_953864b4.szcp new file mode 100644 index 00000000..b146f8dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000013_953864b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000014_72163760.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000014_72163760.szcp new file mode 100644 index 00000000..83cba60f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000014_72163760.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000015_6d376c7c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000015_6d376c7c.szcp new file mode 100644 index 00000000..62fbea48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000015_6d376c7c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000016_09e9cdc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000016_09e9cdc7.szcp new file mode 100644 index 00000000..a0ed1d37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000016_09e9cdc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000017_6afd4d9a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000017_6afd4d9a.szcp new file mode 100644 index 00000000..1d7bc6bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000017_6afd4d9a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000018_46a109b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000018_46a109b6.szcp new file mode 100644 index 00000000..b6c50458 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000018_46a109b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000019_129f77e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000019_129f77e1.szcp new file mode 100644 index 00000000..bd806288 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000019_129f77e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000020_b30467e9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000020_b30467e9.szcp new file mode 100644 index 00000000..03a0924d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000020_b30467e9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000021_dc2e1b9e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000021_dc2e1b9e.szcp new file mode 100644 index 00000000..fa0b9d47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000021_dc2e1b9e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000022_d5b59fa6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000022_d5b59fa6.szcp new file mode 100644 index 00000000..2692dd23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000022_d5b59fa6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000023_5e4ce9b5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000023_5e4ce9b5.szcp new file mode 100644 index 00000000..54248f5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000023_5e4ce9b5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000024_cec71395.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000024_cec71395.szcp new file mode 100644 index 00000000..c5589855 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000024_cec71395.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000025_44bc11d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000025_44bc11d0.szcp new file mode 100644 index 00000000..97b04b1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000025_44bc11d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000026_2ff6d7f9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000026_2ff6d7f9.szcp new file mode 100644 index 00000000..0e22cab5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000026_2ff6d7f9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000027_a02616ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000027_a02616ba.szcp new file mode 100644 index 00000000..813a51f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000027_a02616ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000028_35139e6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000028_35139e6b.szcp new file mode 100644 index 00000000..06051984 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000028_35139e6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000029_289aa9d1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000029_289aa9d1.szcp new file mode 100644 index 00000000..cbc8fe3f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000029_289aa9d1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000030_711e6209.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000030_711e6209.szcp new file mode 100644 index 00000000..0f7c94a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000030_711e6209.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000031_de275aff.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000031_de275aff.szcp new file mode 100644 index 00000000..4af49055 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000031_de275aff.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000032_36211920.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000032_36211920.szcp new file mode 100644 index 00000000..ed457be4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_041/checkpoints/checkpoint_00000000000000000032_36211920.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000001_d8918c25.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000001_d8918c25.szar new file mode 100644 index 00000000..9d4b4180 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000001_d8918c25.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000002_90e7f352.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000002_90e7f352.szar new file mode 100644 index 00000000..05716ce2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000002_90e7f352.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000003_e69d76a3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000003_e69d76a3.szar new file mode 100644 index 00000000..c7151632 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000003_e69d76a3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000004_79a936dc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000004_79a936dc.szar new file mode 100644 index 00000000..713a9000 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000004_79a936dc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000005_c29eedf2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000005_c29eedf2.szar new file mode 100644 index 00000000..a540eef2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000005_c29eedf2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000006_135d9ad4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000006_135d9ad4.szar new file mode 100644 index 00000000..4155cda6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000006_135d9ad4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000007_7d45ffe6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000007_7d45ffe6.szar new file mode 100644 index 00000000..5d1738c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000007_7d45ffe6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000008_706d8c20.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000008_706d8c20.szar new file mode 100644 index 00000000..93a383c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000008_706d8c20.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000009_901e89a7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000009_901e89a7.szar new file mode 100644 index 00000000..5bb5d47a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000009_901e89a7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000010_906d08e8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000010_906d08e8.szar new file mode 100644 index 00000000..8ecbcf15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000010_906d08e8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000011_908325a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000011_908325a2.szar new file mode 100644 index 00000000..db15d93c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000011_908325a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000012_c417c78e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000012_c417c78e.szar new file mode 100644 index 00000000..38af57c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000012_c417c78e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000013_6ad2a5fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000013_6ad2a5fb.szar new file mode 100644 index 00000000..51601f3f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000013_6ad2a5fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000014_dae47bb1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000014_dae47bb1.szar new file mode 100644 index 00000000..3edea240 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000014_dae47bb1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000015_77b02c31.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000015_77b02c31.szar new file mode 100644 index 00000000..be820de5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000015_77b02c31.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000016_739ac063.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000016_739ac063.szar new file mode 100644 index 00000000..b3cd78fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000016_739ac063.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000017_ab644dd4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000017_ab644dd4.szar new file mode 100644 index 00000000..0006136b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000017_ab644dd4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000018_e99956fb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000018_e99956fb.szar new file mode 100644 index 00000000..0a238b92 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000018_e99956fb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000019_f0d02223.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000019_f0d02223.szar new file mode 100644 index 00000000..57a654fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000019_f0d02223.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000020_b72cf24c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000020_b72cf24c.szar new file mode 100644 index 00000000..4bdd5105 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000020_b72cf24c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000021_148d8e80.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000021_148d8e80.szar new file mode 100644 index 00000000..08fa17b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000021_148d8e80.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000022_7193e83d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000022_7193e83d.szar new file mode 100644 index 00000000..767e1ac3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000022_7193e83d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000023_0cc5846c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000023_0cc5846c.szar new file mode 100644 index 00000000..802891c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000023_0cc5846c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000024_91b56d21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000024_91b56d21.szar new file mode 100644 index 00000000..8ae946d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000024_91b56d21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000025_d987395a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000025_d987395a.szar new file mode 100644 index 00000000..9dc1b859 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000025_d987395a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000026_dace4fd5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000026_dace4fd5.szar new file mode 100644 index 00000000..ac4113b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000026_dace4fd5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000027_b4209217.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000027_b4209217.szar new file mode 100644 index 00000000..cc8d6133 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000027_b4209217.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000028_d3a40c24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000028_d3a40c24.szar new file mode 100644 index 00000000..41e40835 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000028_d3a40c24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000029_d9fad34d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000029_d9fad34d.szar new file mode 100644 index 00000000..1929979e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000029_d9fad34d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000030_7f976c7a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000030_7f976c7a.szar new file mode 100644 index 00000000..6ad35dc0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000030_7f976c7a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000031_36b08656.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000031_36b08656.szar new file mode 100644 index 00000000..55e4fd00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000031_36b08656.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000032_ab0c2bfb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000032_ab0c2bfb.szar new file mode 100644 index 00000000..2ebefad5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000032_ab0c2bfb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000033_ac57404e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000033_ac57404e.szar new file mode 100644 index 00000000..a6f61aed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000033_ac57404e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000034_9d37c18e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000034_9d37c18e.szar new file mode 100644 index 00000000..9da32039 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000034_9d37c18e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000035_376bd827.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000035_376bd827.szar new file mode 100644 index 00000000..dc0b37db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000035_376bd827.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000036_8de8dd14.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000036_8de8dd14.szar new file mode 100644 index 00000000..e36f3cf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000036_8de8dd14.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000037_a429a7fc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000037_a429a7fc.szar new file mode 100644 index 00000000..67a82654 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000037_a429a7fc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000038_34202dc3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000038_34202dc3.szar new file mode 100644 index 00000000..a49d7f67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000038_34202dc3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000039_f8c133df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000039_f8c133df.szar new file mode 100644 index 00000000..4a4c5088 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000039_f8c133df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000040_608a2af7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000040_608a2af7.szar new file mode 100644 index 00000000..366195cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000040_608a2af7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000041_c331a94b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000041_c331a94b.szar new file mode 100644 index 00000000..6df1fcfe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000041_c331a94b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000042_49333443.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000042_49333443.szar new file mode 100644 index 00000000..22936060 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000042_49333443.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000043_9c75840e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000043_9c75840e.szar new file mode 100644 index 00000000..d9a29236 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000043_9c75840e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000044_0d378655.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000044_0d378655.szar new file mode 100644 index 00000000..3e61b1aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000044_0d378655.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000045_15aebda3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000045_15aebda3.szar new file mode 100644 index 00000000..df69932d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000045_15aebda3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000046_cfd4c3cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000046_cfd4c3cf.szar new file mode 100644 index 00000000..a4a5f561 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000046_cfd4c3cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000047_096d74ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000047_096d74ee.szar new file mode 100644 index 00000000..cfe1cb52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000047_096d74ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000048_aa05f610.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000048_aa05f610.szar new file mode 100644 index 00000000..7885227e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000048_aa05f610.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000049_2c65ab47.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000049_2c65ab47.szar new file mode 100644 index 00000000..bd0a870a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000049_2c65ab47.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000050_ef56bab7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000050_ef56bab7.szar new file mode 100644 index 00000000..430ccb8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000050_ef56bab7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000051_64d4447c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000051_64d4447c.szar new file mode 100644 index 00000000..6dd4b59b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000051_64d4447c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000052_def60828.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000052_def60828.szar new file mode 100644 index 00000000..79ef1ede Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000052_def60828.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000053_62f9c578.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000053_62f9c578.szar new file mode 100644 index 00000000..e7586354 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000053_62f9c578.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000054_9d451bec.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000054_9d451bec.szar new file mode 100644 index 00000000..d793acf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000054_9d451bec.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000055_7dbcb58c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000055_7dbcb58c.szar new file mode 100644 index 00000000..184fc5ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000055_7dbcb58c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000056_dd374dcb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000056_dd374dcb.szar new file mode 100644 index 00000000..ae43ee63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000056_dd374dcb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000057_54151392.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000057_54151392.szar new file mode 100644 index 00000000..b4b9a4ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000057_54151392.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000058_9bdfbba1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000058_9bdfbba1.szar new file mode 100644 index 00000000..ae6adf3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000058_9bdfbba1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000059_3e419714.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000059_3e419714.szar new file mode 100644 index 00000000..dd199b33 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000059_3e419714.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000060_f3321d7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000060_f3321d7f.szar new file mode 100644 index 00000000..2fcd9d71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000060_f3321d7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000061_a0862470.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000061_a0862470.szar new file mode 100644 index 00000000..bcfc6d7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000061_a0862470.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000062_77758bb4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000062_77758bb4.szar new file mode 100644 index 00000000..16785555 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000062_77758bb4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000063_4343aae1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000063_4343aae1.szar new file mode 100644 index 00000000..2398e57d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000063_4343aae1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000064_cb3d323b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000064_cb3d323b.szar new file mode 100644 index 00000000..02d0804f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000064_cb3d323b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000065_ec4aa1cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000065_ec4aa1cf.szar new file mode 100644 index 00000000..80faa563 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/archive/delta_00000000000000000065_ec4aa1cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000001_206ac6ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000001_206ac6ec.szcp new file mode 100644 index 00000000..eabecaad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000001_206ac6ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000002_f4621577.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000002_f4621577.szcp new file mode 100644 index 00000000..eea68bcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000002_f4621577.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000003_19a854f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000003_19a854f6.szcp new file mode 100644 index 00000000..d30c6b84 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000003_19a854f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000004_900f0132.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000004_900f0132.szcp new file mode 100644 index 00000000..d67e7db4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000004_900f0132.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000005_a2ecdc42.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000005_a2ecdc42.szcp new file mode 100644 index 00000000..0be7e255 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000005_a2ecdc42.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000006_85204777.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000006_85204777.szcp new file mode 100644 index 00000000..307048fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000006_85204777.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000007_cc418c5a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000007_cc418c5a.szcp new file mode 100644 index 00000000..d19e3e25 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000007_cc418c5a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000008_c096e7f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000008_c096e7f0.szcp new file mode 100644 index 00000000..af924b24 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000008_c096e7f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000009_c3d30767.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000009_c3d30767.szcp new file mode 100644 index 00000000..e9331cde Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000009_c3d30767.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000010_7cd6aa74.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000010_7cd6aa74.szcp new file mode 100644 index 00000000..d5d531a2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000010_7cd6aa74.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000011_48f6286b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000011_48f6286b.szcp new file mode 100644 index 00000000..948fed77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000011_48f6286b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000012_f132744f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000012_f132744f.szcp new file mode 100644 index 00000000..222ca2bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000012_f132744f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000013_b9ae0e2c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000013_b9ae0e2c.szcp new file mode 100644 index 00000000..74ce9e55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000013_b9ae0e2c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000014_f0484b19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000014_f0484b19.szcp new file mode 100644 index 00000000..5fd5640d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000014_f0484b19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000015_8537ba75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000015_8537ba75.szcp new file mode 100644 index 00000000..82dcfd9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000015_8537ba75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000016_c7824dac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000016_c7824dac.szcp new file mode 100644 index 00000000..9f88da46 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000016_c7824dac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000017_231d41d8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000017_231d41d8.szcp new file mode 100644 index 00000000..ac79c876 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000017_231d41d8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000018_e2a183a6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000018_e2a183a6.szcp new file mode 100644 index 00000000..271cb1e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000018_e2a183a6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000019_5fe46870.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000019_5fe46870.szcp new file mode 100644 index 00000000..d9707842 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000019_5fe46870.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000020_6df58115.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000020_6df58115.szcp new file mode 100644 index 00000000..e386e6bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000020_6df58115.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000021_8d63f042.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000021_8d63f042.szcp new file mode 100644 index 00000000..585c1704 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000021_8d63f042.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000022_853c14b8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000022_853c14b8.szcp new file mode 100644 index 00000000..b287528b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000022_853c14b8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000023_16742267.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000023_16742267.szcp new file mode 100644 index 00000000..ae255e6f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000023_16742267.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000024_aee940df.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000024_aee940df.szcp new file mode 100644 index 00000000..ad59f983 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000024_aee940df.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000025_c7a8988f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000025_c7a8988f.szcp new file mode 100644 index 00000000..686cec5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000025_c7a8988f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000026_fb5a4e55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000026_fb5a4e55.szcp new file mode 100644 index 00000000..02dd72a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000026_fb5a4e55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000027_625dbbdb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000027_625dbbdb.szcp new file mode 100644 index 00000000..036f9d5a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000027_625dbbdb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000028_b85fcc05.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000028_b85fcc05.szcp new file mode 100644 index 00000000..f91a2943 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000028_b85fcc05.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000029_31d48a6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000029_31d48a6d.szcp new file mode 100644 index 00000000..6d1b9c61 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000029_31d48a6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000030_e3e89aa6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000030_e3e89aa6.szcp new file mode 100644 index 00000000..3ff89f73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000030_e3e89aa6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000031_cb86534d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000031_cb86534d.szcp new file mode 100644 index 00000000..fb0e1006 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000031_cb86534d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000032_6b1b01bd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000032_6b1b01bd.szcp new file mode 100644 index 00000000..494cb5d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000032_6b1b01bd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000033_7f4add9e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000033_7f4add9e.szcp new file mode 100644 index 00000000..0d87b820 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000033_7f4add9e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000034_af481a45.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000034_af481a45.szcp new file mode 100644 index 00000000..1cbba3f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000034_af481a45.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000035_dc3cbb09.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000035_dc3cbb09.szcp new file mode 100644 index 00000000..752b7320 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000035_dc3cbb09.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000036_86d8f517.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000036_86d8f517.szcp new file mode 100644 index 00000000..c3a3cb8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000036_86d8f517.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000037_3aeebba7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000037_3aeebba7.szcp new file mode 100644 index 00000000..ef224302 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000037_3aeebba7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000038_32a3ac81.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000038_32a3ac81.szcp new file mode 100644 index 00000000..8a7ec5df Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000038_32a3ac81.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000039_7c1fab87.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000039_7c1fab87.szcp new file mode 100644 index 00000000..431ee71d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000039_7c1fab87.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000040_84dd1b46.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000040_84dd1b46.szcp new file mode 100644 index 00000000..ec1a4f49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000040_84dd1b46.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000041_b3be9b64.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000041_b3be9b64.szcp new file mode 100644 index 00000000..e59aaf75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000041_b3be9b64.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000042_5ef7fc5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000042_5ef7fc5b.szcp new file mode 100644 index 00000000..ae6ffbf2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000042_5ef7fc5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000043_f790dd4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000043_f790dd4d.szcp new file mode 100644 index 00000000..54103641 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000043_f790dd4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000044_8ffa4603.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000044_8ffa4603.szcp new file mode 100644 index 00000000..30465ec5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000044_8ffa4603.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000045_92194f40.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000045_92194f40.szcp new file mode 100644 index 00000000..e7542057 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000045_92194f40.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000046_b18f8a40.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000046_b18f8a40.szcp new file mode 100644 index 00000000..13365cd6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000046_b18f8a40.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000047_88e76414.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000047_88e76414.szcp new file mode 100644 index 00000000..e167bc9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000047_88e76414.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000048_7bc4cb17.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000048_7bc4cb17.szcp new file mode 100644 index 00000000..566b5b61 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000048_7bc4cb17.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000049_dde14359.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000049_dde14359.szcp new file mode 100644 index 00000000..3f3bdc32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000049_dde14359.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000050_c1e16612.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000050_c1e16612.szcp new file mode 100644 index 00000000..631e3226 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000050_c1e16612.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000051_034263b2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000051_034263b2.szcp new file mode 100644 index 00000000..4d7c04da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000051_034263b2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000052_8b507d17.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000052_8b507d17.szcp new file mode 100644 index 00000000..feec2c30 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000052_8b507d17.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000053_2ce4c85b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000053_2ce4c85b.szcp new file mode 100644 index 00000000..24e0dde2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000053_2ce4c85b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000054_2ed17a6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000054_2ed17a6b.szcp new file mode 100644 index 00000000..6499caea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000054_2ed17a6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000055_52316738.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000055_52316738.szcp new file mode 100644 index 00000000..5a7aa3a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000055_52316738.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000056_95ab7de5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000056_95ab7de5.szcp new file mode 100644 index 00000000..91753951 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000056_95ab7de5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000057_03197483.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000057_03197483.szcp new file mode 100644 index 00000000..26c1b03c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000057_03197483.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000058_75989f6f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000058_75989f6f.szcp new file mode 100644 index 00000000..01d128f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000058_75989f6f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000059_1d7d19ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000059_1d7d19ce.szcp new file mode 100644 index 00000000..fa9620c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000059_1d7d19ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000060_37d0f737.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000060_37d0f737.szcp new file mode 100644 index 00000000..27b2427e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000060_37d0f737.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000061_995e505b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000061_995e505b.szcp new file mode 100644 index 00000000..9cfeba2f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000061_995e505b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000062_b3b8bac3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000062_b3b8bac3.szcp new file mode 100644 index 00000000..01c0dcbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000062_b3b8bac3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000063_7a9c590e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000063_7a9c590e.szcp new file mode 100644 index 00000000..d71fdc95 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000063_7a9c590e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000064_330a4a5e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000064_330a4a5e.szcp new file mode 100644 index 00000000..7951e8c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000064_330a4a5e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000065_535d5de6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000065_535d5de6.szcp new file mode 100644 index 00000000..5d7d11bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_042/checkpoints/checkpoint_00000000000000000065_535d5de6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000001_efab9a47.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000001_efab9a47.szar new file mode 100644 index 00000000..419c64e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000001_efab9a47.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000002_fceac857.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000002_fceac857.szar new file mode 100644 index 00000000..15f4658a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000002_fceac857.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000003_de3cad2e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000003_de3cad2e.szar new file mode 100644 index 00000000..b3e8fbf2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000003_de3cad2e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000004_001761b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000004_001761b6.szar new file mode 100644 index 00000000..ccf84a7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000004_001761b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000005_1c84265a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000005_1c84265a.szar new file mode 100644 index 00000000..6f5c92de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000005_1c84265a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000006_7a18a884.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000006_7a18a884.szar new file mode 100644 index 00000000..bda488b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000006_7a18a884.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000007_07129c2b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000007_07129c2b.szar new file mode 100644 index 00000000..3b20cba3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000007_07129c2b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000008_be766922.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000008_be766922.szar new file mode 100644 index 00000000..5fc3caa1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000008_be766922.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000009_90caf72b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000009_90caf72b.szar new file mode 100644 index 00000000..2104a4f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000009_90caf72b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000010_8b48c1c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000010_8b48c1c5.szar new file mode 100644 index 00000000..232a8cd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000010_8b48c1c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000011_c35e0487.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000011_c35e0487.szar new file mode 100644 index 00000000..19d539f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000011_c35e0487.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000012_bdcfa9e7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000012_bdcfa9e7.szar new file mode 100644 index 00000000..2d4aaa07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000012_bdcfa9e7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000013_26da3eb2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000013_26da3eb2.szar new file mode 100644 index 00000000..fcdfa62f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000013_26da3eb2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000014_88f9b267.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000014_88f9b267.szar new file mode 100644 index 00000000..309c8a76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000014_88f9b267.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000015_84d6f1fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000015_84d6f1fd.szar new file mode 100644 index 00000000..4d10d9c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000015_84d6f1fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000016_1b907372.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000016_1b907372.szar new file mode 100644 index 00000000..2619b430 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000016_1b907372.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000017_27006b80.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000017_27006b80.szar new file mode 100644 index 00000000..87602bf8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000017_27006b80.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000018_a975f098.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000018_a975f098.szar new file mode 100644 index 00000000..461c00ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000018_a975f098.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000019_c36563e3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000019_c36563e3.szar new file mode 100644 index 00000000..f0a3b4b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000019_c36563e3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000020_f1a57b18.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000020_f1a57b18.szar new file mode 100644 index 00000000..2ec69254 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000020_f1a57b18.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000021_de7cabd9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000021_de7cabd9.szar new file mode 100644 index 00000000..8ecb25b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000021_de7cabd9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000022_9a6c396a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000022_9a6c396a.szar new file mode 100644 index 00000000..ae230167 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000022_9a6c396a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000023_8e994001.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000023_8e994001.szar new file mode 100644 index 00000000..f771af92 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000023_8e994001.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000024_346613ee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000024_346613ee.szar new file mode 100644 index 00000000..b1bea071 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000024_346613ee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000025_33a5ae03.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000025_33a5ae03.szar new file mode 100644 index 00000000..d8ad5a7b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000025_33a5ae03.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000026_06907474.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000026_06907474.szar new file mode 100644 index 00000000..b023bb59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/archive/delta_00000000000000000026_06907474.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000001_07ec6f0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000001_07ec6f0c.szcp new file mode 100644 index 00000000..e3c1cb52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000001_07ec6f0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000002_453a356f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000002_453a356f.szcp new file mode 100644 index 00000000..643b8d5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000002_453a356f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000003_670fa565.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000003_670fa565.szcp new file mode 100644 index 00000000..4e855a3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000003_670fa565.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000004_22b244dc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000004_22b244dc.szcp new file mode 100644 index 00000000..6b755b4a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000004_22b244dc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000005_2eceb9db.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000005_2eceb9db.szcp new file mode 100644 index 00000000..c71094ec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000005_2eceb9db.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000006_663dc1ed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000006_663dc1ed.szcp new file mode 100644 index 00000000..93d415db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000006_663dc1ed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000007_a578f041.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000007_a578f041.szcp new file mode 100644 index 00000000..1bf1a6d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000007_a578f041.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000008_6a31c7b0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000008_6a31c7b0.szcp new file mode 100644 index 00000000..c2a5fbd1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000008_6a31c7b0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000009_feed38ee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000009_feed38ee.szcp new file mode 100644 index 00000000..4a76ea9f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000009_feed38ee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000010_fbc433ca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000010_fbc433ca.szcp new file mode 100644 index 00000000..e9265bbb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000010_fbc433ca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000011_44b9f57b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000011_44b9f57b.szcp new file mode 100644 index 00000000..ed77b2ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000011_44b9f57b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000012_ccaa29b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000012_ccaa29b7.szcp new file mode 100644 index 00000000..a3fe700d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000012_ccaa29b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000013_311a3f95.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000013_311a3f95.szcp new file mode 100644 index 00000000..a12b734f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000013_311a3f95.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000014_ce799d1b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000014_ce799d1b.szcp new file mode 100644 index 00000000..983c33e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000014_ce799d1b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000015_e702eedd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000015_e702eedd.szcp new file mode 100644 index 00000000..cbf87ed9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000015_e702eedd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000016_a37b6d46.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000016_a37b6d46.szcp new file mode 100644 index 00000000..e2e8f7cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000016_a37b6d46.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000017_6a53835a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000017_6a53835a.szcp new file mode 100644 index 00000000..16b01376 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000017_6a53835a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000018_fb3d929d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000018_fb3d929d.szcp new file mode 100644 index 00000000..eba751a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000018_fb3d929d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000019_eeb524ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000019_eeb524ba.szcp new file mode 100644 index 00000000..27d2eaf4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000019_eeb524ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000020_e9babff0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000020_e9babff0.szcp new file mode 100644 index 00000000..45d1fc59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000020_e9babff0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000021_39b5e54b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000021_39b5e54b.szcp new file mode 100644 index 00000000..7fc9c9f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000021_39b5e54b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000022_5131755e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000022_5131755e.szcp new file mode 100644 index 00000000..dae1d169 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000022_5131755e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000023_77a48d28.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000023_77a48d28.szcp new file mode 100644 index 00000000..90e80e3a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000023_77a48d28.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000024_7ef725a6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000024_7ef725a6.szcp new file mode 100644 index 00000000..673d8da4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000024_7ef725a6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000025_ffa95643.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000025_ffa95643.szcp new file mode 100644 index 00000000..683e20aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000025_ffa95643.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000026_93992b89.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000026_93992b89.szcp new file mode 100644 index 00000000..e9cab0b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_043/checkpoints/checkpoint_00000000000000000026_93992b89.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000001_bf8f4460.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000001_bf8f4460.szar new file mode 100644 index 00000000..e2bc447f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000001_bf8f4460.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000002_62b80c7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000002_62b80c7f.szar new file mode 100644 index 00000000..6d226eed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000002_62b80c7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000003_724b544f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000003_724b544f.szar new file mode 100644 index 00000000..2bb7e471 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000003_724b544f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000004_fcc1e92c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000004_fcc1e92c.szar new file mode 100644 index 00000000..8471487c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000004_fcc1e92c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000005_70ef0793.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000005_70ef0793.szar new file mode 100644 index 00000000..74c9e95e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000005_70ef0793.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000006_8e05c56d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000006_8e05c56d.szar new file mode 100644 index 00000000..cc155578 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000006_8e05c56d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000007_8cac8138.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000007_8cac8138.szar new file mode 100644 index 00000000..fa68b5da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000007_8cac8138.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000008_7a275ced.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000008_7a275ced.szar new file mode 100644 index 00000000..9be40f35 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000008_7a275ced.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000009_8df03eaa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000009_8df03eaa.szar new file mode 100644 index 00000000..e8133682 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000009_8df03eaa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000010_8abfb043.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000010_8abfb043.szar new file mode 100644 index 00000000..104fb455 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000010_8abfb043.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000011_5c1da005.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000011_5c1da005.szar new file mode 100644 index 00000000..b4879573 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000011_5c1da005.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000012_22d95b1c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000012_22d95b1c.szar new file mode 100644 index 00000000..0936fadd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000012_22d95b1c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000013_d9a2ebcf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000013_d9a2ebcf.szar new file mode 100644 index 00000000..40e8a0bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000013_d9a2ebcf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000014_83b91f7c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000014_83b91f7c.szar new file mode 100644 index 00000000..9d6217f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000014_83b91f7c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000015_c6612aff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000015_c6612aff.szar new file mode 100644 index 00000000..e54a496c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000015_c6612aff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000016_8f0f99cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000016_8f0f99cb.szar new file mode 100644 index 00000000..17524094 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000016_8f0f99cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000017_359c4777.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000017_359c4777.szar new file mode 100644 index 00000000..b9e0f1c5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000017_359c4777.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000018_b6431edd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000018_b6431edd.szar new file mode 100644 index 00000000..21310bc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000018_b6431edd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000019_764e95d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000019_764e95d4.szar new file mode 100644 index 00000000..f879e3a4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000019_764e95d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000020_8c04dc5d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000020_8c04dc5d.szar new file mode 100644 index 00000000..eb476975 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000020_8c04dc5d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000021_1c8549e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000021_1c8549e9.szar new file mode 100644 index 00000000..e03aae63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000021_1c8549e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000022_6dab3058.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000022_6dab3058.szar new file mode 100644 index 00000000..e8346d5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000022_6dab3058.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000023_de2f81e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000023_de2f81e4.szar new file mode 100644 index 00000000..55e59c72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000023_de2f81e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000024_0ed7cd4e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000024_0ed7cd4e.szar new file mode 100644 index 00000000..38c56083 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000024_0ed7cd4e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000025_161fbff2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000025_161fbff2.szar new file mode 100644 index 00000000..97d99aa7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000025_161fbff2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000026_4720ea1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000026_4720ea1a.szar new file mode 100644 index 00000000..8360fa14 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000026_4720ea1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000027_f060a43b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000027_f060a43b.szar new file mode 100644 index 00000000..58614994 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000027_f060a43b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000028_2be4b0a7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000028_2be4b0a7.szar new file mode 100644 index 00000000..b2de36eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000028_2be4b0a7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000029_7d24babe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000029_7d24babe.szar new file mode 100644 index 00000000..c736aebd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000029_7d24babe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000030_851e0247.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000030_851e0247.szar new file mode 100644 index 00000000..90795b01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000030_851e0247.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000031_57d2ba9e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000031_57d2ba9e.szar new file mode 100644 index 00000000..414842f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000031_57d2ba9e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000032_8e05a3d7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000032_8e05a3d7.szar new file mode 100644 index 00000000..a29d7d8e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000032_8e05a3d7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000033_f1446809.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000033_f1446809.szar new file mode 100644 index 00000000..eafac57e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000033_f1446809.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000034_f61af4de.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000034_f61af4de.szar new file mode 100644 index 00000000..c013404a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000034_f61af4de.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000035_8cb17724.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000035_8cb17724.szar new file mode 100644 index 00000000..9a6a2812 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000035_8cb17724.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000036_62ac1506.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000036_62ac1506.szar new file mode 100644 index 00000000..a671ce7f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000036_62ac1506.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000037_b7d43482.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000037_b7d43482.szar new file mode 100644 index 00000000..f535d870 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/archive/delta_00000000000000000037_b7d43482.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000001_efd5c40c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000001_efd5c40c.szcp new file mode 100644 index 00000000..8c0241fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000001_efd5c40c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000002_34eedd18.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000002_34eedd18.szcp new file mode 100644 index 00000000..7821ba42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000002_34eedd18.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000003_615bd108.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000003_615bd108.szcp new file mode 100644 index 00000000..352587d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000003_615bd108.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000004_91a7a101.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000004_91a7a101.szcp new file mode 100644 index 00000000..c01a9723 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000004_91a7a101.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000005_c005d1be.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000005_c005d1be.szcp new file mode 100644 index 00000000..bbf00ef0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000005_c005d1be.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000006_ba0ac829.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000006_ba0ac829.szcp new file mode 100644 index 00000000..2193d334 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000006_ba0ac829.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000007_4051b81a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000007_4051b81a.szcp new file mode 100644 index 00000000..f179dc4c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000007_4051b81a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000008_3b1e4ff7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000008_3b1e4ff7.szcp new file mode 100644 index 00000000..f1fce887 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000008_3b1e4ff7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000009_6e223749.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000009_6e223749.szcp new file mode 100644 index 00000000..01258bff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000009_6e223749.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000010_399aaf76.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000010_399aaf76.szcp new file mode 100644 index 00000000..10fa2183 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000010_399aaf76.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000011_22f3be1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000011_22f3be1c.szcp new file mode 100644 index 00000000..bb76cd18 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000011_22f3be1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000012_4f78c614.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000012_4f78c614.szcp new file mode 100644 index 00000000..2719a73b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000012_4f78c614.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000013_708f9648.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000013_708f9648.szcp new file mode 100644 index 00000000..ce808497 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000013_708f9648.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000014_957fe750.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000014_957fe750.szcp new file mode 100644 index 00000000..80bc1566 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000014_957fe750.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000015_6b56f3ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000015_6b56f3ce.szcp new file mode 100644 index 00000000..e8be05c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000015_6b56f3ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000016_52c522a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000016_52c522a1.szcp new file mode 100644 index 00000000..e9a536db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000016_52c522a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000017_3084fb03.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000017_3084fb03.szcp new file mode 100644 index 00000000..ccb30225 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000017_3084fb03.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000018_ae4a2a23.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000018_ae4a2a23.szcp new file mode 100644 index 00000000..438cb8f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000018_ae4a2a23.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000019_a5aeef0a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000019_a5aeef0a.szcp new file mode 100644 index 00000000..b78e0888 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000019_a5aeef0a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000020_a8202564.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000020_a8202564.szcp new file mode 100644 index 00000000..be143647 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000020_a8202564.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000021_9cf40dc8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000021_9cf40dc8.szcp new file mode 100644 index 00000000..29c4c18e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000021_9cf40dc8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000022_dce4fe99.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000022_dce4fe99.szcp new file mode 100644 index 00000000..1609e3e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000022_dce4fe99.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000023_10a841d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000023_10a841d0.szcp new file mode 100644 index 00000000..35337eb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000023_10a841d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000024_c6d1b3ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000024_c6d1b3ec.szcp new file mode 100644 index 00000000..39aa4ff1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000024_c6d1b3ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000025_22e10393.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000025_22e10393.szcp new file mode 100644 index 00000000..2d47694a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000025_22e10393.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000026_f9828178.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000026_f9828178.szcp new file mode 100644 index 00000000..698b7676 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000026_f9828178.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000027_89559e5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000027_89559e5b.szcp new file mode 100644 index 00000000..e4904454 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000027_89559e5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000028_464f0193.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000028_464f0193.szcp new file mode 100644 index 00000000..8183ab76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000028_464f0193.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000029_60ddffd3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000029_60ddffd3.szcp new file mode 100644 index 00000000..6b50d97b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000029_60ddffd3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000030_77bac73b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000030_77bac73b.szcp new file mode 100644 index 00000000..4b05a9e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000030_77bac73b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000031_1b6cd02f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000031_1b6cd02f.szcp new file mode 100644 index 00000000..693a405c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000031_1b6cd02f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000032_e2a2918f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000032_e2a2918f.szcp new file mode 100644 index 00000000..91aad692 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000032_e2a2918f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000033_7e82e599.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000033_7e82e599.szcp new file mode 100644 index 00000000..41124d8b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000033_7e82e599.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000034_cf98b71f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000034_cf98b71f.szcp new file mode 100644 index 00000000..1b909714 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000034_cf98b71f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000035_ede4da8f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000035_ede4da8f.szcp new file mode 100644 index 00000000..eb6d141d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000035_ede4da8f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000036_fe7db3c6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000036_fe7db3c6.szcp new file mode 100644 index 00000000..08755881 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000036_fe7db3c6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000037_953dc130.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000037_953dc130.szcp new file mode 100644 index 00000000..26413720 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_044/checkpoints/checkpoint_00000000000000000037_953dc130.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000001_88b89e82.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000001_88b89e82.szar new file mode 100644 index 00000000..56c7bcfb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000001_88b89e82.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000002_d112ea83.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000002_d112ea83.szar new file mode 100644 index 00000000..4d5ff2f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000002_d112ea83.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000003_6fbd6632.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000003_6fbd6632.szar new file mode 100644 index 00000000..b490c7f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000003_6fbd6632.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000004_9c70df3c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000004_9c70df3c.szar new file mode 100644 index 00000000..8aa6a795 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000004_9c70df3c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000005_527c7657.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000005_527c7657.szar new file mode 100644 index 00000000..412bf4e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000005_527c7657.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000006_3dbb8f58.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000006_3dbb8f58.szar new file mode 100644 index 00000000..b97db86e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000006_3dbb8f58.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000007_d1fbd4c9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000007_d1fbd4c9.szar new file mode 100644 index 00000000..99939117 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000007_d1fbd4c9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000008_498ca437.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000008_498ca437.szar new file mode 100644 index 00000000..64c4e644 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000008_498ca437.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000009_21d6be92.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000009_21d6be92.szar new file mode 100644 index 00000000..83938e81 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000009_21d6be92.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000010_1ad8c72d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000010_1ad8c72d.szar new file mode 100644 index 00000000..dd8b9ef4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000010_1ad8c72d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000011_41f12d56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000011_41f12d56.szar new file mode 100644 index 00000000..98f07c63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000011_41f12d56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000012_0be762ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000012_0be762ae.szar new file mode 100644 index 00000000..30653444 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000012_0be762ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000013_b6470d4a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000013_b6470d4a.szar new file mode 100644 index 00000000..d4517881 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000013_b6470d4a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000014_29ba90c3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000014_29ba90c3.szar new file mode 100644 index 00000000..dde3a991 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000014_29ba90c3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000015_6cb27e02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000015_6cb27e02.szar new file mode 100644 index 00000000..3576b7e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000015_6cb27e02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000016_2f5bf95a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000016_2f5bf95a.szar new file mode 100644 index 00000000..9eaeb2dd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000016_2f5bf95a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000017_aeab7209.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000017_aeab7209.szar new file mode 100644 index 00000000..b4f74f5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000017_aeab7209.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000018_b1db19bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000018_b1db19bd.szar new file mode 100644 index 00000000..b32f08f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000018_b1db19bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000019_dec8d008.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000019_dec8d008.szar new file mode 100644 index 00000000..58184df6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000019_dec8d008.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000020_fcbee38c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000020_fcbee38c.szar new file mode 100644 index 00000000..64d7ef47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000020_fcbee38c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000021_d145ea72.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000021_d145ea72.szar new file mode 100644 index 00000000..a250e36b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000021_d145ea72.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000022_98b79383.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000022_98b79383.szar new file mode 100644 index 00000000..ae489a1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000022_98b79383.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000023_4a9b3c02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000023_4a9b3c02.szar new file mode 100644 index 00000000..cc7d4fc1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000023_4a9b3c02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000024_7b073b05.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000024_7b073b05.szar new file mode 100644 index 00000000..5fc2c59d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000024_7b073b05.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000025_59fd2c5c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000025_59fd2c5c.szar new file mode 100644 index 00000000..3e9a21b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000025_59fd2c5c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000026_ebef8054.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000026_ebef8054.szar new file mode 100644 index 00000000..6ba7c8b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000026_ebef8054.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000027_79bd1084.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000027_79bd1084.szar new file mode 100644 index 00000000..99783d77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000027_79bd1084.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000028_9a51faca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000028_9a51faca.szar new file mode 100644 index 00000000..a2b9b172 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000028_9a51faca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000029_046291b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000029_046291b6.szar new file mode 100644 index 00000000..d4359e9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000029_046291b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000030_cf374c04.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000030_cf374c04.szar new file mode 100644 index 00000000..3eaf7807 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000030_cf374c04.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000031_16e3804e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000031_16e3804e.szar new file mode 100644 index 00000000..3c7d1872 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000031_16e3804e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000032_a1cfd61e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000032_a1cfd61e.szar new file mode 100644 index 00000000..4aaefee3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000032_a1cfd61e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000033_e5dfc47e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000033_e5dfc47e.szar new file mode 100644 index 00000000..53aec22a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000033_e5dfc47e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000034_e12f4e9d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000034_e12f4e9d.szar new file mode 100644 index 00000000..29c2a42c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/archive/delta_00000000000000000034_e12f4e9d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000001_20694003.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000001_20694003.szcp new file mode 100644 index 00000000..b6ca10b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000001_20694003.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000002_244d0be2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000002_244d0be2.szcp new file mode 100644 index 00000000..0b3bba38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000002_244d0be2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000003_b916ea96.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000003_b916ea96.szcp new file mode 100644 index 00000000..08528b36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000003_b916ea96.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000004_f03b8ebc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000004_f03b8ebc.szcp new file mode 100644 index 00000000..ffa13f8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000004_f03b8ebc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000005_b2841403.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000005_b2841403.szcp new file mode 100644 index 00000000..1cbb634f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000005_b2841403.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000006_d283d002.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000006_d283d002.szcp new file mode 100644 index 00000000..88152616 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000006_d283d002.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000007_34db41d7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000007_34db41d7.szcp new file mode 100644 index 00000000..b069ec1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000007_34db41d7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000008_5801baeb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000008_5801baeb.szcp new file mode 100644 index 00000000..c8d50c07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000008_5801baeb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000009_262ab22b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000009_262ab22b.szcp new file mode 100644 index 00000000..d7ed4fc8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000009_262ab22b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000010_6102f876.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000010_6102f876.szcp new file mode 100644 index 00000000..9cab578d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000010_6102f876.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000011_a300162e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000011_a300162e.szcp new file mode 100644 index 00000000..03bc42a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000011_a300162e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000012_82d87c4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000012_82d87c4d.szcp new file mode 100644 index 00000000..3aeeb84b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000012_82d87c4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000013_059f4bf3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000013_059f4bf3.szcp new file mode 100644 index 00000000..b47d564f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000013_059f4bf3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000014_9711c3d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000014_9711c3d6.szcp new file mode 100644 index 00000000..297a4707 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000014_9711c3d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000015_44534057.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000015_44534057.szcp new file mode 100644 index 00000000..42fdccdd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000015_44534057.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000016_a7e09d6f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000016_a7e09d6f.szcp new file mode 100644 index 00000000..69bf0bc1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000016_a7e09d6f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000017_20214738.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000017_20214738.szcp new file mode 100644 index 00000000..58dcb9e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000017_20214738.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000018_c93791a1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000018_c93791a1.szcp new file mode 100644 index 00000000..b3b8e204 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000018_c93791a1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000019_57500ccd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000019_57500ccd.szcp new file mode 100644 index 00000000..30bec4f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000019_57500ccd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000020_46d1f3f8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000020_46d1f3f8.szcp new file mode 100644 index 00000000..6014d4c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000020_46d1f3f8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000021_70568e60.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000021_70568e60.szcp new file mode 100644 index 00000000..deccdc63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000021_70568e60.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000022_77009dd5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000022_77009dd5.szcp new file mode 100644 index 00000000..689f5ca8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000022_77009dd5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000023_71d0580b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000023_71d0580b.szcp new file mode 100644 index 00000000..1147c83a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000023_71d0580b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000024_deb002f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000024_deb002f6.szcp new file mode 100644 index 00000000..08dea1e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000024_deb002f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000025_94f94a65.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000025_94f94a65.szcp new file mode 100644 index 00000000..4c17f8ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000025_94f94a65.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000026_32f07dd7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000026_32f07dd7.szcp new file mode 100644 index 00000000..c0a95a1f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000026_32f07dd7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000027_32801359.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000027_32801359.szcp new file mode 100644 index 00000000..4dcf2d90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000027_32801359.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000028_59742a5d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000028_59742a5d.szcp new file mode 100644 index 00000000..38758fb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000028_59742a5d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000029_83602a8c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000029_83602a8c.szcp new file mode 100644 index 00000000..d7c8c126 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000029_83602a8c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000030_af382299.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000030_af382299.szcp new file mode 100644 index 00000000..a1053b52 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000030_af382299.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000031_ce1beac3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000031_ce1beac3.szcp new file mode 100644 index 00000000..08fc7584 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000031_ce1beac3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000032_5796b941.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000032_5796b941.szcp new file mode 100644 index 00000000..6ea9b182 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000032_5796b941.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000033_5085bf46.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000033_5085bf46.szcp new file mode 100644 index 00000000..bcb23f85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000033_5085bf46.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000034_18db426e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000034_18db426e.szcp new file mode 100644 index 00000000..43839176 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_045/checkpoints/checkpoint_00000000000000000034_18db426e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000001_81e4ff24.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000001_81e4ff24.szar new file mode 100644 index 00000000..310907a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000001_81e4ff24.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000002_43dbba83.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000002_43dbba83.szar new file mode 100644 index 00000000..afc695e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000002_43dbba83.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000003_edc3228e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000003_edc3228e.szar new file mode 100644 index 00000000..cbdff5d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000003_edc3228e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000004_a1dd6617.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000004_a1dd6617.szar new file mode 100644 index 00000000..61b7aabb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000004_a1dd6617.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000005_c3f370dc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000005_c3f370dc.szar new file mode 100644 index 00000000..fbc96d6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000005_c3f370dc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000006_06445d75.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000006_06445d75.szar new file mode 100644 index 00000000..9c88738f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000006_06445d75.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000007_7a9d00b4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000007_7a9d00b4.szar new file mode 100644 index 00000000..4913d933 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000007_7a9d00b4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000008_c11386b0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000008_c11386b0.szar new file mode 100644 index 00000000..ba3a1d73 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000008_c11386b0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000009_a5ed39cc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000009_a5ed39cc.szar new file mode 100644 index 00000000..91c09ab5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000009_a5ed39cc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000010_0000a730.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000010_0000a730.szar new file mode 100644 index 00000000..44eb5a18 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000010_0000a730.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000011_247e1a5a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000011_247e1a5a.szar new file mode 100644 index 00000000..15ed5776 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000011_247e1a5a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000012_eb6b73d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000012_eb6b73d4.szar new file mode 100644 index 00000000..b3bce403 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000012_eb6b73d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000013_05d3de71.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000013_05d3de71.szar new file mode 100644 index 00000000..96e42971 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000013_05d3de71.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000014_1ed4e859.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000014_1ed4e859.szar new file mode 100644 index 00000000..ce13839a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000014_1ed4e859.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000015_6303baca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000015_6303baca.szar new file mode 100644 index 00000000..efd3bd11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000015_6303baca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000016_4eda4e85.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000016_4eda4e85.szar new file mode 100644 index 00000000..e7a0af06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000016_4eda4e85.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000017_3234dcd7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000017_3234dcd7.szar new file mode 100644 index 00000000..c9fd8445 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000017_3234dcd7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000018_ae612537.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000018_ae612537.szar new file mode 100644 index 00000000..69665531 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000018_ae612537.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000019_54f28ac2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000019_54f28ac2.szar new file mode 100644 index 00000000..880a6465 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000019_54f28ac2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000020_7bfd3a39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000020_7bfd3a39.szar new file mode 100644 index 00000000..d1deb916 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000020_7bfd3a39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000021_4f0e59d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000021_4f0e59d9.szar new file mode 100644 index 00000000..916b1698 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000021_4f0e59d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000022_92be11bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000022_92be11bd.szar new file mode 100644 index 00000000..1bbeed65 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000022_92be11bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000023_8ce2abea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000023_8ce2abea.szar new file mode 100644 index 00000000..ccb235d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000023_8ce2abea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000024_6140c64e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000024_6140c64e.szar new file mode 100644 index 00000000..4a60d254 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000024_6140c64e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000025_2a39dea9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000025_2a39dea9.szar new file mode 100644 index 00000000..22636c75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000025_2a39dea9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000026_d88bf65a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000026_d88bf65a.szar new file mode 100644 index 00000000..986c116b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000026_d88bf65a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000027_96a5fddd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000027_96a5fddd.szar new file mode 100644 index 00000000..18e5f2f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000027_96a5fddd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000028_2b30483a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000028_2b30483a.szar new file mode 100644 index 00000000..3a67d06b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000028_2b30483a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000029_2fcc8c4d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000029_2fcc8c4d.szar new file mode 100644 index 00000000..e5e286c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000029_2fcc8c4d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000030_b827d5cc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000030_b827d5cc.szar new file mode 100644 index 00000000..89851968 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000030_b827d5cc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000031_33045f05.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000031_33045f05.szar new file mode 100644 index 00000000..49406934 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000031_33045f05.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000032_a0aab68c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000032_a0aab68c.szar new file mode 100644 index 00000000..32166432 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000032_a0aab68c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000033_1517c82c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000033_1517c82c.szar new file mode 100644 index 00000000..d135c34d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000033_1517c82c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000034_d06f77e1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000034_d06f77e1.szar new file mode 100644 index 00000000..c3ff3978 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000034_d06f77e1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000035_2564dbe6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000035_2564dbe6.szar new file mode 100644 index 00000000..48952f41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000035_2564dbe6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000036_51365b58.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000036_51365b58.szar new file mode 100644 index 00000000..62079c7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000036_51365b58.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000037_3ec0aa64.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000037_3ec0aa64.szar new file mode 100644 index 00000000..e703388c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000037_3ec0aa64.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000038_584f3acf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000038_584f3acf.szar new file mode 100644 index 00000000..3816c8d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/archive/delta_00000000000000000038_584f3acf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000001_fa5d8084.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000001_fa5d8084.szcp new file mode 100644 index 00000000..27cb10c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000001_fa5d8084.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000002_440bc156.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000002_440bc156.szcp new file mode 100644 index 00000000..cb8823ab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000002_440bc156.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000003_7f144f83.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000003_7f144f83.szcp new file mode 100644 index 00000000..12258e2c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000003_7f144f83.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000004_9bd7b7ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000004_9bd7b7ea.szcp new file mode 100644 index 00000000..62a5e870 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000004_9bd7b7ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000005_5fc3e876.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000005_5fc3e876.szcp new file mode 100644 index 00000000..0d6fdad4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000005_5fc3e876.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000006_06933827.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000006_06933827.szcp new file mode 100644 index 00000000..b2aa4382 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000006_06933827.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000007_fb1a3e9f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000007_fb1a3e9f.szcp new file mode 100644 index 00000000..2b312edd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000007_fb1a3e9f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000008_a75fafd9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000008_a75fafd9.szcp new file mode 100644 index 00000000..6fe7e512 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000008_a75fafd9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000009_f53355d8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000009_f53355d8.szcp new file mode 100644 index 00000000..e1714c1b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000009_f53355d8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000010_24a50e24.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000010_24a50e24.szcp new file mode 100644 index 00000000..ac013975 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000010_24a50e24.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000011_4e368d0e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000011_4e368d0e.szcp new file mode 100644 index 00000000..8eb9262e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000011_4e368d0e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000012_977c36d7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000012_977c36d7.szcp new file mode 100644 index 00000000..33189bc8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000012_977c36d7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000013_5b506acc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000013_5b506acc.szcp new file mode 100644 index 00000000..1dc60cd7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000013_5b506acc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000014_e61089fb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000014_e61089fb.szcp new file mode 100644 index 00000000..a5857243 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000014_e61089fb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000015_2cb0ada6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000015_2cb0ada6.szcp new file mode 100644 index 00000000..65e7ad59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000015_2cb0ada6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000016_f0720dd0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000016_f0720dd0.szcp new file mode 100644 index 00000000..62b4a4bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000016_f0720dd0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000017_eaf1a32f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000017_eaf1a32f.szcp new file mode 100644 index 00000000..6457feca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000017_eaf1a32f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000018_0197fb4f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000018_0197fb4f.szcp new file mode 100644 index 00000000..efab0c0f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000018_0197fb4f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000019_e016eb5f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000019_e016eb5f.szcp new file mode 100644 index 00000000..36051672 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000019_e016eb5f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000020_bbb7a5d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000020_bbb7a5d0.szcp new file mode 100644 index 00000000..827a1001 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000020_bbb7a5d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000021_73becf6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000021_73becf6d.szcp new file mode 100644 index 00000000..4b26cd6b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000021_73becf6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000022_3c555a46.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000022_3c555a46.szcp new file mode 100644 index 00000000..cabfba51 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000022_3c555a46.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000023_e2264ddf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000023_e2264ddf.szcp new file mode 100644 index 00000000..dd79a09c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000023_e2264ddf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000024_a2ee28fc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000024_a2ee28fc.szcp new file mode 100644 index 00000000..68154253 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000024_a2ee28fc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000025_8db37e6c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000025_8db37e6c.szcp new file mode 100644 index 00000000..4bd03ba2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000025_8db37e6c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000026_a8c7ea9f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000026_a8c7ea9f.szcp new file mode 100644 index 00000000..27b007da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000026_a8c7ea9f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000027_5194f09f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000027_5194f09f.szcp new file mode 100644 index 00000000..3d23a1ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000027_5194f09f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000028_fc67ac71.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000028_fc67ac71.szcp new file mode 100644 index 00000000..90571091 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000028_fc67ac71.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000029_d10cef4f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000029_d10cef4f.szcp new file mode 100644 index 00000000..1139b193 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000029_d10cef4f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000030_f7b3aed2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000030_f7b3aed2.szcp new file mode 100644 index 00000000..c855e95f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000030_f7b3aed2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000031_861db66f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000031_861db66f.szcp new file mode 100644 index 00000000..21a14ce9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000031_861db66f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000032_eeffa915.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000032_eeffa915.szcp new file mode 100644 index 00000000..ec93cb70 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000032_eeffa915.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000033_29bbd199.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000033_29bbd199.szcp new file mode 100644 index 00000000..f7b162be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000033_29bbd199.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000034_3468dd3d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000034_3468dd3d.szcp new file mode 100644 index 00000000..e9bb316b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000034_3468dd3d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000035_3476db47.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000035_3476db47.szcp new file mode 100644 index 00000000..11b905db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000035_3476db47.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000036_41148c1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000036_41148c1c.szcp new file mode 100644 index 00000000..24337747 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000036_41148c1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000037_5245af3e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000037_5245af3e.szcp new file mode 100644 index 00000000..6cda4b32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000037_5245af3e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000038_dad85824.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000038_dad85824.szcp new file mode 100644 index 00000000..7ce6c0e3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_046/checkpoints/checkpoint_00000000000000000038_dad85824.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000001_a03c6a92.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000001_a03c6a92.szar new file mode 100644 index 00000000..e7690a4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000001_a03c6a92.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000002_6797e4fa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000002_6797e4fa.szar new file mode 100644 index 00000000..ec0324b2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000002_6797e4fa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000003_5d90797f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000003_5d90797f.szar new file mode 100644 index 00000000..01684222 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000003_5d90797f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000004_d40e0a95.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000004_d40e0a95.szar new file mode 100644 index 00000000..5610530f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000004_d40e0a95.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000005_70dcf4ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000005_70dcf4ce.szar new file mode 100644 index 00000000..d743f4a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000005_70dcf4ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000006_b2623448.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000006_b2623448.szar new file mode 100644 index 00000000..5e213b63 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000006_b2623448.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000007_b5174f29.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000007_b5174f29.szar new file mode 100644 index 00000000..0b268761 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000007_b5174f29.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000008_81e6636a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000008_81e6636a.szar new file mode 100644 index 00000000..b8cda267 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000008_81e6636a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000009_311501f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000009_311501f0.szar new file mode 100644 index 00000000..94d21662 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000009_311501f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000010_92be20b9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000010_92be20b9.szar new file mode 100644 index 00000000..d0c4b1ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000010_92be20b9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000011_33bb3845.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000011_33bb3845.szar new file mode 100644 index 00000000..964453f3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000011_33bb3845.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000012_fa763038.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000012_fa763038.szar new file mode 100644 index 00000000..57ffa4f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000012_fa763038.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000013_fa0b52b3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000013_fa0b52b3.szar new file mode 100644 index 00000000..ba574a10 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000013_fa0b52b3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000014_74b434da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000014_74b434da.szar new file mode 100644 index 00000000..d6fd86bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000014_74b434da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000015_57799865.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000015_57799865.szar new file mode 100644 index 00000000..ed95c71f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000015_57799865.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000016_bffe057f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000016_bffe057f.szar new file mode 100644 index 00000000..28f05fee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000016_bffe057f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000017_e069d80d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000017_e069d80d.szar new file mode 100644 index 00000000..063029e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000017_e069d80d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000018_3e0be529.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000018_3e0be529.szar new file mode 100644 index 00000000..f28f1d67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000018_3e0be529.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000019_d6039808.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000019_d6039808.szar new file mode 100644 index 00000000..fe62322f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000019_d6039808.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000020_1a38394f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000020_1a38394f.szar new file mode 100644 index 00000000..203222cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000020_1a38394f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000021_c4d98def.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000021_c4d98def.szar new file mode 100644 index 00000000..0cdf7740 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000021_c4d98def.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000022_6a15cb9f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000022_6a15cb9f.szar new file mode 100644 index 00000000..4391f0bd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000022_6a15cb9f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000023_7775b7a4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000023_7775b7a4.szar new file mode 100644 index 00000000..373ae16c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000023_7775b7a4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000024_2e230700.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000024_2e230700.szar new file mode 100644 index 00000000..11a59f19 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000024_2e230700.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000025_e323e694.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000025_e323e694.szar new file mode 100644 index 00000000..2cdd446e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000025_e323e694.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000026_0c271067.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000026_0c271067.szar new file mode 100644 index 00000000..c2184c2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000026_0c271067.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000027_a93984b6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000027_a93984b6.szar new file mode 100644 index 00000000..0d82111c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000027_a93984b6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000028_60074cc8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000028_60074cc8.szar new file mode 100644 index 00000000..9b99ec4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/archive/delta_00000000000000000028_60074cc8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000001_099ef19f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000001_099ef19f.szcp new file mode 100644 index 00000000..bd91d56b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000001_099ef19f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000002_63e39bce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000002_63e39bce.szcp new file mode 100644 index 00000000..56c984d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000002_63e39bce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000003_812e71d9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000003_812e71d9.szcp new file mode 100644 index 00000000..e58528ca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000003_812e71d9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000004_4fd1cc38.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000004_4fd1cc38.szcp new file mode 100644 index 00000000..de722be6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000004_4fd1cc38.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000005_349c1fbe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000005_349c1fbe.szcp new file mode 100644 index 00000000..c927b7a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000005_349c1fbe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000006_50412f3d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000006_50412f3d.szcp new file mode 100644 index 00000000..ba664286 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000006_50412f3d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000007_68566e9e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000007_68566e9e.szcp new file mode 100644 index 00000000..b0999eda Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000007_68566e9e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000008_eaee319e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000008_eaee319e.szcp new file mode 100644 index 00000000..8d580f97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000008_eaee319e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000009_08447de8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000009_08447de8.szcp new file mode 100644 index 00000000..a30d3b7c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000009_08447de8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000010_daef9b4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000010_daef9b4d.szcp new file mode 100644 index 00000000..6d0ed575 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000010_daef9b4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000011_ecc3c7e0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000011_ecc3c7e0.szcp new file mode 100644 index 00000000..d1d8f068 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000011_ecc3c7e0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000012_bf7dfdac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000012_bf7dfdac.szcp new file mode 100644 index 00000000..ab72f21f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000012_bf7dfdac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000013_2d67c8d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000013_2d67c8d6.szcp new file mode 100644 index 00000000..59b974b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000013_2d67c8d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000014_cf506b6f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000014_cf506b6f.szcp new file mode 100644 index 00000000..fddf8c0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000014_cf506b6f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000015_18858296.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000015_18858296.szcp new file mode 100644 index 00000000..74bcae11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000015_18858296.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000016_71c192ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000016_71c192ce.szcp new file mode 100644 index 00000000..c361feed Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000016_71c192ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000017_a83286f9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000017_a83286f9.szcp new file mode 100644 index 00000000..6436e080 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000017_a83286f9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000018_aa4f13c6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000018_aa4f13c6.szcp new file mode 100644 index 00000000..af561442 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000018_aa4f13c6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000019_968d27a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000019_968d27a9.szcp new file mode 100644 index 00000000..f27f40da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000019_968d27a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000020_9e30aa5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000020_9e30aa5b.szcp new file mode 100644 index 00000000..370fa277 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000020_9e30aa5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000021_b1573ed2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000021_b1573ed2.szcp new file mode 100644 index 00000000..9e0e2d41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000021_b1573ed2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000022_b419590c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000022_b419590c.szcp new file mode 100644 index 00000000..2125c8ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000022_b419590c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000023_4d65770f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000023_4d65770f.szcp new file mode 100644 index 00000000..4df516c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000023_4d65770f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000024_d7ed7398.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000024_d7ed7398.szcp new file mode 100644 index 00000000..3985c03d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000024_d7ed7398.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000025_81dfdbed.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000025_81dfdbed.szcp new file mode 100644 index 00000000..59c8ec8b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000025_81dfdbed.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000026_34fff673.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000026_34fff673.szcp new file mode 100644 index 00000000..3999b2b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000026_34fff673.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000027_1fbc963f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000027_1fbc963f.szcp new file mode 100644 index 00000000..864a3edb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000027_1fbc963f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000028_a18e862a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000028_a18e862a.szcp new file mode 100644 index 00000000..045728eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_047/checkpoints/checkpoint_00000000000000000028_a18e862a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000001_75a49773.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000001_75a49773.szar new file mode 100644 index 00000000..d3bd4738 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000001_75a49773.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000002_a33711c4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000002_a33711c4.szar new file mode 100644 index 00000000..5a7eb3be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000002_a33711c4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000003_39b95fe4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000003_39b95fe4.szar new file mode 100644 index 00000000..aab58d5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000003_39b95fe4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000004_91c3142e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000004_91c3142e.szar new file mode 100644 index 00000000..ea45d5d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000004_91c3142e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000005_6d0c12bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000005_6d0c12bc.szar new file mode 100644 index 00000000..880a91ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000005_6d0c12bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000006_b9778388.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000006_b9778388.szar new file mode 100644 index 00000000..b35a483e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000006_b9778388.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000007_1db9a6ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000007_1db9a6ab.szar new file mode 100644 index 00000000..1ecaed57 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000007_1db9a6ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000008_ecc3516f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000008_ecc3516f.szar new file mode 100644 index 00000000..b3ede2d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000008_ecc3516f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000009_4c4b5f9a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000009_4c4b5f9a.szar new file mode 100644 index 00000000..cef43957 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000009_4c4b5f9a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000010_db9d3fa4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000010_db9d3fa4.szar new file mode 100644 index 00000000..e0486b53 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000010_db9d3fa4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000011_604b2906.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000011_604b2906.szar new file mode 100644 index 00000000..6ef14a2f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000011_604b2906.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000012_245b7e18.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000012_245b7e18.szar new file mode 100644 index 00000000..635a8eba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000012_245b7e18.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000013_ec1f5409.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000013_ec1f5409.szar new file mode 100644 index 00000000..c8a6c7e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000013_ec1f5409.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000014_33577871.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000014_33577871.szar new file mode 100644 index 00000000..f6d6dd4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000014_33577871.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000015_bfb031bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000015_bfb031bd.szar new file mode 100644 index 00000000..bd68c283 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000015_bfb031bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000016_9b2b9480.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000016_9b2b9480.szar new file mode 100644 index 00000000..a0040da6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000016_9b2b9480.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000017_de3d2ddc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000017_de3d2ddc.szar new file mode 100644 index 00000000..612fc3af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000017_de3d2ddc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000018_af069713.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000018_af069713.szar new file mode 100644 index 00000000..a6b05539 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000018_af069713.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000019_cd4b81bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000019_cd4b81bf.szar new file mode 100644 index 00000000..629199f8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000019_cd4b81bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000020_14b1f1d2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000020_14b1f1d2.szar new file mode 100644 index 00000000..eb9ef7d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000020_14b1f1d2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000021_c0133d80.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000021_c0133d80.szar new file mode 100644 index 00000000..61ba4daf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000021_c0133d80.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000022_22cd4ede.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000022_22cd4ede.szar new file mode 100644 index 00000000..f0525346 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000022_22cd4ede.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000023_d0471e8e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000023_d0471e8e.szar new file mode 100644 index 00000000..010a3e56 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000023_d0471e8e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000024_9f6d15d7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000024_9f6d15d7.szar new file mode 100644 index 00000000..9e4e79af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000024_9f6d15d7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000025_af7f4ff0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000025_af7f4ff0.szar new file mode 100644 index 00000000..c3a48259 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000025_af7f4ff0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000026_ae1b2c44.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000026_ae1b2c44.szar new file mode 100644 index 00000000..a5d3c2ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000026_ae1b2c44.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000027_2b595a2c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000027_2b595a2c.szar new file mode 100644 index 00000000..0c8ad3ef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000027_2b595a2c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000028_39aeed81.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000028_39aeed81.szar new file mode 100644 index 00000000..0595c4eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000028_39aeed81.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000029_6380f89e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000029_6380f89e.szar new file mode 100644 index 00000000..1e428e4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000029_6380f89e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000030_5c68b3d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000030_5c68b3d4.szar new file mode 100644 index 00000000..e773f194 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000030_5c68b3d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000031_9e2efd1a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000031_9e2efd1a.szar new file mode 100644 index 00000000..261eee58 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000031_9e2efd1a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000032_29b6b05a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000032_29b6b05a.szar new file mode 100644 index 00000000..90dc4c55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000032_29b6b05a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000033_46ee39fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000033_46ee39fd.szar new file mode 100644 index 00000000..cd081b6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000033_46ee39fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000034_6d884ea2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000034_6d884ea2.szar new file mode 100644 index 00000000..de75c270 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000034_6d884ea2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000035_07b96188.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000035_07b96188.szar new file mode 100644 index 00000000..1ff8145d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000035_07b96188.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000036_e41ca2ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000036_e41ca2ce.szar new file mode 100644 index 00000000..af52fb0d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000036_e41ca2ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000037_98109de3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000037_98109de3.szar new file mode 100644 index 00000000..b1ab8ab3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000037_98109de3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000038_603b30f0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000038_603b30f0.szar new file mode 100644 index 00000000..9d60579d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000038_603b30f0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000039_af992417.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000039_af992417.szar new file mode 100644 index 00000000..160ef0c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000039_af992417.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000040_7aa8878a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000040_7aa8878a.szar new file mode 100644 index 00000000..b286a190 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000040_7aa8878a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000041_a8ed4963.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000041_a8ed4963.szar new file mode 100644 index 00000000..f16fa1a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000041_a8ed4963.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000042_cd0b8092.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000042_cd0b8092.szar new file mode 100644 index 00000000..144e5680 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000042_cd0b8092.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000043_d1482b7b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000043_d1482b7b.szar new file mode 100644 index 00000000..6b74565c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/archive/delta_00000000000000000043_d1482b7b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000001_08c5e394.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000001_08c5e394.szcp new file mode 100644 index 00000000..39d7baf1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000001_08c5e394.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000002_d684f239.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000002_d684f239.szcp new file mode 100644 index 00000000..35911bab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000002_d684f239.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000003_aee7d80f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000003_aee7d80f.szcp new file mode 100644 index 00000000..d4d73f8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000003_aee7d80f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000004_0d25e4bc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000004_0d25e4bc.szcp new file mode 100644 index 00000000..ea7cdee8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000004_0d25e4bc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000005_1b98f882.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000005_1b98f882.szcp new file mode 100644 index 00000000..f63cbf40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000005_1b98f882.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000006_49dcd214.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000006_49dcd214.szcp new file mode 100644 index 00000000..fe4c404d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000006_49dcd214.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000007_06cd9729.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000007_06cd9729.szcp new file mode 100644 index 00000000..2e57293c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000007_06cd9729.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000008_5abbabf0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000008_5abbabf0.szcp new file mode 100644 index 00000000..1c469819 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000008_5abbabf0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000009_42392848.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000009_42392848.szcp new file mode 100644 index 00000000..62746d89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000009_42392848.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000010_f0b107b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000010_f0b107b6.szcp new file mode 100644 index 00000000..2717d956 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000010_f0b107b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000011_3586228f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000011_3586228f.szcp new file mode 100644 index 00000000..c4626509 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000011_3586228f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000012_28b583f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000012_28b583f2.szcp new file mode 100644 index 00000000..d6075b69 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000012_28b583f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000013_3c9057da.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000013_3c9057da.szcp new file mode 100644 index 00000000..1eca05ce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000013_3c9057da.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000014_f42cbe89.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000014_f42cbe89.szcp new file mode 100644 index 00000000..a4f9f53c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000014_f42cbe89.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000015_6cf4f33e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000015_6cf4f33e.szcp new file mode 100644 index 00000000..278fa8c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000015_6cf4f33e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000016_b2418f75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000016_b2418f75.szcp new file mode 100644 index 00000000..0111afb0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000016_b2418f75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000017_bb33e6ad.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000017_bb33e6ad.szcp new file mode 100644 index 00000000..0036b740 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000017_bb33e6ad.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000018_0b75bac7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000018_0b75bac7.szcp new file mode 100644 index 00000000..c6befa88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000018_0b75bac7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000019_4f1cc621.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000019_4f1cc621.szcp new file mode 100644 index 00000000..8166894a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000019_4f1cc621.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000020_54449bc0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000020_54449bc0.szcp new file mode 100644 index 00000000..2da844c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000020_54449bc0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000021_52ac8bc8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000021_52ac8bc8.szcp new file mode 100644 index 00000000..9f30e6bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000021_52ac8bc8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000022_3299d6fb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000022_3299d6fb.szcp new file mode 100644 index 00000000..66d6f938 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000022_3299d6fb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000023_6b1cec90.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000023_6b1cec90.szcp new file mode 100644 index 00000000..f30f0bfa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000023_6b1cec90.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000024_e5a5737b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000024_e5a5737b.szcp new file mode 100644 index 00000000..9308adff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000024_e5a5737b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000025_b6bbe94a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000025_b6bbe94a.szcp new file mode 100644 index 00000000..8ee8a7da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000025_b6bbe94a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000026_5093766f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000026_5093766f.szcp new file mode 100644 index 00000000..33ba95c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000026_5093766f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000027_a4cee4f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000027_a4cee4f5.szcp new file mode 100644 index 00000000..da22dcb6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000027_a4cee4f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000028_7323ced7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000028_7323ced7.szcp new file mode 100644 index 00000000..1324b311 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000028_7323ced7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000029_4114f3b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000029_4114f3b9.szcp new file mode 100644 index 00000000..5c6d3148 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000029_4114f3b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000030_e1fabcbb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000030_e1fabcbb.szcp new file mode 100644 index 00000000..2408e0dd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000030_e1fabcbb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000031_a6fcbc42.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000031_a6fcbc42.szcp new file mode 100644 index 00000000..d5cbbfb3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000031_a6fcbc42.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000032_0fbe4e7d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000032_0fbe4e7d.szcp new file mode 100644 index 00000000..18da3c55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000032_0fbe4e7d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000033_b6b71463.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000033_b6b71463.szcp new file mode 100644 index 00000000..5c3d8ab2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000033_b6b71463.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000034_a6809511.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000034_a6809511.szcp new file mode 100644 index 00000000..e5935517 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000034_a6809511.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000035_b0c3e27d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000035_b0c3e27d.szcp new file mode 100644 index 00000000..d358de4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000035_b0c3e27d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000036_0ec09067.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000036_0ec09067.szcp new file mode 100644 index 00000000..214d0a5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000036_0ec09067.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000037_617e540a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000037_617e540a.szcp new file mode 100644 index 00000000..5448bb46 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000037_617e540a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000038_a9d96f94.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000038_a9d96f94.szcp new file mode 100644 index 00000000..b8665498 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000038_a9d96f94.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000039_c5a70a27.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000039_c5a70a27.szcp new file mode 100644 index 00000000..f7141d4d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000039_c5a70a27.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000040_e754a41c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000040_e754a41c.szcp new file mode 100644 index 00000000..2ba0c728 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000040_e754a41c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000041_62d9fd7e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000041_62d9fd7e.szcp new file mode 100644 index 00000000..3d38d491 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000041_62d9fd7e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000042_3212a273.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000042_3212a273.szcp new file mode 100644 index 00000000..3ce729a9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000042_3212a273.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000043_16d28119.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000043_16d28119.szcp new file mode 100644 index 00000000..b9a9c55f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_048/checkpoints/checkpoint_00000000000000000043_16d28119.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000001_a7852718.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000001_a7852718.szar new file mode 100644 index 00000000..71dc974a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000001_a7852718.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000002_1cb6384b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000002_1cb6384b.szar new file mode 100644 index 00000000..e41f7872 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000002_1cb6384b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000003_682ae36f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000003_682ae36f.szar new file mode 100644 index 00000000..63ec6e9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000003_682ae36f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000004_6532b088.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000004_6532b088.szar new file mode 100644 index 00000000..31a89025 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000004_6532b088.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000005_2ccd21bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000005_2ccd21bc.szar new file mode 100644 index 00000000..4a062364 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000005_2ccd21bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000006_3ad3c7d8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000006_3ad3c7d8.szar new file mode 100644 index 00000000..68bbeef6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000006_3ad3c7d8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000007_aee0a731.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000007_aee0a731.szar new file mode 100644 index 00000000..0b9ca4ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000007_aee0a731.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000008_5e974134.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000008_5e974134.szar new file mode 100644 index 00000000..64209b1e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000008_5e974134.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000009_9e2fa51c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000009_9e2fa51c.szar new file mode 100644 index 00000000..1c0135e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000009_9e2fa51c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000010_96ef32d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000010_96ef32d4.szar new file mode 100644 index 00000000..c51be11d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000010_96ef32d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000011_6173c903.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000011_6173c903.szar new file mode 100644 index 00000000..d91443c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000011_6173c903.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000012_2e30352e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000012_2e30352e.szar new file mode 100644 index 00000000..69648c26 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000012_2e30352e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000013_880a3d6c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000013_880a3d6c.szar new file mode 100644 index 00000000..a022662d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000013_880a3d6c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000014_0931363f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000014_0931363f.szar new file mode 100644 index 00000000..fbcf9230 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000014_0931363f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000015_82de2708.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000015_82de2708.szar new file mode 100644 index 00000000..cf79098d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000015_82de2708.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000016_eabde8d0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000016_eabde8d0.szar new file mode 100644 index 00000000..e36fd441 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000016_eabde8d0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000017_cd3325bb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000017_cd3325bb.szar new file mode 100644 index 00000000..f4f2166b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000017_cd3325bb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000018_bfe1f888.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000018_bfe1f888.szar new file mode 100644 index 00000000..11e7082f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000018_bfe1f888.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000019_4ba0b495.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000019_4ba0b495.szar new file mode 100644 index 00000000..831e8413 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000019_4ba0b495.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000020_9738abc7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000020_9738abc7.szar new file mode 100644 index 00000000..682cd2cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000020_9738abc7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000021_f71ece39.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000021_f71ece39.szar new file mode 100644 index 00000000..a0925428 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000021_f71ece39.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000022_64530b10.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000022_64530b10.szar new file mode 100644 index 00000000..0167a4bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000022_64530b10.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000023_e52874c4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000023_e52874c4.szar new file mode 100644 index 00000000..fd7e6e42 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000023_e52874c4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000024_7ce773b9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000024_7ce773b9.szar new file mode 100644 index 00000000..4cf87995 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000024_7ce773b9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000025_7d8aabe4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000025_7d8aabe4.szar new file mode 100644 index 00000000..3f1d44bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000025_7d8aabe4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000026_c212f587.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000026_c212f587.szar new file mode 100644 index 00000000..1e8fcc2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000026_c212f587.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000027_02213da8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000027_02213da8.szar new file mode 100644 index 00000000..eb6ed181 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000027_02213da8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000028_4e1a47ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000028_4e1a47ab.szar new file mode 100644 index 00000000..dd054da5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000028_4e1a47ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000029_2e931000.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000029_2e931000.szar new file mode 100644 index 00000000..28401b4a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000029_2e931000.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000030_e092acd7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000030_e092acd7.szar new file mode 100644 index 00000000..9055f89f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000030_e092acd7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000031_cb4df143.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000031_cb4df143.szar new file mode 100644 index 00000000..4a731d97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000031_cb4df143.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000032_50587d30.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000032_50587d30.szar new file mode 100644 index 00000000..b95ddf5a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000032_50587d30.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000033_53d6aa59.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000033_53d6aa59.szar new file mode 100644 index 00000000..57f02b9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/archive/delta_00000000000000000033_53d6aa59.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000001_63f9ee5f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000001_63f9ee5f.szcp new file mode 100644 index 00000000..af7364bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000001_63f9ee5f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000002_c02ad4d3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000002_c02ad4d3.szcp new file mode 100644 index 00000000..89791d3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000002_c02ad4d3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000003_5a8eeeb8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000003_5a8eeeb8.szcp new file mode 100644 index 00000000..ba8274b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000003_5a8eeeb8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000004_db96e2c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000004_db96e2c8.szcp new file mode 100644 index 00000000..d6e68743 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000004_db96e2c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000005_2fb9f169.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000005_2fb9f169.szcp new file mode 100644 index 00000000..bd1699d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000005_2fb9f169.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000006_2dc1494e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000006_2dc1494e.szcp new file mode 100644 index 00000000..4474d153 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000006_2dc1494e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000007_dbef017e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000007_dbef017e.szcp new file mode 100644 index 00000000..53ced336 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000007_dbef017e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000008_05084033.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000008_05084033.szcp new file mode 100644 index 00000000..b1bd5304 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000008_05084033.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000009_482abbde.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000009_482abbde.szcp new file mode 100644 index 00000000..f9d02afb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000009_482abbde.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000010_4822d26e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000010_4822d26e.szcp new file mode 100644 index 00000000..cff77205 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000010_4822d26e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000011_bdc19cf3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000011_bdc19cf3.szcp new file mode 100644 index 00000000..b31354af Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000011_bdc19cf3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000012_d4f27b0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000012_d4f27b0d.szcp new file mode 100644 index 00000000..1fd9be68 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000012_d4f27b0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000013_84d9b9ec.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000013_84d9b9ec.szcp new file mode 100644 index 00000000..1a4752e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000013_84d9b9ec.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000014_3d3854a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000014_3d3854a9.szcp new file mode 100644 index 00000000..7e5ae2b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000014_3d3854a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000015_d6b9a612.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000015_d6b9a612.szcp new file mode 100644 index 00000000..4479da0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000015_d6b9a612.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000016_de67b915.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000016_de67b915.szcp new file mode 100644 index 00000000..74db8d10 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000016_de67b915.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000017_a418b40d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000017_a418b40d.szcp new file mode 100644 index 00000000..1af50815 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000017_a418b40d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000018_519d438c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000018_519d438c.szcp new file mode 100644 index 00000000..a812138f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000018_519d438c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000019_fec8e27f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000019_fec8e27f.szcp new file mode 100644 index 00000000..17ede167 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000019_fec8e27f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000020_d86244f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000020_d86244f7.szcp new file mode 100644 index 00000000..72bd6d69 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000020_d86244f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000021_631f3997.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000021_631f3997.szcp new file mode 100644 index 00000000..2de8255d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000021_631f3997.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000022_cbe3cbbd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000022_cbe3cbbd.szcp new file mode 100644 index 00000000..f2e2ccf0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000022_cbe3cbbd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000023_4634ee18.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000023_4634ee18.szcp new file mode 100644 index 00000000..9d767cb8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000023_4634ee18.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000024_3855bbc4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000024_3855bbc4.szcp new file mode 100644 index 00000000..11602728 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000024_3855bbc4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000025_cfef5f13.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000025_cfef5f13.szcp new file mode 100644 index 00000000..6212ba7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000025_cfef5f13.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000026_0ba6b5d6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000026_0ba6b5d6.szcp new file mode 100644 index 00000000..47aafe26 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000026_0ba6b5d6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000027_c88f8f78.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000027_c88f8f78.szcp new file mode 100644 index 00000000..a79806b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000027_c88f8f78.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000028_f4ead06a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000028_f4ead06a.szcp new file mode 100644 index 00000000..41477aef Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000028_f4ead06a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000029_100218ef.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000029_100218ef.szcp new file mode 100644 index 00000000..eff0e9d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000029_100218ef.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000030_6baa855f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000030_6baa855f.szcp new file mode 100644 index 00000000..a7230251 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000030_6baa855f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000031_29c8dff8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000031_29c8dff8.szcp new file mode 100644 index 00000000..6939e6de Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000031_29c8dff8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000032_927ca40d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000032_927ca40d.szcp new file mode 100644 index 00000000..1110c8d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000032_927ca40d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000033_6716d99c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000033_6716d99c.szcp new file mode 100644 index 00000000..8bdc25cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_049/checkpoints/checkpoint_00000000000000000033_6716d99c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000001_b882b80f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000001_b882b80f.szar new file mode 100644 index 00000000..ea0c5aa8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000001_b882b80f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000002_8c102a6c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000002_8c102a6c.szar new file mode 100644 index 00000000..382c7780 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000002_8c102a6c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000003_ca77c237.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000003_ca77c237.szar new file mode 100644 index 00000000..1f5b6214 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000003_ca77c237.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000004_71103dcb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000004_71103dcb.szar new file mode 100644 index 00000000..fd5f5725 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000004_71103dcb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000005_6ebf4d6b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000005_6ebf4d6b.szar new file mode 100644 index 00000000..b1dfa09f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000005_6ebf4d6b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000006_f287baa9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000006_f287baa9.szar new file mode 100644 index 00000000..c6d66c4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000006_f287baa9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000007_16037ecd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000007_16037ecd.szar new file mode 100644 index 00000000..7d338365 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000007_16037ecd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000008_add7f91b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000008_add7f91b.szar new file mode 100644 index 00000000..1d8e09a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000008_add7f91b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000009_b418953d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000009_b418953d.szar new file mode 100644 index 00000000..2b130544 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000009_b418953d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000010_667021af.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000010_667021af.szar new file mode 100644 index 00000000..fb9b49d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000010_667021af.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000011_510d745c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000011_510d745c.szar new file mode 100644 index 00000000..303d19d6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000011_510d745c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000012_f30e6037.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000012_f30e6037.szar new file mode 100644 index 00000000..a0d93f48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000012_f30e6037.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000013_1eeac4e4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000013_1eeac4e4.szar new file mode 100644 index 00000000..e1ed7348 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000013_1eeac4e4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000014_483d1fd8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000014_483d1fd8.szar new file mode 100644 index 00000000..5be186c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000014_483d1fd8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000015_523aed75.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000015_523aed75.szar new file mode 100644 index 00000000..ce169ed3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000015_523aed75.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000016_35753f0c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000016_35753f0c.szar new file mode 100644 index 00000000..27c89833 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000016_35753f0c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000017_ae47d69e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000017_ae47d69e.szar new file mode 100644 index 00000000..6cba5785 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000017_ae47d69e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000018_1d236f2a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000018_1d236f2a.szar new file mode 100644 index 00000000..b7ab9b03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000018_1d236f2a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000019_4913715f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000019_4913715f.szar new file mode 100644 index 00000000..e00c5509 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000019_4913715f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000020_dda46cf9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000020_dda46cf9.szar new file mode 100644 index 00000000..7e03a3a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000020_dda46cf9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000021_394622da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000021_394622da.szar new file mode 100644 index 00000000..a094dfb5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000021_394622da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000022_acdb6c92.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000022_acdb6c92.szar new file mode 100644 index 00000000..a5b61e1d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000022_acdb6c92.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000023_61f704a7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000023_61f704a7.szar new file mode 100644 index 00000000..a66dbfae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000023_61f704a7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000024_05d9287a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000024_05d9287a.szar new file mode 100644 index 00000000..5e7aba36 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000024_05d9287a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000025_f33f8a06.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000025_f33f8a06.szar new file mode 100644 index 00000000..1444c9d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/archive/delta_00000000000000000025_f33f8a06.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000001_b60af57d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000001_b60af57d.szcp new file mode 100644 index 00000000..e7c65be5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000001_b60af57d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000002_f7540e69.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000002_f7540e69.szcp new file mode 100644 index 00000000..8fc811b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000002_f7540e69.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000003_3b31e4a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000003_3b31e4a8.szcp new file mode 100644 index 00000000..0665bad7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000003_3b31e4a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000004_732baa5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000004_732baa5b.szcp new file mode 100644 index 00000000..ccb7df27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000004_732baa5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000005_937ce2ea.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000005_937ce2ea.szcp new file mode 100644 index 00000000..a4cfe467 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000005_937ce2ea.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000006_57d5ace1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000006_57d5ace1.szcp new file mode 100644 index 00000000..5d8fe0e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000006_57d5ace1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000007_3b566e39.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000007_3b566e39.szcp new file mode 100644 index 00000000..11266e11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000007_3b566e39.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000008_56dd2b5b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000008_56dd2b5b.szcp new file mode 100644 index 00000000..e6e85895 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000008_56dd2b5b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000009_b6b6ee32.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000009_b6b6ee32.szcp new file mode 100644 index 00000000..ad0a52f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000009_b6b6ee32.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000010_0544ce1e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000010_0544ce1e.szcp new file mode 100644 index 00000000..21b7ac8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000010_0544ce1e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000011_3db50fee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000011_3db50fee.szcp new file mode 100644 index 00000000..dc431c25 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000011_3db50fee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000012_c1f68f1c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000012_c1f68f1c.szcp new file mode 100644 index 00000000..b97637fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000012_c1f68f1c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000013_dfa2d8a4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000013_dfa2d8a4.szcp new file mode 100644 index 00000000..73858284 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000013_dfa2d8a4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000014_2067ad57.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000014_2067ad57.szcp new file mode 100644 index 00000000..1ee14bd4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000014_2067ad57.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000015_6d5ac196.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000015_6d5ac196.szcp new file mode 100644 index 00000000..5d940986 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000015_6d5ac196.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000016_7506dd6d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000016_7506dd6d.szcp new file mode 100644 index 00000000..673ce966 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000016_7506dd6d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000017_0a7d1c66.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000017_0a7d1c66.szcp new file mode 100644 index 00000000..f5565324 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000017_0a7d1c66.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000018_366f945b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000018_366f945b.szcp new file mode 100644 index 00000000..12910ff1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000018_366f945b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000019_271b37d5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000019_271b37d5.szcp new file mode 100644 index 00000000..37e68c92 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000019_271b37d5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000020_a80126ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000020_a80126ce.szcp new file mode 100644 index 00000000..d10e064e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000020_a80126ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000021_c23f4a04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000021_c23f4a04.szcp new file mode 100644 index 00000000..5bc599c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000021_c23f4a04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000022_5220195c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000022_5220195c.szcp new file mode 100644 index 00000000..f70b9c37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000022_5220195c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000023_4f18fbbe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000023_4f18fbbe.szcp new file mode 100644 index 00000000..f6fb8a55 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000023_4f18fbbe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000024_b5ccddbd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000024_b5ccddbd.szcp new file mode 100644 index 00000000..1f3592aa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000024_b5ccddbd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000025_258da8a9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000025_258da8a9.szcp new file mode 100644 index 00000000..ff046bb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_050/checkpoints/checkpoint_00000000000000000025_258da8a9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000001_350232ea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000001_350232ea.szar new file mode 100644 index 00000000..56f60944 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000001_350232ea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000002_369e51c2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000002_369e51c2.szar new file mode 100644 index 00000000..ce3b8492 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000002_369e51c2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000003_4a06ed67.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000003_4a06ed67.szar new file mode 100644 index 00000000..d7685c26 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000003_4a06ed67.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000004_afcd2411.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000004_afcd2411.szar new file mode 100644 index 00000000..7aa7559e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000004_afcd2411.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000005_b7b04e2c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000005_b7b04e2c.szar new file mode 100644 index 00000000..e303bd91 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000005_b7b04e2c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000006_113e3776.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000006_113e3776.szar new file mode 100644 index 00000000..5b4e7a8c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000006_113e3776.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000007_a571138d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000007_a571138d.szar new file mode 100644 index 00000000..96886a89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000007_a571138d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000008_64353f11.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000008_64353f11.szar new file mode 100644 index 00000000..e7b82d00 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000008_64353f11.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000009_0817ebc4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000009_0817ebc4.szar new file mode 100644 index 00000000..2adb667b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000009_0817ebc4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000010_fb269498.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000010_fb269498.szar new file mode 100644 index 00000000..97554fd4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000010_fb269498.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000011_10c6cc46.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000011_10c6cc46.szar new file mode 100644 index 00000000..36f4b1fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000011_10c6cc46.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000012_7001b90c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000012_7001b90c.szar new file mode 100644 index 00000000..b3b3174d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000012_7001b90c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000013_7de3e2c7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000013_7de3e2c7.szar new file mode 100644 index 00000000..bca30fab Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000013_7de3e2c7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000014_ac946d37.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000014_ac946d37.szar new file mode 100644 index 00000000..9eb9a263 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000014_ac946d37.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000015_ecc5ed94.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000015_ecc5ed94.szar new file mode 100644 index 00000000..c88bbaad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000015_ecc5ed94.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000016_95585f6b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000016_95585f6b.szar new file mode 100644 index 00000000..e9bdbd9e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000016_95585f6b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000017_de13e824.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000017_de13e824.szar new file mode 100644 index 00000000..4b897d19 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000017_de13e824.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000018_c1479f12.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000018_c1479f12.szar new file mode 100644 index 00000000..bdf5571e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000018_c1479f12.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000019_0af11ff2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000019_0af11ff2.szar new file mode 100644 index 00000000..026c1d34 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000019_0af11ff2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000020_270f36c5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000020_270f36c5.szar new file mode 100644 index 00000000..b0818cf9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000020_270f36c5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000021_1c70d48f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000021_1c70d48f.szar new file mode 100644 index 00000000..eda1792f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000021_1c70d48f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000022_234e67da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000022_234e67da.szar new file mode 100644 index 00000000..2f62fcce Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000022_234e67da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000023_fdc211b7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000023_fdc211b7.szar new file mode 100644 index 00000000..ad44ebd6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000023_fdc211b7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000024_6971b1ba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000024_6971b1ba.szar new file mode 100644 index 00000000..76fb277d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000024_6971b1ba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000025_4f48193d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000025_4f48193d.szar new file mode 100644 index 00000000..11cf1b68 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000025_4f48193d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000026_28bb51fd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000026_28bb51fd.szar new file mode 100644 index 00000000..45006e9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000026_28bb51fd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000027_cfc074ac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000027_cfc074ac.szar new file mode 100644 index 00000000..ffa7b9a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/archive/delta_00000000000000000027_cfc074ac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000001_8ca198c4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000001_8ca198c4.szcp new file mode 100644 index 00000000..68fd0d70 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000001_8ca198c4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000002_c6d40157.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000002_c6d40157.szcp new file mode 100644 index 00000000..151c2eaa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000002_c6d40157.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000003_cafe3b22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000003_cafe3b22.szcp new file mode 100644 index 00000000..3170427b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000003_cafe3b22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000004_cc35fe9e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000004_cc35fe9e.szcp new file mode 100644 index 00000000..656e2333 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000004_cc35fe9e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000005_81c58313.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000005_81c58313.szcp new file mode 100644 index 00000000..0cbbaad2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000005_81c58313.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000006_cdd40a56.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000006_cdd40a56.szcp new file mode 100644 index 00000000..313d99bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000006_cdd40a56.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000007_1b5fdc5c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000007_1b5fdc5c.szcp new file mode 100644 index 00000000..77213f2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000007_1b5fdc5c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000008_7a3d5fbf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000008_7a3d5fbf.szcp new file mode 100644 index 00000000..df99471c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000008_7a3d5fbf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000009_011e633d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000009_011e633d.szcp new file mode 100644 index 00000000..8aebbfa5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000009_011e633d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000010_61bacabe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000010_61bacabe.szcp new file mode 100644 index 00000000..72f59d86 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000010_61bacabe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000011_319da0f9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000011_319da0f9.szcp new file mode 100644 index 00000000..71ceae67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000011_319da0f9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000012_1a25dcf9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000012_1a25dcf9.szcp new file mode 100644 index 00000000..39789ca4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000012_1a25dcf9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000013_a64bbbdb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000013_a64bbbdb.szcp new file mode 100644 index 00000000..4386263a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000013_a64bbbdb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000014_90ff76f3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000014_90ff76f3.szcp new file mode 100644 index 00000000..923b3caa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000014_90ff76f3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000015_179bc327.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000015_179bc327.szcp new file mode 100644 index 00000000..4bdd26c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000015_179bc327.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000016_71ffd1a3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000016_71ffd1a3.szcp new file mode 100644 index 00000000..e85b641b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000016_71ffd1a3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000017_56a72627.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000017_56a72627.szcp new file mode 100644 index 00000000..f65b3c34 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000017_56a72627.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000018_729f9ffb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000018_729f9ffb.szcp new file mode 100644 index 00000000..837e2904 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000018_729f9ffb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000019_0a0e0826.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000019_0a0e0826.szcp new file mode 100644 index 00000000..2fecbe64 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000019_0a0e0826.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000020_f4293140.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000020_f4293140.szcp new file mode 100644 index 00000000..77a9c8ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000020_f4293140.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000021_230bf646.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000021_230bf646.szcp new file mode 100644 index 00000000..3f493666 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000021_230bf646.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000022_0b27b33f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000022_0b27b33f.szcp new file mode 100644 index 00000000..85d96441 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000022_0b27b33f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000023_f6313250.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000023_f6313250.szcp new file mode 100644 index 00000000..8d105095 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000023_f6313250.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000024_19d3d48b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000024_19d3d48b.szcp new file mode 100644 index 00000000..f36d4455 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000024_19d3d48b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000025_4de284b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000025_4de284b1.szcp new file mode 100644 index 00000000..87ea05c9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000025_4de284b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000026_46a47865.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000026_46a47865.szcp new file mode 100644 index 00000000..b765aa71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000026_46a47865.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000027_83067d7d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000027_83067d7d.szcp new file mode 100644 index 00000000..130a25b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_051/checkpoints/checkpoint_00000000000000000027_83067d7d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000001_77e3dfdf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000001_77e3dfdf.szar new file mode 100644 index 00000000..1885ef82 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000001_77e3dfdf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000002_f797df40.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000002_f797df40.szar new file mode 100644 index 00000000..238ffad4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000002_f797df40.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000003_5b0378c8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000003_5b0378c8.szar new file mode 100644 index 00000000..114ee8e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000003_5b0378c8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000004_9a088fd5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000004_9a088fd5.szar new file mode 100644 index 00000000..9a6561c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000004_9a088fd5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000005_b2455009.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000005_b2455009.szar new file mode 100644 index 00000000..a7b15f32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000005_b2455009.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000006_fb55901d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000006_fb55901d.szar new file mode 100644 index 00000000..a6236eb9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000006_fb55901d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000007_124c72eb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000007_124c72eb.szar new file mode 100644 index 00000000..2387b5f0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000007_124c72eb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000008_076c3eae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000008_076c3eae.szar new file mode 100644 index 00000000..39783f03 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000008_076c3eae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000009_67e176bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000009_67e176bf.szar new file mode 100644 index 00000000..cd3452b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000009_67e176bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000010_858ddab3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000010_858ddab3.szar new file mode 100644 index 00000000..55b7d6a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000010_858ddab3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000011_007dd430.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000011_007dd430.szar new file mode 100644 index 00000000..4f43178b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000011_007dd430.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000012_d0d467bc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000012_d0d467bc.szar new file mode 100644 index 00000000..166df9c7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000012_d0d467bc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000013_527b3c23.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000013_527b3c23.szar new file mode 100644 index 00000000..7bd6855c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000013_527b3c23.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000014_d79a99cd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000014_d79a99cd.szar new file mode 100644 index 00000000..79ccb458 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000014_d79a99cd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000015_3b45fd56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000015_3b45fd56.szar new file mode 100644 index 00000000..8d99fd29 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000015_3b45fd56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000016_c3596160.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000016_c3596160.szar new file mode 100644 index 00000000..c43538c0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000016_c3596160.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000017_c90cf7c8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000017_c90cf7c8.szar new file mode 100644 index 00000000..13674192 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000017_c90cf7c8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000018_9908d80b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000018_9908d80b.szar new file mode 100644 index 00000000..6700d7c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000018_9908d80b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000019_157baa78.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000019_157baa78.szar new file mode 100644 index 00000000..d1d9b3d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000019_157baa78.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000020_7e410543.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000020_7e410543.szar new file mode 100644 index 00000000..ac1e282b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000020_7e410543.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000021_81cd2924.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000021_81cd2924.szar new file mode 100644 index 00000000..ff15eb50 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000021_81cd2924.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000022_24a8c2a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000022_24a8c2a2.szar new file mode 100644 index 00000000..c7aabb5b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000022_24a8c2a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000023_f85fcffe.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000023_f85fcffe.szar new file mode 100644 index 00000000..58e4f053 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000023_f85fcffe.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000024_b6f39be6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000024_b6f39be6.szar new file mode 100644 index 00000000..110a3b40 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000024_b6f39be6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000025_19ec0cda.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000025_19ec0cda.szar new file mode 100644 index 00000000..d83be363 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000025_19ec0cda.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000026_e7156238.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000026_e7156238.szar new file mode 100644 index 00000000..34d6029b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000026_e7156238.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000027_a70a3bf0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000027_a70a3bf0.szar new file mode 100644 index 00000000..37f24f71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000027_a70a3bf0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000028_f0ec761f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000028_f0ec761f.szar new file mode 100644 index 00000000..00134692 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000028_f0ec761f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000029_640fec28.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000029_640fec28.szar new file mode 100644 index 00000000..a1d689bf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000029_640fec28.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000030_1f3fa646.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000030_1f3fa646.szar new file mode 100644 index 00000000..0b0b5bcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000030_1f3fa646.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000031_5c4ed58d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000031_5c4ed58d.szar new file mode 100644 index 00000000..09ffd2ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000031_5c4ed58d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000032_032d8b61.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000032_032d8b61.szar new file mode 100644 index 00000000..6d979b10 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000032_032d8b61.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000033_ef5dc4a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000033_ef5dc4a2.szar new file mode 100644 index 00000000..abbee54c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000033_ef5dc4a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000034_ade9de72.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000034_ade9de72.szar new file mode 100644 index 00000000..b4f3d3f2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000034_ade9de72.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000035_7214099d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000035_7214099d.szar new file mode 100644 index 00000000..ae305661 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000035_7214099d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000036_54443939.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000036_54443939.szar new file mode 100644 index 00000000..e1501b1f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000036_54443939.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000037_bb2efd8e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000037_bb2efd8e.szar new file mode 100644 index 00000000..bc239a59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/archive/delta_00000000000000000037_bb2efd8e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000001_87db158d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000001_87db158d.szcp new file mode 100644 index 00000000..0e26ff6d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000001_87db158d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000002_9bb2533b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000002_9bb2533b.szcp new file mode 100644 index 00000000..42b5ea1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000002_9bb2533b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000003_09e1c455.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000003_09e1c455.szcp new file mode 100644 index 00000000..35902508 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000003_09e1c455.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000004_a70d850e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000004_a70d850e.szcp new file mode 100644 index 00000000..e6a9c78d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000004_a70d850e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000005_25646b22.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000005_25646b22.szcp new file mode 100644 index 00000000..b88e3216 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000005_25646b22.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000006_a3b2b3e3.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000006_a3b2b3e3.szcp new file mode 100644 index 00000000..5cdf0e4b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000006_a3b2b3e3.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000007_89dcf322.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000007_89dcf322.szcp new file mode 100644 index 00000000..97c4d741 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000007_89dcf322.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000008_364b99f0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000008_364b99f0.szcp new file mode 100644 index 00000000..fd0c0757 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000008_364b99f0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000009_188e0b82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000009_188e0b82.szcp new file mode 100644 index 00000000..7c7b3651 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000009_188e0b82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000010_1c4accd8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000010_1c4accd8.szcp new file mode 100644 index 00000000..92a69c90 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000010_1c4accd8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000011_9bb229f6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000011_9bb229f6.szcp new file mode 100644 index 00000000..8e87419c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000011_9bb229f6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000012_adb1b0c1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000012_adb1b0c1.szcp new file mode 100644 index 00000000..52c3f481 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000012_adb1b0c1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000013_13d24045.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000013_13d24045.szcp new file mode 100644 index 00000000..7d3a8d05 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000013_13d24045.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000014_c60bf192.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000014_c60bf192.szcp new file mode 100644 index 00000000..cc0be93d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000014_c60bf192.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000015_78720f70.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000015_78720f70.szcp new file mode 100644 index 00000000..5f7c30c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000015_78720f70.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000016_f384ae1a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000016_f384ae1a.szcp new file mode 100644 index 00000000..de4fe9e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000016_f384ae1a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000017_2d30e977.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000017_2d30e977.szcp new file mode 100644 index 00000000..e5ef0d49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000017_2d30e977.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000018_781e83b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000018_781e83b9.szcp new file mode 100644 index 00000000..78e02dcc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000018_781e83b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000019_7e738200.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000019_7e738200.szcp new file mode 100644 index 00000000..fdd8a201 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000019_7e738200.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000020_e372cfca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000020_e372cfca.szcp new file mode 100644 index 00000000..ea93d7d7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000020_e372cfca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000021_51074fde.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000021_51074fde.szcp new file mode 100644 index 00000000..fb892e44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000021_51074fde.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000022_432bfcbd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000022_432bfcbd.szcp new file mode 100644 index 00000000..47dc3951 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000022_432bfcbd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000023_7cbb1e0d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000023_7cbb1e0d.szcp new file mode 100644 index 00000000..6f44a4e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000023_7cbb1e0d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000024_7bee44a8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000024_7bee44a8.szcp new file mode 100644 index 00000000..c6549f49 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000024_7bee44a8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000025_a3d9f4c0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000025_a3d9f4c0.szcp new file mode 100644 index 00000000..d0f2649a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000025_a3d9f4c0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000026_d4be2211.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000026_d4be2211.szcp new file mode 100644 index 00000000..70497738 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000026_d4be2211.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000027_d7fb5477.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000027_d7fb5477.szcp new file mode 100644 index 00000000..6cb32d4e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000027_d7fb5477.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000028_aa7f1abd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000028_aa7f1abd.szcp new file mode 100644 index 00000000..24382249 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000028_aa7f1abd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000029_61ebd961.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000029_61ebd961.szcp new file mode 100644 index 00000000..8f2c9efa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000029_61ebd961.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000030_39ef3fb8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000030_39ef3fb8.szcp new file mode 100644 index 00000000..8c0923f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000030_39ef3fb8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000031_2a4e4b8a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000031_2a4e4b8a.szcp new file mode 100644 index 00000000..c934baca Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000031_2a4e4b8a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000032_fba12dce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000032_fba12dce.szcp new file mode 100644 index 00000000..48c0ffd1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000032_fba12dce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000033_203b26a0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000033_203b26a0.szcp new file mode 100644 index 00000000..82d4bbb2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000033_203b26a0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000034_101ed0f5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000034_101ed0f5.szcp new file mode 100644 index 00000000..3598457a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000034_101ed0f5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000035_e59a6799.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000035_e59a6799.szcp new file mode 100644 index 00000000..52ce6c7b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000035_e59a6799.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000036_200d296c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000036_200d296c.szcp new file mode 100644 index 00000000..cf1951b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000036_200d296c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000037_79bf3201.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000037_79bf3201.szcp new file mode 100644 index 00000000..6fff9956 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_052/checkpoints/checkpoint_00000000000000000037_79bf3201.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000001_4780050d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000001_4780050d.szar new file mode 100644 index 00000000..68114ada Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000001_4780050d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000002_fe50a483.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000002_fe50a483.szar new file mode 100644 index 00000000..45ab8813 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000002_fe50a483.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000003_fbe9b649.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000003_fbe9b649.szar new file mode 100644 index 00000000..233b007d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000003_fbe9b649.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000004_e814a1cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000004_e814a1cf.szar new file mode 100644 index 00000000..e499ea0b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000004_e814a1cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000005_d499b8fc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000005_d499b8fc.szar new file mode 100644 index 00000000..f687eaff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000005_d499b8fc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000006_494305a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000006_494305a0.szar new file mode 100644 index 00000000..9b075f01 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000006_494305a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000007_c582c6da.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000007_c582c6da.szar new file mode 100644 index 00000000..1a515506 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000007_c582c6da.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000008_828e00aa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000008_828e00aa.szar new file mode 100644 index 00000000..e58ef38d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000008_828e00aa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000009_d9d8a0ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000009_d9d8a0ab.szar new file mode 100644 index 00000000..50c0d5c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000009_d9d8a0ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000010_26f1a4d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000010_26f1a4d9.szar new file mode 100644 index 00000000..37d195ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000010_26f1a4d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000011_f4dfbbe4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000011_f4dfbbe4.szar new file mode 100644 index 00000000..3374bc23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000011_f4dfbbe4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000012_bae13bf5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000012_bae13bf5.szar new file mode 100644 index 00000000..5ce69084 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000012_bae13bf5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000013_75bce149.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000013_75bce149.szar new file mode 100644 index 00000000..f9c25895 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000013_75bce149.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000014_613a2949.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000014_613a2949.szar new file mode 100644 index 00000000..f98c6f2d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000014_613a2949.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000015_fce290d9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000015_fce290d9.szar new file mode 100644 index 00000000..4ce13ea4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000015_fce290d9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000016_2d517701.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000016_2d517701.szar new file mode 100644 index 00000000..0e30e407 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000016_2d517701.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000017_ec12715a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000017_ec12715a.szar new file mode 100644 index 00000000..2a836a44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000017_ec12715a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000018_7037a32a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000018_7037a32a.szar new file mode 100644 index 00000000..b568487e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000018_7037a32a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000019_7997c56a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000019_7997c56a.szar new file mode 100644 index 00000000..038c450f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000019_7997c56a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000020_9398b453.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000020_9398b453.szar new file mode 100644 index 00000000..00689ec8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000020_9398b453.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000021_87e4ebb8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000021_87e4ebb8.szar new file mode 100644 index 00000000..7e61adb4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000021_87e4ebb8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000022_eb4cf229.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000022_eb4cf229.szar new file mode 100644 index 00000000..d24075b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000022_eb4cf229.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000023_faf8c6bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000023_faf8c6bd.szar new file mode 100644 index 00000000..7a1758b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000023_faf8c6bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000024_c1ba7f0c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000024_c1ba7f0c.szar new file mode 100644 index 00000000..278cf70e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000024_c1ba7f0c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000025_0e6df504.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000025_0e6df504.szar new file mode 100644 index 00000000..5813e6bc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000025_0e6df504.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000026_0c6e2b02.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000026_0c6e2b02.szar new file mode 100644 index 00000000..40849a2e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000026_0c6e2b02.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000027_8934f522.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000027_8934f522.szar new file mode 100644 index 00000000..e575c030 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000027_8934f522.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000028_84aa9fd6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000028_84aa9fd6.szar new file mode 100644 index 00000000..59170356 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000028_84aa9fd6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000029_5afa6e89.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000029_5afa6e89.szar new file mode 100644 index 00000000..b8c7669b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000029_5afa6e89.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000030_dd11d024.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000030_dd11d024.szar new file mode 100644 index 00000000..b6a4d550 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000030_dd11d024.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000031_181a1dbf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000031_181a1dbf.szar new file mode 100644 index 00000000..62cf96c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000031_181a1dbf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000032_04ab82b4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000032_04ab82b4.szar new file mode 100644 index 00000000..f3e07339 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000032_04ab82b4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000033_e234955c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000033_e234955c.szar new file mode 100644 index 00000000..d1f1cedb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000033_e234955c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000034_ff49690a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000034_ff49690a.szar new file mode 100644 index 00000000..6a9476ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000034_ff49690a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000035_3df0c6aa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000035_3df0c6aa.szar new file mode 100644 index 00000000..74f23455 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000035_3df0c6aa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000036_6a1eee62.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000036_6a1eee62.szar new file mode 100644 index 00000000..b4071f3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000036_6a1eee62.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000037_a9978c07.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000037_a9978c07.szar new file mode 100644 index 00000000..bf2a51f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000037_a9978c07.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000038_f2764318.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000038_f2764318.szar new file mode 100644 index 00000000..3332c84d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/archive/delta_00000000000000000038_f2764318.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000001_66e3f8db.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000001_66e3f8db.szcp new file mode 100644 index 00000000..a2dbe0e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000001_66e3f8db.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000002_df468c58.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000002_df468c58.szcp new file mode 100644 index 00000000..d391f3a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000002_df468c58.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000003_2afdc88b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000003_2afdc88b.szcp new file mode 100644 index 00000000..8dd5bf4f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000003_2afdc88b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000004_fe92e17f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000004_fe92e17f.szcp new file mode 100644 index 00000000..d48e5009 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000004_fe92e17f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000005_429b5f25.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000005_429b5f25.szcp new file mode 100644 index 00000000..9a9aa72f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000005_429b5f25.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000006_f6572319.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000006_f6572319.szcp new file mode 100644 index 00000000..dab0b79c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000006_f6572319.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000007_53307852.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000007_53307852.szcp new file mode 100644 index 00000000..28164f5a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000007_53307852.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000008_013e811a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000008_013e811a.szcp new file mode 100644 index 00000000..da9e2b98 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000008_013e811a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000009_bbdb951d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000009_bbdb951d.szcp new file mode 100644 index 00000000..dca33866 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000009_bbdb951d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000010_4f1574ac.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000010_4f1574ac.szcp new file mode 100644 index 00000000..478d6ddb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000010_4f1574ac.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000011_86f75dc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000011_86f75dc7.szcp new file mode 100644 index 00000000..49d3bef6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000011_86f75dc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000012_68bf41a4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000012_68bf41a4.szcp new file mode 100644 index 00000000..44b5c3b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000012_68bf41a4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000013_ccc82dd1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000013_ccc82dd1.szcp new file mode 100644 index 00000000..500cd9d3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000013_ccc82dd1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000014_477b8fbb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000014_477b8fbb.szcp new file mode 100644 index 00000000..525e8802 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000014_477b8fbb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000015_4188f65c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000015_4188f65c.szcp new file mode 100644 index 00000000..94fce3d2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000015_4188f65c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000016_bdb20d8c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000016_bdb20d8c.szcp new file mode 100644 index 00000000..cf40e122 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000016_bdb20d8c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000017_da870188.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000017_da870188.szcp new file mode 100644 index 00000000..fe8fdb23 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000017_da870188.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000018_b726cbf0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000018_b726cbf0.szcp new file mode 100644 index 00000000..8d41fd30 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000018_b726cbf0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000019_07b7a2e4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000019_07b7a2e4.szcp new file mode 100644 index 00000000..7a0d9075 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000019_07b7a2e4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000020_0a9ca9be.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000020_0a9ca9be.szcp new file mode 100644 index 00000000..dc36cab2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000020_0a9ca9be.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000021_8643ba51.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000021_8643ba51.szcp new file mode 100644 index 00000000..c9a144a7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000021_8643ba51.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000022_7d06c8bb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000022_7d06c8bb.szcp new file mode 100644 index 00000000..fdd36d59 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000022_7d06c8bb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000023_74d5ebfb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000023_74d5ebfb.szcp new file mode 100644 index 00000000..f8fa8032 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000023_74d5ebfb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000024_03c96279.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000024_03c96279.szcp new file mode 100644 index 00000000..e4806774 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000024_03c96279.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000025_b6f79445.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000025_b6f79445.szcp new file mode 100644 index 00000000..a5bbe610 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000025_b6f79445.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000026_7ad2e640.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000026_7ad2e640.szcp new file mode 100644 index 00000000..7083e5fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000026_7ad2e640.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000027_344090bf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000027_344090bf.szcp new file mode 100644 index 00000000..3309822d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000027_344090bf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000028_df23aa61.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000028_df23aa61.szcp new file mode 100644 index 00000000..c935ea7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000028_df23aa61.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000029_61a47e55.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000029_61a47e55.szcp new file mode 100644 index 00000000..80abe3ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000029_61a47e55.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000030_cbae7cb9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000030_cbae7cb9.szcp new file mode 100644 index 00000000..9b9c97e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000030_cbae7cb9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000031_eeb545c5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000031_eeb545c5.szcp new file mode 100644 index 00000000..a7117ead Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000031_eeb545c5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000032_fbe3fe54.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000032_fbe3fe54.szcp new file mode 100644 index 00000000..8711a585 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000032_fbe3fe54.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000033_d4037f72.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000033_d4037f72.szcp new file mode 100644 index 00000000..aad2619d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000033_d4037f72.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000034_ab86f733.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000034_ab86f733.szcp new file mode 100644 index 00000000..424e1fa5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000034_ab86f733.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000035_2cddcd6e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000035_2cddcd6e.szcp new file mode 100644 index 00000000..b1d5fb44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000035_2cddcd6e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000036_c3cb22d8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000036_c3cb22d8.szcp new file mode 100644 index 00000000..1829d5d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000036_c3cb22d8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000037_78d473d9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000037_78d473d9.szcp new file mode 100644 index 00000000..fb6f4aec Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000037_78d473d9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000038_3592794f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000038_3592794f.szcp new file mode 100644 index 00000000..7038b668 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_053/checkpoints/checkpoint_00000000000000000038_3592794f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000001_35407310.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000001_35407310.szar new file mode 100644 index 00000000..4687a3ad Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000001_35407310.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000002_fd4e3450.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000002_fd4e3450.szar new file mode 100644 index 00000000..86dc1f9b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000002_fd4e3450.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000003_476c3134.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000003_476c3134.szar new file mode 100644 index 00000000..89f6a476 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000003_476c3134.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000004_8543799a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000004_8543799a.szar new file mode 100644 index 00000000..ced0e4f9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000004_8543799a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000005_86eacc13.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000005_86eacc13.szar new file mode 100644 index 00000000..27bba3e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000005_86eacc13.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000006_61011270.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000006_61011270.szar new file mode 100644 index 00000000..8540c942 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000006_61011270.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000007_227db19e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000007_227db19e.szar new file mode 100644 index 00000000..931d8b1e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000007_227db19e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000008_faae1f20.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000008_faae1f20.szar new file mode 100644 index 00000000..cd672338 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000008_faae1f20.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000009_25c1bc91.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000009_25c1bc91.szar new file mode 100644 index 00000000..6f93574a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000009_25c1bc91.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000010_022143ea.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000010_022143ea.szar new file mode 100644 index 00000000..a540a8fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000010_022143ea.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000011_1d48467c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000011_1d48467c.szar new file mode 100644 index 00000000..82f1568c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000011_1d48467c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000012_da569571.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000012_da569571.szar new file mode 100644 index 00000000..2fa80791 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000012_da569571.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000013_7b83baab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000013_7b83baab.szar new file mode 100644 index 00000000..a4994dcd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000013_7b83baab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000014_a746becc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000014_a746becc.szar new file mode 100644 index 00000000..7ec4936c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000014_a746becc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000015_fd0b5f8c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000015_fd0b5f8c.szar new file mode 100644 index 00000000..fbad0f65 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000015_fd0b5f8c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000016_30186673.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000016_30186673.szar new file mode 100644 index 00000000..f231e70e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000016_30186673.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000017_96e74935.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000017_96e74935.szar new file mode 100644 index 00000000..ded73c6b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000017_96e74935.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000018_f26688cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000018_f26688cb.szar new file mode 100644 index 00000000..c5ea07fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000018_f26688cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000019_eeaddaf5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000019_eeaddaf5.szar new file mode 100644 index 00000000..77cf8c3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000019_eeaddaf5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000020_ace9a419.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000020_ace9a419.szar new file mode 100644 index 00000000..07a4719a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000020_ace9a419.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000021_a7bf4c62.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000021_a7bf4c62.szar new file mode 100644 index 00000000..822b138b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000021_a7bf4c62.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000022_9834d6f6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000022_9834d6f6.szar new file mode 100644 index 00000000..d2089e14 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000022_9834d6f6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000023_02e7830d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000023_02e7830d.szar new file mode 100644 index 00000000..6aa251d5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000023_02e7830d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000024_4a9c9289.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000024_4a9c9289.szar new file mode 100644 index 00000000..af7bf1cf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000024_4a9c9289.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000025_14270745.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000025_14270745.szar new file mode 100644 index 00000000..76e44d80 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000025_14270745.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000026_11a9c6bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000026_11a9c6bd.szar new file mode 100644 index 00000000..435c676a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000026_11a9c6bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000027_ae53570c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000027_ae53570c.szar new file mode 100644 index 00000000..8b925289 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000027_ae53570c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000028_153059e1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000028_153059e1.szar new file mode 100644 index 00000000..caf38ac4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000028_153059e1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000029_9a78cf44.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000029_9a78cf44.szar new file mode 100644 index 00000000..c8615be4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000029_9a78cf44.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000030_21f86ea2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000030_21f86ea2.szar new file mode 100644 index 00000000..bbefe1b1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000030_21f86ea2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000031_ed8d26b3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000031_ed8d26b3.szar new file mode 100644 index 00000000..3cd07b4c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000031_ed8d26b3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000032_2c43fdd6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000032_2c43fdd6.szar new file mode 100644 index 00000000..6516c886 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000032_2c43fdd6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000033_dc24cfc2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000033_dc24cfc2.szar new file mode 100644 index 00000000..0bcc135c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000033_dc24cfc2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000034_3f6d15f3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000034_3f6d15f3.szar new file mode 100644 index 00000000..3c725fc5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/archive/delta_00000000000000000034_3f6d15f3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000001_d2b57ab9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000001_d2b57ab9.szcp new file mode 100644 index 00000000..5df7c881 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000001_d2b57ab9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000002_7eb32fef.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000002_7eb32fef.szcp new file mode 100644 index 00000000..b85ca097 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000002_7eb32fef.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000003_32c3c185.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000003_32c3c185.szcp new file mode 100644 index 00000000..95d7cdbd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000003_32c3c185.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000004_f8f05e68.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000004_f8f05e68.szcp new file mode 100644 index 00000000..c33d7e15 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000004_f8f05e68.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000005_773e3df0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000005_773e3df0.szcp new file mode 100644 index 00000000..24d3a661 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000005_773e3df0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000006_3ddfb84b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000006_3ddfb84b.szcp new file mode 100644 index 00000000..70322720 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000006_3ddfb84b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000007_ed85a8aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000007_ed85a8aa.szcp new file mode 100644 index 00000000..7a3c2b1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000007_ed85a8aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000008_7f4b8c4b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000008_7f4b8c4b.szcp new file mode 100644 index 00000000..252a937d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000008_7f4b8c4b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000009_34dededc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000009_34dededc.szcp new file mode 100644 index 00000000..39b49712 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000009_34dededc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000010_0a539a24.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000010_0a539a24.szcp new file mode 100644 index 00000000..15769507 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000010_0a539a24.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000011_6a952d71.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000011_6a952d71.szcp new file mode 100644 index 00000000..d8af258e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000011_6a952d71.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000012_c8c9afbc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000012_c8c9afbc.szcp new file mode 100644 index 00000000..f2c2b225 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000012_c8c9afbc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000013_0f12d50d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000013_0f12d50d.szcp new file mode 100644 index 00000000..eafbdb27 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000013_0f12d50d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000014_9ce93e86.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000014_9ce93e86.szcp new file mode 100644 index 00000000..fa83bea1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000014_9ce93e86.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000015_e86d62c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000015_e86d62c8.szcp new file mode 100644 index 00000000..6dbd9545 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000015_e86d62c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000016_f2aa620c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000016_f2aa620c.szcp new file mode 100644 index 00000000..09b18098 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000016_f2aa620c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000017_0bdbe7f8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000017_0bdbe7f8.szcp new file mode 100644 index 00000000..69ca0433 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000017_0bdbe7f8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000018_2e5f3321.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000018_2e5f3321.szcp new file mode 100644 index 00000000..acb700c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000018_2e5f3321.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000019_bc875780.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000019_bc875780.szcp new file mode 100644 index 00000000..eea27991 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000019_bc875780.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000020_2d71fe0c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000020_2d71fe0c.szcp new file mode 100644 index 00000000..95b3e28b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000020_2d71fe0c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000021_a3306431.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000021_a3306431.szcp new file mode 100644 index 00000000..ad88fdd2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000021_a3306431.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000022_6d393755.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000022_6d393755.szcp new file mode 100644 index 00000000..c3372f3b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000022_6d393755.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000023_1d5376aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000023_1d5376aa.szcp new file mode 100644 index 00000000..501b09a5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000023_1d5376aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000024_be77d8aa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000024_be77d8aa.szcp new file mode 100644 index 00000000..520e2e46 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000024_be77d8aa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000025_4c427da4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000025_4c427da4.szcp new file mode 100644 index 00000000..a3de306c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000025_4c427da4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000026_252bc0f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000026_252bc0f2.szcp new file mode 100644 index 00000000..7eea0cdf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000026_252bc0f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000027_f36253bf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000027_f36253bf.szcp new file mode 100644 index 00000000..9be3ef97 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000027_f36253bf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000028_6044f34d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000028_6044f34d.szcp new file mode 100644 index 00000000..d6749eba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000028_6044f34d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000029_06b88d04.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000029_06b88d04.szcp new file mode 100644 index 00000000..d2da36c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000029_06b88d04.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000030_b8520f5a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000030_b8520f5a.szcp new file mode 100644 index 00000000..408682ae Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000030_b8520f5a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000031_df49a14a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000031_df49a14a.szcp new file mode 100644 index 00000000..ea6ca440 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000031_df49a14a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000032_ba888c02.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000032_ba888c02.szcp new file mode 100644 index 00000000..01888beb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000032_ba888c02.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000033_e57d97eb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000033_e57d97eb.szcp new file mode 100644 index 00000000..3fb96613 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000033_e57d97eb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000034_91edb9d0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000034_91edb9d0.szcp new file mode 100644 index 00000000..946fb179 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_054/checkpoints/checkpoint_00000000000000000034_91edb9d0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000001_f0e0ed1e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000001_f0e0ed1e.szar new file mode 100644 index 00000000..98d19721 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000001_f0e0ed1e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000002_0ef4eb77.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000002_0ef4eb77.szar new file mode 100644 index 00000000..04bfb557 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000002_0ef4eb77.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000003_95db7e38.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000003_95db7e38.szar new file mode 100644 index 00000000..47997210 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000003_95db7e38.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000004_f4de6490.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000004_f4de6490.szar new file mode 100644 index 00000000..bb346d5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000004_f4de6490.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000005_c8e183a2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000005_c8e183a2.szar new file mode 100644 index 00000000..a9674947 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000005_c8e183a2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000006_25141161.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000006_25141161.szar new file mode 100644 index 00000000..87baa249 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000006_25141161.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000007_952cd9d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000007_952cd9d4.szar new file mode 100644 index 00000000..6af9c701 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000007_952cd9d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000008_e62f7f1c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000008_e62f7f1c.szar new file mode 100644 index 00000000..ba9b8ddb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000008_e62f7f1c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000009_caa361f7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000009_caa361f7.szar new file mode 100644 index 00000000..326d23ac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000009_caa361f7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000010_3a6be486.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000010_3a6be486.szar new file mode 100644 index 00000000..b1d6684c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000010_3a6be486.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000011_a8725690.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000011_a8725690.szar new file mode 100644 index 00000000..93047bc1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000011_a8725690.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000012_afd248f2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000012_afd248f2.szar new file mode 100644 index 00000000..a94fd8cc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000012_afd248f2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000013_61b6aab3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000013_61b6aab3.szar new file mode 100644 index 00000000..8f678b94 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000013_61b6aab3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000014_563bcd4d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000014_563bcd4d.szar new file mode 100644 index 00000000..e1226584 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000014_563bcd4d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000015_634907ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000015_634907ae.szar new file mode 100644 index 00000000..edf537b6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000015_634907ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000016_85852259.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000016_85852259.szar new file mode 100644 index 00000000..2ef67d3e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000016_85852259.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000017_e290d75b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000017_e290d75b.szar new file mode 100644 index 00000000..afdeb03f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000017_e290d75b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000018_d7c13611.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000018_d7c13611.szar new file mode 100644 index 00000000..13cf2dea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000018_d7c13611.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000019_e84754d3.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000019_e84754d3.szar new file mode 100644 index 00000000..92e469b3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000019_e84754d3.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000020_268d2eac.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000020_268d2eac.szar new file mode 100644 index 00000000..14836797 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000020_268d2eac.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000021_554541f2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000021_554541f2.szar new file mode 100644 index 00000000..74e28f64 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000021_554541f2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000022_aac9731d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000022_aac9731d.szar new file mode 100644 index 00000000..cc26cf17 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000022_aac9731d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000023_bf869de4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000023_bf869de4.szar new file mode 100644 index 00000000..5eb03f05 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000023_bf869de4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000024_06f00cba.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000024_06f00cba.szar new file mode 100644 index 00000000..0111bffd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000024_06f00cba.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000025_ce6c3f8c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000025_ce6c3f8c.szar new file mode 100644 index 00000000..9145a5f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000025_ce6c3f8c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000026_0054dc65.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000026_0054dc65.szar new file mode 100644 index 00000000..af8fd2da Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000026_0054dc65.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000027_3d8270d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000027_3d8270d1.szar new file mode 100644 index 00000000..eeb43859 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000027_3d8270d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000028_8837a2e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000028_8837a2e9.szar new file mode 100644 index 00000000..a69ebd5d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000028_8837a2e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000029_ce528041.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000029_ce528041.szar new file mode 100644 index 00000000..2414449b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000029_ce528041.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000030_d3bc5df2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000030_d3bc5df2.szar new file mode 100644 index 00000000..e37424b4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000030_d3bc5df2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000031_0a5969cf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000031_0a5969cf.szar new file mode 100644 index 00000000..b9d57dc2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000031_0a5969cf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000032_a9436594.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000032_a9436594.szar new file mode 100644 index 00000000..34c024fd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000032_a9436594.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000033_eae52e1f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000033_eae52e1f.szar new file mode 100644 index 00000000..601bff37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000033_eae52e1f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000034_2cc1944e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000034_2cc1944e.szar new file mode 100644 index 00000000..510643c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000034_2cc1944e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000035_9b981fcd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000035_9b981fcd.szar new file mode 100644 index 00000000..a13181f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/archive/delta_00000000000000000035_9b981fcd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000001_c83ca5fa.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000001_c83ca5fa.szcp new file mode 100644 index 00000000..17146ab4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000001_c83ca5fa.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000002_e2a87b39.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000002_e2a87b39.szcp new file mode 100644 index 00000000..56b225c4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000002_e2a87b39.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000003_e4f2a5a6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000003_e4f2a5a6.szcp new file mode 100644 index 00000000..69e967a1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000003_e4f2a5a6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000004_b724e4e1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000004_b724e4e1.szcp new file mode 100644 index 00000000..f3e08e74 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000004_b724e4e1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000005_ce3b126a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000005_ce3b126a.szcp new file mode 100644 index 00000000..43ac386a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000005_ce3b126a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000006_28f4b3a6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000006_28f4b3a6.szcp new file mode 100644 index 00000000..c1a994fc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000006_28f4b3a6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000007_796d81ba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000007_796d81ba.szcp new file mode 100644 index 00000000..bcb65b0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000007_796d81ba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000008_11decea2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000008_11decea2.szcp new file mode 100644 index 00000000..19bd83ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000008_11decea2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000009_acf58683.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000009_acf58683.szcp new file mode 100644 index 00000000..dcd7bcaf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000009_acf58683.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000010_80bc9af8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000010_80bc9af8.szcp new file mode 100644 index 00000000..f6a9c25e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000010_80bc9af8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000011_912327b8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000011_912327b8.szcp new file mode 100644 index 00000000..0a98521b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000011_912327b8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000012_58a486c8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000012_58a486c8.szcp new file mode 100644 index 00000000..1efb8855 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000012_58a486c8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000013_7427bf33.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000013_7427bf33.szcp new file mode 100644 index 00000000..73030f4c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000013_7427bf33.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000014_850fb2d2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000014_850fb2d2.szcp new file mode 100644 index 00000000..30c61dea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000014_850fb2d2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000015_644f6b75.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000015_644f6b75.szcp new file mode 100644 index 00000000..e2a8156c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000015_644f6b75.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000016_771379b9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000016_771379b9.szcp new file mode 100644 index 00000000..4c777760 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000016_771379b9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000017_9cacbe2c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000017_9cacbe2c.szcp new file mode 100644 index 00000000..bda137e2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000017_9cacbe2c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000018_8144220d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000018_8144220d.szcp new file mode 100644 index 00000000..ea9337e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000018_8144220d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000019_fab00c32.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000019_fab00c32.szcp new file mode 100644 index 00000000..d52ebd62 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000019_fab00c32.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000020_7f8e552d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000020_7f8e552d.szcp new file mode 100644 index 00000000..cdfb8f8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000020_7f8e552d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000021_2182bceb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000021_2182bceb.szcp new file mode 100644 index 00000000..067f7e24 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000021_2182bceb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000022_f09dfa32.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000022_f09dfa32.szcp new file mode 100644 index 00000000..c647010c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000022_f09dfa32.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000023_441bad45.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000023_441bad45.szcp new file mode 100644 index 00000000..441b1648 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000023_441bad45.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000024_ed887153.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000024_ed887153.szcp new file mode 100644 index 00000000..09f8ae64 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000024_ed887153.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000025_aeb1ff1a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000025_aeb1ff1a.szcp new file mode 100644 index 00000000..d8f12415 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000025_aeb1ff1a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000026_5874c530.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000026_5874c530.szcp new file mode 100644 index 00000000..a03c87f5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000026_5874c530.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000027_04028fa7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000027_04028fa7.szcp new file mode 100644 index 00000000..dca4f9a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000027_04028fa7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000028_cdbb16bf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000028_cdbb16bf.szcp new file mode 100644 index 00000000..cf17312c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000028_cdbb16bf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000029_edd0ee1a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000029_edd0ee1a.szcp new file mode 100644 index 00000000..662c34c6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000029_edd0ee1a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000030_9bf6fc23.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000030_9bf6fc23.szcp new file mode 100644 index 00000000..b86ca6e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000030_9bf6fc23.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000031_9c5d3242.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000031_9c5d3242.szcp new file mode 100644 index 00000000..fe51ec5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000031_9c5d3242.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000032_ddb4450e.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000032_ddb4450e.szcp new file mode 100644 index 00000000..c3727e60 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000032_ddb4450e.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000033_4e52bafd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000033_4e52bafd.szcp new file mode 100644 index 00000000..fc14687a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000033_4e52bafd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000034_9d08fec0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000034_9d08fec0.szcp new file mode 100644 index 00000000..20109979 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000034_9d08fec0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000035_bdfe2690.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000035_bdfe2690.szcp new file mode 100644 index 00000000..df1747e1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_055/checkpoints/checkpoint_00000000000000000035_bdfe2690.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000001_6334cfdb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000001_6334cfdb.szar new file mode 100644 index 00000000..fdc95aa5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000001_6334cfdb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000002_bc0a9886.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000002_bc0a9886.szar new file mode 100644 index 00000000..178b5364 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000002_bc0a9886.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000003_ef892bb5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000003_ef892bb5.szar new file mode 100644 index 00000000..99e1f313 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000003_ef892bb5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000004_f2de790b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000004_f2de790b.szar new file mode 100644 index 00000000..a4c0ceea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000004_f2de790b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000005_6bcf3e77.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000005_6bcf3e77.szar new file mode 100644 index 00000000..049eb110 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000005_6bcf3e77.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000006_39ad8dfa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000006_39ad8dfa.szar new file mode 100644 index 00000000..5240dc60 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000006_39ad8dfa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000007_17605c12.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000007_17605c12.szar new file mode 100644 index 00000000..bb231411 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000007_17605c12.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000008_cbcddf78.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000008_cbcddf78.szar new file mode 100644 index 00000000..452436eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000008_cbcddf78.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000009_c11e5b7f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000009_c11e5b7f.szar new file mode 100644 index 00000000..369e7a07 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000009_c11e5b7f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000010_f14a78e5.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000010_f14a78e5.szar new file mode 100644 index 00000000..e726945a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000010_f14a78e5.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000011_fdbd8b22.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000011_fdbd8b22.szar new file mode 100644 index 00000000..9c84d134 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000011_fdbd8b22.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000012_a694fcbd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000012_a694fcbd.szar new file mode 100644 index 00000000..d7493cdd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000012_a694fcbd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000013_1f9448ca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000013_1f9448ca.szar new file mode 100644 index 00000000..2dd67624 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000013_1f9448ca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000014_629ecce9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000014_629ecce9.szar new file mode 100644 index 00000000..2a1273e0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000014_629ecce9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000015_b669681a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000015_b669681a.szar new file mode 100644 index 00000000..5d702a50 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000015_b669681a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000016_d4ff8eca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000016_d4ff8eca.szar new file mode 100644 index 00000000..f4204f5f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000016_d4ff8eca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000017_e3c6ee94.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000017_e3c6ee94.szar new file mode 100644 index 00000000..1b059d38 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000017_e3c6ee94.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000018_b8e50a4c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000018_b8e50a4c.szar new file mode 100644 index 00000000..9395f1f4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000018_b8e50a4c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000019_191eed2a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000019_191eed2a.szar new file mode 100644 index 00000000..d4d268fb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000019_191eed2a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000020_692fc1e0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000020_692fc1e0.szar new file mode 100644 index 00000000..ba6f91db Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000020_692fc1e0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000021_5a89bdce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000021_5a89bdce.szar new file mode 100644 index 00000000..ce37db16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000021_5a89bdce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000022_81e5f79d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000022_81e5f79d.szar new file mode 100644 index 00000000..3821d312 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000022_81e5f79d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000023_90d19fcc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000023_90d19fcc.szar new file mode 100644 index 00000000..717692a8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000023_90d19fcc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000024_c79f7404.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000024_c79f7404.szar new file mode 100644 index 00000000..18c83676 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000024_c79f7404.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000025_4c73c0ae.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000025_4c73c0ae.szar new file mode 100644 index 00000000..4296f1e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000025_4c73c0ae.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000026_4881ad0a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000026_4881ad0a.szar new file mode 100644 index 00000000..919484b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000026_4881ad0a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000027_281a029e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000027_281a029e.szar new file mode 100644 index 00000000..19bc552c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000027_281a029e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000028_aa4d09b9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000028_aa4d09b9.szar new file mode 100644 index 00000000..23d5dccc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000028_aa4d09b9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000029_60eca447.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000029_60eca447.szar new file mode 100644 index 00000000..dda2f8d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000029_60eca447.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000030_adf53c21.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000030_adf53c21.szar new file mode 100644 index 00000000..3e3e9c3d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000030_adf53c21.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000031_f774769b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000031_f774769b.szar new file mode 100644 index 00000000..836c95be Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000031_f774769b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000032_0913aae6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000032_0913aae6.szar new file mode 100644 index 00000000..5da42c32 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000032_0913aae6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000033_25708c52.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000033_25708c52.szar new file mode 100644 index 00000000..d41f5335 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000033_25708c52.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000034_6f9304bd.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000034_6f9304bd.szar new file mode 100644 index 00000000..6ac6688a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000034_6f9304bd.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000035_a122279a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000035_a122279a.szar new file mode 100644 index 00000000..5c0278cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000035_a122279a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000036_520cb7f1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000036_520cb7f1.szar new file mode 100644 index 00000000..f6948c1c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000036_520cb7f1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000037_a1c96e9f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000037_a1c96e9f.szar new file mode 100644 index 00000000..4a24823d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000037_a1c96e9f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000038_d91dbffa.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000038_d91dbffa.szar new file mode 100644 index 00000000..c971de9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000038_d91dbffa.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000039_f6aff105.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000039_f6aff105.szar new file mode 100644 index 00000000..236fa824 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000039_f6aff105.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000040_be9d4a0b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000040_be9d4a0b.szar new file mode 100644 index 00000000..247b0b77 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000040_be9d4a0b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000041_a298e13d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000041_a298e13d.szar new file mode 100644 index 00000000..999372d1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000041_a298e13d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000042_6f28952a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000042_6f28952a.szar new file mode 100644 index 00000000..bd513e72 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000042_6f28952a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000043_82cad6cb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000043_82cad6cb.szar new file mode 100644 index 00000000..8d426acf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000043_82cad6cb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000044_21836783.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000044_21836783.szar new file mode 100644 index 00000000..ab72ec45 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000044_21836783.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000045_f1d45c80.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000045_f1d45c80.szar new file mode 100644 index 00000000..ed57c27f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/archive/delta_00000000000000000045_f1d45c80.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000001_9af7725f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000001_9af7725f.szcp new file mode 100644 index 00000000..4aa914ee Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000001_9af7725f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000002_14fd4395.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000002_14fd4395.szcp new file mode 100644 index 00000000..21346d6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000002_14fd4395.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000003_4ba154b1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000003_4ba154b1.szcp new file mode 100644 index 00000000..84dbea09 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000003_4ba154b1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000004_e49e209f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000004_e49e209f.szcp new file mode 100644 index 00000000..abd57d7d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000004_e49e209f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000005_4e642959.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000005_4e642959.szcp new file mode 100644 index 00000000..ca548fcb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000005_4e642959.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000006_737780ce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000006_737780ce.szcp new file mode 100644 index 00000000..3043797e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000006_737780ce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000007_a7efebf7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000007_a7efebf7.szcp new file mode 100644 index 00000000..c2411971 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000007_a7efebf7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000008_6defc8ef.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000008_6defc8ef.szcp new file mode 100644 index 00000000..27f0d532 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000008_6defc8ef.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000009_c10943c7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000009_c10943c7.szcp new file mode 100644 index 00000000..a9052868 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000009_c10943c7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000010_fd8892f9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000010_fd8892f9.szcp new file mode 100644 index 00000000..64f946f6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000010_fd8892f9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000011_e081daf1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000011_e081daf1.szcp new file mode 100644 index 00000000..f83caf94 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000011_e081daf1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000012_34335c40.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000012_34335c40.szcp new file mode 100644 index 00000000..8e4150f1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000012_34335c40.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000013_ed6febc9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000013_ed6febc9.szcp new file mode 100644 index 00000000..6c702f6e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000013_ed6febc9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000014_f4bd9ce8.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000014_f4bd9ce8.szcp new file mode 100644 index 00000000..dea906e4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000014_f4bd9ce8.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000015_03f26f6b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000015_03f26f6b.szcp new file mode 100644 index 00000000..0a8854a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000015_03f26f6b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000016_6471dcfd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000016_6471dcfd.szcp new file mode 100644 index 00000000..8f26ccdc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000016_6471dcfd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000017_10c4dffe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000017_10c4dffe.szcp new file mode 100644 index 00000000..5b9da00f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000017_10c4dffe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000018_67faa021.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000018_67faa021.szcp new file mode 100644 index 00000000..1c86f3e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000018_67faa021.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000019_dfbaedcd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000019_dfbaedcd.szcp new file mode 100644 index 00000000..9e05cf85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000019_dfbaedcd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000020_466bc307.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000020_466bc307.szcp new file mode 100644 index 00000000..65be9c47 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000020_466bc307.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000021_55265172.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000021_55265172.szcp new file mode 100644 index 00000000..159fe82d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000021_55265172.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000022_21130712.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000022_21130712.szcp new file mode 100644 index 00000000..d65c43cd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000022_21130712.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000023_5d1c2942.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000023_5d1c2942.szcp new file mode 100644 index 00000000..5b1a9a41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000023_5d1c2942.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000024_2f02f414.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000024_2f02f414.szcp new file mode 100644 index 00000000..fdbb4464 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000024_2f02f414.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000025_30213377.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000025_30213377.szcp new file mode 100644 index 00000000..ae010870 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000025_30213377.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000026_22f9aa19.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000026_22f9aa19.szcp new file mode 100644 index 00000000..01feba3c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000026_22f9aa19.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000027_f9e6a3bd.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000027_f9e6a3bd.szcp new file mode 100644 index 00000000..4aca92dc Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000027_f9e6a3bd.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000028_42102ffc.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000028_42102ffc.szcp new file mode 100644 index 00000000..96ff12d9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000028_42102ffc.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000029_509d1319.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000029_509d1319.szcp new file mode 100644 index 00000000..6bfdf996 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000029_509d1319.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000030_9a9bf0f1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000030_9a9bf0f1.szcp new file mode 100644 index 00000000..0e891420 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000030_9a9bf0f1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000031_caae6040.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000031_caae6040.szcp new file mode 100644 index 00000000..bac958d0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000031_caae6040.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000032_98a9fbb9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000032_98a9fbb9.szcp new file mode 100644 index 00000000..93fd361f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000032_98a9fbb9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000033_245ab477.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000033_245ab477.szcp new file mode 100644 index 00000000..98bd60b7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000033_245ab477.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000034_bc10ac05.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000034_bc10ac05.szcp new file mode 100644 index 00000000..597b12f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000034_bc10ac05.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000035_03b951b4.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000035_03b951b4.szcp new file mode 100644 index 00000000..02ee83b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000035_03b951b4.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000036_1e1b2bee.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000036_1e1b2bee.szcp new file mode 100644 index 00000000..c35d07ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000036_1e1b2bee.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000037_f731b04c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000037_f731b04c.szcp new file mode 100644 index 00000000..ce9ff74b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000037_f731b04c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000038_63f48bca.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000038_63f48bca.szcp new file mode 100644 index 00000000..3fa9e410 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000038_63f48bca.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000039_a92f48e2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000039_a92f48e2.szcp new file mode 100644 index 00000000..35d544c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000039_a92f48e2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000040_5a0c6c4d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000040_5a0c6c4d.szcp new file mode 100644 index 00000000..e54c6902 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000040_5a0c6c4d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000041_1377933b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000041_1377933b.szcp new file mode 100644 index 00000000..21a1a717 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000041_1377933b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000042_01f534f7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000042_01f534f7.szcp new file mode 100644 index 00000000..f4e7eeff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000042_01f534f7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000043_9d235a82.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000043_9d235a82.szcp new file mode 100644 index 00000000..76aa1b1a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000043_9d235a82.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000044_53662424.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000044_53662424.szcp new file mode 100644 index 00000000..afa6fb7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000044_53662424.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000045_5df51c20.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000045_5df51c20.szcp new file mode 100644 index 00000000..f5db1777 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_056/checkpoints/checkpoint_00000000000000000045_5df51c20.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000001_e8c8110e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000001_e8c8110e.szar new file mode 100644 index 00000000..2bf47f9a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000001_e8c8110e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000002_85127ccc.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000002_85127ccc.szar new file mode 100644 index 00000000..f787e21f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000002_85127ccc.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000003_74d78169.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000003_74d78169.szar new file mode 100644 index 00000000..1b7b09c1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000003_74d78169.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000004_1689e5d1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000004_1689e5d1.szar new file mode 100644 index 00000000..e78810b8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000004_1689e5d1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000005_a5b2c7f6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000005_a5b2c7f6.szar new file mode 100644 index 00000000..3208b7e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000005_a5b2c7f6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000006_a636faa7.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000006_a636faa7.szar new file mode 100644 index 00000000..d1b51ccd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000006_a636faa7.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000007_586441df.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000007_586441df.szar new file mode 100644 index 00000000..274e48a6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000007_586441df.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000008_a96940f6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000008_a96940f6.szar new file mode 100644 index 00000000..c1151a75 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000008_a96940f6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000009_ebdfe774.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000009_ebdfe774.szar new file mode 100644 index 00000000..ba93f480 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000009_ebdfe774.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000010_34a8552e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000010_34a8552e.szar new file mode 100644 index 00000000..da43ec6b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000010_34a8552e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000011_6256a91c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000011_6256a91c.szar new file mode 100644 index 00000000..940fc208 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000011_6256a91c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000012_e53840c9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000012_e53840c9.szar new file mode 100644 index 00000000..f8d58268 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000012_e53840c9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000013_8679519c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000013_8679519c.szar new file mode 100644 index 00000000..07cafb41 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000013_8679519c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000014_381b0eee.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000014_381b0eee.szar new file mode 100644 index 00000000..155f08d4 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000014_381b0eee.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000015_7e14cd56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000015_7e14cd56.szar new file mode 100644 index 00000000..741e6e9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000015_7e14cd56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000016_4ace0c56.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000016_4ace0c56.szar new file mode 100644 index 00000000..a9503ced Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000016_4ace0c56.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000017_21e09e53.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000017_21e09e53.szar new file mode 100644 index 00000000..12517ebb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000017_21e09e53.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000018_7fccc127.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000018_7fccc127.szar new file mode 100644 index 00000000..e77bb0c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000018_7fccc127.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000019_026bfd0f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000019_026bfd0f.szar new file mode 100644 index 00000000..93869165 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000019_026bfd0f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000020_018d5e6f.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000020_018d5e6f.szar new file mode 100644 index 00000000..8281392d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000020_018d5e6f.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000021_2a748618.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000021_2a748618.szar new file mode 100644 index 00000000..fa28dd3c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000021_2a748618.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000022_2feb1fb2.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000022_2feb1fb2.szar new file mode 100644 index 00000000..09e05784 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000022_2feb1fb2.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000023_f4ea9646.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000023_f4ea9646.szar new file mode 100644 index 00000000..d4d27dcf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000023_f4ea9646.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000024_ce2ae7d4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000024_ce2ae7d4.szar new file mode 100644 index 00000000..09d5c110 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000024_ce2ae7d4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000025_13e16256.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000025_13e16256.szar new file mode 100644 index 00000000..46b809b0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000025_13e16256.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000026_8fe652b9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000026_8fe652b9.szar new file mode 100644 index 00000000..685a1839 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000026_8fe652b9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000027_c759590d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000027_c759590d.szar new file mode 100644 index 00000000..5c41df9c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000027_c759590d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000028_b9ccc9a0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000028_b9ccc9a0.szar new file mode 100644 index 00000000..e98071dd Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000028_b9ccc9a0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000029_b32ffcc8.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000029_b32ffcc8.szar new file mode 100644 index 00000000..22c094ff Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000029_b32ffcc8.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000030_2efa78c0.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000030_2efa78c0.szar new file mode 100644 index 00000000..7a60a562 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000030_2efa78c0.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000031_4d9612ff.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000031_4d9612ff.szar new file mode 100644 index 00000000..bede30eb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000031_4d9612ff.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000032_7b13af5a.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000032_7b13af5a.szar new file mode 100644 index 00000000..395ec675 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000032_7b13af5a.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000033_d4963e51.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000033_d4963e51.szar new file mode 100644 index 00000000..8227c639 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000033_d4963e51.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000034_21823bf1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000034_21823bf1.szar new file mode 100644 index 00000000..f60b2359 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000034_21823bf1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000035_d5244bfb.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000035_d5244bfb.szar new file mode 100644 index 00000000..7aa1b892 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000035_d5244bfb.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000036_6ea22f93.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000036_6ea22f93.szar new file mode 100644 index 00000000..c47ad115 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000036_6ea22f93.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000037_6e39b413.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000037_6e39b413.szar new file mode 100644 index 00000000..cf60ef04 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000037_6e39b413.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000038_4ad61b7d.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000038_4ad61b7d.szar new file mode 100644 index 00000000..1efab709 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000038_4ad61b7d.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000039_82eeb351.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000039_82eeb351.szar new file mode 100644 index 00000000..e7b28731 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000039_82eeb351.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000040_837b8931.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000040_837b8931.szar new file mode 100644 index 00000000..4faabe37 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000040_837b8931.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000041_08017373.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000041_08017373.szar new file mode 100644 index 00000000..aa18c302 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000041_08017373.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000042_12c69048.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000042_12c69048.szar new file mode 100644 index 00000000..f42e4e48 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000042_12c69048.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000043_75f2b784.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000043_75f2b784.szar new file mode 100644 index 00000000..72071559 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/archive/delta_00000000000000000043_75f2b784.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000001_31d59b9f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000001_31d59b9f.szcp new file mode 100644 index 00000000..3fc91918 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000001_31d59b9f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000002_070ee227.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000002_070ee227.szcp new file mode 100644 index 00000000..ef252083 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000002_070ee227.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000003_1316ccc7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000003_1316ccc7.szcp new file mode 100644 index 00000000..a1fede21 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000003_1316ccc7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000004_8c0d0326.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000004_8c0d0326.szcp new file mode 100644 index 00000000..32e5a116 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000004_8c0d0326.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000005_0122d6af.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000005_0122d6af.szcp new file mode 100644 index 00000000..64915cba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000005_0122d6af.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000006_5d427abf.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000006_5d427abf.szcp new file mode 100644 index 00000000..a9b3ccf0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000006_5d427abf.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000007_6e9ef760.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000007_6e9ef760.szcp new file mode 100644 index 00000000..e1397c5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000007_6e9ef760.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000008_b0899978.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000008_b0899978.szcp new file mode 100644 index 00000000..912990cb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000008_b0899978.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000009_7bf0867d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000009_7bf0867d.szcp new file mode 100644 index 00000000..2543382d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000009_7bf0867d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000010_4c1a5be5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000010_4c1a5be5.szcp new file mode 100644 index 00000000..2be28b16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000010_4c1a5be5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000011_3d60bb3a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000011_3d60bb3a.szcp new file mode 100644 index 00000000..981b385c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000011_3d60bb3a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000012_205dcee0.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000012_205dcee0.szcp new file mode 100644 index 00000000..50791c91 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000012_205dcee0.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000013_3137e426.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000013_3137e426.szcp new file mode 100644 index 00000000..bad239bb Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000013_3137e426.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000014_4bac4369.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000014_4bac4369.szcp new file mode 100644 index 00000000..793c142a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000014_4bac4369.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000015_81ec8841.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000015_81ec8841.szcp new file mode 100644 index 00000000..d376219c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000015_81ec8841.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000016_bfeb39e6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000016_bfeb39e6.szcp new file mode 100644 index 00000000..9c66067a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000016_bfeb39e6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000017_da10483a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000017_da10483a.szcp new file mode 100644 index 00000000..96dc33ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000017_da10483a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000018_f5735666.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000018_f5735666.szcp new file mode 100644 index 00000000..beeeb7f7 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000018_f5735666.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000019_6f3b1e77.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000019_6f3b1e77.szcp new file mode 100644 index 00000000..86e96022 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000019_6f3b1e77.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000020_ae2478e5.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000020_ae2478e5.szcp new file mode 100644 index 00000000..8e7b3690 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000020_ae2478e5.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000021_8870e1b7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000021_8870e1b7.szcp new file mode 100644 index 00000000..f115f166 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000021_8870e1b7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000022_d8206fef.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000022_d8206fef.szcp new file mode 100644 index 00000000..cf511ecf Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000022_d8206fef.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000023_4dccdd0f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000023_4dccdd0f.szcp new file mode 100644 index 00000000..f0440d2a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000023_4dccdd0f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000024_6f51e238.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000024_6f51e238.szcp new file mode 100644 index 00000000..49798ca6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000024_6f51e238.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000025_15d25de1.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000025_15d25de1.szcp new file mode 100644 index 00000000..a0a1b76e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000025_15d25de1.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000026_b44a7087.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000026_b44a7087.szcp new file mode 100644 index 00000000..e49ce1ea Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000026_b44a7087.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000027_2106140a.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000027_2106140a.szcp new file mode 100644 index 00000000..4d7966b5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000027_2106140a.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000028_d7bcf0d7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000028_d7bcf0d7.szcp new file mode 100644 index 00000000..3bf98615 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000028_d7bcf0d7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000029_807d0b9c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000029_807d0b9c.szcp new file mode 100644 index 00000000..8438a478 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000029_807d0b9c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000030_b006fe65.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000030_b006fe65.szcp new file mode 100644 index 00000000..2eaa6e8f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000030_b006fe65.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000031_dac07f2d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000031_dac07f2d.szcp new file mode 100644 index 00000000..65cb9add Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000031_dac07f2d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000032_d837a82f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000032_d837a82f.szcp new file mode 100644 index 00000000..f026ded6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000032_d837a82f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000033_e7955281.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000033_e7955281.szcp new file mode 100644 index 00000000..cf775e7a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000033_e7955281.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000034_2abec008.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000034_2abec008.szcp new file mode 100644 index 00000000..540633c8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000034_2abec008.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000035_880a2d06.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000035_880a2d06.szcp new file mode 100644 index 00000000..b419e0fa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000035_880a2d06.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000036_69663084.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000036_69663084.szcp new file mode 100644 index 00000000..9b17ffda Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000036_69663084.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000037_b76a77b6.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000037_b76a77b6.szcp new file mode 100644 index 00000000..4ac042c2 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000037_b76a77b6.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000038_15ecde89.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000038_15ecde89.szcp new file mode 100644 index 00000000..701a9b67 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000038_15ecde89.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000039_8f6dc871.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000039_8f6dc871.szcp new file mode 100644 index 00000000..36982d8d Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000039_8f6dc871.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000040_3d6b3773.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000040_3d6b3773.szcp new file mode 100644 index 00000000..277f18e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000040_3d6b3773.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000041_1119fceb.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000041_1119fceb.szcp new file mode 100644 index 00000000..fb2ab2b9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000041_1119fceb.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000042_9ba7b719.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000042_9ba7b719.szcp new file mode 100644 index 00000000..015abc6c Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000042_9ba7b719.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000043_77422e1d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000043_77422e1d.szcp new file mode 100644 index 00000000..46c0c249 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_057/checkpoints/checkpoint_00000000000000000043_77422e1d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000001_7682c28c.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000001_7682c28c.szar new file mode 100644 index 00000000..df5b63c3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000001_7682c28c.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000002_18e8b9ab.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000002_18e8b9ab.szar new file mode 100644 index 00000000..4c9d5763 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000002_18e8b9ab.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000003_19dbd5ce.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000003_19dbd5ce.szar new file mode 100644 index 00000000..89aa6a0a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000003_19dbd5ce.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000004_eabe47e9.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000004_eabe47e9.szar new file mode 100644 index 00000000..e70abc71 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000004_eabe47e9.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000005_94cc4617.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000005_94cc4617.szar new file mode 100644 index 00000000..44845b89 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000005_94cc4617.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000006_69436901.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000006_69436901.szar new file mode 100644 index 00000000..88d3f8ba Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000006_69436901.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000007_3712a446.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000007_3712a446.szar new file mode 100644 index 00000000..d3c3f0e5 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000007_3712a446.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000008_67884aa4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000008_67884aa4.szar new file mode 100644 index 00000000..9415073f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000008_67884aa4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000009_0611ca52.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000009_0611ca52.szar new file mode 100644 index 00000000..f30d4797 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000009_0611ca52.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000010_29ada8ca.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000010_29ada8ca.szar new file mode 100644 index 00000000..39b68738 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000010_29ada8ca.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000011_b3e704e1.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000011_b3e704e1.szar new file mode 100644 index 00000000..1814d725 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000011_b3e704e1.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000012_97782352.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000012_97782352.szar new file mode 100644 index 00000000..979e0201 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000012_97782352.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000013_0e98cc8e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000013_0e98cc8e.szar new file mode 100644 index 00000000..b9890328 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000013_0e98cc8e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000014_ad38042b.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000014_ad38042b.szar new file mode 100644 index 00000000..c9929929 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000014_ad38042b.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000015_a3012fc4.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000015_a3012fc4.szar new file mode 100644 index 00000000..ce5ec4e6 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000015_a3012fc4.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000016_772f5530.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000016_772f5530.szar new file mode 100644 index 00000000..a195ffa1 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000016_772f5530.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000017_7272f354.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000017_7272f354.szar new file mode 100644 index 00000000..0405aeb0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000017_7272f354.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000018_7920f606.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000018_7920f606.szar new file mode 100644 index 00000000..23144c06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000018_7920f606.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000019_2d76cfda.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000019_2d76cfda.szar new file mode 100644 index 00000000..dbb1a747 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000019_2d76cfda.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000020_3d74f8bf.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000020_3d74f8bf.szar new file mode 100644 index 00000000..09a23719 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000020_3d74f8bf.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000021_a8fabb86.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000021_a8fabb86.szar new file mode 100644 index 00000000..fcf71428 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000021_a8fabb86.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000022_c058ecd6.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000022_c058ecd6.szar new file mode 100644 index 00000000..36ba4564 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000022_c058ecd6.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000023_e2c9938e.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000023_e2c9938e.szar new file mode 100644 index 00000000..50c5d959 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000023_e2c9938e.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000024_8c0d0434.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000024_8c0d0434.szar new file mode 100644 index 00000000..fd2be397 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000024_8c0d0434.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000025_3d8af550.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000025_3d8af550.szar new file mode 100644 index 00000000..06369f05 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000025_3d8af550.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000026_bad02e01.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000026_bad02e01.szar new file mode 100644 index 00000000..5873d04b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000026_bad02e01.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000027_d6e39731.szar b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000027_d6e39731.szar new file mode 100644 index 00000000..cc5b44e8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/archive/delta_00000000000000000027_d6e39731.szar differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000001_ac375be9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000001_ac375be9.szcp new file mode 100644 index 00000000..8ed8e953 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000001_ac375be9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000002_88f6db07.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000002_88f6db07.szcp new file mode 100644 index 00000000..3ac0f42f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000002_88f6db07.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000003_62a87618.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000003_62a87618.szcp new file mode 100644 index 00000000..a82c90fe Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000003_62a87618.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000004_5e07fc06.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000004_5e07fc06.szcp new file mode 100644 index 00000000..c7758f06 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000004_5e07fc06.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000005_95b42013.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000005_95b42013.szcp new file mode 100644 index 00000000..7a12831f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000005_95b42013.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000006_8c090009.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000006_8c090009.szcp new file mode 100644 index 00000000..3168379f Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000006_8c090009.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000007_c0363b9b.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000007_c0363b9b.szcp new file mode 100644 index 00000000..de472d76 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000007_c0363b9b.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000008_c73ada63.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000008_c73ada63.szcp new file mode 100644 index 00000000..2b53ea33 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000008_c73ada63.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000009_c993dc71.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000009_c993dc71.szcp new file mode 100644 index 00000000..29d4146b Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000009_c993dc71.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000010_06c9434f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000010_06c9434f.szcp new file mode 100644 index 00000000..1a83728e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000010_06c9434f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000011_150e7cba.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000011_150e7cba.szcp new file mode 100644 index 00000000..6cdc2bac Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000011_150e7cba.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000012_e31a6f3c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000012_e31a6f3c.szcp new file mode 100644 index 00000000..ac25be5e Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000012_e31a6f3c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000013_350006f2.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000013_350006f2.szcp new file mode 100644 index 00000000..3da78b66 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000013_350006f2.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000014_c33ee565.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000014_c33ee565.szcp new file mode 100644 index 00000000..83e3e780 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000014_c33ee565.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000015_49da8a3f.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000015_49da8a3f.szcp new file mode 100644 index 00000000..140789e9 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000015_49da8a3f.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000016_a492c7c7.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000016_a492c7c7.szcp new file mode 100644 index 00000000..7c514c11 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000016_a492c7c7.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000017_c0188d47.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000017_c0188d47.szcp new file mode 100644 index 00000000..06e67211 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000017_c0188d47.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000018_e34b5656.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000018_e34b5656.szcp new file mode 100644 index 00000000..29f84d85 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000018_e34b5656.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000019_7a4392fe.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000019_7a4392fe.szcp new file mode 100644 index 00000000..8527d1a0 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000019_7a4392fe.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000020_fdc87001.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000020_fdc87001.szcp new file mode 100644 index 00000000..d9a3fc88 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000020_fdc87001.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000021_bcff560d.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000021_bcff560d.szcp new file mode 100644 index 00000000..c9d11b25 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000021_bcff560d.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000022_a88aac32.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000022_a88aac32.szcp new file mode 100644 index 00000000..4d8c8caa Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000022_a88aac32.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000023_27230d2c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000023_27230d2c.szcp new file mode 100644 index 00000000..4c31843a Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000023_27230d2c.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000024_d18fccce.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000024_d18fccce.szcp new file mode 100644 index 00000000..9eb865d8 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000024_d18fccce.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000025_eca87487.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000025_eca87487.szcp new file mode 100644 index 00000000..e8761e16 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000025_eca87487.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000026_d91b81d9.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000026_d91b81d9.szcp new file mode 100644 index 00000000..dc515b44 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000026_d91b81d9.szcp differ diff --git a/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000027_b426952c.szcp b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000027_b426952c.szcp new file mode 100644 index 00000000..3ab027a3 Binary files /dev/null and b/results/search/runs/889b3dfb-118c-48ca-ace4-853da7900f9c/topology_058/checkpoints/checkpoint_00000000000000000027_b426952c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/metrics.tsv b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/metrics.tsv new file mode 100644 index 00000000..a4e6e943 --- /dev/null +++ b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/metrics.tsv @@ -0,0 +1,1968 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783876341967263600 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 38 2556 23803930 209280 1376.0248718261719 8.7013999999999996 2748.567 40320 20641 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2556 1920 128 384 1 7180262820 4626324 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 189 168 156 150 1893 14 5 6 4 9 0 0 0 0 0 +2 1783876344866747000 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 112 2535 23803986 209280 1388.1815948486328 8.8464999999999989 2824.8541 40320 22234 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 360 72 24 0 2535 1920 128 384 1 7184867684 9231188 1 0 5 1 2 2 6 7618560 1474560 2949120 2705091 8985600 192 157 165 168 1853 18 5 23 12 54 0 0 0 0 0 +3 1783876347408643900 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 2387 55 2527 23803864 209280 1412.3376617431641 8.7295999999999996 2480.7157999999999 40320 19525 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2527 1920 128 384 1 7189464388 13827892 1 0 5 1 2 2 6 7618560 1474560 2949120 2704964 8985600 176 156 159 154 1882 14 2 3 4 32 0 0 0 0 0 +4 1783876349988952100 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 2466 100 2572 23803948 209280 1346.7660675048828 8.6377999999999986 2516.1329999999998 40320 20360 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2572 1920 128 384 1 7194106992 18470496 1 0 5 1 2 2 6 7618560 1474560 2949120 2705050 8985600 159 150 162 154 1947 16 9 21 11 43 0 0 0 0 0 +5 1783876352650318100 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 2114 49 2599 23803977 209280 1345.5483245849609 8.7736999999999998 2593.4353999999998 40320 18849 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2599 1920 128 384 1 7198777136 23140640 1 0 5 1 2 2 6 7618560 1474560 2949120 2705083 8985600 167 150 154 165 1963 5 6 11 4 23 0 0 0 0 0 +6 1783876355275079800 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 1 0 3137 104 2543 23803952 209280 1369.6093902587891 8.6692999999999998 2557.7269999999999 40320 20889 1 0 0.00029739106244499718 0.29327765463537719 4096 2048 384 12 96 360 72 24 0 2543 1920 128 384 1 7203390160 27753664 1 0 5 1 2 2 6 7618560 1474560 2949120 2705057 8985600 190 153 169 150 1881 20 8 12 7 57 0 0 1 0 2 +7 1783876357863141100 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 4096 113 2546 23803902 209280 1339.7044525146484 8.6067 2522.3173000000002 40320 21767 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2546 1920 128 384 1 7208006244 32369748 1 0 5 1 2 2 6 7618560 1474560 2949120 2705006 8985600 176 161 163 150 1896 16 9 18 20 50 0 0 0 0 0 +8 1783876360452267300 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4096 74 2526 23803999 209280 1343.7214813232422 8.6297000000000015 2524.4562999999998 40320 22346 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2526 1920 128 384 1 7212601928 36965432 1 0 5 1 2 2 6 7618560 1474560 2949120 2705102 8985600 197 165 153 161 1850 9 2 9 7 47 0 0 0 0 0 +9 1783876363036814400 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 1 0 3996 125 2556 23803973 209280 1289.6165008544922 8.6082999999999998 2513.0057000000002 40320 22782 1 1 1.3471342838455774e-05 0.067869369765247892 4096 2048 384 12 96 360 72 24 0 2556 1920 128 384 1 7217228212 41591716 1 0 5 1 2 2 6 7618560 1474560 2949120 2705073 8985600 172 150 154 156 1924 20 9 32 11 52 0 0 0 0 1 +10 1783876365546960400 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 0 0 2731 115 2574 23803917 209280 1298.5344390869141 8.5935999999999986 2444.6048999999998 40320 21589 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 360 72 24 0 2574 1920 128 384 1 7221872856 46236360 1 0 5 1 2 2 6 7618560 1474560 2949120 2705013 8985600 166 150 160 159 1939 16 18 15 17 49 0 0 0 0 0 +11 1783876367865192500 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3255 109 2527 23803960 209280 1329.8739318847656 8.595600000000001 2256.4843999999998 40320 19598 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 360 72 24 0 2527 1920 128 384 1 7226469560 50833064 1 0 5 1 2 2 6 7618560 1474560 2949120 2705066 8985600 212 152 179 168 1816 20 5 10 15 59 0 0 0 0 0 +12 1783876370423239100 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3437 93 2537 23804083 209280 1317.2000122070312 8.5879999999999992 2495.0025000000001 40320 19705 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2537 1920 128 384 1 7231076464 55439968 1 0 5 1 2 2 6 7618560 1474560 2949120 2705183 8985600 192 158 163 153 1871 9 15 14 11 44 0 0 0 0 0 +13 1783876372994522800 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 3093 116 2568 23803929 209280 1306.5564270019531 8.6083999999999996 2497.6363999999999 40320 20725 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 360 72 24 0 2568 1920 128 384 1 7235714988 60078492 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 176 160 157 158 1917 25 8 24 10 49 0 0 0 0 0 +14 1783876375692357800 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 2272 103 2610 23803951 209280 1379.3945465087891 8.6173000000000002 2630.73 40320 20980 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2610 1920 128 384 1 7240396352 64759856 1 0 5 1 2 2 6 7618560 1474560 2949120 2705056 8985600 179 167 158 154 1952 9 5 19 10 60 0 0 0 0 0 +15 1783876379840606400 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 2240 104 2561 23803948 209280 1355.8213348388672 9.3193000000000001 4070.5306 40320 21918 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2561 1920 128 384 1 7245027816 2282992 1 0 5 1 2 2 6 7618560 1474560 2949120 2705051 8985600 179 161 178 161 1882 11 13 10 22 48 0 0 0 0 0 +16 1783876382643713000 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 4096 142 2523 23803943 209280 1369.8439331054688 8.9344000000000001 2718.9823000000001 40320 22206 1 0 0 0.20988370887488914 4096 2048 384 12 96 360 72 24 0 2523 1920 128 384 1 7249620440 6875616 1 0 5 1 2 2 6 7618560 1474560 2949120 2705048 8985600 186 169 160 159 1849 26 6 25 20 65 0 0 0 0 3 +17 1783876385383490900 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2721 80 2551 23803942 209280 1346.0798492431641 8.6751000000000005 2677.6075000000001 40320 21410 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 360 72 24 0 2551 1920 128 384 1 7254241624 11496800 1 0 5 1 2 2 6 7618560 1474560 2949120 2705047 8985600 177 159 162 152 1901 17 7 11 4 41 0 0 0 0 0 +18 1783876387956391000 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2495 115 2558 23803956 209280 1321.4310302734375 8.7017999999999986 2503.9168 40320 21119 1 0 0 0.70265062730680472 4096 2048 384 12 96 360 72 24 0 2558 1920 128 384 1 7258869948 16125124 1 0 5 1 2 2 6 7618560 1474560 2949120 2705063 8985600 178 160 164 156 1900 18 16 15 17 49 0 0 0 0 4 +19 1783876390377086400 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 0 0 1530 87 2559 23803929 209280 1305.1391906738281 8.6829000000000001 2346.8036999999999 40320 21313 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 360 72 24 0 2559 1920 128 384 1 7263499292 20754468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705033 8985600 189 168 175 159 1868 14 0 8 2 63 0 0 0 0 0 +20 1783876393237512800 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 3586 123 2552 23803954 209280 1348.2519073486328 9.0112000000000005 2774.8157999999999 40320 20227 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 360 72 24 0 2552 1920 128 384 1 7268121496 25376672 1 0 5 1 2 2 6 7618560 1474560 2949120 2705056 8985600 173 175 170 163 1871 14 14 18 15 62 0 0 0 0 0 +21 1783876396172913000 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2150 67 2561 23803961 209280 1398.8997192382812 9.2508999999999997 2869.3135000000002 40320 19266 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 360 72 24 0 2561 1920 128 384 1 7272752880 30008056 1 0 5 1 2 2 6 7618560 1474560 2949120 2705064 8985600 161 152 158 160 1930 9 12 8 18 20 0 0 0 0 0 +22 1783876398635154400 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 1211 62 2555 23803951 209280 1232.3482055664062 8.5986999999999991 2403.5070000000001 40320 22092 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2555 1920 128 384 1 7277378144 34633320 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 180 150 154 183 1888 6 9 10 6 31 0 0 0 0 0 +23 1783876401435269300 DEPTH 32 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 3008 111 2549 23803885 209280 1314.3828125 9.2862999999999989 2722.4805999999999 40320 21085 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2549 1920 128 384 1 7281997288 39252464 1 0 5 1 2 2 6 7618560 1474560 2949120 2704988 8985600 165 150 159 176 1899 15 10 17 14 55 0 0 0 0 0 +24 1783876404088573200 DEPTH 27 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 3610 97 2560 23803932 209280 1387.9562377929688 8.6650999999999989 2589.4580999999998 40320 21723 1 0 0.090901515514348663 1.023281551009547 4096 2048 384 12 96 360 72 24 0 2560 1920 128 384 1 7286627652 43882828 1 0 5 1 2 2 6 7618560 1474560 2949120 2705035 8985600 166 150 153 150 1941 9 4 8 13 63 0 0 0 0 0 +25 1783876406749022100 DEPTH 30 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 3515 116 2536 23803965 209280 1345.2042388916016 8.6650000000000009 2591.1599999999999 40320 19919 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2536 1920 128 384 1 7291233536 48488712 1 0 5 1 2 2 6 7618560 1474560 2949120 2705069 8985600 209 176 196 164 1791 15 13 12 11 65 0 0 0 0 0 +26 1783876409439131800 DEPTH 25 1 0.79850199982553804 0.4608177172061329 1 8 1 8 0 0 2333 79 2568 23803997 209280 1371.0981140136719 8.6474000000000011 2620.6129999999998 40320 21108 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 360 72 24 0 2568 1920 128 384 1 7295872060 53127236 1 0 5 1 2 2 6 7618560 1474560 2949120 2705101 8985600 179 168 154 150 1917 20 5 12 5 37 0 0 0 0 0 +27 1783876412083084700 DEPTH 39 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 1609 96 2588 23804006 209280 1308.6146545410156 8.6738000000000017 2577.0088999999998 40320 22116 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2588 1920 128 384 1 7300530984 57786160 1 0 5 1 2 2 6 7618560 1474560 2949120 2705107 8985600 191 150 156 154 1937 17 6 20 7 46 0 0 0 0 0 +28 1783876414445547400 DEPTH 38 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 2092 72 2542 23803971 209280 1300.9049530029297 8.8205999999999989 2294.3589000000002 40320 20291 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 360 72 24 0 2542 1920 128 384 1 7305142988 62398164 1 0 5 1 2 2 6 7618560 1474560 2949120 2705068 8985600 194 174 166 178 1830 8 3 6 5 50 0 0 0 0 0 +29 1783876417032859000 DEPTH 41 1 0.79159956614562654 0.55451448040885853 1 9 1 9 0 0 2255 146 2590 23803920 209280 1293.8117065429688 8.6814999999999998 2520.8865999999998 40320 21167 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2590 1920 128 384 1 7309803952 67059128 1 0 5 1 2 2 6 7618560 1474560 2949120 2705018 8985600 168 150 162 157 1953 17 13 39 19 58 0 0 0 0 0 +30 1783876420698122500 DEPTH 21 1 0.79167936249454984 0.56218057921635434 0 10 0 10 0 0 2552 113 2552 23803927 209280 1292.2408905029297 8.6407000000000007 3603.7568999999999 40320 22226 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 360 72 24 0 2552 1920 128 384 1 7314426236 4573416 1 0 5 1 2 2 6 7618560 1474560 2949120 2705028 8985600 168 155 150 162 1917 24 2 15 14 58 0 0 0 0 0 +31 1783876423301776600 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 25 2558 23742731 147840 1324.3773040771484 8.5935000000000006 2543.9229999999998 40320 14431 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 7318894304 9041484 1 0 5 1 2 2 6 7372800 1474560 2949120 2951035 8985600 187 156 158 195 1862 4 1 2 0 18 0 0 0 0 0 +32 1783876425918233500 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 67 2557 23742677 147840 1319.1348114013672 8.6348000000000003 2551.5610000000001 40320 16141 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 7323361352 13508532 1 0 5 1 2 2 6 7372800 1474560 2949120 2950983 8985600 205 153 173 315 1711 1 6 12 2 46 0 0 0 0 0 +33 1783876428472598800 DEPTH 9 1 0.80876048075707307 0.27342419080068137 1 6 1 6 1 0 3152 72 2531 23742654 147840 1316.2077331542969 8.6522000000000006 2495.6320999999998 40320 16321 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 7327801880 17949060 1 0 5 1 2 2 6 7372800 1474560 2949120 2950959 8985600 196 151 183 158 1843 10 0 5 1 56 0 0 0 0 1 +34 1783876430866892900 DEPTH 8 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 2400 52 2512 23742703 147840 1323.9603271484375 8.622300000000001 2338.1525999999999 40320 16339 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 7332223028 22370208 1 0 5 1 2 2 6 7372800 1474560 2949120 2951010 8985600 201 171 169 190 1781 3 0 8 4 37 0 0 0 0 0 +35 1783876433503482100 DEPTH 48 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 2478 47 2580 23742656 147840 1332.0755157470703 8.6791 2572.4971 40320 15058 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 7336713536 26860716 1 0 5 1 2 2 6 7372800 1474560 2949120 2950961 8985600 160 151 160 160 1949 3 2 8 1 33 0 0 0 0 0 +36 1783876436194220900 DEPTH 20 1 0.80867512980503709 0.26575809199318562 2 5 2 5 0 0 2125 31 2596 23742628 147840 1361.8257751464844 8.8691999999999993 2628.3669 40320 14239 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 7341220364 31367544 1 0 5 1 2 2 6 7372800 1474560 2949120 2950932 8985600 223 150 175 279 1769 0 5 5 0 21 0 0 0 0 0 +37 1783876438804488200 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 4096 73 2547 23742698 147840 1343.7851104736328 8.718300000000001 2547.5839000000001 40320 15019 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 7345677212 35824392 1 0 5 1 2 2 6 7372800 1474560 2949120 2951005 8985600 169 153 163 238 1824 4 7 14 3 45 0 0 0 0 0 +38 1783876441288575000 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 0 0 4096 109 2532 23742688 147840 1313.2636108398438 8.6090999999999998 2421.8047000000001 40320 16769 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 7350118760 40265940 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 201 164 170 175 1822 3 0 9 12 85 0 0 0 0 0 +39 1783876443510771700 DEPTH 12 1 0.78703276669461864 0.63287904599659284 3 8 3 8 0 0 1546 118 2629 23803893 209280 1304.5637054443359 8.6425999999999998 2165.8033999999998 40320 20161 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 360 72 24 0 2629 1920 128 384 1 7354819504 44966684 1 0 5 1 2 2 6 7618560 1474560 2949120 2704993 8985600 171 150 152 162 1994 14 2 4 12 86 0 0 0 0 0 +40 1783876445999185400 DEPTH 3 1 0.7871108823943197 0.64054514480408853 2 9 2 9 0 0 1120 65 2543 23803950 209280 1313.7164306640625 8.6757000000000009 2432.1260000000002 40320 22115 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 360 72 24 0 2543 1920 128 384 1 7359432528 49579708 1 0 5 1 2 2 6 7618560 1474560 2949120 2705051 8985600 197 150 156 155 1885 19 4 6 3 33 0 0 0 0 0 +41 1783876448496687700 DEPTH 50 1 0.78718883379379867 0.64054514480408853 2 9 2 9 0 0 1049 52 2583 23803919 209280 1310.5101165771484 8.6288 2441.3226 40320 22802 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2583 1920 128 384 1 7364086352 54233532 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 152 150 150 150 1981 14 2 6 5 25 0 0 0 0 0 +42 1783876450781542100 DEPTH 55 1 0.78726662156105365 0.64054514480408853 2 9 2 9 0 0 1072 63 2528 23803924 209280 1405.1535034179688 8.7003000000000004 2228.4688000000001 40320 22983 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 360 72 24 0 2528 1920 128 384 1 7368684076 58831256 1 0 5 1 2 2 6 7618560 1474560 2949120 2705025 8985600 186 171 157 157 1857 14 0 7 0 42 0 0 0 0 0 +43 1783876453660684700 DEPTH 26 1 0.78734424636006617 0.64821124361158422 1 10 1 9 1 0 1880 94 2568 23803164 209280 1329.3014984130859 9.1408000000000005 2804.3564999999999 40320 19177 1 0 0.031359347422313416 0.55128889379475332 4096 2048 384 12 96 360 72 24 0 2568 1920 128 384 1 7373322600 63469780 1 0 6 1 2 1 6 8847360 1474560 2949120 1475466 8985600 180 150 165 150 1923 16 2 10 4 62 1 0 0 0 0 +44 1783876457291486200 DEPTH 40 1 0.78742170885083307 0.64821124361158422 1 10 1 10 0 0 1744 81 2573 23803955 209280 1325.6480407714844 8.7713999999999999 3577.6763000000001 40320 20741 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 360 72 24 0 2573 1920 128 384 1 7377966304 1004692 1 0 5 1 2 2 6 7618560 1474560 2949120 2705058 8985600 172 156 158 153 1934 12 3 9 16 41 0 0 0 0 0 +45 1783876459440207600 DEPTH 10 1 0.78749900968939857 0.64821124361158422 1 10 1 10 0 0 1165 82 2565 23803978 209280 1243.7073822021484 8.6408000000000005 2096.8942999999999 40320 20251 1 1 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 360 72 24 0 2565 1920 128 384 1 7382601768 5640156 1 0 5 1 2 2 6 7618560 1474560 2949120 2705083 8985600 168 155 155 164 1923 14 12 13 11 31 0 0 0 0 0 +46 1783876461731321800 DEPTH 14 1 0.78757614952788491 0.65587734241908002 0 11 0 11 0 0 1653 114 2519 23803944 209280 1284.1670989990234 8.6003000000000007 2231.3018999999999 40320 19889 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 360 72 24 0 2519 1920 128 384 1 7387190312 10228700 1 0 5 1 2 2 6 7618560 1474560 2949120 2705047 8985600 189 163 168 172 1827 14 6 7 5 82 0 0 0 0 0 +47 1783876464136103100 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 14 2560 23742642 147840 1230.5328674316406 8.5930999999999997 2349.7919000000002 47040 18368 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 7391660420 14698808 1 0 4 2 2 2 6 7127040 1720320 2949120 2950944 8985600 189 159 157 236 1819 0 2 0 0 12 0 0 0 0 0 +48 1783876466559722000 DEPTH 17 1 0.80957347835438076 0.28109028960817717 0 7 0 7 0 0 4021 65 2562 23742687 147840 1234.3287506103516 8.7199000000000009 2362.4225999999999 40320 15814 1 0 1.3471342838455774e-05 0.067869369765247892 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 7396132568 19170956 1 0 5 1 2 2 6 7372800 1474560 2949120 2950991 8985600 172 150 156 162 1922 3 10 3 2 47 0 0 0 0 0 +49 1783876468973196500 DEPTH 11 1 0.79463959987341415 0.37478705281090291 0 8 0 8 1 0 2521 87 2561 23742649 147840 1237.3493499755859 8.6004000000000005 2352.6729 40320 14686 1 0 0 0.69846688819941627 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 7400603696 23642084 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 177 158 188 179 1859 1 11 8 0 67 0 0 0 0 3 +50 1783876471385507400 DEPTH 53 1 0.79470704948508175 0.37478705281090291 0 8 0 8 1 0 4096 97 2517 23742686 147840 1254.3037414550781 8.563699999999999 2349.4063999999998 40320 16679 1 0 0 0.22014421693057282 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 7405029944 28068332 1 0 5 1 2 2 6 7372800 1474560 2949120 2950986 8985600 198 173 160 173 1813 4 0 16 3 74 0 0 0 0 2 +51 1783876473759868700 DEPTH 31 1 0.79477752751742314 0.3594548551959113 2 6 2 6 1 0 2747 70 2606 23742715 147840 1259.4592590332031 8.5823999999999998 2315.8886000000002 40320 15325 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2606 1920 0 384 1 7409546972 32585360 1 0 5 1 2 2 6 7372800 1474560 2949120 2951019 8985600 169 150 167 191 1929 0 14 3 3 50 0 0 0 0 1 +52 1783876475922448000 DEPTH 16 1 0.79484980515242754 0.3594548551959113 2 6 2 6 0 0 3271 70 2532 23742722 147840 1275.4515838623047 8.5729000000000006 2110.4749999999999 40320 16692 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 7413988520 37026908 1 0 5 1 2 2 6 7372800 1474560 2949120 2951027 8985600 232 150 264 260 1626 4 0 3 0 63 0 0 0 0 0 +53 1783876478271072700 DEPTH 33 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 3448 39 2551 23742738 147840 1259.4124908447266 8.5719999999999992 2297.6565999999998 40320 15694 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 7418449448 41487836 1 0 5 1 2 2 6 7372800 1474560 2949120 2951040 8985600 208 162 173 175 1833 1 3 3 7 25 0 0 0 0 0 +54 1783876480668269400 DEPTH 1 1 0.79499391548470288 0.36712095400340705 1 7 1 7 1 0 3110 76 2572 23742646 147840 1243.6777801513672 8.6004999999999985 2338.0059999999999 40320 15047 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 7422931796 45970184 1 0 5 1 2 2 6 7372800 1474560 2949120 2950951 8985600 173 165 156 176 1902 3 8 11 4 50 0 0 0 0 1 +55 1783876483021522400 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 14 2563 23742673 147840 1232.3647613525391 8.5859000000000005 2352.0663 80640 20302 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 7427404964 50443352 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 193 160 158 335 1717 0 0 0 0 14 0 0 0 0 0 +56 1783876485441715600 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 53 2564 23742642 147840 1242.0215454101562 8.5937000000000001 2356.4753999999998 47040 19353 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 7431879152 54917540 1 0 4 2 2 2 6 7127040 1720320 2949120 2950945 8985600 257 150 180 517 1460 0 5 1 0 47 0 0 0 0 0 +57 1783876487850808400 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 2279 44 2607 23742641 147840 1261.0762329101562 8.5905000000000005 2350.7682 40320 15626 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2607 1920 0 384 1 7436397200 59435588 1 0 5 1 2 2 6 7372800 1474560 2949120 2950944 8985600 210 165 182 168 1882 0 6 0 0 38 0 0 0 0 0 +58 1783876490175629800 DEPTH 52 1 0.79528037279558439 0.36712095400340705 1 7 1 7 0 0 2258 55 2571 23742642 147840 1230.8090515136719 8.5874000000000006 2267.4684999999999 40320 14794 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 7440878528 63916916 1 0 5 1 2 2 6 7372800 1474560 2949120 2950944 8985600 199 150 258 189 1775 3 5 2 5 40 0 0 0 0 0 +59 1783876493632923200 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 1 0 2733 64 2539 23742541 147840 1252.7780456542969 8.5946999999999996 3401.7183 40320 15387 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 7445327296 1257652 1 0 5 1 2 2 6 7372800 1474560 2949120 2950845 8985600 184 152 174 162 1867 1 4 8 2 49 0 0 0 0 1 +60 1783876495777378000 DEPTH 49 1 0.78542272902120525 0.4454855195911413 3 6 3 6 0 0 1541 82 2575 23742640 147840 1243.955322265625 8.9257999999999988 2028.9831999999999 40320 15467 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 7449812704 5743060 1 0 5 1 2 2 6 7372800 1474560 2949120 2950944 8985600 179 171 186 201 1838 3 3 10 6 60 0 0 0 0 0 +61 1783876498191512100 DEPTH 2 1 0.78549369102288524 0.45315161839863699 2 7 2 7 0 0 3597 83 2555 23742662 147840 1253.9267883300781 8.6095999999999986 2346.5801000000001 40320 15282 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 7454277712 10208068 1 0 5 1 2 2 6 7372800 1474560 2949120 2950968 8985600 174 170 179 190 1842 0 6 3 3 71 0 0 0 0 0 +62 1783876500673373000 DEPTH 45 1 0.78556450970216041 0.45315161839863699 2 7 2 7 0 0 2162 52 2558 23742631 147840 1259.4360504150391 8.7386999999999997 2429.0758000000001 40320 15169 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 7458745780 14676136 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 176 154 167 191 1870 0 3 14 4 31 0 0 0 0 0 +63 1783876501089778500 REFRESH 7 0 0.78136350729070025 0.8356047700170357 1 12 1 12 1 0 869 16 411 4050319 118080 220.9853515625 1.4512 353.47300000000001 6720 5059 0 0 0.0002610394317954313 0.79715749302282823 4096 2048 64 1 16 60 12 4 0 411 320 128 64 0 7459633480 15563836 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 30 27 25 25 304 3 0 0 0 13 0 0 0 0 1 +64 1783876501559330600 REFRESH 17 0 0.70757991954459476 0.28109028960817717 0 7 0 7 0 0 4028 28 412 3988955 56640 218.84518432617188 1.4319 413.76400000000001 6720 4701 0 0 1.3471342838455774e-05 0.067869369765247892 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7460361944 16292300 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 30 25 49 31 277 3 0 2 5 18 0 0 0 0 0 +65 1783876501985689700 REFRESH 51 0 0.77878478336557067 0.91396933560476989 3 11 3 11 0 0 541 20 407 4050318 118080 219.51385498046875 1.4516 372.58609999999999 6720 5034 0 0 0.044092769239544943 0.28194752902809894 4096 2048 64 1 16 60 12 4 0 407 320 128 64 0 7461245564 17175920 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 31 25 26 25 300 1 0 0 0 19 0 0 0 0 0 +66 1783876502401849000 REFRESH 14 0 0.72334636234053939 0.65587734241908002 0 11 0 11 0 0 1660 22 410 3988956 56640 222.1475830078125 1.4357 362.30709999999999 6720 5020 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7461971988 17902344 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 29 25 26 27 303 0 0 0 0 22 0 0 0 0 0 +67 1783876502827005400 REFRESH 28 0 0.78166000994930107 0.8279386712095399 2 11 2 11 0 0 635 15 410 4050321 118080 222.10662841796875 1.5257000000000001 370.12569999999999 6720 4871 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 410 320 128 64 0 7462858668 18789024 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 31 25 25 26 303 1 0 0 0 14 0 0 0 0 0 +68 1783876503255378600 REFRESH 19 0 0.78173376521204874 0.8279386712095399 2 11 2 11 0 0 865 23 415 4050336 118080 221.08160400390625 1.4966999999999999 372.53919999999999 6720 5051 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 60 12 4 0 415 320 128 64 0 7463750448 19680804 1 0 6 1 2 1 6 1474560 245760 491520 245855 1497600 28 28 26 26 307 1 0 0 0 22 0 0 0 0 0 +69 1783876503699876600 REFRESH 13 0 0.79790184767176586 0.27342419080068137 1 6 1 6 0 0 4096 65 408 3988955 56640 220.00537109375 1.4331 385.78980000000001 6720 4773 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7464474832 20405188 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 27 25 32 33 291 8 0 7 7 43 0 0 0 0 0 +70 1783876504103741000 REFRESH 38 0 0.77898310887624334 0.55451448040885853 1 9 1 9 0 0 2106 43 414 3988948 56640 220.64845275878906 1.4331 353.43009999999998 6720 5037 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7465205336 21135692 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 28 25 25 25 311 0 0 0 2 41 0 0 0 0 0 +71 1783876504463581100 REFRESH 2 0 0.62303461310466579 0.45315161839863699 2 7 2 7 0 0 3624 52 416 3988976 56640 219.62136840820312 1.4337 358.65210000000002 6720 4799 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 7465937880 21868236 1 0 5 1 2 2 6 1228800 245760 491520 491696 1497600 44 25 40 34 273 3 0 5 3 41 0 0 0 0 0 +72 1783876504873149400 REFRESH 36 0 0.78202732175303935 0.82027257240204421 3 10 3 10 1 0 1230 29 408 4050311 118080 219.8128662109375 1.4513 360.10129999999998 6720 4955 0 0 0.063069059271570291 0.15461093745386281 4096 2048 64 1 16 60 12 4 0 408 320 128 64 0 7466822520 22752876 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 28 25 26 25 304 3 0 0 0 26 0 0 0 0 1 +73 1783876505291143800 REFRESH 5 0 0.78210034756988189 0.8279386712095399 2 11 2 11 1 0 877 38 412 4050328 118080 219.17900085449219 1.8660000000000001 364.17020000000002 6720 5066 0 0 0.0051894558172276926 0.42441176408811176 4096 2048 64 1 16 60 12 4 0 412 320 128 64 0 7467711240 23641596 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 26 25 25 25 311 2 1 1 0 34 0 0 0 0 1 +74 1783876505717582400 REFRESH 58 0 0.77944595644457315 0.92163543441226559 2 12 2 12 0 0 529 19 408 4050309 118080 221.949951171875 1.5624 373.54250000000002 6720 5043 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 408 320 128 64 0 7468595880 24526236 1 0 6 1 2 1 6 1474560 245760 491520 245827 1497600 29 25 25 26 303 1 0 0 0 18 0 0 0 0 0 +75 1783876506132384500 REFRESH 6 0 0.77951869438239019 0.91396933560476989 3 11 3 11 0 0 380 12 421 4050313 118080 220.17843627929688 1.4859 361.55399999999997 6720 5033 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 421 320 128 64 0 7469493780 25424136 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 28 29 25 26 313 1 1 0 1 9 0 0 0 0 0 +76 1783876506584827700 REFRESH 40 0 0.77404123000464831 0.64821124361158422 1 10 1 10 0 0 1755 30 418 3988923 56640 218.76121520996094 1.4611000000000001 393.91309999999999 6720 4986 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7470228364 26158720 1 0 5 1 2 2 6 1228800 245760 491520 491643 1497600 26 25 30 26 311 4 0 3 3 20 0 0 0 0 0 +77 1783876507017404700 REFRESH 46 0 0.71343292507177725 0.37478705281090291 0 8 0 8 0 0 2743 33 410 3988947 56640 220.77030944824219 1.4437 431.0129 6720 4712 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7470954788 26885144 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 52 25 32 36 265 0 0 8 1 24 0 0 0 0 0 +78 1783876507435278200 REFRESH 56 0 0.78224600339953421 0.17206132879045993 2 4 2 4 0 0 4096 57 414 3988954 56640 219.81184387207031 1.4584999999999999 416.33170000000001 13440 8575 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7471685292 27615648 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 33 25 42 51 263 1 0 5 10 41 0 0 0 0 0 +79 1783876507906225500 REFRESH 20 0 0.79856045669113185 0.26575809199318562 2 5 2 5 0 0 2129 15 425 3988947 56640 219.60908508300781 1.4534 415.82889999999998 6720 4783 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 7472427016 28357372 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 40 25 30 60 270 0 0 2 0 13 0 0 0 0 0 +80 1783876508325098400 REFRESH 30 0 0.7868153605482987 0.4608177172061329 1 8 1 8 0 0 3540 54 412 3988963 56640 220.29107666015625 1.4312 363.31459999999998 6720 4967 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7473155480 29085836 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 35 25 27 28 297 3 0 1 1 49 0 0 0 0 0 +81 1783876508754377600 REFRESH 53 0 0.78369609267318208 0.37478705281090291 0 8 0 8 1 0 4096 41 401 3988952 56640 219.97465515136719 1.4268000000000001 374.18579999999997 6720 4736 0 0 0 0.21955476082722603 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 7473872724 29803080 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 31 32 285 0 0 2 5 34 0 0 0 0 1 +82 1783876509171373900 REFRESH 21 0 0.77980876733794036 0.56218057921635434 0 10 0 10 0 0 2565 32 408 3988941 56640 220.74163818359375 1.4337 365.0249 6720 4868 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7474597108 30527464 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 29 25 31 29 294 2 0 2 1 27 0 0 0 0 0 +83 1783876509586170000 REFRESH 32 0 0.78701955787265265 0.4608177172061329 1 8 1 8 0 0 3017 30 413 3988952 56640 220.0657958984375 1.4345000000000001 361.22590000000002 6720 4957 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7475326592 31256948 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 25 28 30 301 3 0 1 1 25 0 0 0 0 0 +84 1783876510010141600 REFRESH 31 0 0.78388594081450547 0.3594548551959113 2 6 2 6 0 0 2781 74 415 3988943 56640 220.92185974121094 1.4274 366.72710000000001 6720 4747 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7476058116 31988472 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 34 25 43 37 276 11 0 7 9 47 0 0 0 0 0 +85 1783876510428516300 REFRESH 27 0 0.78715502999101583 0.4608177172061329 1 8 1 8 0 0 3623 37 410 3988951 56640 221.2884521484375 1.4291 361.78800000000001 6720 4950 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7476784540 32714896 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 40 26 28 27 289 0 0 0 0 37 0 0 0 0 0 +86 1783876510835339100 REFRESH 43 0 0.78303675703292697 0.8279386712095399 2 11 2 11 0 0 780 12 418 4050317 118080 220.93414306640625 1.4466000000000001 356.07350000000002 6720 4978 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 128 64 0 7477679380 33609736 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 26 26 316 4 0 0 1 7 0 0 0 0 0 +87 1783876511266193100 REFRESH 24 0 0.77810781284846675 1 4 11 4 11 0 0 493 14 406 4050308 118080 221.29254150390625 1.4505999999999999 377.27800000000002 6720 5078 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 406 320 128 64 0 7478561980 34492336 1 0 6 1 2 1 6 1474560 245760 491520 245826 1497600 29 25 25 25 302 1 0 0 0 13 0 0 0 0 0 +88 1783876511686089400 REFRESH 3 0 0.7748572588730761 0.64054514480408853 2 9 2 9 1 0 1122 18 407 3988951 56640 218.11814880371094 1.4359 366.19979999999998 6720 5006 0 0 0.0077443059253990334 0.16132475645587399 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7479285344 35215700 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 32 25 35 32 283 0 0 1 0 17 0 0 0 0 1 +89 1783876512122527200 REFRESH 18 0 0.78052224192301234 0.9293015332197615 1 13 1 13 0 0 441 14 413 4050305 118080 222.98521423339844 1.4718 382.43470000000002 6720 5064 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 413 320 128 64 0 7480175084 36105440 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 29 25 26 25 308 3 0 0 0 11 0 0 0 0 0 +90 1783876512543368200 REFRESH 4 0 0.78332016165219098 0.8356047700170357 1 12 1 12 0 0 284 8 415 4050321 118080 218.10800170898438 1.4621999999999999 364.35289999999998 6720 5065 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 60 12 4 0 415 320 128 64 0 7481066864 36997220 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 28 25 25 25 312 2 0 0 0 6 0 0 0 0 0 +91 1783876512902920200 REFRESH 49 0 0.77433399634866451 0.4454855195911413 3 6 3 6 0 0 1546 26 409 3988947 56640 219.96237182617188 1.4847999999999999 357.94600000000003 6720 4823 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7481792268 37722624 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 33 26 34 37 279 0 0 1 0 25 0 0 0 0 0 +92 1783876513333188000 REFRESH 34 0 0.78346105037615144 0.8356047700170357 1 12 1 12 0 0 713 19 416 4050325 118080 219.66438293457031 1.4654 371.50189999999998 6720 5076 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 416 320 128 64 0 7482685068 38615424 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 28 26 25 25 312 2 0 0 0 17 0 0 0 0 0 +93 1783876513757452800 REFRESH 29 0 0.78353129309718905 0.82027257240204421 3 10 3 10 0 0 1104 9 418 4050317 118080 219.33235168457031 1.4392 371.33449999999999 6720 5055 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 418 320 128 64 0 7483579908 39510264 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 28 25 25 26 314 1 0 0 0 8 0 0 0 0 0 +94 1783876514121905000 REFRESH 45 0 0.77452460759216857 0.45315161839863699 2 7 2 7 0 0 2170 24 413 3988952 56640 221.3939208984375 1.4419 363.14240000000001 6720 4750 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7484309392 40239748 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 39 25 29 31 289 2 0 3 2 17 0 0 0 0 0 +95 1783876514537487100 REFRESH 37 0 0.78367137773437756 0.8356047700170357 1 12 1 12 0 0 996 15 408 4050309 118080 219.84153747558594 1.4541999999999999 363.32690000000002 6720 5107 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 60 12 4 0 408 320 128 64 0 7485194032 41124388 1 0 6 1 2 1 6 1474560 245760 491520 245829 1497600 30 28 25 26 299 1 0 1 0 13 0 0 0 0 0 +96 1783876514957370400 REFRESH 26 0 0.88074802541146391 0.55451448040885853 1 9 1 9 0 0 1896 42 413 3988880 56640 220.43954467773438 1.4312 366.14699999999999 6720 4972 0 0 0.031359347422313416 0.55128889379475332 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7485923516 41853872 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 27 26 308 3 2 0 2 35 0 0 0 0 0 +97 1783876515393698300 REFRESH 54 0 0.78795701583911237 0.4608177172061329 1 8 1 8 0 0 1215 23 414 3988940 56640 219.73196411132812 1.4309000000000001 382.3657 6720 4958 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7486654020 42584376 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 37 26 28 37 286 0 0 3 3 17 0 0 0 0 0 +98 1783876515871580000 REFRESH 33 0 0.78477707025536114 0.36712095400340705 1 7 1 7 0 0 3467 44 420 3988948 56640 220.13133239746094 1.4276 365.85309999999998 6720 4804 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7487390644 43321000 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 29 25 39 33 294 1 0 2 3 38 0 0 0 0 0 +99 1783876516279313500 REFRESH 16 0 0.78483988784906478 0.3594548551959113 2 6 2 6 0 0 3297 54 415 3988954 56640 221.78431701660156 1.4319999999999999 352.11259999999999 6720 4708 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7488122168 44052524 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 48 25 28 25 289 9 0 5 0 40 0 0 0 0 0 +100 1783876516679066300 REFRESH 44 0 0.7849025870848555 0.36712095400340705 1 7 1 7 0 0 2296 37 424 3988950 56640 220.67814636230469 1.4260999999999999 398.33760000000001 6720 4764 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 7488862872 44793228 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 32 25 46 27 294 1 0 1 9 26 0 0 0 0 0 +101 1783876517150562300 REFRESH 25 0 0.78822030306910262 0.4608177172061329 1 8 1 8 0 0 2340 24 411 3988956 56640 221.53932189941406 1.7043999999999999 409.72770000000003 6720 4923 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7489590316 45520672 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 29 25 25 26 306 3 0 1 0 20 0 0 0 0 0 +102 1783876517566587600 REFRESH 42 0 1.003874410151965 0 0 4 0 4 0 0 4096 18 417 3988964 56640 219.04486083984375 1.4374 414.3408 13440 8178 0 0 0 0.0063610145412278767 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 7490323880 46254236 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 43 26 32 68 248 2 1 1 2 12 0 0 0 0 0 +103 1783876518078026800 REFRESH 48 0 0.80008997894659106 0.26575809199318562 2 5 2 5 0 0 2495 27 414 3988972 56640 219.92959594726562 1.4377 390.53089999999997 6720 4803 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7491054384 46984740 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 27 25 28 33 301 4 0 2 2 19 0 0 0 0 0 +104 1783876518541593800 REFRESH 39 0 0.78127361581171362 0.55451448040885853 1 9 1 9 0 0 1611 10 424 3988962 56640 218.39872741699219 1.4356 407.59309999999999 6720 4995 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 7491795088 47725444 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 28 25 28 33 310 0 0 1 0 9 0 0 0 0 0 +105 1783876518984055700 REFRESH 15 0 0.78163663830016694 0.91396933560476989 3 11 3 11 0 0 322 13 412 4050327 118080 221.03245544433594 1.4609000000000001 385.6934 6720 5078 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 128 64 0 7492683808 48614164 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 29 25 25 25 308 1 0 0 0 12 0 0 0 0 0 +106 1783876519431218600 REFRESH 50 0 0.77604664265108769 0.64054514480408853 2 9 2 9 0 0 1049 6 429 3988975 56640 218.66412353515625 1.4336 390.13209999999998 6720 4975 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 7493429612 49359968 1 0 5 1 2 2 6 1228800 245760 491520 491694 1497600 27 25 25 26 326 0 0 2 0 4 0 0 0 0 0 +107 1783876519855035400 REFRESH 22 0 0.78177359361650134 0.91396933560476989 3 11 3 11 0 0 475 9 415 4050314 118080 221.39801025390625 1.4456 374.40179999999998 6720 4813 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 60 12 4 0 415 320 128 64 0 7494321392 50251748 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 29 25 26 26 309 0 0 0 0 9 0 0 0 0 0 +108 1783876520263336200 REFRESH 12 0 0.77617632827064764 0.63287904599659284 3 8 3 8 0 0 1556 28 422 3988940 56640 221.316162109375 1.4337 355.75450000000001 6720 5032 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 7495060056 50990412 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 25 25 27 26 319 0 0 0 1 27 0 0 0 0 0 +109 1783876520700599900 REFRESH 52 0 0.78546162451298018 0.36712095400340705 1 7 1 7 0 0 2270 31 422 3988953 56640 218.32499694824219 1.4301999999999999 384.7328 6720 4808 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 7495798720 51729076 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 44 25 115 36 202 1 0 12 3 15 0 0 0 0 0 +110 1783876521126198200 REFRESH 35 0 0.78470534716210383 0.8279386712095399 2 11 2 11 0 0 1102 14 407 4050314 118080 222.70771789550781 1.6976 372.66950000000003 6720 5115 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 407 320 128 64 0 7496682340 52612696 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 28 28 25 25 301 1 0 0 0 13 0 0 0 0 0 +111 1783876521525754000 REFRESH 10 0 0.77636995664983632 0.64821124361158422 1 10 1 10 0 0 1168 16 413 3988949 56640 219.68896484375 1.4343999999999999 347.00049999999999 6720 4986 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7497411824 53342180 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 27 310 2 0 1 3 10 0 0 0 0 0 +112 1783876521944300200 REFRESH 8 0 0.80064590071156772 0.26575809199318562 2 5 2 5 0 0 2403 17 409 3988942 56640 221.62028503417969 1.4277 364.76490000000001 6720 4774 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7498137228 54067584 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 41 25 32 28 283 0 0 0 0 17 0 0 0 0 0 +113 1783876522362950700 REFRESH 41 0 0.7818555900621128 0.55451448040885853 1 9 1 9 0 0 2280 46 413 3988954 56640 218.91276550292969 1.4331 363.57350000000002 6720 5016 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7498866712 54797068 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 33 29 298 2 0 5 4 35 0 0 0 0 0 +114 1783876522774558500 REFRESH 1 0 0.78599953212768303 0.36712095400340705 1 7 1 7 0 0 3152 79 417 3988969 56640 219.68179321289062 1.4306000000000001 357.57990000000001 6720 4739 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 7499600276 55530632 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 34 25 30 39 289 3 0 11 4 61 0 0 0 0 0 +115 1783876523210548500 REFRESH 9 0 0.80123743220764654 0.27342419080068137 1 6 1 6 0 0 3175 50 411 3988949 56640 222.27967834472656 1.4348000000000001 372.11349999999999 6720 4776 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7500327720 56258076 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 30 25 29 30 297 1 0 1 0 48 0 0 0 0 0 +116 1783876523626402100 REFRESH 47 0 0.78511092578369701 0.8279386712095399 2 11 2 11 0 0 661 22 408 4050324 118080 219.504638671875 1.4520999999999999 362.36070000000001 6720 5010 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 408 320 128 64 0 7501212360 57142716 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 29 26 25 25 303 0 0 0 0 22 0 0 0 0 0 +117 1783876524099184400 REFRESH 0 0 0.7851780888716281 0.8279386712095399 2 11 2 11 0 0 886 13 416 4050311 118080 222.96269226074219 1.4478 366.35969999999998 6720 5025 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 416 320 128 64 0 7502105160 58035516 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 27 27 25 25 312 2 0 0 0 11 0 0 0 0 0 +118 1783876524522825300 REFRESH 57 0 0.80101141484313809 0.27342419080068137 1 6 1 6 0 0 4096 22 406 3988966 56640 220.69760131835938 1.4339999999999999 372.32889999999998 6720 4786 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 7502827504 58757860 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 44 25 36 34 267 0 0 0 0 22 0 0 0 0 0 +119 1783876524968702200 REFRESH 11 0 0.78608992395751198 0.37478705281090291 0 8 0 8 1 0 2537 48 416 3988933 56640 219.15545654296875 1.4274 389.50810000000001 6720 4765 0 0 0 0.69797492862673483 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 7503560048 59490404 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 50 25 29 43 269 5 0 7 3 33 0 0 0 0 1 +120 1783876525373600500 REFRESH 55 0 0.77694446848818488 0.64054514480408853 2 9 2 9 0 0 1072 16 406 3988954 56640 222.03904724121094 1.4328000000000001 353.2928 6720 4970 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 7504282392 60212748 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 40 27 286 0 0 1 0 15 0 0 0 0 0 +121 1783876525900646300 REFRESH 23 0 0.78877885242961121 0.74190800681430991 1 11 1 11 0 0 3417 33 410 4050321 118080 220.97203063964844 1.4436 367.42939999999999 6720 4987 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 410 320 128 64 0 7505169072 61099428 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 27 25 26 25 307 2 0 0 0 31 0 0 0 0 0 +122 1783876528354277100 DEPTH 42 1 0.94626235351166654 0 0 4 0 4 0 0 4096 20 2548 23742629 147840 1267.8954010009766 8.6257000000000001 2397.2853 80640 40568 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 7509626940 65557296 1 0 4 2 2 2 6 5898240 2949120 2949120 2950929 8985600 162 150 151 218 1867 0 0 0 0 20 0 0 0 0 0 +123 1783876531950332500 DEPTH 26 1 0.85917010911106051 0.55451448040885853 1 9 1 9 1 0 1911 95 2555 23741691 147840 1274.5831756591797 8.6396999999999995 3546.2395000000001 40320 23009 1 0 0.072182291429561118 0.43270756809043426 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 7514092028 2914020 1 0 6 1 2 1 6 8847360 1474560 2949120 1475433 8985600 156 150 154 152 1943 10 0 2 13 70 0 0 0 0 1 +124 1783876534341813000 DEPTH 56 1 0.8051119217580599 0.17206132879045993 2 4 2 4 0 0 4096 46 2564 23742643 147840 1270.5116119384766 8.6556999999999995 2390.1520999999998 80640 42318 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 7518566216 7388208 1 0 4 2 2 2 6 5898240 2949120 2949120 2950950 8985600 176 150 200 263 1775 2 0 7 3 34 0 0 0 0 0 +125 1783876536829630700 DEPTH 17 1 0.79006966691292557 0.28109028960817717 0 7 0 7 0 0 4045 47 2563 23742732 147840 1264.6655426025391 8.6197999999999997 2433.5787999999998 73920 40326 1 0 1.3471342838455774e-05 0.067869369765247892 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 7523039384 11861376 1 0 4 2 2 2 6 6144000 2703360 2949120 2951033 8985600 156 162 156 166 1923 8 3 0 2 34 0 0 0 0 0 +126 1783876539239344200 DEPTH 20 1 0.79011580786937752 0.26575809199318562 2 5 2 5 0 0 2139 37 2595 23742644 147840 1271.0043182373047 8.5755000000000017 2356.0873000000001 67200 39978 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 7527545192 16367184 1 0 4 2 2 2 6 6389760 2457600 2949120 2950949 8985600 161 152 157 185 1940 0 0 4 0 33 0 0 0 0 0 +127 1783876541610735600 DEPTH 13 1 0.79017292732658606 0.27342419080068137 1 6 1 6 0 0 4096 92 2544 23742676 147840 1269.1580810546875 8.5891999999999999 2315.0401999999999 73920 40485 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 7531998980 20820972 1 0 4 2 2 2 6 6144000 2703360 2949120 2950979 8985600 151 150 155 150 1938 13 5 10 7 57 0 0 0 0 0 +128 1783876543926331500 DEPTH 54 1 0.7766118021794014 0.4608177172061329 1 8 1 8 0 0 1224 34 2561 23742199 147840 1271.4513397216797 8.6104000000000003 2314.3627999999999 73920 45025 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 7536470108 25292100 1 0 4 2 2 2 6 6881280 2703360 2949120 2213223 8985600 169 150 161 203 1878 0 0 8 3 23 0 0 0 0 0 +129 1783876546515470100 DEPTH 32 1 0.77667124766297002 0.4608177172061329 1 8 1 8 0 0 3037 76 2554 23742672 147840 1271.9196014404297 8.8387999999999991 2357.6806999999999 40320 22832 1 1 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 7540934096 29756088 1 0 5 1 2 2 6 7372800 1474560 2949120 2950978 8985600 151 150 151 157 1945 12 0 4 10 49 0 0 0 0 0 +130 1783876548936249200 DEPTH 42 1 0.81883295637122744 0 0 4 0 4 0 0 4096 24 2568 23731753 136320 1264.2601013183594 8.6907999999999994 2419.5356000000002 100800 45232 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 7545412364 34234356 1 0 4 3 2 2 5 5898240 3686400 2949120 2951009 8236800 162 150 150 438 1668 0 0 2 0 22 0 0 0 0 0 +131 1783876551357899800 DEPTH 48 1 0.79040038322826556 0.26575809199318562 2 5 2 5 0 0 2510 55 2562 23742659 147840 1270.2132110595703 8.589599999999999 2359.2764999999999 53760 32592 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 7549884512 38706504 1 0 4 2 2 2 6 6881280 1966080 2949120 2950964 8985600 156 150 150 150 1956 11 2 4 0 38 0 0 0 0 0 +132 1783876553826137800 DEPTH 27 1 0.77684894739036359 0.4608177172061329 1 8 1 8 0 0 3648 100 2554 23742643 147840 1283.4660797119141 8.6687999999999992 2404.7856999999999 40320 23005 1 0 0.090901515514348663 1.023281551009547 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 7554348500 43170492 1 0 5 1 2 2 6 7372800 1474560 2949120 2950949 8985600 164 150 155 159 1926 0 0 1 5 94 0 0 0 0 0 +133 1783876556258922600 DEPTH 30 1 0.776907969612886 0.4608177172061329 1 8 1 8 0 0 3556 79 2537 23742656 147840 1279.4724578857422 8.5792999999999999 2310.3512000000001 40320 23012 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 7558795148 47617140 1 0 5 1 2 2 6 7372800 1474560 2949120 2950961 8985600 179 150 156 160 1892 6 0 0 2 71 0 0 0 0 0 +134 1783876558626214000 DEPTH 25 1 0.77696688693134097 0.4608177172061329 1 8 1 8 0 0 2358 59 2550 23742221 147840 1280.3644104003906 8.7949999999999999 2311.9497999999999 73920 45031 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 7563255056 52077048 1 0 4 2 2 2 6 6881280 2703360 2949120 2213243 8985600 156 150 153 150 1941 7 7 5 4 36 0 0 0 0 0 +135 1783876561106214900 DEPTH 53 1 0.77563121648756228 0.37478705281090291 0 8 0 8 1 0 4096 61 2504 23742614 147840 1269.7784118652344 8.7677000000000014 2415.6979999999999 53760 32424 1 0 0 0.21963000786869316 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 7567668044 56490036 1 0 4 2 2 2 6 6881280 1966080 2949120 2950915 8985600 162 150 150 156 1886 0 0 10 7 44 0 0 0 0 1 +136 1783876563564405200 DEPTH 46 1 0.77568526919788017 0.37478705281090291 0 8 0 8 0 0 2757 56 2531 23742634 147840 1275.3527221679688 8.6082999999999998 2395.7696999999998 73920 40897 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 7572108572 60930564 1 0 4 2 2 2 6 6144000 2703360 2949120 2950938 8985600 167 150 172 164 1878 1 4 4 0 47 0 0 0 0 0 +137 1783876566026330400 DEPTH 31 1 0.77573943245149413 0.3594548551959113 2 6 2 6 0 0 2799 65 2545 23742702 147840 1283.9914398193359 8.6655999999999995 2403.6478999999999 73920 40965 1 1 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 7576563380 65385372 1 0 4 2 2 2 6 6144000 2703360 2949120 2951005 8985600 169 174 182 178 1842 8 3 8 7 38 0 0 0 0 0 +138 1783876569647530600 DEPTH 42 1 0.81209093536977484 0 0 4 0 4 0 0 4096 15 2595 23720735 125760 1257.1055297851562 8.6237999999999992 3620.0463 120960 42064 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 7581069268 2782920 1 0 4 3 2 2 5 5898240 4423680 2949120 2950943 7488000 157 150 150 1241 897 0 0 1 0 14 0 0 0 0 0 +139 1783876571930210800 DEPTH 8 1 0.79085046264975012 0.26575809199318562 2 5 2 5 0 0 2407 48 2517 23742697 147840 1280.1135101318359 8.5937000000000001 2225.8398999999999 53760 32574 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 7585495516 7209168 1 0 4 2 2 2 6 6881280 1966080 2949120 2951001 8985600 176 150 163 154 1874 0 0 2 1 45 0 0 0 0 0 +140 1783876574133014500 DEPTH 16 1 0.77590627625193143 0.3594548551959113 2 6 2 6 0 0 3314 98 2541 23742675 147840 1283.3290252685547 8.5887000000000011 2145.6936000000001 53760 32784 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 7589946244 11659896 1 0 4 2 2 2 6 6881280 1966080 2949120 2950981 8985600 196 150 152 150 1893 14 0 15 0 69 0 0 0 0 0 +141 1783876576513418600 DEPTH 33 1 0.77596199179743763 0.36712095400340705 1 7 1 7 0 0 3476 53 2548 23742609 147840 1278.1916046142578 8.5908000000000015 2322.4308999999998 53760 32485 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 7594404112 16117764 1 0 4 2 2 2 6 6881280 1966080 2949120 2950911 8985600 160 150 176 155 1907 5 0 2 7 39 0 0 0 0 0 +142 1783876578946468100 DEPTH 44 1 0.77601760961961364 0.36712095400340705 1 7 1 7 0 0 2309 59 2620 23742719 147840 1279.6588439941406 8.6013000000000002 2376.3525 73920 40207 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2620 1920 0 384 1 7598935420 20649072 1 0 4 2 2 2 6 6144000 2703360 2949120 2951020 8985600 156 150 193 152 1969 2 5 0 7 45 0 0 0 0 0 +143 1783876581332087100 DEPTH 52 1 0.7760731300501269 0.36712095400340705 1 7 1 7 0 0 2288 48 2578 23742673 147840 1264.3031616210938 8.5783000000000005 2329.4414999999999 73920 40022 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 7603423888 25137540 1 0 4 2 2 2 6 6144000 2703360 2949120 2950977 8985600 174 150 300 177 1777 0 0 2 1 45 0 0 0 0 0 +144 1783876583741654900 DEPTH 9 1 0.79149599790848724 0.27342419080068137 1 6 1 6 0 0 3182 65 2514 23742705 147840 1291.9277801513672 8.6117000000000008 2340.6612 73920 40966 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 7607847076 29560728 1 0 4 2 2 2 6 6144000 2703360 2949120 2951011 8985600 168 170 162 159 1855 6 0 3 2 54 0 0 0 0 0 +145 1783876585907469300 DEPTH 7 1 0.77103221867961802 0.8356047700170357 1 12 1 12 1 0 875 58 2532 23742642 147840 1269.6698760986328 8.7957999999999998 2101.0762 40320 21811 1 0 0.00026580712994323603 0.79233664746639609 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 7612288624 34002276 1 0 5 1 2 2 6 7372800 1474560 2949120 2950946 8985600 162 181 156 162 1871 0 3 0 2 53 0 0 0 0 2 +146 1783876588595669000 DEPTH 26 1 0.82019287869865376 0.55451448040885853 1 9 1 9 0 0 1932 102 2580 23741779 147840 1278.4332885742188 8.7890999999999995 2573.4367000000002 53760 28747 1 0 0.072182291429561118 0.43270756809043426 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 7616779132 38492784 1 0 5 2 2 1 6 8355840 1966080 2949120 1475522 8985600 156 150 154 160 1960 4 3 5 5 85 0 0 0 0 0 +147 1783876591202176800 DEPTH 42 1 0.81595025109773867 0 0 4 0 4 0 0 4096 20 2612 23701617 106560 1255.6370239257812 9.2819000000000003 2604.8598999999999 120960 31782 1 1 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2612 1920 0 384 1 7621302280 43015932 1 0 4 3 3 2 4 5898240 4423680 4177920 2950968 6240000 156 150 161 1463 682 0 0 0 0 19 0 0 0 0 0 +148 1783876593648055000 DEPTH 57 1 0.79134928282013661 0.27342419080068137 1 6 1 6 0 0 4096 48 2531 23742644 147840 1280.2284240722656 8.605599999999999 2387.8571999999999 73920 40933 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 7625742808 47456460 1 0 4 2 2 2 6 6144000 2703360 2949120 2950948 8985600 180 159 156 162 1874 0 1 5 2 40 0 0 0 0 0 +149 1783876596056769200 DEPTH 1 1 0.77661243711084693 0.36712095400340705 1 7 1 7 0 0 3174 85 2576 23742605 147840 1270.53173828125 8.6300999999999988 2348.4511000000002 73920 40226 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 7630229236 51942888 1 0 4 2 2 2 6 6144000 2703360 2949120 2950911 8985600 155 155 155 177 1934 4 4 13 2 62 0 0 0 0 0 +150 1783876598502757200 DEPTH 11 1 0.77647724230935355 0.37478705281090291 0 8 0 8 1 0 2554 63 2544 23742669 147840 1267.6084289550781 8.5881000000000007 2387.4638 73920 40183 1 0 0 0.69576800522332605 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 7634683024 56396676 1 0 4 2 2 2 6 6144000 2703360 2949120 2950974 8985600 161 150 159 162 1912 0 1 13 1 48 0 0 0 0 3 +151 1783876600653689500 DEPTH 23 1 0.77468706320493141 0.74190800681430991 1 11 1 11 0 0 3436 67 2520 23742603 147840 1296.0128936767578 8.6467000000000009 2095.1264999999999 40320 20723 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 7639112332 60825984 1 0 5 1 2 2 6 7372800 1474560 2949120 2950905 8985600 156 150 154 152 1908 1 2 1 0 63 0 0 0 0 0 +152 1783876602773362100 DEPTH 5 1 0.77141692202299372 0.8279386712095399 2 11 2 11 1 0 882 46 2557 23742669 147840 1289.228271484375 9.6365999999999996 2069.1862999999998 40320 20048 1 0 0.0051461908257399176 0.42208025926988407 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 7643579380 65293032 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 150 150 150 150 1957 0 4 3 2 37 0 0 0 0 3 +153 1783876605961237300 DEPTH 36 1 0.77147381095612511 0.82027257240204421 3 10 3 10 1 0 1238 44 2569 23742673 147840 1282.1739501953125 8.6236999999999995 3136.7212 40320 22476 1 0 0.085026879484592505 0.13032884405948617 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 7648058748 2663580 1 0 5 1 2 2 6 7372800 1474560 2949120 2950978 8985600 156 151 150 156 1956 9 0 0 1 34 0 0 0 0 1 +154 1783876606365748900 REFRESH 8 0 0.68172242053258436 0.26575809199318562 2 5 2 5 0 0 2409 16 411 3988930 56640 224.58470153808594 1.4287000000000001 355.1447 13440 9358 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7648786192 3391024 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 33 28 299 0 0 0 0 16 0 0 0 0 0 +155 1783876606775407900 REFRESH 43 0 0.7715926141386048 0.8279386712095399 2 11 2 11 0 0 781 11 418 3988940 56640 229.87673950195312 1.4286000000000001 358.5376 6720 5114 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7649520776 4125608 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 25 25 25 26 317 0 1 1 1 8 0 0 0 0 0 +156 1783876607201081000 REFRESH 10 0 0.76573723839468644 0.64821124361158422 1 10 1 10 0 0 1169 12 418 3988943 56640 220.39244079589844 1.4460999999999999 365.15629999999999 6720 4839 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7650255360 4860192 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 27 315 1 0 0 2 9 0 0 0 0 0 +157 1783876607611665100 REFRESH 19 0 0.77171144214963461 0.8279386712095399 2 11 2 11 0 0 870 25 413 3988949 56640 225.43052673339844 1.4354 358.01299999999998 6720 5083 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7650984844 5589676 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 26 25 25 27 310 0 0 0 0 25 0 0 0 0 0 +158 1783876608016200900 REFRESH 3 0 0.76586849828433812 0.64054514480408853 2 9 2 9 0 0 1130 24 407 3988936 56640 218.17958068847656 1.4330000000000001 351.12869999999998 6720 4887 0 0 0.0077443059253990334 0.16132475645587399 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7651708208 6313040 1 0 5 1 2 2 6 1228800 245760 491520 491655 1497600 32 25 34 31 285 0 0 0 0 24 0 0 0 0 0 +159 1783876608518215700 REFRESH 17 0 0.78199271974478457 0.28109028960817717 0 7 0 7 0 0 4057 31 407 3988937 56640 218.99058532714844 1.4463999999999999 438.2817 13440 9213 0 0 1.3471342838455774e-05 0.067869369765247892 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7652431572 7036404 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 66 36 254 0 0 3 4 24 0 0 0 0 0 +160 1783876608949997800 REFRESH 12 0 0.76596306132780523 0.63287904599659284 3 8 3 8 0 0 1582 46 428 3988951 56640 220.33920288085938 1.4497 368.52069999999998 6720 4893 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 7653176356 7781188 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 25 25 29 27 322 0 0 1 1 44 0 0 0 0 0 +161 1783876609396207500 REFRESH 55 0 0.76601927683349902 0.64054514480408853 2 9 2 9 0 0 1074 13 407 3988941 56640 264.06808471679688 1.4389000000000001 396.1071 6720 4932 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7653899720 8504552 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 28 25 41 26 287 0 0 1 0 12 0 0 0 0 0 +162 1783876609770344300 REFRESH 9 0 0.71246857904186589 0.27342419080068137 1 6 1 6 0 0 3210 58 409 3988950 56640 223.66310119628906 1.4444999999999999 372.60410000000002 13440 9316 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7654625124 9229956 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 31 36 291 0 0 0 1 57 0 0 0 0 0 +163 1783876610266045900 REFRESH 6 0 0.76933822933675633 0.91396933560476989 3 11 3 11 0 0 381 7 420 3988983 56640 312.995849609375 1.4399999999999999 444.46010000000001 6720 5111 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7655361748 9966580 1 0 5 1 2 2 6 1228800 245760 491520 491700 1497600 27 25 25 27 316 0 0 0 0 7 0 0 0 0 0 +164 1783876610629076400 REFRESH 7 0 0.69873025950953727 0.8356047700170357 1 12 1 12 0 0 877 21 409 3988955 56640 219.82821655273438 1.4384999999999999 361.86529999999999 6720 4948 0 0 0.00026580712994323603 0.79233664746639609 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7656087152 10691984 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 25 25 30 303 0 0 0 0 21 0 0 0 0 0 +165 1783876611078187800 REFRESH 41 0 0.7716003302607316 0.55451448040885853 1 9 1 9 0 0 2288 43 409 3988949 56640 218.10995483398438 1.4496 388.41370000000001 6720 4909 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7656812556 11417388 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 27 25 28 27 302 0 0 4 3 36 0 0 0 0 0 +166 1783876611521569500 REFRESH 54 0 0.76732395849309021 0.4608177172061329 1 8 1 8 0 0 1226 12 418 3988992 56640 220.38630676269531 1.4335 387.96870000000001 13440 9708 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7657547140 12151972 1 0 4 2 2 2 6 983040 491520 491520 491712 1497600 26 25 30 54 283 0 0 1 3 8 0 0 0 0 0 +167 1783876611954422000 REFRESH 21 0 0.77171171902891655 0.56218057921635434 0 10 0 10 0 0 2578 40 413 3988956 56640 220.57369995117188 1.4464999999999999 368.22309999999999 6720 4891 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7658276624 12881456 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 28 25 33 29 298 2 0 0 2 36 0 0 0 0 0 +168 1783876612399905700 REFRESH 34 0 0.77235781371212819 0.8356047700170357 1 12 1 12 0 0 721 24 413 3988962 56640 221.10719299316406 1.4722 382.17720000000003 6720 5052 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7659006108 13610940 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 25 27 310 0 0 0 1 23 0 0 0 0 0 +169 1783876612799403200 REFRESH 28 0 0.77241598121625132 0.8279386712095399 2 11 2 11 0 0 640 14 409 3988945 56640 222.16908264160156 1.4298 346.39580000000001 6720 5093 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7659731512 14336344 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 28 25 26 304 0 0 0 0 14 0 0 0 0 0 +170 1783876613196816100 REFRESH 47 0 0.77247405119089485 0.8279386712095399 2 11 2 11 0 0 666 17 411 3988928 56640 220.93927001953125 1.4330000000000001 344.31999999999999 6720 5074 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7660458956 15063788 1 0 5 1 2 2 6 1228800 245760 491520 491647 1497600 26 25 25 25 310 0 0 0 0 17 0 0 0 0 0 +171 1783876613598007900 REFRESH 15 0 0.76980475122529013 0.91396933560476989 3 11 3 11 0 0 322 8 409 3988951 56640 220.4241943359375 1.4451000000000001 349.87099999999998 6720 5042 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7661184360 15789192 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 26 307 0 0 0 0 8 0 0 0 0 0 +172 1783876614073482300 REFRESH 27 0 0.76764229025585407 0.4608177172061329 1 8 1 8 0 0 3681 54 412 3988954 56640 221.92950439453125 1.4319999999999999 367.17039999999997 6720 4777 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7661912824 16517656 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 33 26 29 29 295 0 0 1 2 51 0 0 0 0 0 +173 1783876614490552700 REFRESH 31 0 0.76770082071670986 0.3594548551959113 2 6 2 6 0 0 2813 36 416 3988964 56640 220.90547180175781 1.4333 359.09109999999998 13440 9239 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 7662645368 17250200 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 45 40 280 0 0 5 4 27 0 0 0 0 0 +174 1783876614936866000 REFRESH 49 0 0.76774769241995022 0.4454855195911413 3 6 3 6 0 0 1553 19 411 3988952 56640 219.35821533203125 1.5807 383.62810000000002 6720 4686 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7663372812 17977644 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 33 26 33 38 281 0 0 0 0 19 0 0 0 0 0 +175 1783876615379563200 REFRESH 14 0 0.76679641148511513 0.65587734241908002 0 11 0 11 0 0 1664 21 411 3988949 56640 223.38969421386719 1.4371 377.44130000000001 6720 4944 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7664100256 18705088 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 28 25 26 28 304 0 0 0 0 21 0 0 0 0 0 +176 1783876615854184100 REFRESH 39 0 0.77220837023324018 0.55451448040885853 1 9 1 9 0 0 1611 8 421 3988936 56640 219.05305480957031 1.4388000000000001 410.80149999999998 6720 4931 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 7664837900 19442732 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 29 25 28 33 306 0 0 0 1 7 0 0 0 0 0 +177 1783876616396554100 REFRESH 40 0 0.7669059523586752 0.64821124361158422 1 10 1 10 0 0 1767 30 420 3988947 56640 220.47640991210938 1.4349000000000001 416.28190000000001 6720 4826 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7665574524 20179356 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 25 25 29 27 314 4 0 3 2 21 0 0 0 0 0 +178 1783876616793655500 REFRESH 1 0 0.76813952543274722 0.36712095400340705 1 7 1 7 0 0 3212 69 413 3988930 56640 219.968505859375 1.4841 395.00720000000001 13440 9276 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7666304008 20908840 1 0 4 2 2 2 6 983040 491520 491520 491649 1497600 26 25 43 54 265 0 0 6 5 58 0 0 0 0 0 +179 1783876617251287100 REFRESH 13 0 0.78300230844811158 0.27342419080068137 1 6 1 6 0 0 4096 58 417 3988965 56640 220.10163879394531 1.4341999999999999 393.82999999999998 13440 9305 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 7667037572 21642404 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 26 25 38 33 295 0 0 4 4 50 0 0 0 0 0 +180 1783876617680317200 REFRESH 48 0 0.78305239884529199 0.26575809199318562 2 5 2 5 0 0 2513 23 414 3988924 56640 219.2384033203125 1.4328000000000001 373.64150000000001 13440 9342 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7667768076 22372908 1 0 4 2 2 2 6 983040 491520 491520 491644 1497600 26 25 37 43 283 0 0 2 1 20 0 0 0 0 0 +181 1783876618079256000 REFRESH 4 0 0.77110647341187544 0.8356047700170357 1 12 1 12 0 0 284 4 419 3988955 56640 220.05349731445312 1.4330000000000001 348.07650000000001 6720 5123 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 7668503680 23108512 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 27 25 26 315 0 0 0 1 3 0 0 0 0 0 +182 1783876618598036400 REFRESH 56 0 0.79929860095052518 0.17206132879045993 2 4 2 4 0 0 4096 58 418 3988933 56640 220.46429443359375 1.4537 407.15379999999999 13440 8174 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7669238264 23843096 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 37 25 49 63 244 1 0 1 7 49 0 0 0 0 0 +183 1783876619048670200 REFRESH 2 0 0.76821769820346431 0.45315161839863699 2 7 2 7 0 0 3645 53 420 3988971 56640 220.11494445800781 1.4427000000000001 382.97719999999998 6720 4688 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7669974888 24579720 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 45 25 42 36 272 1 0 3 2 47 0 0 0 0 0 +184 1783876619540770300 REFRESH 25 0 0.76826949186739824 0.4608177172061329 1 8 1 8 0 0 2361 12 410 3988953 56640 221.00070190429688 1.4833000000000001 424.21480000000003 13440 9661 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7670701312 25306144 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 27 26 306 0 0 0 0 12 0 0 0 0 0 +185 1783876619915693100 REFRESH 36 0 0.75990312453580811 0.82027257240204421 3 10 3 10 1 0 1242 25 407 3988943 56640 220.368896484375 1.4388000000000001 373.07100000000003 6720 4913 0 0 0.084785731009776932 0.13032671354522907 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7671424676 26029508 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 26 25 25 31 300 0 1 0 0 24 0 0 0 0 1 +186 1783876620386546800 REFRESH 50 0 0.76339443402040685 0.64054514480408853 2 9 2 9 0 0 1050 9 427 3988950 56640 220.59724426269531 1.4603999999999999 407.02960000000002 6720 4871 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 7672168440 26773272 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 27 25 25 26 324 0 0 1 0 8 0 0 0 0 0 +187 1783876620837321300 REFRESH 18 0 0.77071934693278543 0.9293015332197615 1 13 1 13 0 0 441 9 408 3988939 56640 222.01548767089844 1.4359999999999999 391.07229999999998 6720 5020 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7672892824 27497656 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 26 25 25 25 307 0 0 0 0 9 0 0 0 0 0 +188 1783876621295773300 REFRESH 45 0 0.76847582080982935 0.45315161839863699 2 7 2 7 0 0 2181 31 412 3988970 56640 223.00877380371094 1.4569000000000001 397.26350000000002 6720 4791 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7673621288 28226120 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 40 25 29 31 287 1 0 0 2 28 0 0 0 0 0 +189 1783876621730884100 REFRESH 58 0 0.77083198942549824 0.92163543441226559 2 12 2 12 0 0 530 12 410 3988954 56640 220.84506225585938 1.4390000000000001 378.67239999999998 6720 5040 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7674347712 28952544 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 26 308 0 0 0 0 12 0 0 0 0 0 +190 1783876622142437400 REFRESH 29 0 0.77261544603816268 0.82027257240204421 3 10 3 10 0 0 1105 13 420 3988964 56640 220.9853515625 1.4363999999999999 353.37520000000001 6720 5063 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7675084336 29689168 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 28 31 25 27 309 0 0 0 0 13 0 0 0 0 0 +191 1783876622574599200 REFRESH 22 0 0.76994426600655796 0.91396933560476989 3 11 3 11 0 0 475 12 407 3988963 56640 221.90591430664062 1.4476 376.32330000000002 6720 5045 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7675807700 30412532 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 25 26 305 0 0 0 0 12 0 0 0 0 0 +192 1783876623021234500 REFRESH 38 0 0.77307325613673872 0.55451448040885853 1 9 1 9 0 0 2114 26 407 3988938 56640 219.08992004394531 1.5492999999999999 382.63490000000002 6720 4862 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7676531064 31135896 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 28 25 25 27 302 0 0 1 0 25 0 0 0 0 0 +193 1783876623488806300 REFRESH 52 0 0.76869615592214324 0.36712095400340705 1 7 1 7 0 0 2294 23 418 3988953 56640 219.67164611816406 1.4412 414.67200000000003 13440 9226 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7677265648 31870480 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 27 25 154 41 171 0 0 11 1 11 0 0 0 0 0 +194 1783876623846446400 REFRESH 5 0 0.76032917446903858 0.8279386712095399 2 11 2 11 0 0 886 28 412 3988992 56640 219.28755187988281 1.4331 356.3014 6720 4944 0 0 0.0051461908257399176 0.42208025926988407 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7677994112 32598944 1 0 5 1 2 2 6 1228800 245760 491520 491709 1497600 26 25 25 31 305 0 0 0 2 26 0 0 0 0 0 +195 1783876624261541300 REFRESH 23 0 0.7637091161309445 0.74190800681430991 1 11 1 11 0 0 3443 19 413 3988970 56640 269.41543579101562 1.4422999999999999 413.50990000000002 6720 4990 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7678723596 33328428 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 25 25 25 26 312 0 0 0 0 19 0 0 0 0 0 +196 1783876624720852600 REFRESH 35 0 0.77395064434776428 0.8279386712095399 2 11 2 11 0 0 1105 19 406 3988976 56640 264.03533935546875 1.4307000000000001 403.01690000000002 6720 5089 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 7679445940 34050772 1 0 5 1 2 2 6 1228800 245760 491520 491696 1497600 25 26 25 26 304 0 0 0 0 19 0 0 0 0 0 +197 1783876625139063700 REFRESH 26 0 0.82473562134628475 0.55451448040885853 1 9 1 9 0 0 1936 28 418 3988869 56640 224.12800598144531 1.4349000000000001 362.76530000000002 13440 9043 0 0 0.072182291429561118 0.43270756809043426 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7680180524 34785356 1 0 5 2 2 1 6 1228800 491520 491520 245827 1497600 25 25 27 32 309 0 0 1 1 26 0 0 0 0 0 +198 1783876625555002100 REFRESH 11 0 0.76896279136716073 0.37478705281090291 0 8 0 8 0 0 2560 14 404 3988945 56640 227.98439025878906 1.4303999999999999 414.5659 13440 9203 0 0 0 0.69576800522332605 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 7680900828 35505660 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 31 58 264 1 1 1 1 10 0 0 0 0 0 +199 1783876625969341700 REFRESH 16 0 0.76898872482401481 0.3594548551959113 2 6 2 6 0 0 3331 50 413 3988941 56640 221.69599914550781 1.4288000000000001 360.35180000000003 13440 9369 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7681630312 36235144 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 27 25 31 25 305 0 0 2 0 48 0 0 0 0 0 +200 1783876626454303700 REFRESH 33 0 0.76903721273366354 0.36712095400340705 1 7 1 7 0 0 3510 61 415 3988947 56640 222.66777038574219 1.4335 361.22329999999999 13440 9311 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7682361836 36966668 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 85 36 243 0 0 5 2 54 0 0 0 0 0 +201 1783876626878428500 REFRESH 24 0 0.76922751263516931 1 4 11 4 11 0 0 494 13 405 3988962 56640 221.84037780761719 1.4494 371.31709999999998 6720 5066 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 7683083160 37687992 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 26 26 25 26 302 0 0 0 0 13 0 0 0 0 0 +202 1783876627384560100 REFRESH 57 0 0.78413395624025528 0.27342419080068137 1 6 1 6 0 0 4096 29 409 3988974 56640 250.72947692871094 1.4522999999999999 436.15589999999997 13440 9299 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7683808564 38413396 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 30 31 297 0 0 2 0 27 0 0 0 0 0 +203 1783876627886969700 REFRESH 46 0 0.76918476746413988 0.37478705281090291 0 8 0 8 0 0 2765 28 408 3988946 56640 244.61209106445312 1.4476 433.22089999999997 13440 9247 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7684532948 39137780 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 38 48 272 0 0 1 3 24 0 0 0 0 0 +204 1783876628367834900 REFRESH 42 0 0.97230285891375867 0 0 4 0 4 0 0 4096 6 423 3987991 55680 248.92620849609375 1.6341000000000001 478.57130000000001 20160 12084 0 0 0 0.0063610145412278767 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 7685272632 39877464 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 55 25 33 224 86 0 0 1 0 5 0 0 0 0 0 +205 1783876628979681500 REFRESH 44 0 0.76927849430070316 0.36712095400340705 1 7 1 7 0 0 2312 17 428 3988969 56640 253.40824890136719 1.4931000000000001 473.94619999999998 13440 9174 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 7686017416 40622248 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 48 28 302 0 0 0 3 14 0 0 0 0 0 +206 1783876629499783800 REFRESH 30 0 0.76938795351757083 0.4608177172061329 1 8 1 8 0 0 3581 49 414 3988950 56640 250.56767272949219 1.5805 452.30509999999998 6720 4705 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7686747920 41352752 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 57 25 28 30 274 6 0 0 1 42 0 0 0 0 0 +207 1783876629955736100 REFRESH 32 0 0.76943786175852569 0.4608177172061329 1 8 1 8 0 0 3053 38 418 3988922 56640 246.86079406738281 1.4607000000000001 396.1035 6720 4679 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7687482504 42087336 1 0 5 1 2 2 6 1228800 245760 491520 491640 1497600 32 25 30 38 293 1 0 1 3 33 0 0 0 0 0 +208 1783876630397201000 REFRESH 51 0 0.77188416236416468 0.91396933560476989 3 11 3 11 1 0 542 10 408 3988977 56640 251.52000427246094 1.4366000000000001 384.01830000000001 6720 5078 0 0 0.043513442885926006 0.28086202277875016 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7688206888 42811720 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 27 27 25 25 304 1 0 0 0 9 0 0 0 0 1 +209 1783876630938134400 REFRESH 53 0 0.76947525183896381 0.37478705281090291 0 8 0 8 0 0 4096 45 396 3988957 56640 244.44108581542969 1.5589999999999999 409.3306 13440 9261 0 0 0 0.21963000786869316 4096 2048 64 1 16 60 12 4 0 396 320 0 64 0 7688919032 43523864 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 32 36 277 0 0 6 2 37 0 0 0 0 0 +210 1783876631481187200 REFRESH 20 0 0.78451786759220898 0.26575809199318562 2 5 2 5 0 0 2147 13 428 3988944 56640 246.28019714355469 1.4458 474.43349999999998 13440 9375 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 7689663816 44268648 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 26 30 71 276 0 3 0 2 8 0 0 0 0 0 +211 1783876631961016300 REFRESH 37 0 0.77477467449776272 0.8356047700170357 1 12 1 12 0 0 1004 35 410 3988944 56640 245.07186889648438 1.4501999999999999 412.4572 6720 5139 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7690390240 44995072 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 27 27 25 26 305 0 0 0 0 35 0 0 0 0 0 +212 1783876632411251900 REFRESH 0 0 0.77482891639983698 0.8279386712095399 2 11 2 11 0 0 893 21 412 3988958 56640 234.39768981933594 1.498 379.48790000000002 6720 5042 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7691118704 45723536 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 27 26 25 25 309 0 2 0 0 19 0 0 0 0 0 +213 1783876635134310600 DEPTH 42 1 0.80290330961879397 0 0 4 0 4 0 0 4096 21 2567 23698591 103680 1370.3321533203125 8.6624999999999996 2663.0117 120960 59976 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 7695595952 50200784 1 0 4 3 3 2 4 5898240 4423680 4423680 2951003 5990400 186 150 203 1009 1019 0 0 0 0 21 0 0 0 0 0 +214 1783876637870497100 DEPTH 56 1 0.79280542078937588 0.17206132879045993 2 4 2 4 0 0 4096 58 2547 23742694 147840 1347.8169708251953 9.0928999999999984 2683.0205000000001 80640 40200 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 7700052800 54657632 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 202 150 235 295 1665 12 0 4 3 39 0 0 0 0 0 +215 1783876640307789000 DEPTH 9 1 0.7761409487928167 0.27342419080068137 1 6 1 6 0 0 3226 62 2519 23742651 147840 1320.3497009277344 8.5883000000000003 2436.0626000000002 80640 44939 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 7704481088 59085920 1 0 4 2 2 2 6 5898240 2949120 2949120 2950957 8985600 156 150 164 156 1893 0 0 6 2 54 0 0 0 0 0 +216 1783876642858950000 DEPTH 17 1 0.77589785081159457 0.28109028960817717 0 7 0 7 1 0 4071 45 2561 23742612 147840 1317.2797393798828 8.6201999999999988 2494.5612000000001 80640 44695 1 0 1.3557799457427214e-05 0.067509483739889534 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 7708952216 63557048 1 0 4 2 2 2 6 5898240 2949120 2949120 2950917 8985600 150 150 156 162 1943 0 0 0 1 44 0 0 0 0 1 +217 1783876646524008300 DEPTH 8 1 0.77593435986553594 0.26575809199318562 2 5 2 5 0 0 2412 46 2534 23742589 147840 1319.2550201416016 8.5818999999999992 3531.6253000000002 80640 45897 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 7713395884 892492 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 156 150 165 150 1913 0 0 2 1 43 0 0 0 0 0 +218 1783876649390730300 DEPTH 48 1 0.77597977395167217 0.26575809199318562 2 5 2 5 0 0 2522 41 2561 23742626 147840 1311.8362884521484 8.7286000000000001 2688.3197 80640 45504 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 7717867012 5363620 1 0 4 2 2 2 6 5898240 2949120 2949120 2950930 8985600 150 150 151 150 1960 0 0 4 0 37 0 0 0 0 0 +219 1783876652019840000 DEPTH 13 1 0.77602511734451474 0.27342419080068137 1 6 1 6 0 0 4096 62 2554 23742618 147840 1330.089111328125 9.1343999999999994 2565.6500999999998 80640 44756 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 7722331000 9827608 1 0 4 2 2 2 6 5898240 2949120 2949120 2950925 8985600 153 150 155 150 1946 0 0 3 4 55 0 0 0 0 0 +220 1783876654542471700 DEPTH 41 1 0.76293671346474667 0.55451448040885853 1 9 1 9 0 0 2300 67 2552 23742226 147840 1318.1747283935547 8.7058999999999997 2462.1046000000001 80640 48137 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 7726792948 14289556 1 0 4 2 2 2 6 6635520 2949120 2949120 2213250 8985600 151 150 176 164 1911 2 1 21 3 40 0 0 0 0 0 +221 1783876657054883800 DEPTH 26 1 0.79966100246082272 0.55451448040885853 1 9 1 9 1 0 1967 116 2575 23742036 147840 1316.2280883789062 8.6045999999999996 2442.8416999999999 80640 46452 1 0 0.075635366403616192 0.43917480807222692 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 7731278356 18774964 1 0 4 2 2 2 6 6881280 2949120 2949120 1967302 8985600 150 150 154 163 1958 0 0 0 6 110 0 0 0 0 1 +222 1783876659576087700 DEPTH 42 1 0.79822502020335739 0 0 4 0 4 0 0 4096 23 2582 23680288 84480 1311.9733581542969 8.6158999999999999 2519.4512 120960 48653 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 7735770904 23267512 1 0 4 3 3 3 3 5898240 4423680 4423680 4180624 4742400 159 150 202 1344 727 0 0 0 0 23 0 0 0 0 0 +223 1783876661900947000 DEPTH 38 1 0.76308295999041775 0.55451448040885853 1 9 1 9 1 0 2126 61 2524 23742137 147840 1307.4329528808594 9.2920999999999996 2263.8932 80640 48244 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 7740204292 27700900 1 0 4 2 2 2 6 6635520 2949120 2949120 2213161 8985600 156 150 150 154 1914 1 3 0 0 57 0 0 0 0 1 +224 1783876664463291300 DEPTH 21 1 0.76313155809657851 0.56218057921635434 0 10 0 10 0 0 2602 76 2561 23742145 147840 1342.1804351806641 8.7022999999999993 2495.8775999999998 80640 47966 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 7744675420 32172028 1 0 4 2 2 2 6 6635520 2949120 2949120 2213171 8985600 156 150 150 156 1949 11 1 6 9 49 0 0 0 0 0 +225 1783876666744201700 DEPTH 19 1 0.76193126104643361 0.8279386712095399 2 11 2 11 1 0 871 25 2560 23742588 147840 1325.6990814208984 8.6616 2222.1848 40320 21483 1 0 0.024177036158378046 0.33727786679187743 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 7749145528 36642136 1 0 5 1 2 2 6 7372800 1474560 2949120 2950894 8985600 156 150 150 156 1948 0 0 0 0 25 0 0 0 0 2 +226 1783876669047672500 DEPTH 35 1 0.76198186369389254 0.8279386712095399 2 11 2 11 0 0 1114 100 2492 23741752 147840 1336.7532806396484 8.6545999999999985 2238.1462000000001 47040 27277 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 360 72 24 0 2492 1920 0 384 1 7753546276 41042884 1 0 6 1 2 1 6 8601600 1720320 2949120 1475494 8985600 150 150 150 155 1887 0 0 0 0 100 0 0 0 0 0 +227 1783876671302016300 DEPTH 43 1 0.76203238848188437 0.8279386712095399 2 11 2 11 0 0 788 38 2576 23741724 147840 1330.1555480957031 8.5900999999999996 2196.8643999999999 47040 27047 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 7758032704 45529312 1 0 6 1 2 1 6 8601600 1720320 2949120 1475466 8985600 150 150 150 152 1974 1 1 0 1 35 0 0 0 0 0 +228 1783876673506658400 DEPTH 47 1 0.762082835642379 0.8279386712095399 2 11 2 11 0 0 667 27 2595 23742669 147840 1325.1041870117188 8.5851000000000006 2151.1315 40320 21193 1 0 0.018960026908908086 1.2351126180506042 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 7762538512 50035120 1 0 5 1 2 2 6 7372800 1474560 2949120 2950974 8985600 156 150 150 150 1989 2 0 1 0 24 0 0 0 0 0 +229 1783876676159306900 DEPTH 57 1 0.77647470955100861 0.27342419080068137 1 6 1 6 0 0 4096 71 2525 23742608 147840 1330.302978515625 8.7647000000000013 2574.1187 80640 45164 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 7766972920 54469528 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 156 150 156 163 1900 0 0 2 3 66 0 0 0 0 0 +230 1783876678869797100 DEPTH 42 1 0.7837446506996838 0 0 4 0 4 0 0 4096 16 2586 23677754 81600 1317.8931274414062 8.7065000000000001 2708.7950000000001 120960 38298 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 7771469548 58966156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 156 150 165 1534 581 0 0 0 0 16 0 0 0 0 0 +231 1783876681184375100 DEPTH 28 1 0.76223371366326864 0.8279386712095399 2 11 2 11 0 0 641 35 2519 23742600 147840 1339.0325927734375 8.6258999999999997 2194.8078999999998 40320 22567 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 7775897836 63394444 1 0 5 1 2 2 6 7372800 1474560 2949120 2950904 8985600 156 157 150 154 1902 0 0 0 0 35 0 0 0 0 0 +232 1783876684548373800 DEPTH 34 1 0.76228385261310139 0.8356047700170357 1 12 1 12 0 0 725 28 2580 23741777 147840 1331.1057891845703 8.6042000000000005 3306.2644 47040 27424 1 0 0.00020654801738738873 1.769932182842139 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 7780388424 777436 1 0 6 1 2 1 6 8601600 1720320 2949120 1475523 8985600 150 150 150 161 1969 0 0 0 4 24 0 0 0 0 0 +233 1783876687126729800 DEPTH 1 1 0.76182127084513473 0.36712095400340705 1 7 1 7 0 0 3225 59 2571 23742661 147840 1368.3170013427734 8.6026999999999987 2515.3449000000001 80640 44911 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 7784869752 5258764 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 150 150 171 186 1914 0 0 7 2 50 0 0 0 0 0 +234 1783876689642240200 DEPTH 11 1 0.76171729669134525 0.37478705281090291 0 8 0 8 1 0 2568 40 2532 23742742 147840 1316.8395690917969 8.5922000000000001 2458.5509000000002 80640 44748 1 0 0 0.68778640778261235 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 7789311300 9700312 1 0 4 2 2 2 6 5898240 2949120 2949120 2951047 8985600 156 150 162 164 1900 0 0 0 0 40 0 0 0 0 4 +235 1783876692166862400 DEPTH 46 1 0.76174346797881454 0.37478705281090291 0 8 0 8 0 0 2771 34 2542 23742640 147840 1318.8282165527344 8.5869000000000018 2465.1493 80640 45275 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 7793763048 14152060 1 0 4 2 2 2 6 5898240 2949120 2949120 2950942 8985600 150 150 164 163 1915 2 0 3 1 28 0 0 0 0 0 +236 1783876694643879600 DEPTH 31 1 0.76178606473261379 0.3594548551959113 2 6 2 6 0 0 2825 42 2552 23742637 147840 1316.3848571777344 9.3116000000000003 2416.2040000000002 80640 44927 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 7798224996 18614008 1 0 4 2 2 2 6 5898240 2949120 2949120 2950942 8985600 150 150 196 185 1871 1 0 4 3 34 0 0 0 0 0 +237 1783876697196120900 DEPTH 20 1 0.77682944824166755 0.26575809199318562 2 5 2 5 0 0 2153 28 2590 23742629 147840 1322.9814453125 8.7018000000000004 2494.7660999999998 80640 45018 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 7802725704 23114716 1 0 4 2 2 2 6 5898240 2949120 2949120 2950935 8985600 150 150 162 254 1874 0 0 0 0 28 0 0 0 0 0 +238 1783876699712667800 DEPTH 42 1 0.77946808691634473 0 0 4 0 4 0 0 4096 17 2592 23677575 81600 1301.7826538085938 8.5680999999999994 2515.1496000000002 120960 26856 1 0 0 0.0063610145412278767 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 7807228452 27617464 1 0 4 3 3 3 3 5898240 4423680 4423680 4426517 4492800 156 150 160 1590 536 0 0 0 0 17 0 0 0 0 0 +239 1783876702334470400 DEPTH 56 1 0.78659423356195712 0.17206132879045993 2 4 2 4 1 0 4096 47 2579 23720882 125760 1324.5747528076172 8.7323000000000004 2557.2332999999999 120960 48726 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 7811717940 32106952 1 0 4 3 2 2 5 5898240 4423680 2949120 2950991 7488000 183 150 206 1042 998 4 0 1 2 40 0 0 0 0 1 +240 1783876704679298400 DEPTH 0 1 0.76268222968176136 0.8279386712095399 2 11 2 11 0 0 903 55 2554 23741737 147840 1393.7756042480469 8.8056000000000001 2287.2312000000002 47040 27176 1 0 0.00014140214567446167 2.30096177437744 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 7816181928 36570940 1 0 6 1 2 1 6 8601600 1720320 2949120 1475484 8985600 164 156 150 150 1934 0 5 0 4 46 0 0 0 0 0 +241 1783876706970500400 DEPTH 37 1 0.76273168833656091 0.8356047700170357 1 12 1 12 1 0 1010 35 2565 23741932 147840 1382.3436737060547 8.5908999999999995 2237.5634 53760 34779 1 0 0.0032942291561997633 0.45998351290979422 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 7820657136 41046148 1 0 5 2 2 1 6 8110080 1966080 2949120 1721436 8985600 161 150 150 152 1952 0 1 0 2 32 0 0 0 0 1 +242 1783876709539346800 DEPTH 53 1 0.76205357923893335 0.37478705281090291 0 8 0 8 0 0 4096 74 2493 23742649 147840 1342.7242736816406 8.5785999999999998 2502.1918999999998 80640 44390 1 0 0 0.21963000786869316 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 7825058904 45447916 1 0 4 2 2 2 6 5898240 2949120 2949120 2950951 8985600 150 150 150 161 1882 0 0 16 5 53 0 0 0 0 0 +243 1783876712156091800 DEPTH 16 1 0.76209269091392262 0.3594548551959113 2 6 2 6 0 0 3342 78 2526 23742660 147840 1404.0483856201172 8.8400999999999996 2473.6958 80640 45085 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 7829494332 49883344 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 156 150 158 150 1912 0 0 15 1 62 0 0 0 0 0 +244 1783876714834624300 DEPTH 33 1 0.76213633383168711 0.36712095400340705 1 7 1 7 0 0 3519 52 2544 23742677 147840 1389.4085540771484 8.7149000000000001 2614.3454000000002 80640 45095 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 7833948120 54337132 1 0 4 2 2 2 6 5898240 2949120 2949120 2950984 8985600 155 150 182 170 1887 0 0 3 5 44 0 0 0 0 0 +245 1783876715226971900 REFRESH 16 0 0.52414077217254751 0.3594548551959113 2 6 2 6 1 0 3356 34 410 3988959 56640 247.85612487792969 1.4371 390.89170000000001 13440 8575 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7834674544 55063556 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 30 25 304 0 0 3 1 30 0 0 0 0 1 +246 1783876715604356800 REFRESH 37 0 0.55135679044835173 0.8356047700170357 1 12 1 12 0 0 1014 19 407 3988875 56640 232.14694213867188 1.5549999999999999 375.94659999999999 13440 9932 0 0 0.0032942291561997633 0.45998351290979422 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7835397908 55786920 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 26 25 25 32 299 0 0 0 0 19 0 0 0 0 0 +247 1783876715964465800 REFRESH 0 0 0.57137191714118396 0.8279386712095399 2 11 2 11 0 0 904 19 414 3988875 56640 226.01945495605469 1.448 358.87560000000002 6720 4957 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7836128412 56517424 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 27 25 25 28 309 0 0 0 1 18 0 0 0 0 0 +248 1783876716421073200 REFRESH 50 0 0.75431877533877456 0.64054514480408853 2 9 2 9 0 0 1051 5 423 3988872 56640 236.74674987792969 1.4373 398.65350000000001 13440 9950 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 7836868096 57257108 1 0 5 2 2 1 6 1228800 491520 491520 245832 1497600 26 25 25 26 321 1 0 0 0 4 0 0 0 0 0 +249 1783876716859112700 REFRESH 41 0 0.75417976679764753 0.55451448040885853 1 9 1 9 0 0 2312 31 416 3988936 56640 228.66943359375 1.4378 382.88159999999999 13440 9530 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 7837600640 57989652 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 41 32 292 0 0 4 5 22 0 0 0 0 0 +250 1783876717362324400 REFRESH 44 0 0.76239682354503724 0.36712095400340705 1 7 1 7 0 0 2327 35 420 3988955 56640 236.732421875 1.4775 435.22710000000001 13440 9158 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7838337264 58726276 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 61 34 275 0 0 4 2 29 0 0 0 0 0 +251 1783876717808542900 REFRESH 15 0 0.75849494103549542 0.91396933560476989 3 11 3 11 0 0 322 7 411 3988875 56640 238.34725952148438 1.4804999999999999 381.1619 6720 4944 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7839064708 59453720 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 26 25 25 26 309 0 0 0 0 7 0 0 0 0 0 +252 1783876718274916200 REFRESH 38 0 0.75463182156036568 0.55451448040885853 1 9 1 9 0 0 2148 41 410 3988959 56640 226.20262145996094 1.5628 401.48129999999998 13440 9565 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7839791132 60180144 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 27 25 25 29 304 0 0 0 0 41 0 0 0 0 0 +253 1783876718733331600 REFRESH 5 0 0.75165789820705387 0.8279386712095399 2 11 2 11 0 0 887 12 416 3988978 56640 224.54066467285156 1.4357 393.10820000000001 6720 4916 0 0 0.0051461908257399176 0.42208025926988407 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 7840523676 60912688 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 25 25 25 28 313 0 0 0 1 11 0 0 0 0 0 +254 1783876719167127700 REFRESH 49 0 0.76154638749508519 0.4454855195911413 3 6 3 6 0 0 1567 32 409 3988966 56640 226.43405151367188 1.4871000000000001 371.9631 13440 9728 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7841249080 61638092 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 26 34 38 286 0 0 0 0 32 0 0 0 0 0 +255 1783876719648738100 REFRESH 32 0 0.76159094149194073 0.4608177172061329 1 8 1 8 0 0 3062 30 418 3988940 56640 226.60403442382812 1.47 418.85000000000002 13440 9726 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7841983664 62372676 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 31 37 299 0 0 1 4 25 0 0 0 0 0 +256 1783876720108339000 REFRESH 43 0 0.75179114221025334 0.8279386712095399 2 11 2 11 0 0 789 15 417 3988892 56640 226.008056640625 1.4722999999999999 393.29199999999997 6720 4937 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 7842717228 63106240 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 25 25 25 48 294 0 0 0 3 12 0 0 0 0 0 +257 1783876720588149800 REFRESH 39 0 0.76269452156987605 0.55451448040885853 1 9 1 9 0 0 1613 9 426 3988891 56640 226.334716796875 1.4459 414.40550000000002 13440 10017 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 7843459972 63848984 1 0 5 2 2 1 6 1228800 491520 491520 245851 1497600 28 25 25 40 308 0 0 0 0 9 0 0 0 0 0 +258 1783876721054445200 REFRESH 57 0 0.7696823986573853 0.27342419080068137 1 6 1 6 0 0 4096 31 407 3988956 56640 234.23385620117188 1.4306000000000001 403.51220000000001 13440 8577 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7844183336 64572348 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 39 39 278 0 0 1 1 29 0 0 0 0 0 +259 1783876721489495100 REFRESH 55 0 0.7594296476392276 0.64054514480408853 2 9 2 9 0 0 1074 16 405 3988951 56640 228.16972351074219 1.4337 377.61689999999999 6720 4808 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 7844904660 65293672 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 28 25 44 26 282 0 0 0 0 16 0 0 0 0 0 +260 1783876721920001200 REFRESH 27 0 0.76181272830025126 0.4608177172061329 1 8 1 8 0 0 3701 47 408 3988989 56640 228.62130737304688 1.4305000000000001 370.85739999999998 13440 9768 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7845629044 66018056 1 0 4 2 2 2 6 983040 491520 491520 491708 1497600 27 26 33 32 290 0 0 1 3 43 0 0 0 0 0 +261 1783876722377854800 REFRESH 8 0 0.76980591782478713 0.26575809199318562 2 5 2 5 0 0 2414 12 407 3988945 56640 240.44134521484375 1.4514 399.04349999999999 13440 8649 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7846352408 66741420 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 35 29 292 0 0 0 0 12 0 0 0 0 0 +262 1783876724079160600 REFRESH 3 0 0.75958388377827357 0.64054514480408853 2 9 2 9 0 0 1133 21 407 3988898 56640 239.07020568847656 1.4320999999999999 1634.5825 13440 9991 0 0 0.0077443059253990334 0.16132475645587399 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7847075852 356424 1 0 5 2 2 1 6 1228800 491520 491520 245857 1497600 31 25 25 30 296 0 0 0 0 21 0 0 0 0 0 +263 1783876724553361700 REFRESH 2 0 0.76194502054772895 0.45315161839863699 2 7 2 7 0 0 3663 44 413 3988942 56640 222.41587829589844 1.4416 407.79430000000002 6720 4679 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7847805336 1085908 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 46 25 40 35 267 1 0 2 0 41 0 0 0 0 0 +264 1783876725010872700 REFRESH 46 0 0.75493096475077714 0.37478705281090291 0 8 0 8 0 0 2776 16 406 3988946 56640 220.05349731445312 1.429 404.56709999999998 13440 8646 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 7848527680 1808252 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 34 45 277 0 0 2 0 14 0 0 0 0 0 +265 1783876725467069600 REFRESH 31 0 0.75497041851559388 0.3594548551959113 2 6 2 6 0 0 2830 27 415 3988965 56640 222.2161865234375 1.4758 392.75470000000001 13440 8699 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7849259204 2539776 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 51 45 268 0 0 5 3 19 0 0 0 0 0 +266 1783876725886771700 REFRESH 18 0 0.76021722557737359 0.9293015332197615 1 13 1 13 0 0 441 11 409 3988945 56640 222.04313659667969 1.4784999999999999 354.41609999999997 6720 4882 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7849984608 3265180 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 25 308 0 0 0 0 11 0 0 0 0 0 +267 1783876726414388700 REFRESH 17 0 0.77006492904070967 0.28109028960817717 0 7 0 7 0 0 4078 21 414 3988928 56640 219.59577941894531 1.4943 460.26229999999998 13440 8642 0 0 1.3557799457427214e-05 0.067509483739889534 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7850715112 3995684 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 63 36 264 0 0 3 2 16 0 0 0 0 0 +268 1783876726878281900 REFRESH 48 0 0.77009202971088653 0.26575809199318562 2 5 2 5 0 0 2528 25 414 3988930 56640 219.31929016113281 1.4778 407.75349999999997 13440 8644 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 7851445616 4726188 1 0 4 2 2 2 6 983040 491520 491520 491650 1497600 25 25 35 40 289 0 0 1 1 23 0 0 0 0 0 +269 1783876727285709000 REFRESH 29 0 0.76318706199047548 0.82027257240204421 3 10 3 10 0 0 1107 10 418 3988872 56640 220.33100891113281 1.4330000000000001 353.40559999999999 6720 4960 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 7852180200 5460772 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 30 25 25 29 309 0 0 1 0 9 0 0 0 0 0 +270 1783876727653158100 REFRESH 53 0 0.75517737936372065 0.37478705281090291 0 8 0 8 0 0 4096 48 400 3988963 56640 220.48460388183594 1.4326000000000001 365.935 13440 8606 0 0 0 0.21963000786869316 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 7852896424 6176996 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 35 36 278 0 0 1 3 44 0 0 0 0 0 +271 1783876728049735900 REFRESH 56 0 0.7814318205767663 0.17206132879045993 2 4 2 4 0 0 4096 18 421 3988444 56160 222.30630493164062 1.4361999999999999 395.09890000000001 20160 14088 0 0 0.0043318378033526299 0.4929472619805555 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 7853634068 6914640 1 0 4 3 2 2 5 983040 737280 491520 491644 1248000 35 25 26 200 135 3 0 2 4 9 0 0 0 0 0 +272 1783876728470400100 REFRESH 24 0 0.7592290070117611 1 4 11 4 11 0 0 495 11 408 3988877 56640 223.00877380371094 1.4301999999999999 366.48289999999997 6720 4977 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7854358452 7639024 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 26 25 25 26 306 0 0 0 0 11 0 0 0 0 0 +273 1783876728903160700 REFRESH 40 0 0.76006803252995925 0.64821124361158422 1 10 1 10 0 0 1778 24 415 3988885 56640 218.73971557617188 1.4311 380.65550000000002 13440 9853 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7855089976 8370548 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 26 25 25 28 311 4 0 0 4 16 0 0 0 0 0 +274 1783876729322063200 REFRESH 14 0 0.76011313735285579 0.65587734241908002 0 11 0 11 0 0 1669 27 407 3988931 56640 222.55308532714844 1.4302999999999999 363.59210000000002 6720 4902 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7855813340 9093912 1 0 5 1 2 2 6 1228800 245760 491520 491650 1497600 29 25 28 28 297 0 0 0 0 27 0 0 0 0 0 +275 1783876729722588900 REFRESH 6 0 0.75864306582734276 0.91396933560476989 3 11 3 11 0 0 381 6 419 3988881 56640 218.95578002929688 1.4291 347.74310000000003 6720 4963 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 7856548944 9829516 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 25 28 314 0 0 0 0 6 0 0 0 0 0 +276 1783876730158880300 REFRESH 13 0 0.77041547597881554 0.27342419080068137 1 6 1 6 0 0 4096 36 413 3988952 56640 219.43807983398438 1.4441999999999999 383.21969999999999 13440 8675 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7857278428 10559000 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 31 31 300 0 0 3 2 31 0 0 0 0 0 +277 1783876730577485900 REFRESH 26 0 0.79799559615272397 0.55451448040885853 1 9 1 9 0 0 1989 44 412 3988950 56640 221.66220092773438 1.429 363.72089999999997 13440 9888 0 0 0.075635366403616192 0.43917480807222692 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7858006892 11287464 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 27 33 302 0 0 0 2 42 0 0 0 0 0 +278 1783876730989043100 REFRESH 34 0 0.75279290947122324 0.8356047700170357 1 12 1 12 0 0 728 15 420 3988882 56640 218.69261169433594 1.4340999999999999 357.10430000000002 6720 4940 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7858743516 12024088 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 25 25 25 37 308 0 0 0 1 14 0 0 0 0 0 +279 1783876731403309700 REFRESH 9 0 0.77080367845904296 0.27342419080068137 1 6 1 6 0 0 3249 43 405 3988947 56640 220.62591552734375 1.4431 360.14420000000001 13440 8671 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 7859464840 12745412 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 32 35 287 0 0 0 1 42 0 0 0 0 0 +280 1783876731839282300 REFRESH 54 0 0.76268388562312084 0.4608177172061329 1 8 1 8 0 0 1229 17 420 3988969 56640 219.40121459960938 1.4409000000000001 386.15620000000001 13440 9475 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 7860201464 13482036 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 26 25 31 56 282 0 0 1 1 15 0 0 0 0 0 +281 1783876732240715000 REFRESH 51 0 0.76192694506569558 0.91396933560476989 3 11 3 11 0 0 542 12 411 3988882 56640 221.60691833496094 1.4436 350.55840000000001 6720 5037 0 0 0.043513442885926006 0.28086202277875016 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7860928908 14209480 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 25 27 307 0 0 0 0 12 0 0 0 0 0 +282 1783876732699524600 REFRESH 42 0 0.94655864466214645 0 0 4 0 4 0 0 4096 6 427 3987628 55200 223.76448059082031 1.4366000000000001 406.46460000000002 20160 12554 0 0 0 0.0063610145412278767 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 7861672672 14953244 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 51 25 32 239 80 0 0 0 0 6 0 0 0 0 0 +283 1783876733119439000 REFRESH 1 0 0.75584724406850889 0.36712095400340705 1 7 1 7 0 0 3250 42 412 3988950 56640 219.80876159667969 1.4286000000000001 368.95870000000002 13440 8745 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7862401136 15681708 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 41 50 270 0 0 2 1 39 0 0 0 0 0 +284 1783876733539590800 REFRESH 7 0 0.75309926269031291 0.8356047700170357 1 12 1 12 1 0 880 17 409 3988958 56640 221.47789001464844 1.4384999999999999 353.20350000000002 6720 4845 0 0 0.00025411490420976278 0.78790564950045383 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7863126540 16407112 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 31 302 0 0 0 0 17 0 0 0 0 1 +285 1783876733949763200 REFRESH 28 0 0.75310504657377042 0.8279386712095399 2 11 2 11 0 0 642 11 405 3988936 56640 221.02015686035156 1.4343999999999999 357.71780000000001 6720 4932 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 7863847864 17128436 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 26 25 25 26 303 0 0 0 0 11 0 0 0 0 0 +286 1783876734377743700 REFRESH 45 0 0.76294038657732111 0.45315161839863699 2 7 2 7 1 0 2191 37 417 3988992 56640 221.71647644042969 1.4327000000000001 375.05889999999999 13440 9733 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 7864581428 17862000 1 0 4 2 2 2 6 983040 491520 491520 491711 1497600 27 25 29 33 303 0 0 0 2 35 0 0 0 0 1 +287 1783876734801058800 REFRESH 33 0 0.75585419874164761 0.36712095400340705 1 7 1 7 0 0 3535 40 415 3988964 56640 220.83993530273438 1.4416 370.03989999999999 13440 8687 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7865312952 18593524 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 87 36 241 0 0 4 2 34 0 0 0 0 0 +288 1783876735208963100 REFRESH 22 0 0.76134853710431138 0.91396933560476989 3 11 3 11 1 0 476 11 413 3988944 56640 222.20799255371094 1.4326000000000001 354.4796 6720 4906 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 7866042436 19323008 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 26 311 0 0 0 0 11 0 0 0 0 1 +289 1783876735634212000 REFRESH 21 0 0.75592496342847126 0.56218057921635434 0 10 0 10 0 0 2622 46 412 3988965 56640 221.5362548828125 1.4318 369.9898 13440 9743 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 7866770900 20051472 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 26 25 39 40 282 0 0 3 6 37 0 0 0 0 0 +290 1783876736054123100 REFRESH 30 0 0.76311017871284015 0.4608177172061329 1 8 1 8 0 0 3603 60 409 3988985 56640 220.51942443847656 1.4305000000000001 364.16390000000001 13440 9656 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 7867496304 20776876 1 0 4 2 2 2 6 983040 491520 491520 491704 1497600 26 25 29 35 294 0 0 0 1 59 0 0 0 0 0 +291 1783876736462882800 REFRESH 36 0 0.75342718156980715 0.82027257240204421 3 10 3 10 0 0 1247 19 408 3988943 56640 220.86758422851562 1.4359999999999999 354.75040000000001 6720 4825 0 0 0.084785731009776932 0.13032671354522907 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7868220688 21501260 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 31 301 0 0 0 0 19 0 0 0 0 0 +292 1783876736900241300 REFRESH 25 0 0.76319471619263068 0.4608177172061329 1 8 1 8 0 0 2371 27 415 3988947 56640 221.048828125 1.4370000000000001 372.41879999999998 13440 9493 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7868952212 22232784 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 27 26 311 0 0 0 0 27 0 0 0 0 0 +293 1783876737379960500 REFRESH 47 0 0.75345800103976823 0.8279386712095399 2 11 2 11 0 0 668 16 411 3988961 56640 219.98489379882812 1.4578 366.72320000000002 6720 5048 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7869679656 22960228 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 25 26 309 0 0 0 0 16 0 0 0 0 0 +294 1783876737791678600 REFRESH 10 0 0.76100184143999416 0.64821124361158422 1 10 1 10 0 0 1173 12 421 3988867 56640 220.25532531738281 1.4306000000000001 359.93189999999998 13440 9921 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 7870417300 23697872 1 0 5 2 2 1 6 1228800 491520 491520 245827 1497600 25 25 25 27 319 2 2 1 1 6 0 0 0 0 0 +295 1783876738242967300 REFRESH 11 0 0.75619168106524015 0.37478705281090291 0 8 0 8 1 0 2576 35 408 3988939 56640 219.73811340332031 1.4292 392.35500000000002 13440 8555 0 0 0 0.68485322962599993 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 7871141684 24422256 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 35 70 252 0 0 1 5 29 0 0 0 0 1 +296 1783876738651618200 REFRESH 58 0 0.76261563164305046 0.92163543441226559 2 12 2 12 0 0 531 11 410 3988889 56640 221.95916748046875 1.4475 353.69580000000002 6720 5009 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 7871868108 25148680 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 26 25 25 26 308 0 0 0 0 11 0 0 0 0 0 +297 1783876739080537800 REFRESH 19 0 0.75367807205024917 0.8279386712095399 2 11 2 11 0 0 872 13 415 3988945 56640 220.91059875488281 1.4492 363.0059 6720 4909 0 0 0.024177036158378046 0.33727786679187743 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 7872599632 25880204 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 30 309 0 0 0 2 11 0 0 0 0 0 +298 1783876739585848300 REFRESH 20 0 0.7712861454315646 0.26575809199318562 2 5 2 5 0 0 2153 8 427 3988960 56640 220.54296875 1.4299999999999999 396.63010000000003 13440 8635 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 7873343396 26623968 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 28 71 278 0 0 0 0 8 0 0 0 0 0 +299 1783876740039061000 REFRESH 52 0 0.76444088914991437 0.36712095400340705 1 7 1 7 0 0 2298 15 428 3988981 56640 219.09196472167969 1.4312 395.10300000000001 13440 9132 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 7874088180 27368752 1 0 4 2 2 2 6 983040 491520 491520 491701 1497600 27 25 129 39 208 0 0 2 0 13 0 0 0 0 0 +300 1783876740449772400 REFRESH 12 0 0.76126359987984549 0.63287904599659284 3 8 3 8 0 0 1591 31 434 3988951 56640 220.52659606933594 1.4373 355.61939999999998 6720 4914 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 60 12 4 0 434 320 0 64 0 7874839084 28119656 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 25 25 28 26 330 1 0 0 1 29 0 0 0 0 0 +301 1783876740855755500 REFRESH 4 0 0.75777025920222074 0.8356047700170357 1 12 1 12 0 0 284 9 419 3988871 56640 219.3203125 1.4308000000000001 344.65629999999999 6720 5039 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 7875574688 28855260 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 27 25 25 26 316 0 1 0 0 8 0 0 0 0 0 +302 1783876741269360500 REFRESH 35 0 0.75385036752150569 0.8279386712095399 2 11 2 11 0 0 1115 7 407 3988877 56640 220.832763671875 1.4362999999999999 361.43959999999998 6720 4919 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 7876298052 29578624 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 26 25 28 303 0 0 0 0 7 0 0 0 0 0 +303 1783876741690806000 REFRESH 23 0 0.75722699444044506 0.74190800681430991 1 11 1 11 0 0 3450 20 411 3988940 56640 223.994873046875 1.4621 359.32510000000002 6720 4917 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 7877025496 30306068 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 25 25 25 26 310 0 0 0 0 20 0 0 0 0 0 +304 1783876744293155200 DEPTH 42 1 0.90901032515355462 0 0 4 0 4 1 0 4096 23 2587 23677518 81600 1289.7749786376953 8.610100000000001 2488.2862 120960 59608 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 7881523144 34803716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 255 150 181 1407 594 0 0 0 0 23 0 0 0 0 1 +305 1783876746664090600 DEPTH 26 1 0.78575147191473793 0.55451448040885853 1 9 1 9 1 0 2009 90 2577 23742668 147840 1297.3486022949219 8.9149000000000012 2316.1048999999998 80640 46238 1 0 0.07563555474703347 0.45891520135064395 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 7886010592 39291164 1 0 4 2 2 2 6 5898240 2949120 2949120 2950970 8985600 150 150 150 162 1965 1 1 0 9 79 0 0 0 0 1 +306 1783876749133293300 DEPTH 56 1 0.77642704159143938 0.17206132879045993 2 4 2 4 0 0 4096 67 2587 23720624 125760 1287.9380798339844 8.600200000000001 2468.0612000000001 120960 68815 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 7890508240 43788812 1 0 4 3 2 2 5 5898240 4423680 2949120 2951002 7488000 192 150 154 1179 912 9 0 2 3 53 0 0 0 0 0 +307 1783876751464037800 DEPTH 9 1 0.76449550676019651 0.27342419080068137 1 6 1 6 0 0 3263 68 2530 23742719 147840 1287.0809631347656 8.6930999999999994 2329.6129000000001 80640 42917 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 7894947748 48228320 1 0 4 2 2 2 6 5898240 2949120 2949120 2950932 8985600 155 150 162 156 1907 2 0 2 4 60 0 0 0 0 0 +308 1783876753817305200 DEPTH 17 1 0.76430389622966977 0.28109028960817717 0 7 0 7 0 0 4092 34 2560 23742886 147840 1272.9231262207031 8.5852000000000004 2352.1765 80640 42490 1 1 1.3557799457427214e-05 0.067509483739889534 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 7899417856 52698428 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 150 150 161 162 1937 0 0 0 0 33 0 0 0 0 0 +309 1783876756087389400 DEPTH 8 1 0.7643288455668521 0.26575809199318562 2 5 2 5 0 0 2416 26 2516 23742684 147840 1283.0189361572266 8.5891999999999982 2215.0135 80640 42951 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 7903843084 57123656 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 156 150 174 158 1878 0 0 0 1 25 0 0 0 0 0 +310 1783876758524628800 DEPTH 48 1 0.76436597844141352 0.26575809199318562 2 5 2 5 0 0 2539 43 2559 23742887 147840 1272.2321929931641 8.5830000000000002 2325.2918 80640 42938 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 7908312172 61592744 1 0 4 2 2 2 6 5898240 2949120 2949120 2950988 8985600 150 150 160 150 1949 0 0 0 0 43 0 0 0 0 0 +311 1783876760979722000 DEPTH 13 1 0.76440306036841099 0.27342419080068137 1 6 1 6 0 0 4096 52 2548 23735183 140160 1271.2738494873047 8.5716999999999999 2333.6549 94080 51394 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 7912770040 66050612 1 0 4 3 2 2 5 5898240 3440640 2949120 2950964 8486400 150 150 155 259 1834 0 0 3 4 45 0 0 0 0 0 +312 1783876764536030900 DEPTH 42 1 0.76556782694716452 0 0 4 0 4 0 0 4096 15 2585 23677470 81600 1276.9645843505859 8.6030999999999995 3436.9346 120960 48990 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 7917265728 3437944 1 0 4 3 3 3 3 5898240 4423680 4423680 4426388 4492800 251 150 179 1486 519 0 0 0 0 15 0 0 0 0 0 +313 1783876766944907200 DEPTH 57 1 0.76447707192090564 0.27342419080068137 1 6 1 6 0 0 4096 68 2530 23742744 147840 1279.776611328125 8.6315000000000008 2347.6956 80640 42544 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 7921705236 7877452 1 0 4 2 2 2 6 5898240 2949120 2949120 2950930 8985600 156 150 159 177 1888 0 0 2 2 64 0 0 0 0 0 +314 1783876769361988700 DEPTH 44 1 0.75690274470948848 0.36712095400340705 1 7 1 7 0 0 2338 49 2615 23742632 147840 1280.8867950439453 8.607899999999999 2362.0911999999998 80640 44561 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2615 1920 0 384 1 7926231444 12403660 1 0 4 2 2 2 6 5898240 2949120 2949120 2950933 8985600 150 150 238 159 1918 0 0 1 4 44 0 0 0 0 0 +315 1783876771747217300 DEPTH 45 1 0.75530685308169676 0.45315161839863699 2 7 2 7 0 0 2195 43 2562 23742049 147840 1280.9297485351562 8.6004000000000005 2333.1077 80640 47994 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 7930703592 16875808 1 0 5 2 2 1 6 6881280 2949120 2949120 1967315 8985600 150 150 163 153 1946 0 0 5 5 33 0 0 0 0 0 +316 1783876773866109500 DEPTH 49 1 0.75511762239666946 0.4454855195911413 3 6 3 6 1 0 1576 61 2556 23741861 147840 1275.276123046875 8.5838999999999999 2065.2528000000002 80640 44948 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 7935169620 21341836 1 0 5 2 2 1 6 7127040 2949120 2949120 1721365 8985600 150 152 161 164 1929 0 0 7 3 51 0 0 0 0 1 +317 1783876776288480800 DEPTH 2 1 0.75515694087327279 0.45315161839863699 2 7 2 7 0 0 3687 103 2583 23742655 147840 1273.2620086669922 8.5833999999999993 2305.8081999999999 80640 42523 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 7939663188 25835404 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 155 150 155 163 1960 2 1 8 4 88 0 0 0 0 0 +318 1783876778649234900 DEPTH 54 1 0.7551962058862477 0.4608177172061329 1 8 1 8 0 0 1231 20 2545 23742683 147840 1271.2581939697266 8.5925000000000011 2306.4337999999998 80640 46329 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 7944117996 30290212 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 156 150 169 244 1826 0 0 4 0 16 0 0 0 0 0 +319 1783876781009960600 DEPTH 32 1 0.75523541757644796 0.4608177172061329 1 8 1 8 0 0 3074 55 2565 23742350 147840 1274.7581329345703 8.5803999999999991 2306.9810000000002 80640 47892 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 7948593204 34765420 1 0 4 2 2 2 6 6389760 2949120 2949120 2459136 8985600 150 150 150 156 1959 0 0 13 7 35 0 0 0 0 0 +320 1783876783423084400 DEPTH 42 1 0.76220718719830038 0 0 4 0 4 0 0 4096 14 2588 23677601 81600 1274.5096282958984 8.5875000000000004 2411.9706000000001 120960 39137 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 7953091872 39264088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 228 150 169 1508 533 0 0 0 0 14 0 0 0 0 0 +321 1783876785803328300 DEPTH 27 1 0.75531368154919631 0.4608177172061329 1 8 1 8 0 0 3729 85 2551 23742676 147840 1285.5304870605469 8.5820000000000007 2322.1581000000001 80640 45572 1 0 0.090901515514348663 1.023281551009547 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 7957552800 43725016 1 0 4 2 2 2 6 5898240 2949120 2949120 2950981 8985600 160 150 160 156 1925 0 0 9 15 61 0 0 0 0 0 +322 1783876788207862800 DEPTH 30 1 0.75535273411071602 0.4608177172061329 1 8 1 8 0 0 3623 78 2514 23742718 147840 1277.2498321533203 8.5913000000000004 2343.1671999999999 80640 45565 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 7961975988 48148204 1 0 4 2 2 2 6 5898240 2949120 2949120 2951022 8985600 156 150 156 199 1853 0 0 1 20 57 0 0 0 0 0 +323 1783876790585772500 DEPTH 25 1 0.7553917339074101 0.4608177172061329 1 8 1 8 1 0 2383 46 2529 23742660 147840 1277.1940002441406 8.5911999999999988 2325.9976999999999 80640 46222 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 7966414476 52586692 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 156 150 160 151 1912 0 0 5 7 34 0 0 0 0 1 +324 1783876792932686600 DEPTH 39 1 0.75457303537310394 0.55451448040885853 1 9 1 9 0 0 1621 34 2580 23742409 147840 1269.8705902099609 8.6085000000000012 2294.4987999999998 80640 45990 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 7970904984 57077200 1 0 4 2 2 2 6 6389760 2949120 2949120 2459192 8985600 164 150 150 164 1952 0 1 0 0 33 0 0 0 0 0 +325 1783876795031529700 DEPTH 29 1 0.75402123402717203 0.82027257240204421 3 10 3 10 0 0 1114 49 2564 23741713 147840 1272.8186950683594 8.5917999999999992 2043.8200999999999 47040 26684 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 7975379172 61551388 1 0 6 1 2 1 6 8601600 1720320 2949120 1475459 8985600 150 150 150 152 1962 0 0 0 1 48 0 0 0 0 0 +326 1783876797158480900 DEPTH 51 1 0.75214864835725459 0.91396933560476989 3 11 3 11 1 0 545 33 2562 23741759 147840 1276.1028137207031 8.5859000000000005 2070.6844000000001 47040 27032 1 0 0.044093971204707823 0.28107893475413925 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 7979851320 66023536 1 0 6 1 2 1 6 8601600 1720320 2949120 1475501 8985600 158 150 150 154 1950 0 0 0 0 33 0 0 0 0 3 +327 1783876800589401000 DEPTH 3 1 0.75215152446670686 0.64054514480408853 2 9 2 9 0 0 1136 41 2536 23742355 147840 1264.9945678710938 8.6448999999999998 3375.9326999999998 80640 46281 1 0 0.0077443059253990334 0.16132475645587399 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 7984297028 3360424 1 0 4 2 2 2 6 6389760 2949120 2949120 2459138 8985600 156 150 150 162 1918 1 0 0 6 34 0 0 0 0 0 +328 1783876803010697600 DEPTH 20 1 0.763025787348249 0.26575809199318562 2 5 2 5 0 0 2158 27 2595 23727463 132480 1272.7398071289062 8.5831999999999997 2363.6675 107520 54622 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 7988802836 7866232 1 0 4 3 2 2 5 5898240 3932160 2949120 2951009 7987200 150 150 165 533 1597 0 0 0 1 26 0 0 0 0 0 +329 1783876805520982100 DEPTH 42 1 0.76895826426621494 0 0 4 0 4 0 0 4096 22 2600 23677852 81600 1274.0813446044922 8.6363000000000003 2509.0544 120960 26524 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 7993313744 12377140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 206 150 167 1547 530 0 0 0 0 22 0 0 0 0 0 +330 1783876807983024500 DEPTH 52 1 0.75750601310958388 0.36712095400340705 1 7 1 7 0 0 2312 46 2572 23742645 147840 1266.666015625 8.6027000000000005 2353.3364999999999 80640 44645 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 7997796092 16859488 1 0 4 2 2 2 6 5898240 2949120 2949120 2950952 8985600 162 150 423 219 1618 0 0 3 0 43 0 0 0 0 0 +331 1783876810355672500 DEPTH 26 1 0.7745383866379727 0.55451448040885853 1 9 1 9 1 0 2032 82 2560 23742720 147840 1267.4280853271484 8.5988000000000007 2312.1844000000001 80640 38307 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 8002266200 21329596 1 0 4 2 2 2 6 5898240 2949120 2949120 2951016 8985600 150 150 150 172 1938 0 0 0 1 81 0 0 0 0 1 +332 1783876812467696200 DEPTH 58 1 0.75239646361105672 0.92163543441226559 2 12 2 12 0 0 531 22 2547 23741729 147840 1289.66748046875 8.5771000000000015 2062.5010000000002 47040 26576 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 8006723048 25786444 1 0 6 1 2 1 6 8601600 1720320 2949120 1475474 8985600 156 150 150 154 1937 0 0 0 1 21 0 0 0 0 0 +333 1783876814562611100 DEPTH 12 1 0.75237721479294073 0.63287904599659284 3 8 3 8 0 0 1605 79 2636 23742701 147840 1277.7727203369141 8.5763999999999996 2042.6500000000001 47040 29149 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 360 72 24 0 2636 1920 0 384 1 8011270676 30334072 1 0 4 2 2 2 6 7127040 1720320 2949120 2951007 8985600 150 150 150 156 2030 4 0 1 1 73 0 0 0 0 0 +334 1783876816653452000 DEPTH 55 1 0.75241709381168687 0.64054514480408853 2 9 2 9 1 0 1077 49 2515 23742654 147840 1285.0473022460938 8.7041000000000004 2038.7388000000001 40320 23506 1 0 0.13217072358040352 0.64468272855878161 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 8015694884 34758280 1 0 5 1 2 2 6 7372800 1474560 2949120 2950959 8985600 156 150 156 163 1890 0 0 6 0 43 0 0 0 0 1 +335 1783876819086425000 DEPTH 40 1 0.7524569197579104 0.64821124361158422 1 10 1 10 0 0 1795 66 2575 23742362 147840 1271.5652923583984 8.7459999999999987 2379.1610000000001 80640 45823 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 8020180292 39243688 1 0 4 2 2 2 6 6389760 2949120 2949120 2459147 8985600 150 150 150 158 1967 15 1 0 8 42 0 0 0 0 0 +336 1783876819458516900 REFRESH 25 0 0.62797469245564952 0.4608177172061329 1 8 1 8 0 0 2389 24 408 3988951 56640 226.11763000488281 1.4296 370.93900000000002 13440 8856 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8020904676 39968072 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 27 28 302 0 0 1 0 23 0 0 0 0 0 +337 1783876819855938900 REFRESH 47 0 0.74503641297972356 0.8279386712095399 2 11 2 11 0 0 674 17 410 3988954 56640 219.72889709472656 1.4334 348.2801 6720 4803 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8021631100 40694496 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 27 25 25 26 307 0 0 0 0 17 0 0 0 0 0 +338 1783876820273217100 REFRESH 45 0 0.72800856328971042 0.45315161839863699 2 7 2 7 0 0 2210 50 414 3988949 56640 221.8209228515625 1.4281999999999999 364.62079999999997 13440 9183 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8022361604 41425000 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 27 25 33 35 294 0 0 0 4 46 0 0 0 0 0 +339 1783876820743705300 REFRESH 28 0 0.74511569554703516 0.8279386712095399 2 11 2 11 0 0 643 13 408 3988928 56640 243.6259765625 1.429 372.82069999999999 6720 4816 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8023085988 42149384 1 0 5 1 2 2 6 1228800 245760 491520 491646 1497600 26 25 25 26 306 0 0 0 0 13 0 0 0 0 0 +340 1783876821162915500 REFRESH 14 0 0.75265525817319145 0.65587734241908002 0 11 0 11 0 0 1672 16 411 3988945 56640 224.06767272949219 1.4296 365.78969999999998 6720 4818 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8023813432 42876828 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 29 25 26 29 302 0 0 0 0 16 0 0 0 0 0 +341 1783876821587202000 REFRESH 42 0 0.79586717847477273 0 0 4 0 4 0 0 4096 5 425 3987666 55200 226.29887390136719 1.4359 422.99680000000001 20160 12769 0 0 0 0.0064275276714682349 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8024555156 43618552 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 58 25 31 230 81 0 0 0 0 5 0 0 0 0 0 +342 1783876821995785100 REFRESH 16 0 0.7505344950107784 0.3594548551959113 2 6 2 6 0 0 3372 38 413 3988976 56640 221.85267639160156 1.4873000000000001 355.10239999999999 13440 8601 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8025284640 44348036 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 39 25 298 0 0 2 0 36 0 0 0 0 0 +343 1783876822399557100 REFRESH 35 0 0.74227363303146088 0.8279386712095399 2 11 2 11 0 0 1115 17 407 3988882 56640 220.92288208007812 1.4381999999999999 353.87099999999998 6720 4865 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8026008004 45071400 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 25 26 25 27 304 0 0 0 0 17 0 0 0 0 0 +344 1783876822788559300 REFRESH 34 0 0.74531298742168639 0.8356047700170357 1 12 1 12 0 0 740 28 410 3988878 56640 219.08685302734375 1.4367000000000001 338.90890000000002 6720 4869 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8026734428 45797824 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 26 25 25 47 287 0 0 0 2 26 0 0 0 0 0 +345 1783876823188296600 REFRESH 43 0 0.74535229008482051 0.8279386712095399 2 11 2 11 0 0 792 13 416 3988877 56640 220.83891296386719 1.4326000000000001 349.48860000000002 6720 4879 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8027466972 46530368 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 25 52 289 0 0 0 3 10 0 0 0 0 0 +346 1783876823584482700 REFRESH 15 0 0.7481733542401805 0.91396933560476989 3 11 3 11 0 0 322 3 413 3988865 56640 222.18547058105469 1.4355 341.7296 13440 9902 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8028196456 47259852 1 0 5 2 2 1 6 1228800 491520 491520 245825 1497600 25 25 25 27 311 0 0 0 0 3 0 0 0 0 0 +347 1783876823974953100 REFRESH 20 0 0.69708747223404344 0.26575809199318562 2 5 2 5 0 0 2161 6 429 3988484 56160 222.0421142578125 1.4315 389.1318 20160 14817 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8028942260 48005656 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 26 155 198 0 0 2 0 4 0 0 0 0 0 +348 1783876824337765000 REFRESH 26 0 0.68405984178989898 0.55451448040885853 1 9 1 9 0 0 2054 47 416 3988962 56640 221.47378540039062 1.429 361.51780000000002 13440 8523 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8029674804 48738200 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 26 36 304 0 0 0 2 45 0 0 0 0 0 +349 1783876824762780700 REFRESH 30 0 0.74820583394960005 0.4608177172061329 1 8 1 8 0 0 3647 58 415 3988960 56640 223.94163513183594 1.4293 373.33870000000002 13440 9163 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8030406328 49469724 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 29 43 292 0 0 0 2 56 0 0 0 0 0 +350 1783876825165852400 REFRESH 4 0 0.74784350789732457 0.8356047700170357 1 12 1 12 0 0 284 10 422 3988870 56640 219.8497314453125 1.4460999999999999 351.59910000000002 13440 9925 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8031144992 50208388 1 0 5 2 2 1 6 1228800 491520 491520 245829 1497600 25 25 25 26 321 0 0 0 0 10 0 0 0 0 0 +351 1783876825564862300 REFRESH 0 0 0.74558702713826508 0.8279386712095399 2 11 2 11 0 0 905 9 415 3988880 56640 220.5347900390625 1.4351 346.28789999999998 6720 4853 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8031876516 50939912 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 25 28 310 0 0 0 1 8 0 0 0 0 0 +352 1783876825982422900 REFRESH 49 0 0.74885260718754698 0.4454855195911413 3 6 3 6 0 0 1591 36 412 3988971 56640 229.65145874023438 1.4343999999999999 363.47129999999999 13440 9054 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8032604980 51668376 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 26 37 45 279 0 0 0 2 34 0 0 0 0 0 +353 1783876826425921600 REFRESH 1 0 0.75105282728178302 0.36712095400340705 1 7 1 7 0 0 3265 40 416 3988938 56640 234.250244140625 1.4348000000000001 389.39690000000002 13440 8591 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8033337524 52400920 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 26 25 36 40 289 0 0 2 0 38 0 0 0 0 0 +354 1783876826814502100 REFRESH 3 0 0.74408852406782322 0.64054514480408853 2 9 2 9 0 0 1141 19 408 3988944 56640 245.89312744140625 1.4374 386.93830000000003 13440 9993 0 0 0.0077443059253990334 0.16132475645587399 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8034061908 53125304 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 39 294 0 0 0 0 19 0 0 0 0 0 +355 1783876827270978800 REFRESH 22 0 0.752530243256882 0.91396933560476989 3 11 3 11 0 0 476 11 407 3988962 56640 240.79872131347656 1.5781000000000001 394.61079999999998 6720 4850 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8034785272 53848668 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 25 26 305 0 0 0 0 11 0 0 0 0 0 +356 1783876827801455700 REFRESH 56 0 0.77219818877695245 0.17206132879045993 2 4 2 4 0 0 4096 21 431 3988460 56160 250.53388977050781 1.5184 464.91410000000002 20160 12686 0 0 0.0043318378033526299 0.4929472619805555 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 8035533116 54596512 1 0 4 3 2 2 5 983040 737280 491520 491659 1248000 35 25 26 263 82 4 0 0 6 11 0 0 0 0 0 +357 1783876828258711300 REFRESH 32 0 0.74849531143639703 0.4608177172061329 1 8 1 8 0 0 3089 37 418 3988943 56640 244.32537841796875 1.4897 394.93310000000002 13440 9102 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8036267700 55331096 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 35 41 291 0 0 1 8 28 0 0 0 0 0 +358 1783876828693207200 REFRESH 23 0 0.74919191015047815 0.74190800681430991 1 11 1 11 0 0 3456 25 409 3988949 56640 245.96377563476562 1.4671000000000001 379.22980000000001 6720 4919 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8036993104 56056500 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 25 25 25 27 307 0 0 0 0 25 0 0 0 0 0 +359 1783876829194129700 REFRESH 6 0 0.74679962829807911 0.91396933560476989 3 11 3 11 0 0 381 7 415 3988878 56640 239.60064697265625 1.4879 436.79480000000001 13440 9946 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8037724628 56788024 1 0 5 2 2 1 6 1228800 491520 491520 245835 1497600 26 25 25 30 309 0 0 0 2 5 0 0 0 0 0 +360 1783876829714420500 REFRESH 5 0 0.74594099960934845 0.8279386712095399 2 11 2 11 1 0 888 10 415 3988878 56640 277.05343627929688 1.4806999999999999 458.78399999999999 6720 4979 0 0 0.0051709246057396047 0.41217676255528551 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8038456152 57519548 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 25 29 311 0 0 0 0 10 0 0 0 0 1 +361 1783876830237232800 REFRESH 21 0 0.74969308787105526 0.56218057921635434 0 10 0 10 0 0 2634 39 410 3988959 56640 262.09793090820312 1.4329000000000001 457.1318 13440 9497 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8039182576 58245972 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 39 41 279 0 0 3 2 34 0 0 0 0 0 +362 1783876830698403100 REFRESH 58 0 0.74328537415720453 0.92163543441226559 2 12 2 12 0 0 531 12 412 3988857 56640 265.75668334960938 1.4357 408.10120000000001 6720 4925 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8039911040 58974436 1 0 6 1 2 1 6 1474560 245760 491520 245817 1497600 26 25 25 27 309 0 0 0 0 12 0 0 0 0 0 +363 1783876831254358300 REFRESH 31 0 0.75126489938269447 0.3594548551959113 2 6 2 6 0 0 2849 37 420 3988947 56640 262.21670532226562 1.5027999999999999 496.86660000000001 13440 8670 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8040647664 59711060 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 41 35 293 0 0 1 0 36 0 0 0 0 0 +364 1783876831704615900 REFRESH 40 0 0.74444693622467462 0.64821124361158422 1 10 1 10 0 0 1799 14 406 3988965 56640 266.3638916015625 1.4357 448.76010000000002 13440 9912 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8041370008 60433404 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 29 302 0 0 0 4 10 0 0 0 0 0 +365 1783876832191618500 REFRESH 41 0 0.74984098120506104 0.55451448040885853 1 9 1 9 0 0 2317 26 413 3988959 56640 246.05183410644531 1.5953999999999999 422.70519999999999 13440 9531 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8042099492 61162888 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 44 32 286 0 0 4 3 19 0 0 0 0 0 +366 1783876832676367700 REFRESH 48 0 0.75953037314013128 0.26575809199318562 2 5 2 5 0 0 2547 23 411 3988954 56640 243.99382019042969 1.4340999999999999 419.89760000000001 13440 8569 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8042826936 61890332 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 25 34 44 283 0 0 0 1 22 0 0 0 0 0 +367 1783876833185836500 REFRESH 50 0 0.74456412321128029 0.64054514480408853 2 9 2 9 0 0 1052 4 425 3988877 56640 238.43840026855469 1.4339999999999999 404.24329999999998 13440 9751 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8043568660 62632056 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 26 25 25 26 323 1 0 0 0 3 0 0 0 0 0 +368 1783876833558492900 REFRESH 12 0 0.74459426152611208 0.63287904599659284 3 8 3 8 1 0 1626 43 434 3988961 56640 238.01344299316406 1.4317 370.7706 13440 9623 0 0 0.0015375076066785009 0.39601344633316055 4096 2048 64 1 16 60 12 4 0 434 320 0 64 0 8044319564 63382960 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 28 27 329 0 0 0 2 41 0 0 0 0 1 +369 1783876833984614700 REFRESH 7 0 0.74632168924351294 0.8356047700170357 1 12 1 12 1 0 882 20 405 3988887 56640 237.4307861328125 1.4446000000000001 370.36599999999999 13440 9969 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 8045040888 64104284 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 25 25 25 30 300 0 0 0 0 20 0 0 0 0 1 +370 1783876834454727200 REFRESH 54 0 0.74895937796561585 0.4608177172061329 1 8 1 8 0 0 1238 29 421 3988954 56640 238.94732666015625 1.4319999999999999 412.5575 13440 8771 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8045778532 64841928 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 34 68 268 0 0 3 1 25 0 0 0 0 0 +371 1783876834891776800 REFRESH 53 0 0.75154330695203075 0.37478705281090291 0 8 0 8 0 0 4096 38 394 3988944 56640 221.35296630859375 1.4379999999999999 378.3614 13440 8572 0 0 0 0.21963000786869316 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 8046488636 65552032 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 36 40 267 0 0 1 3 34 0 0 0 0 0 +372 1783876835317407800 REFRESH 18 0 0.75311714102732419 0.9293015332197615 1 13 1 13 0 0 442 8 415 3988964 56640 228.59878540039062 1.4644999999999999 371.68770000000001 6720 4937 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8047220160 66283556 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 26 25 25 25 314 0 0 0 0 8 0 0 0 0 0 +373 1783876835822029500 REFRESH 11 0 0.7516449477714422 0.37478705281090291 0 8 0 8 1 0 2588 34 410 3988960 56640 220.30131530761719 1.4357 441.67860000000002 13440 8594 0 0 0 0.68483790721737114 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8047946584 67009980 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 35 71 253 0 0 1 0 33 0 0 0 0 1 +374 1783876837357455800 REFRESH 10 0 0.75397014303569798 0.64821124361158422 1 10 1 10 0 0 1174 8 418 3988887 56640 221.17478942871094 1.4280999999999999 1481.6648 13440 9933 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8048681248 636064 1 0 5 2 2 1 6 1228800 491520 491520 245847 1497600 25 25 25 27 316 1 0 0 0 7 0 0 0 0 0 +375 1783876837782655800 REFRESH 9 0 0.76004643930510063 0.27342419080068137 1 6 1 6 0 0 3277 40 411 3988971 56640 222.02777099609375 1.4396 367.80720000000002 13440 8414 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8049408692 1363508 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 32 37 291 0 0 2 1 37 0 0 0 0 0 +376 1783876838294376200 REFRESH 33 0 0.75171020743286288 0.36712095400340705 1 7 1 7 0 0 3545 24 414 3988974 56640 233.14533996582031 1.5350999999999999 394.10160000000002 13440 8505 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8050139196 2094012 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 64 37 262 0 0 0 1 23 0 0 0 0 0 +377 1783876838749558100 REFRESH 57 0 0.75989546924283491 0.27342419080068137 1 6 1 6 0 0 4096 18 412 3988970 56640 223.80339050292969 1.4335 400.3184 13440 8345 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8050867660 2822476 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 40 39 282 0 0 1 0 17 0 0 0 0 0 +378 1783876839112765600 REFRESH 55 0 0.74530887127608847 0.64054514480408853 2 9 2 9 0 0 1079 21 406 3988955 56640 223.04666137695312 1.4430000000000001 361.93729999999999 6720 4619 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8051590004 3544820 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 32 25 51 26 272 0 0 1 0 20 0 0 0 0 0 +379 1783876839522840100 REFRESH 19 0 0.74669928488767146 0.8279386712095399 2 11 2 11 0 0 873 20 412 3988966 56640 220.92594909667969 1.4560999999999999 352.8501 6720 4865 0 0 0.024177036158378046 0.33727786679187743 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8052318468 4273284 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 26 25 25 31 305 0 0 0 1 19 0 0 0 0 0 +380 1783876839982150900 REFRESH 52 0 0.75184593127821486 0.36712095400340705 1 7 1 7 0 0 2315 19 425 3988966 56640 219.43295288085938 1.4589000000000001 402.15170000000001 13440 8535 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8053060192 5015008 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 27 25 174 43 156 0 0 5 2 12 0 0 0 0 0 +381 1783876840458294600 REFRESH 2 0 0.74934608453985396 0.45315161839863699 2 7 2 7 0 0 3708 53 418 3988933 56640 222.69853210449219 1.4222999999999999 365.0949 13440 9180 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8053794776 5749592 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 26 25 47 39 281 0 0 2 3 48 0 0 0 0 0 +382 1783876840885018100 REFRESH 37 0 0.74679991049775829 0.8356047700170357 1 12 1 12 0 0 1017 20 412 3988871 56640 221.47174072265625 1.4356 364.51310000000001 13440 9816 0 0 0.0032942291561997633 0.45998351290979422 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8054523240 6478056 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 27 25 25 32 303 0 0 0 0 20 0 0 0 0 0 +383 1783876841321491200 REFRESH 29 0 0.74607971938870932 0.82027257240204421 3 10 3 10 0 0 1114 4 419 3988897 56640 222.04826354980469 1.4551000000000001 384.43150000000003 6720 4864 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8055258844 7213660 1 0 6 1 2 1 6 1474560 245760 491520 245857 1497600 30 25 25 47 292 0 0 0 0 4 0 0 0 0 0 +384 1783876841739577300 REFRESH 8 0 0.76012517041005556 0.26575809199318562 2 5 2 5 0 0 2420 12 409 3988940 56640 223.06405639648438 1.4227000000000001 362.61869999999999 13440 8174 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8055984248 7939064 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 35 30 293 0 0 0 0 12 0 0 0 0 0 +385 1783876842220464900 REFRESH 46 0 0.75201649065378307 0.37478705281090291 0 8 0 8 0 0 2781 24 409 3988942 56640 235.54559326171875 1.4807999999999999 418.6035 13440 8542 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8056709652 8664468 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 37 45 277 0 0 1 0 23 0 0 0 0 0 +386 1783876842769099000 REFRESH 44 0 0.75204824056884578 0.36712095400340705 1 7 1 7 0 0 2343 19 429 3988975 56640 236.41087341308594 1.431 434.5566 13440 8458 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8057455456 9410272 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 25 25 51 29 299 0 0 0 1 18 0 0 0 0 0 +387 1783876843223846700 REFRESH 39 0 0.74812107103007741 0.55451448040885853 1 9 1 9 0 0 1623 9 415 3988944 56640 221.18194580078125 1.4441999999999999 397.85219999999998 13440 9954 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8058186980 10141796 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 25 49 290 0 0 0 1 8 0 0 0 0 0 +388 1783876843649579100 REFRESH 27 0 0.74958939513824341 0.4608177172061329 1 8 1 8 0 0 3760 50 406 3988954 56640 222.23052978515625 1.4322999999999999 371.43970000000002 13440 9077 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8058909324 10864140 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 27 26 34 32 287 0 0 2 3 45 0 0 0 0 0 +389 1783876844100580200 REFRESH 13 0 0.76028801232167653 0.27342419080068137 1 6 1 6 0 0 4096 27 419 3988490 56160 223.0067138671875 1.4431 386.01650000000001 20160 14836 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8059644928 11599744 1 0 4 3 2 2 5 983040 737280 491520 491689 1248000 25 25 25 152 192 0 0 0 8 19 0 0 0 0 0 +390 1783876844514923000 REFRESH 24 0 0.75244702256426965 1 4 11 4 11 0 0 496 10 407 3988892 56640 221.32429504394531 1.4367000000000001 353.4631 13440 10044 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8060368292 12323108 1 0 5 2 2 1 6 1228800 491520 491520 245852 1497600 25 25 25 28 304 0 0 0 0 10 0 0 0 0 0 +391 1783876845006731500 REFRESH 38 0 0.75107001581535149 0.55451448040885853 1 9 1 9 0 0 2159 32 412 3988940 56640 219.37971496582031 1.4219999999999999 371.66109999999998 13440 9432 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8061096756 13051572 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 25 29 307 0 0 0 0 32 0 0 0 0 0 +392 1783876845419423600 REFRESH 36 0 0.74719483537027442 0.82027257240204421 3 10 3 10 0 0 1249 23 407 3988960 56640 219.49964904785156 1.4332 356.6069 6720 4851 0 0 0.084785731009776932 0.13032671354522907 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8061820120 13774936 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 25 25 31 300 0 0 0 0 23 0 0 0 0 0 +393 1783876845821676900 REFRESH 51 0 0.74446001174662713 0.91396933560476989 3 11 3 11 0 0 546 10 402 3988872 56640 218.97215270996094 1.4233 346.57940000000002 6720 4987 0 0 0.044093971204707823 0.28107893475413925 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 8062538384 14493200 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 27 25 25 34 291 0 0 0 0 10 0 0 0 0 0 +394 1783876846302989000 REFRESH 17 0 0.76046085410631192 0.28109028960817717 0 7 0 7 1 0 4096 18 416 3988956 56640 221.73695373535156 1.4423999999999999 420.47969999999998 13440 8705 0 0 1.2098319989605974e-05 0.070720080968003557 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8063270928 15225744 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 75 41 249 0 0 2 0 16 0 0 0 0 1 +395 1783876848858058200 DEPTH 42 1 0.9189082516100564 0 0 4 0 4 0 0 4096 22 2589 23677751 81600 1288.0067443847656 8.5914999999999999 2492.9812999999999 120960 60312 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 8067770616 19725432 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 299 150 177 1417 546 0 0 0 0 22 0 0 0 0 0 +396 1783876851396592300 DEPTH 56 1 0.76784380204783642 0.17206132879045993 2 4 2 4 0 0 4096 53 2574 23698522 103680 1278.5479736328125 8.6408000000000005 2481.0871000000002 120960 64085 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 8072255004 24209820 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 187 150 156 1398 683 3 0 0 5 45 0 0 0 0 0 +397 1783876853741315100 DEPTH 26 1 0.75534015545054611 0.55451448040885853 1 9 1 9 0 0 2070 62 2557 23735021 140160 1276.6752624511719 8.5883000000000003 2343.4414000000002 94080 51120 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 8076722052 28676868 1 0 4 3 2 2 5 5898240 3440640 2949120 2950987 8486400 150 150 150 251 1856 0 0 0 2 60 0 0 0 0 0 +398 1783876856152645000 DEPTH 48 1 0.75421561107876722 0.26575809199318562 2 5 2 5 0 0 2556 49 2565 23735050 140160 1271.4066162109375 8.6070000000000011 2410.1048000000001 80640 41690 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 8081197260 33152076 1 0 4 2 3 2 5 5898240 2949120 3440640 2950945 8486400 150 150 162 204 1899 0 1 0 0 48 0 0 0 0 0 +399 1783876858698656600 DEPTH 20 1 0.74862679397187248 0.26575809199318562 2 5 2 5 0 0 2168 27 2596 23720493 125760 1310.9698791503906 8.6091000000000015 2486.1262999999999 120960 69910 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 8085704088 37658904 1 0 4 3 2 2 5 5898240 4423680 2949120 2950878 7488000 150 150 156 833 1307 0 0 6 0 21 0 0 0 0 0 +400 1783876861195893200 DEPTH 1 1 0.74576566855963344 0.36712095400340705 1 7 1 7 0 0 3280 59 2560 23742850 147840 1309.5415649414062 8.6577999999999999 2433.0765999999999 80640 42620 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 8090174196 42129012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 150 150 184 188 1888 0 0 11 2 46 0 0 0 0 0 +401 1783876863662736800 DEPTH 14 1 0.7457817129189368 0.65587734241908002 0 11 0 11 0 0 1684 91 2515 23742706 147840 1359.1992340087891 8.6388999999999996 2294.4474 40320 23505 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 8094598404 46553220 1 0 5 1 2 2 6 7372800 1474560 2949120 2951011 8985600 166 150 156 156 1887 0 0 4 0 87 0 0 0 0 0 +402 1783876866104099200 DEPTH 16 1 0.74571250108288267 0.3594548551959113 2 6 2 6 0 0 3384 75 2514 23742695 147840 1363.4612121582031 8.8106000000000009 2373.8618999999999 80640 42159 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 8099021592 50976408 1 0 4 2 2 2 6 5898240 2949120 2949120 2950989 8985600 168 150 160 150 1886 0 0 8 3 64 0 0 0 0 0 +403 1783876868725030000 DEPTH 9 1 0.75456641775172151 0.27342419080068137 1 6 1 6 0 0 3295 65 2530 23735085 140160 1352.6517791748047 8.6193000000000008 2502.9735000000001 80640 40993 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 8103461100 55415916 1 0 4 2 3 2 5 5898240 2949120 3440640 2950995 8486400 156 150 162 344 1718 0 0 3 1 61 0 0 0 0 0 +404 1783876871360800300 DEPTH 57 1 0.7544021346034796 0.27342419080068137 1 6 1 6 0 0 4096 40 2535 23735093 140160 1324.7160491943359 8.6458000000000013 2514.8013999999998 80640 41276 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 8107905708 59860524 1 0 4 2 3 2 5 5898240 2949120 3440640 2951012 8486400 156 150 157 284 1788 0 0 2 1 37 0 0 0 0 0 +405 1783876873840123100 DEPTH 42 1 0.76636903472414419 0 0 4 0 4 0 0 4096 10 2589 23677786 81600 1323.6705169677734 8.5875000000000004 2477.9888000000001 120960 48576 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 8112405396 64360212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426560 4492800 272 150 175 1468 524 0 0 0 0 10 0 0 0 0 0 +406 1783876877407244200 DEPTH 11 1 0.74586750543203606 0.37478705281090291 0 8 0 8 1 0 2596 35 2526 23742871 147840 1299.8266906738281 8.6910000000000007 3510.4783000000002 80640 42265 1 0 0 0.67113630556295556 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 8116840904 1687256 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 156 150 162 202 1856 0 0 5 0 30 0 0 0 0 2 +407 1783876879879398100 DEPTH 53 1 0.74586930722314282 0.37478705281090291 0 8 0 8 0 0 4096 80 2480 23742730 147840 1303.4383239746094 8.6170000000000009 2410.5713000000001 80640 41839 1 0 0 0.21963000786869316 4096 2048 384 12 96 360 72 24 0 2480 1920 0 384 1 8121229412 6075764 1 0 4 2 2 2 6 5898240 2949120 2949120 2950924 8985600 150 150 150 156 1874 0 0 13 2 65 0 0 0 0 0 +408 1783876882296841300 DEPTH 31 1 0.7458982180054361 0.3594548551959113 2 6 2 6 0 0 2853 43 2566 23742962 147840 1290.0454406738281 8.6121999999999996 2358.1120999999998 80640 42855 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 8125705640 10551992 1 0 4 2 2 2 6 5898240 2949120 2949120 2951004 8985600 150 150 192 198 1876 0 0 2 4 37 0 0 0 0 0 +409 1783876884690828000 DEPTH 33 1 0.74592938721500457 0.36712095400340705 1 7 1 7 0 0 3555 32 2536 23742762 147840 1282.1228332519531 9.5058000000000007 2337.6412 80640 42528 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 8130151268 14997620 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 156 150 201 192 1837 0 0 0 0 32 0 0 0 0 0 +410 1783876886868419100 DEPTH 22 1 0.74434712815545634 0.91396933560476989 3 11 3 11 0 0 479 42 2523 23742676 147840 1307.6398162841797 8.6227 2121.3809999999999 40320 23124 1 0 0.0083569577158233901 0.70301508708995641 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 8134583636 19429988 1 0 5 1 2 2 6 7372800 1474560 2949120 2950977 8985600 150 150 150 156 1917 2 0 0 2 38 0 0 0 0 0 +411 1783876889250665700 DEPTH 8 1 0.75461802121177646 0.26575809199318562 2 5 2 5 0 0 2424 30 2560 23727377 132480 1280.2265014648438 8.6541999999999994 2321.5940000000001 80640 39987 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 8139053744 23900096 1 0 4 2 3 2 5 5898240 2949120 3932160 2950984 7987200 156 150 172 727 1355 0 0 0 0 30 0 0 0 0 0 +412 1783876891667281800 DEPTH 46 1 0.74602592133279533 0.37478705281090291 0 8 0 8 0 0 2790 52 2532 23742865 147840 1277.3039855957031 8.5937000000000001 2361.2006000000001 80640 43241 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 8143495292 28341644 1 0 4 2 2 2 6 5898240 2949120 2949120 2950985 8985600 150 150 172 169 1891 0 0 7 1 44 0 0 0 0 0 +413 1783876894123311700 DEPTH 44 1 0.74605578742637069 0.36712095400340705 1 7 1 7 0 0 2351 39 2626 23742869 147840 1279.6034393310547 8.5987999999999989 2386.1226000000001 80640 41832 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2626 1920 0 384 1 8148032720 32879072 1 0 4 2 2 2 6 5898240 2949120 2949120 2951006 8985600 150 150 219 150 1957 2 0 2 1 34 0 0 0 0 0 +414 1783876896535070400 DEPTH 52 1 0.74608729175192834 0.36712095400340705 1 7 1 7 0 0 2326 40 2606 23723727 128640 1266.7974090576172 8.6666000000000007 2354.6003999999998 114240 56486 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2606 1920 0 384 1 8152549748 37396100 1 0 4 3 2 2 5 5898240 4177920 2949120 2950939 7737600 162 150 373 928 993 0 1 3 1 35 0 0 0 0 0 +415 1783876898761025500 DEPTH 10 1 0.74427100802440394 0.64821124361158422 1 10 1 10 1 0 1187 64 2559 23742515 147840 1279.6856231689453 8.5853999999999999 2118.5976000000001 80640 45079 1 0 0.0023995457881238751 2.586252991985504 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 8157018836 41865188 1 0 4 2 2 2 6 6144000 2949120 2949120 2705058 8985600 150 150 150 162 1947 10 1 0 5 48 0 0 0 0 1 +416 1783876900899121900 DEPTH 49 1 0.74352161456424359 0.4454855195911413 3 6 3 6 0 0 1597 45 2533 23742642 147840 1276.5243530273438 8.7379999999999995 2082.8557000000001 80640 44851 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 8161461404 46307756 1 0 4 2 2 2 6 5898240 2949120 2949120 2950946 8985600 150 155 166 173 1889 0 0 2 0 43 0 0 0 0 0 +417 1783876903246644800 DEPTH 41 1 0.74343239476565426 0.55451448040885853 1 9 1 9 0 0 2332 71 2549 23742599 147840 1265.5218200683594 8.5884 2289.3503000000001 80640 46686 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 8165920292 50766644 1 0 4 2 2 2 6 5898240 2949120 2949120 2950902 8985600 152 150 212 167 1868 0 0 21 5 45 0 0 0 0 0 +418 1783876905645589600 DEPTH 21 1 0.74346577196160279 0.56218057921635434 0 10 0 10 0 0 2650 68 2550 23742727 147840 1268.5680541992188 8.6156000000000006 2333.2896000000001 80640 46597 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 8170380200 55226552 1 0 4 2 2 2 6 5898240 2949120 2949120 2951032 8985600 156 150 154 178 1912 0 0 8 1 59 0 0 0 0 0 +419 1783876908115405500 DEPTH 42 1 0.80394057619711679 0 0 4 0 4 0 0 4096 20 2592 23677674 81600 1276.8154144287109 8.5991999999999997 2468.2795999999998 120960 39322 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 8174882948 59729300 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 243 150 166 1500 533 0 0 0 0 20 0 0 0 0 0 +420 1783876910561630700 DEPTH 17 1 0.75492086508640932 0.28109028960817717 0 7 0 7 1 0 4096 36 2567 23727424 132480 1266.8101043701172 8.5951999999999984 2392.7986000000001 107520 54074 1 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 8179360196 64206548 1 0 4 3 2 2 5 5898240 3932160 2949120 2951002 7987200 150 150 156 582 1529 0 0 0 0 36 0 0 0 0 1 +421 1783876914093455200 DEPTH 13 1 0.75492326748258332 0.27342419080068137 1 6 1 6 0 0 4096 66 2562 23720532 125760 1292.6392364501953 8.6159999999999997 3471.9270000000001 120960 69438 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 8183832424 1570448 1 0 4 3 2 2 5 5898240 4423680 2949120 2950917 7488000 150 150 150 418 1694 0 0 3 2 61 0 0 0 0 0 +422 1783876916297480000 DEPTH 38 1 0.74385613359371905 0.55451448040885853 1 9 1 9 0 0 2162 37 2529 23742659 147840 1268.2468566894531 8.6754999999999995 2148.3726000000001 80640 46356 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 8188270912 6008936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950964 8985600 150 150 150 154 1925 0 0 0 2 35 0 0 0 0 0 +423 1783876918711064700 DEPTH 25 1 0.74348441353210815 0.4608177172061329 1 8 1 8 0 0 2402 49 2527 23742716 147840 1278.4271697998047 8.6143000000000001 2357.3780999999999 80640 43663 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 8192707360 10445384 1 0 4 2 2 2 6 5898240 2949120 2949120 2951022 8985600 156 150 161 153 1907 1 0 4 6 38 0 0 0 0 0 +424 1783876921132439600 DEPTH 45 1 0.7434804670825752 0.45315161839863699 2 7 2 7 0 0 2216 30 2568 23742760 147840 1275.5118255615234 8.6234000000000002 2365.1084000000001 80640 44279 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 8197185628 14923652 1 0 4 2 2 2 6 5898240 2949120 2949120 2951066 8985600 150 150 171 156 1941 0 0 3 5 22 0 0 0 0 0 +425 1783876923594602300 DEPTH 56 1 0.76337486381005559 0.17206132879045993 2 4 2 4 0 0 4096 40 2570 23698503 103680 1264.6614074707031 8.6554000000000002 2406.7103000000002 120960 52325 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 8201665936 19403960 1 0 4 3 3 2 4 5898240 4423680 4423680 2950955 5990400 181 150 156 1430 653 2 0 0 6 32 0 0 0 0 0 +426 1783876925997507200 DEPTH 2 1 0.74335935416613141 0.45315161839863699 2 7 2 7 1 0 3713 54 2565 23742649 147840 1274.2838439941406 8.6047999999999991 2342.3712 80640 44430 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 8206141144 23879168 1 0 4 2 2 2 6 5898240 2949120 2949120 2950956 8985600 156 150 157 182 1920 0 0 4 2 48 0 0 0 0 1 +427 1783876926414878700 REFRESH 16 0 0.74010988301379776 0.3594548551959113 2 6 2 6 0 0 3404 50 412 3988960 56640 221.61430358886719 1.4330000000000001 362.19209999999998 13440 8151 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8206869608 24607632 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 30 25 306 0 0 3 0 47 0 0 0 0 0 +428 1783876926847447400 REFRESH 46 0 0.6501362755775284 0.37478705281090291 0 8 0 8 0 0 2793 9 418 3988984 56640 223.02003479003906 1.4299999999999999 378.6112 13440 8566 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8207604192 25342216 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 25 25 43 62 263 0 0 0 0 9 0 0 0 0 0 +429 1783876927308633600 REFRESH 44 0 0.65016483691436444 0.36712095400340705 1 7 1 7 0 0 2360 19 434 3988965 56640 221.32429504394531 1.4314 405.9581 13440 8409 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 434 320 0 64 0 8208355096 26093120 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 64 32 288 0 0 2 1 16 0 0 0 0 0 +430 1783876927733578800 REFRESH 54 0 0.74348700712891391 0.4608177172061329 1 8 1 8 0 0 1239 13 414 3988958 56640 220.54095458984375 1.4329000000000001 373.69999999999999 13440 8762 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8209085600 26823624 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 34 69 260 0 0 0 1 12 0 0 0 0 0 +431 1783876928163952000 REFRESH 9 0 0.74943393110964496 0.27342419080068137 1 6 1 6 0 0 3311 42 410 3988485 56160 221.46560668945312 1.4288000000000001 368.37310000000002 13440 8176 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8209812024 27550048 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 26 25 25 109 225 0 0 0 11 31 0 0 0 0 0 +432 1783876928621604500 REFRESH 20 0 0.74422934746694458 0.26575809199318562 2 5 2 5 0 0 2170 7 429 3988473 56160 222.34317016601562 1.4395 406.03489999999999 20160 14163 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8210557828 28295852 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 27 194 158 0 0 1 0 6 0 0 0 0 0 +433 1783876929076670000 REFRESH 36 0 0.73943427818872687 0.82027257240204421 3 10 3 10 0 0 1257 38 403 3988937 56640 219.80160522460938 1.4315 342.97699999999998 6720 4815 0 0 0.084785731009776932 0.13032671354522907 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 8211277112 29015136 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 26 25 25 32 295 0 0 0 1 37 0 0 0 0 0 +434 1783876929526775600 REFRESH 39 0 0.74072640379623356 0.55451448040885853 1 9 1 9 0 0 1624 10 419 3988961 56640 219.96954345703125 1.4402999999999999 395.93610000000001 13440 9692 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8212012716 29750740 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 48 295 0 0 0 0 10 0 0 0 0 0 +435 1783876929932343600 REFRESH 7 0 0.73954328772839462 0.8356047700170357 1 12 1 12 0 0 884 15 405 3988877 56640 221.17170715332031 1.4296 352.68669999999997 13440 9788 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 8212734040 30472064 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 32 298 0 0 0 0 15 0 0 0 0 0 +436 1783876930343579000 REFRESH 10 0 0.69727511008156529 0.64821124361158422 1 10 1 10 1 0 1190 15 423 3988973 56640 220.63206481933594 1.4330000000000001 357.81630000000001 13440 9890 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8213473724 31211748 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 25 25 25 29 319 0 0 0 0 15 0 0 0 0 1 +437 1783876930745680000 REFRESH 0 0 0.73852340846749587 0.8279386712095399 2 11 2 11 0 0 909 11 416 3988883 56640 219.78828430175781 1.4471000000000001 351.37290000000002 6720 4931 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8214206268 31944292 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 27 25 25 30 309 0 0 0 1 10 0 0 0 0 0 +438 1783876931158759900 REFRESH 58 0 0.73682987041016257 0.92163543441226559 2 12 2 12 0 0 534 14 409 3988890 56640 220.79487609863281 1.4320999999999999 360.4196 13440 9948 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8214931672 32669696 1 0 5 2 2 1 6 1228800 491520 491520 245850 1497600 25 25 25 28 306 0 0 0 0 14 0 0 0 0 0 +439 1783876931527698900 REFRESH 21 0 0.69662916349777892 0.56218057921635434 0 10 0 10 0 0 2666 46 410 3988885 56640 220.69862365722656 1.4352 367.61529999999999 20160 14938 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8215658096 33396120 1 0 4 3 2 1 6 983040 737280 491520 245845 1497600 25 25 25 36 299 0 0 0 4 42 0 0 0 0 0 +440 1783876931925105400 REFRESH 37 0 0.73965025267898832 0.8356047700170357 1 12 1 12 0 0 1020 21 406 3988887 56640 220.81126403808594 1.4328000000000001 343.82530000000003 13440 9825 0 0 0.0032942291561997633 0.45998351290979422 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8216380440 34118464 1 0 5 2 2 1 6 1228800 491520 491520 245847 1497600 26 25 25 32 298 1 0 0 0 20 0 0 0 0 0 +441 1783876932329919700 REFRESH 47 0 0.73965810916577934 0.8279386712095399 2 11 2 11 0 0 677 13 411 3988865 56640 220.92185974121094 1.4363999999999999 351.37380000000002 13440 10042 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8217107884 34845908 1 0 5 2 2 1 6 1228800 491520 491520 245825 1497600 26 25 25 27 308 0 0 0 0 13 0 0 0 0 0 +442 1783876932751349500 REFRESH 14 0 0.73889783548581889 0.65587734241908002 0 11 0 11 0 0 1690 31 409 3988938 56640 222.70463562011719 1.4328000000000001 366.3861 6720 4582 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8217833288 35571312 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 31 25 27 28 298 0 0 0 0 31 0 0 0 0 0 +443 1783876933181638700 REFRESH 40 0 0.73893023526136958 0.64821124361158422 1 10 1 10 0 0 1802 19 415 3988968 56640 220.1712646484375 1.47 377.09399999999999 13440 9772 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8218564812 36302836 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 29 311 0 0 0 1 18 0 0 0 0 0 +444 1783876933586025800 REFRESH 55 0 0.73927720578574874 0.64054514480408853 2 9 2 9 0 0 1081 18 406 3988944 56640 221.03858947753906 1.4338 352.3501 6720 4524 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8219287156 37025180 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 34 25 53 26 268 0 0 1 0 17 0 0 0 0 0 +445 1783876933954171000 REFRESH 2 0 0.67825480986357278 0.45315161839863699 2 7 2 7 0 0 3748 72 417 3988968 56640 221.06317138671875 1.4332 366.58069999999998 13440 8574 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8220020720 37758744 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 26 25 48 51 267 0 0 3 2 67 0 0 0 0 0 +446 1783876934365344800 REFRESH 12 0 0.73924461702440525 0.63287904599659284 3 8 3 8 0 0 1653 57 428 3988937 56640 219.91424560546875 1.4309000000000001 356.33580000000001 13440 9390 0 0 0.0015375076066785009 0.39601344633316055 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8220765504 38503528 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 28 27 323 0 0 0 0 57 0 0 0 0 0 +447 1783876934796267800 REFRESH 50 0 0.73313297840639957 0.64054514480408853 2 9 2 9 0 0 1053 7 419 3988883 56640 219.40838623046875 1.4334 374.70909999999998 13440 9818 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8221501108 39239132 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 26 25 25 26 317 3 0 0 1 3 0 0 0 0 0 +448 1783876935199380500 REFRESH 6 0 0.7373886811888658 0.91396933560476989 3 11 3 11 0 0 381 5 420 3988896 56640 219.67570495605469 1.4297 350.32769999999999 6720 4886 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8222237732 39975756 1 0 6 1 2 1 6 1474560 245760 491520 245854 1497600 26 25 25 31 313 0 0 0 1 4 0 0 0 0 0 +449 1783876935700615000 REFRESH 48 0 0.74977790863237992 0.26575809199318562 2 5 2 5 0 0 2562 22 420 3988488 56160 220.40678405761719 1.4333 392.30919999999998 13440 8421 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8222974356 40712380 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 25 25 25 139 206 0 0 0 4 18 0 0 0 0 0 +450 1783876936104453700 REFRESH 34 0 0.7399588864260388 0.8356047700170357 1 12 1 12 0 0 749 22 412 3988879 56640 219.15852355957031 1.4300999999999999 350.7534 6720 4808 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8223702820 41440844 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 51 285 0 0 0 1 21 0 0 0 0 0 +451 1783876936543699400 REFRESH 8 0 0.74983498258813031 0.26575809199318562 2 5 2 5 0 0 2430 23 413 3988481 56160 221.96633911132812 1.4417 377.04140000000001 13440 7977 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8224432304 42170328 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 26 25 25 157 180 0 0 0 7 16 0 0 0 0 0 +452 1783876936958091800 REFRESH 42 0 0.9119488511829168 0 0 4 0 4 0 0 4096 6 427 3987631 55200 223.80339050292969 1.4312 412.64299999999997 20160 12421 0 0 0 0.0064275276714682349 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8225176068 42914092 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 58 25 34 234 76 0 0 0 0 6 0 0 0 0 0 +453 1783876937377486600 REFRESH 30 0 0.74420942830267522 0.4608177172061329 1 8 1 8 0 0 3665 58 413 3988958 56640 220.59417724609375 1.4333 366.04660000000001 13440 8937 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8225905552 43643576 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 27 41 294 0 0 0 3 55 0 0 0 0 0 +454 1783876937801787300 REFRESH 41 0 0.73709754254166815 0.55451448040885853 1 9 1 9 0 0 2344 45 417 3988942 56640 219.64288330078125 1.4256 368.08199999999999 13440 8788 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8226639116 44377140 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 45 40 281 0 0 3 6 36 0 0 0 0 0 +455 1783876938213866000 REFRESH 18 0 0.74384975854491642 0.9293015332197615 1 13 1 13 0 0 442 9 412 3988958 56640 222.02777099609375 1.4327000000000001 357.96530000000001 6720 4938 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8227367580 45105604 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 25 25 25 311 0 0 0 0 9 0 0 0 0 0 +456 1783876938626637400 REFRESH 17 0 0.75001270098743178 0.28109028960817717 0 7 0 7 0 0 4096 11 422 3988468 56160 221.53216552734375 1.4328000000000001 411.49340000000001 20160 14943 0 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8228106244 45844268 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 221 126 0 0 0 2 9 0 0 0 0 0 +457 1783876939057029200 REFRESH 1 0 0.74110322651743676 0.36712095400340705 1 7 1 7 0 0 3307 54 415 3988928 56640 219.68690490722656 1.4903999999999999 373.24650000000003 13440 8515 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8228837768 46575792 1 0 4 2 2 2 6 983040 491520 491520 491640 1497600 26 25 49 52 263 0 0 7 3 44 0 0 0 0 0 +458 1783876939475571300 REFRESH 32 0 0.74436392766700643 0.4608177172061329 1 8 1 8 0 0 3098 35 411 3988952 56640 219.63058471679688 1.4333 364.1379 13440 9069 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8229565212 47303236 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 34 41 285 0 0 3 4 28 0 0 0 0 0 +459 1783876939863808100 REFRESH 25 0 0.73766592927796637 0.4608177172061329 1 8 1 8 0 0 2406 20 410 3988958 56640 221.95712280273438 1.4337 386.83620000000002 13440 8208 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8230291636 48029660 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 27 30 302 1 0 0 1 18 0 0 0 0 0 +460 1783876940297552800 REFRESH 53 0 0.74108268634802577 0.37478705281090291 0 8 0 8 0 0 4096 55 401 3988973 56640 221.15020751953125 1.431 377.95510000000002 13440 8349 0 0 0 0.21963000786869316 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 8231008880 48746904 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 35 39 276 0 0 0 3 52 0 0 0 0 0 +461 1783876940750115000 REFRESH 4 0 0.74237412083780319 0.8356047700170357 1 12 1 12 0 0 284 7 421 3988876 56640 218.97523498535156 1.4302999999999999 347.67700000000002 6720 4924 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8231746524 49484548 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 25 25 25 27 319 0 0 0 0 7 0 0 0 0 0 +462 1783876941159187500 REFRESH 15 0 0.73557889221379669 0.91396933560476989 3 11 3 11 0 0 322 7 408 3988868 56640 221.37667846679688 2.1976 355.66989999999998 6720 4855 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8232470908 50208932 1 0 6 1 2 1 6 1474560 245760 491520 245827 1497600 25 25 25 29 304 0 0 0 0 7 0 0 0 0 0 +463 1783876941592540300 REFRESH 57 0 0.75017466601901928 0.27342419080068137 1 6 1 6 0 0 4096 32 414 3988477 56160 221.34172058105469 1.4343999999999999 379.03300000000002 13440 8292 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8233201412 50939436 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 26 25 25 149 189 0 0 0 5 27 0 0 0 0 0 +464 1783876942002496700 REFRESH 49 0 0.73805137465072557 0.4454855195911413 3 6 3 6 0 0 1608 37 407 3988954 56640 221.4993896484375 1.4308000000000001 355.005 13440 8556 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8233924776 51662800 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 26 39 56 261 0 0 0 3 34 0 0 0 0 0 +465 1783876942399707900 REFRESH 35 0 0.73775325451822593 0.8279386712095399 2 11 2 11 0 0 1116 11 408 3988885 56640 221.66323852539062 1.4355 344.19630000000001 13440 9851 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8234649160 52387184 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 25 25 25 28 305 0 0 0 0 11 0 0 0 0 0 +466 1783876942852380300 REFRESH 11 0 0.74128888009516636 0.37478705281090291 0 8 0 8 0 0 2599 24 408 3988947 56640 220.72323608398438 1.4406000000000001 399.30689999999998 13440 8506 0 0 0 0.67113630556295556 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8235373544 53111568 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 37 69 251 0 0 2 2 20 0 0 0 0 0 +467 1783876943270603200 REFRESH 56 0 0.75944961235952224 0.17206132879045993 2 4 2 4 0 0 4096 14 429 3988002 55680 222.671875 1.4278 416.73340000000002 20160 11820 0 0 0.0043318378033526299 0.4929472619805555 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8236119348 53857372 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 41 25 25 224 114 0 0 0 5 9 0 0 0 0 0 +468 1783876943721472600 REFRESH 52 0 0.74131046465950501 0.36712095400340705 1 7 1 7 0 0 2331 12 430 3988480 56160 221.11846923828125 1.4318 396.19600000000003 20160 14890 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 8236866172 54604196 1 0 4 3 2 2 5 983040 737280 491520 491680 1248000 25 25 25 233 122 0 0 1 3 8 0 0 0 0 0 +469 1783876944123084000 REFRESH 23 0 0.74391698721454902 0.74190800681430991 1 11 1 11 0 0 3464 19 413 3988883 56640 222.82035827636719 1.4336 348.09390000000002 13440 9941 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8237595656 55333680 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 25 25 25 27 311 0 0 0 0 19 0 0 0 0 0 +470 1783876944530514900 REFRESH 28 0 0.74061616089344073 0.8279386712095399 2 11 2 11 0 0 645 14 410 3988941 56640 221.96633911132812 1.4346000000000001 354.83069999999998 6720 4801 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8238322080 56060104 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 26 25 25 26 308 0 0 0 0 14 0 0 0 0 0 +471 1783876944938392100 REFRESH 29 0 0.73399253093823869 0.82027257240204421 3 10 3 10 0 0 1114 10 418 3988868 56640 221.6837158203125 1.4311 352.4667 6720 4835 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8239056664 56794688 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 30 25 25 43 295 0 0 0 0 10 0 0 0 0 0 +472 1783876945349372900 REFRESH 3 0 0.73986557792809293 0.64054514480408853 2 9 2 9 1 0 1145 22 410 3988957 56640 219.70944213867188 1.4313 356.00510000000003 13440 9678 0 0 0.0077774648629521954 0.15775479034712997 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8239783088 57521112 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 40 295 0 0 0 0 22 0 0 0 0 1 +473 1783876945768533800 REFRESH 27 0 0.74482213770957184 0.4608177172061329 1 8 1 8 0 0 3789 60 409 3988959 56640 221.1727294921875 1.4309000000000001 365.72989999999999 13440 8993 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8240508492 58246516 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 27 26 33 32 291 0 0 0 0 60 0 0 0 0 0 +474 1783876946187597400 REFRESH 26 0 0.7480154308825766 0.55451448040885853 1 9 1 9 0 0 2073 16 413 3988476 56160 222.61453247070312 1.4287000000000001 367.13330000000002 20160 14957 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8241237976 58976000 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 144 194 0 0 0 3 13 0 0 0 0 0 +475 1783876946600885900 REFRESH 19 0 0.74081465564196625 0.8279386712095399 2 11 2 11 0 0 877 15 413 3988886 56640 219.826171875 1.4361999999999999 354.47309999999999 13440 9997 0 0 0.024177036158378046 0.33727786679187743 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8241967460 59705484 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 25 25 25 30 308 0 0 1 1 13 0 0 0 0 0 +476 1783876947025424900 REFRESH 24 0 0.74509872128941779 1 4 11 4 11 0 0 496 10 406 3988880 56640 222.71180725097656 1.4553 369.91660000000002 6720 4898 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8242689804 60427828 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 25 27 304 0 0 0 0 10 0 0 0 0 0 +477 1783876947470446500 REFRESH 13 0 0.75056510576992141 0.27342419080068137 1 6 1 6 0 0 4096 28 415 3988464 56160 221.65093994140625 1.4340999999999999 385.21940000000001 20160 14073 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8243421328 61159352 1 0 4 3 2 2 5 983040 737280 491520 491664 1248000 25 25 25 242 98 0 0 0 17 11 0 0 0 0 0 +478 1783876947872000400 REFRESH 51 0 0.73815376246855635 0.91396933560476989 3 11 3 11 0 0 546 13 399 3988880 56640 220.08114624023438 1.4301999999999999 347.6927 13440 9899 0 0 0.044093971204707823 0.28107893475413925 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 8244136532 61874556 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 25 25 25 36 288 0 0 0 2 11 0 0 0 0 0 +479 1783876948270552500 REFRESH 22 0 0.73752499264256777 0.91396933560476989 3 11 3 11 0 0 481 7 414 3988943 56640 221.69497680664062 1.4356 345.24549999999999 6720 4855 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8244867036 62605060 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 26 25 25 26 312 0 0 0 0 7 0 0 0 0 0 +480 1783876948677580000 REFRESH 43 0 0.74093921117090489 0.8279386712095399 2 11 2 11 0 0 793 13 419 3988873 56640 220.24908447265625 1.4340999999999999 346.73500000000001 6720 4816 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8245602640 63340664 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 25 25 25 49 295 0 0 0 1 12 0 0 0 0 0 +481 1783876949168327700 REFRESH 31 0 0.74168152598128878 0.3594548551959113 2 6 2 6 0 0 2862 31 415 3988977 56640 220.24806213378906 1.4298999999999999 380.99259999999998 13440 8703 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8246334164 64072188 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 52 46 266 0 0 4 1 26 0 0 0 0 0 +482 1783876949568472800 REFRESH 38 0 0.73818200833878089 0.55451448040885853 1 9 1 9 0 0 2175 38 410 3988953 56640 219.62460327148438 1.4345000000000001 346.25189999999998 13440 8787 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8247060588 64798612 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 26 36 297 0 0 0 1 37 0 0 0 0 0 +483 1783876949994578000 REFRESH 33 0 0.74173758382092037 0.36712095400340705 1 7 1 7 0 0 3573 33 422 3988946 56640 222.79168701171875 1.4339 369.7235 13440 8299 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8247799252 65537276 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 66 35 270 0 0 2 1 30 0 0 0 0 0 +484 1783876950368724300 REFRESH 45 0 0.73836936404603026 0.45315161839863699 2 7 2 7 0 0 2225 34 413 3988949 56640 220.24806213378906 1.4313 372.71510000000001 13440 8519 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8248528736 66266760 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 32 34 296 0 0 0 4 30 0 0 0 0 0 +485 1783876950771398300 REFRESH 5 0 0.74111858226689376 0.8279386712095399 2 11 2 11 0 0 889 9 413 3988868 56640 219.1964111328125 1.4294 349.67849999999999 13440 9950 0 0 0.0051709246057396047 0.41217676255528551 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8249258220 66996244 1 0 5 2 2 1 6 1228800 491520 491520 245828 1497600 25 25 25 36 302 0 0 0 0 9 0 0 0 0 0 +486 1783876954354971200 DEPTH 42 1 0.90596132633197657 0 0 4 0 4 0 0 4096 22 2595 23677804 81600 1289.9372253417969 8.5992999999999995 3474.2483000000002 120960 59209 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 8253764108 4393208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 298 150 201 1424 522 0 0 0 0 22 0 0 0 0 0 +487 1783876956903035100 DEPTH 9 1 0.74535185506431345 0.27342419080068137 1 6 1 6 0 0 3319 46 2536 23720642 125760 1283.4693756103516 8.6971000000000007 2486.3748999999998 80640 39457 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 8258209736 8838836 1 0 4 2 3 2 5 5898240 2949120 4423680 2950950 7488000 156 150 150 371 1709 0 0 0 2 44 0 0 0 0 0 +488 1783876959369871300 DEPTH 17 1 0.74525238353426904 0.28109028960817717 0 7 0 7 0 0 4096 52 2573 23716754 121920 1273.2156982421875 8.5861000000000001 2355.7624000000001 120960 69487 1 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 8262693104 13322204 1 0 4 3 3 2 4 5898240 4423680 3194880 2950978 7238400 150 150 151 805 1317 0 0 3 0 49 0 0 0 0 0 +489 1783876961671086400 DEPTH 8 1 0.74524695422377585 0.26575809199318562 2 5 2 5 0 0 2432 36 2562 23720668 125760 1284.5499267578125 8.5700000000000003 2300.0043000000001 80640 38492 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 8267165252 17794352 1 0 4 2 3 2 5 5898240 2949120 4423680 2951015 7488000 156 150 150 861 1245 0 0 0 0 36 0 0 0 0 0 +490 1783876964005486600 DEPTH 48 1 0.7452735456677777 0.26575809199318562 2 5 2 5 0 0 2575 48 2572 23712937 118080 1275.0078430175781 8.5914000000000001 2333.2222999999999 107520 51458 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 8271647600 22276700 1 0 4 3 3 2 4 5898240 3932160 3932160 2950972 6988800 150 150 153 562 1557 0 0 6 0 42 0 0 0 0 0 +491 1783876966429147500 DEPTH 54 1 0.7384050619416973 0.4608177172061329 1 8 1 8 0 0 1242 32 2563 23723456 128640 1268.3158416748047 8.5838999999999999 2312.7433999999998 114240 55856 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 8276120768 26749868 1 0 4 3 2 2 5 5898240 4177920 2949120 2950962 7737600 156 150 171 908 1178 0 0 4 0 28 0 0 0 0 0 +492 1783876968820327300 DEPTH 32 1 0.73843384025652103 0.4608177172061329 1 8 1 8 0 0 3110 39 2552 23742689 147840 1272.9242095947266 8.6155999999999988 2326.8604 80640 44737 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 8280582716 31211816 1 0 4 2 2 2 6 5898240 2949120 2949120 2950994 8985600 150 150 155 169 1928 0 0 1 2 36 0 0 0 0 0 +493 1783876971411940100 DEPTH 30 1 0.73846258659723785 0.4608177172061329 1 8 1 8 0 0 3685 69 2538 23742635 147840 1327.9132385253906 8.5862999999999996 2419.8726999999999 80640 44351 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 8285030384 35659484 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 156 150 156 219 1857 0 0 1 11 57 0 0 0 0 0 +494 1783876973889162200 DEPTH 56 1 0.75529398071206089 0.17206132879045993 2 4 2 4 0 0 4096 54 2576 23684099 88320 1284.1994781494141 8.6350999999999996 2475.8292000000001 120960 56693 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 8289516812 40145912 1 0 4 3 3 3 3 5898240 4423680 4423680 3934655 4992000 215 150 150 1369 692 0 0 0 4 50 0 0 0 0 0 +495 1783876976324620200 DEPTH 57 1 0.74540606006848109 0.27342419080068137 1 6 1 6 0 0 4096 41 2529 23712937 118080 1302.6664123535156 8.5854999999999997 2380.3762999999999 94080 46538 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 8293955300 44584400 1 0 4 3 3 2 4 5898240 3440640 4423680 2950949 6988800 156 150 150 718 1355 0 0 0 2 39 0 0 0 0 0 +496 1783876978824774400 DEPTH 20 1 0.73788027482939222 0.26575809199318562 2 5 2 5 0 0 2175 37 2597 23712843 118080 1278.5172271728516 8.7369000000000003 2437.8766999999998 120960 69358 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 8298463148 49092248 1 0 4 3 3 2 4 5898240 4423680 3440640 2950908 6988800 150 150 162 1074 1061 0 1 13 0 23 0 0 0 0 0 +497 1783876980961729100 DEPTH 23 1 0.73645897835003804 0.74190800681430991 1 11 1 11 0 0 3472 49 2521 23742637 147840 1297.3246002197266 8.6011999999999986 2074.0821000000001 80640 43135 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 8302893476 53522576 1 0 4 2 2 2 6 5898240 2949120 2949120 2950939 8985600 150 150 150 151 1920 0 0 0 0 49 0 0 0 0 0 +498 1783876983486277300 DEPTH 1 1 0.73623892518663969 0.36712095400340705 1 7 1 7 0 0 3316 49 2580 23727346 132480 1275.0590209960938 8.6631999999999998 2471.4331999999999 107520 53112 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 8307383984 58013084 1 0 4 3 2 2 5 5898240 3932160 2949120 2950925 7987200 150 150 186 663 1431 0 0 4 0 45 0 0 0 0 0 +499 1783876986020376900 DEPTH 11 1 0.73619867402931294 0.37478705281090291 0 8 0 8 1 0 2614 50 2531 23720660 125760 1268.0736389160156 8.6149000000000004 2423.7948000000001 120960 56666 1 0 0 0.66838177768825158 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 8311824512 62453612 1 0 4 3 2 2 5 5898240 4423680 2949120 2950966 7488000 156 150 170 539 1516 0 0 0 0 50 0 0 0 0 4 +500 1783876988285199700 DEPTH 16 1 0.73619803095799008 0.3594548551959113 2 6 2 6 0 0 3419 81 2547 23731137 136320 1283.5531311035156 8.6072999999999986 2211.5675999999999 80640 39800 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 8316281360 66910460 1 0 4 2 3 2 5 5898240 2949120 3686400 2950898 8236800 156 150 158 475 1608 4 0 17 7 53 0 0 0 0 0 +501 1783876991818057100 DEPTH 53 1 0.73622299707965211 0.37478705281090291 0 8 0 8 1 0 4096 64 2496 23742809 147840 1271.3216705322266 8.6140000000000008 3464.1253999999999 80640 40250 1 0 0 0.21957375535271967 4096 2048 384 12 96 360 72 24 0 2496 1920 0 384 1 8320686268 4206468 1 0 4 2 2 2 6 5898240 2949120 2949120 2951039 8985600 150 150 150 159 1887 0 1 13 4 46 0 0 0 0 2 +502 1783876994494627000 DEPTH 42 1 0.81400312832198451 0 0 4 0 4 0 0 4096 21 2595 23677974 81600 1367.6031951904297 8.7241999999999997 2618.8942000000002 120960 48653 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 8325192076 8712276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 277 150 192 1453 523 0 0 0 0 21 0 0 0 0 0 +503 1783876997212834500 DEPTH 13 1 0.74561656333103588 0.27342419080068137 1 6 1 6 0 0 4096 48 2558 23712926 118080 1423.4931182861328 8.7458999999999989 2650.7667999999999 120960 68573 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 8329660144 13180344 1 0 4 3 3 2 4 5898240 4423680 3440640 2950992 6988800 150 150 150 663 1445 0 0 4 0 44 0 0 0 0 0 +504 1783876999806760600 DEPTH 26 1 0.73993666890526533 0.55451448040885853 1 9 1 9 0 0 2092 64 2540 23712886 118080 1327.6815643310547 9.0173000000000005 2528.1509999999998 120960 69937 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 8334109852 17630052 1 0 4 3 3 2 4 5898240 4423680 3440640 2950952 6988800 150 150 150 450 1640 0 0 2 6 56 0 0 0 0 0 +505 1783877002356609200 DEPTH 27 1 0.73880507356498826 0.4608177172061329 1 8 1 8 0 0 3801 72 2549 23742684 147840 1308.7857971191406 8.7477 2481.5992000000001 80640 44748 1 0 0.090901515514348663 1.023281551009547 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 8338568740 22088940 1 0 4 2 2 2 6 5898240 2949120 2949120 2950988 8985600 165 150 161 161 1912 0 0 4 5 63 0 0 0 0 0 +506 1783877004722985000 DEPTH 24 1 0.73676240934686987 1 4 11 4 11 0 0 497 35 2562 23742457 147840 1391.3589630126953 8.7059999999999995 2307.9430000000002 40320 24193 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 8343040888 26561088 1 0 5 1 2 2 6 7618560 1474560 2949120 2705000 8985600 150 150 150 158 1954 1 0 0 0 34 0 0 0 0 0 +507 1783877007320937800 DEPTH 44 1 0.73638137203717435 0.36712095400340705 1 7 1 7 0 0 2368 48 2628 23731265 136320 1295.8904724121094 8.6099999999999994 2527.944 94080 48624 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2628 1920 0 384 1 8347580356 31100556 1 0 4 3 2 2 5 5898240 3440640 3194880 2951000 8236800 150 150 241 403 1684 0 0 0 2 46 0 0 0 0 0 +508 1783877009884845100 DEPTH 52 1 0.73640811739139411 0.36712095400340705 1 7 1 7 0 0 2356 48 2597 23720694 125760 1359.1585235595703 8.9234000000000009 2500.7161000000001 120960 69818 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 8352088204 35608404 1 0 4 3 2 2 5 5898240 4423680 2949120 2951076 7488000 150 150 150 1160 987 0 0 3 1 44 0 0 0 0 0 +509 1783877012397548600 DEPTH 39 1 0.7358067177024129 0.55451448040885853 1 9 1 9 0 0 1631 33 2574 23742618 147840 1297.1130676269531 8.7960999999999991 2453.0868999999998 80640 46537 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 8356572592 40092792 1 0 4 2 2 2 6 5898240 2949120 2949120 2950922 8985600 156 150 150 182 1936 0 0 0 1 32 0 0 0 0 0 +510 1783877014865752700 DEPTH 31 1 0.73646194737154469 0.3594548551959113 2 6 2 6 0 0 2869 32 2567 23723487 128640 1289.5068206787109 8.575800000000001 2410.6381999999999 114240 56432 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 8361049840 44570040 1 0 4 3 2 2 5 5898240 4177920 2949120 2950908 7737600 150 150 186 908 1173 0 0 0 2 30 0 0 0 0 0 +511 1783877017396859200 DEPTH 33 1 0.73648817834401648 0.36712095400340705 1 7 1 7 0 0 3582 59 2532 23731182 136320 1304.3283233642578 9.1466000000000012 2459.9575 80640 40398 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 8365491388 49011588 1 0 4 2 3 2 5 5898240 2949120 3686400 2950941 8236800 153 150 204 404 1621 0 0 3 1 55 0 0 0 0 0 +512 1783877019585843100 DEPTH 18 1 0.7356927753528606 0.9293015332197615 1 13 1 13 0 0 445 56 2525 23742645 147840 1288.2463989257812 8.6095000000000006 2130.6581000000001 40320 23215 1 0 0.001215977528803138 1.5422979655869309 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 8369925796 53445996 1 0 5 1 2 2 6 7372800 1474560 2949120 2950951 8985600 156 150 150 150 1919 0 0 0 0 56 0 0 0 0 0 +513 1783877022144018500 DEPTH 46 1 0.73554276491491311 0.37478705281090291 0 8 0 8 0 0 2802 42 2540 23720637 125760 1281.6682586669922 8.7855999999999987 2501.7363999999998 120960 57374 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 8374375504 57895704 1 0 4 3 2 2 5 5898240 4423680 2949120 2950946 7488000 150 150 176 327 1737 0 0 2 0 40 0 0 0 0 0 +514 1783877024304987800 DEPTH 55 1 0.73381901342056988 0.64054514480408853 2 9 2 9 0 0 1089 60 2522 23742654 147840 1285.5143280029297 8.5372000000000003 2104.1606000000002 80640 42150 1 0 0.13217072358040352 0.64468272855878161 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 8378806852 62327052 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 156 155 156 156 1899 0 0 6 0 54 0 0 0 0 0 +515 1783877026722690800 DEPTH 12 1 0.73376045791202871 0.63287904599659284 3 8 3 8 0 0 1696 119 2628 23742706 147840 1317.2039642333984 8.6491000000000007 2352.1306 80640 45865 1 0 0.0015375076066785009 0.39601344633316055 4096 2048 384 12 96 360 72 24 0 2628 1920 0 384 1 8383346320 66866520 1 0 4 2 2 2 6 5898240 2949120 2949120 2951009 8985600 150 150 150 156 2022 0 0 0 2 117 0 0 0 0 0 +516 1783877030057178300 DEPTH 7 1 0.73377692979058384 0.8356047700170357 1 12 1 12 0 0 889 52 2532 23742691 147840 1294.4250335693359 9.6508000000000003 3273.0551 80640 43283 1 0 0.00024723902480694698 0.75064368531896075 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 8387787948 4200068 1 0 4 2 2 2 6 5898240 2949120 2949120 2950996 8985600 150 150 150 159 1923 0 2 0 0 50 0 0 0 0 0 +517 1783877032526609100 DEPTH 2 1 0.7337680967472755 0.45315161839863699 2 7 2 7 0 0 3764 95 2564 23742800 147840 1302.5433502197266 8.6121999999999996 2402.3924999999999 80640 42513 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 8392262136 8674256 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 156 150 168 174 1916 0 0 9 0 86 0 0 0 0 0 +518 1783877032939346300 REFRESH 36 0 0.73379937762627678 0.82027257240204421 3 10 3 10 1 0 1263 20 408 3988947 56640 225.14994812011719 1.4379999999999999 353.91160000000002 6720 4803 0 0 0.083980346979836099 0.13032864266777486 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8392986520 9398640 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 26 25 25 32 300 0 0 0 0 20 0 0 0 0 1 +519 1783877033362444300 REFRESH 27 0 0.62273400974402282 0.4608177172061329 1 8 1 8 0 0 3825 51 411 3988946 56640 225.43154907226562 1.4331 365.17529999999999 13440 8548 0 0 0.090901515514348663 1.023281551009547 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8393713964 10126084 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 27 26 39 33 286 0 0 1 1 49 0 0 0 0 0 +520 1783877033718815100 REFRESH 55 0 0.53698173125022719 0.64054514480408853 2 9 2 9 0 0 1093 21 407 3988953 56640 222.13017272949219 1.4354 354.56110000000001 13440 9082 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8394437328 10849448 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 56 26 275 0 0 1 0 20 0 0 0 0 0 +521 1783877034114562200 REFRESH 33 0 0.58108350558843702 0.36712095400340705 1 7 1 7 0 0 3590 26 415 3988482 56160 225.10797119140625 1.4335 393.72469999999998 13440 8148 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8395168852 11580972 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 26 25 25 195 144 0 0 0 11 15 0 0 0 0 0 +522 1783877034589414100 REFRESH 54 0 0.7328152881869856 0.4608177172061329 1 8 1 8 0 0 1244 11 425 3988475 56160 223.19206237792969 1.5156000000000001 413.7944 20160 14784 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8395910576 12322696 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 219 131 0 0 0 1 10 0 0 0 0 0 +523 1783877035061953200 REFRESH 26 0 0.6721533748934112 0.55451448040885853 1 9 1 9 0 0 2100 33 419 3988009 55680 242.41151428222656 1.5127999999999999 411.14409999999998 20160 13929 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8396646180 13058300 1 0 4 3 3 2 4 983040 737280 737280 491687 998400 25 25 28 156 185 0 0 0 18 15 0 0 0 0 0 +524 1783877035520763500 REFRESH 17 0 0.74083117371985963 0.28109028960817717 0 7 0 7 0 0 4096 19 420 3987981 55680 223.25042724609375 1.4314 402.84160000000003 20160 13940 0 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8397382804 13794924 1 0 4 3 3 2 4 983040 737280 737280 491661 998400 25 25 27 184 159 0 0 0 7 12 0 0 0 0 0 +525 1783877035933668900 REFRESH 35 0 0.73153531850008235 0.8279386712095399 2 11 2 11 0 0 1117 12 406 3988877 56640 223.39276123046875 1.4321999999999999 360.27069999999998 13440 9727 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8398105148 14517268 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 29 302 0 0 0 0 12 0 0 0 0 0 +526 1783877036338044600 REFRESH 4 0 0.73288363828314018 0.8356047700170357 1 12 1 12 1 0 284 5 421 3988878 56640 221.59666442871094 1.4271 351.78769999999997 6720 4885 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8398842792 15254912 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 25 29 317 0 0 0 0 5 0 0 0 0 1 +527 1783877036750428400 REFRESH 15 0 0.72649508817020703 0.91396933560476989 3 11 3 11 0 0 322 4 414 3988875 56640 224.79974365234375 1.4500999999999999 356.71559999999999 6720 4862 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8399573296 15985416 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 25 25 25 31 308 0 0 0 0 4 0 0 0 0 0 +528 1783877037247831400 REFRESH 13 0 0.74090206842374751 0.27342419080068137 1 6 1 6 0 0 4096 24 417 3987990 55680 234.64959716796875 1.4349000000000001 438.25749999999999 20160 12747 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8400306860 16718980 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 25 200 142 0 0 0 7 17 0 0 0 0 0 +529 1783877037698395500 REFRESH 16 0 0.73129236249185814 0.3594548551959113 2 6 2 6 0 0 3422 17 424 3988464 56160 233.16889953613281 1.4440999999999999 385.12329999999997 13440 7862 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8401047564 17459684 1 0 4 2 3 2 5 983040 491520 737280 491659 1248000 25 25 25 201 148 0 0 0 3 14 0 0 0 0 0 +530 1783877038178474200 REFRESH 40 0 0.73399491325110766 0.64821124361158422 1 10 1 10 0 0 1808 22 413 3988958 56640 246.48089599609375 1.4376 421.94600000000003 13440 9748 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8401777048 18189168 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 30 308 0 0 0 2 20 0 0 0 0 0 +531 1783877038612619400 REFRESH 37 0 0.7341651440123218 0.8356047700170357 1 12 1 12 0 0 1028 26 407 3988894 56640 239.69279479980469 1.4375 371.94970000000001 13440 9622 0 0 0.0032942291561997633 0.45998351290979422 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8402500412 18912532 1 0 5 2 2 1 6 1228800 491520 491520 245854 1497600 26 25 25 33 298 0 0 0 0 26 0 0 0 0 0 +532 1783877039031511400 REFRESH 52 0 0.72136441629236037 0.36712095400340705 1 7 1 7 0 0 2359 15 429 3988477 56160 233.64607238769531 1.4359 417.09059999999999 20160 13970 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8403246216 19658336 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 25 276 78 0 0 1 3 11 0 0 0 0 0 +533 1783877039514058300 REFRESH 20 0 0.73422916418903461 0.26575809199318562 2 5 2 5 0 0 2176 12 421 3987991 55680 242.90713500976562 1.4376 421.53730000000002 20160 12706 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8403983860 20395980 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 28 79 264 0 0 1 1 10 0 0 0 0 0 +534 1783877040059215500 REFRESH 11 0 0.73145676741663523 0.37478705281090291 0 8 0 8 0 0 2617 15 416 3988466 56160 239.52076721191406 1.4315 433.41359999999997 20160 14891 0 0 0 0.66838177768825158 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8404716404 21128524 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 204 137 0 0 1 1 13 0 0 0 0 0 +535 1783877040495987800 REFRESH 38 0 0.7327074623267491 0.55451448040885853 1 9 1 9 0 0 2185 31 414 3988964 56640 236.44876098632812 1.4382999999999999 380.29629999999997 13440 8629 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8405446908 21859028 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 29 309 0 0 0 1 30 0 0 0 0 0 +536 1783877040928554100 REFRESH 6 0 0.72682932766978481 0.91396933560476989 3 11 3 11 0 0 381 7 418 3988865 56640 243.2860107421875 1.4346000000000001 372.7457 6720 4912 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8406181492 22593612 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 26 25 25 31 311 0 0 0 0 7 0 0 0 0 0 +537 1783877041370817200 REFRESH 24 0 0.7293174744288623 1 4 11 4 11 0 0 497 10 404 3988937 56640 242.60198974609375 1.4438 386.60160000000002 6720 4965 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 8406901796 23313916 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 25 25 25 33 296 0 0 0 0 10 0 0 0 0 0 +538 1783877041816483400 REFRESH 32 0 0.73324438147133697 0.4608177172061329 1 8 1 8 0 0 3121 28 417 3988963 56640 239.99897766113281 1.4552 389.82190000000003 13440 8463 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8407635360 24047480 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 34 46 286 0 0 2 7 19 0 0 0 0 0 +539 1783877042252349700 REFRESH 14 0 0.73424968936689838 0.65587734241908002 0 11 0 11 0 0 1695 21 409 3988941 56640 242.87443542480469 1.4336 379.31610000000001 13440 9581 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8408360764 24772884 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 28 28 302 0 0 0 0 21 0 0 0 0 0 +540 1783877042644360200 REFRESH 12 0 0.72745492413678392 0.63287904599659284 3 8 2 8 1 0 1710 28 427 3988956 56640 241.87187194824219 1.4406000000000001 390.5668 13440 8716 0 0 0.076106488074004663 0.97831584055220611 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8409104528 25516648 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 27 26 324 0 0 0 1 27 0 0 0 0 1 +541 1783877043086461500 REFRESH 30 0 0.73332402545107889 0.4608177172061329 1 8 1 8 0 0 3708 54 414 3988957 56640 227.2911376953125 1.4394 375.03250000000003 13440 8503 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8409835032 26247152 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 30 45 288 0 0 0 2 52 0 0 0 0 0 +542 1783877043474509500 REFRESH 18 0 0.72855951126027052 0.9293015332197615 1 13 1 13 0 0 445 9 417 3988943 56640 228.02841186523438 1.8359000000000001 386.42610000000002 6720 4826 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8410568596 26980716 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 25 316 0 0 0 0 9 0 0 0 0 0 +543 1783877043930060100 REFRESH 0 0 0.73359187372572776 0.8279386712095399 2 11 2 11 0 0 910 16 412 3988886 56640 240.09011840820312 1.4524999999999999 396.15859999999998 13440 9882 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8411297060 27709180 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 26 25 25 29 307 0 0 0 0 16 0 0 0 0 0 +544 1783877044302319600 REFRESH 7 0 0.72696103316633809 0.8356047700170357 1 12 1 12 0 0 893 21 404 3988949 56640 239.11013793945312 1.4504999999999999 370.45269999999999 13440 9916 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 8412017364 28429484 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 25 32 297 0 0 0 0 21 0 0 0 0 0 +545 1783877044729396400 REFRESH 34 0 0.73454976153172735 0.8356047700170357 1 12 1 12 0 0 754 16 415 3988881 56640 237.77996826171875 1.4753000000000001 371.25909999999999 6720 4840 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8412748888 29161008 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 25 25 25 40 300 0 0 0 0 16 0 0 0 0 0 +546 1783877045183553500 REFRESH 58 0 0.73185138699720653 0.92163543441226559 2 12 2 12 0 0 535 22 414 3988874 56640 240.02560424804688 1.4676 393.41750000000002 13440 9644 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8413479392 29891512 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 25 25 25 28 311 0 0 0 0 22 0 0 0 0 0 +547 1783877045623941700 REFRESH 23 0 0.73030745903331118 0.74190800681430991 1 11 1 11 0 0 3474 14 410 3988941 56640 241.26463317871094 1.4435 384.90980000000002 13440 9946 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8414205816 30617936 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 29 306 0 0 0 0 14 0 0 0 0 0 +548 1783877046026374000 REFRESH 2 0 0.72843418451018216 0.45315161839863699 2 7 2 7 0 0 3786 47 418 3988970 56640 240.18655395507812 1.4323999999999999 400.86160000000001 13440 8368 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8414940400 31352520 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 49 45 273 0 0 3 4 40 0 0 0 0 0 +549 1783877046485069700 REFRESH 10 0 0.73439337299089735 0.64821124361158422 1 10 1 10 0 0 1193 15 419 3988949 56640 240.40243530273438 1.4365000000000001 402.99979999999999 13440 9730 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8415676004 32088124 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 30 314 0 0 0 1 14 0 0 0 0 0 +550 1783877046997930200 REFRESH 44 0 0.73181705163613286 0.36712095400340705 1 7 1 7 0 0 2377 18 433 3988456 56160 241.69369506835938 1.4386000000000001 444.0059 20160 14917 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 433 320 0 64 0 8416425888 32838008 1 0 4 3 2 2 5 983040 737280 491520 491656 1248000 25 25 26 100 257 1 0 3 1 13 0 0 0 0 0 +551 1783877047567610200 REFRESH 48 0 0.74146740441085579 0.26575809199318562 2 5 2 5 0 0 2584 23 417 3987980 55680 240.27955627441406 1.4368000000000001 438.26799999999997 20160 14749 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8417159452 33571572 1 0 4 3 3 2 4 983040 737280 737280 491659 998400 25 25 28 161 178 0 0 1 9 13 0 0 0 0 0 +552 1783877047999798700 REFRESH 51 0 0.73202966811188264 0.91396933560476989 3 11 3 11 0 0 546 13 397 3988869 56640 238.68109130859375 1.4732000000000001 380.76659999999998 13440 9752 0 0 0.044093971204707823 0.28107893475413925 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 8417872616 34284736 1 0 5 2 2 1 6 1228800 491520 491520 245829 1497600 25 25 25 36 286 0 0 0 1 12 0 0 0 0 0 +553 1783877048464446500 REFRESH 45 0 0.73379008049516936 0.45315161839863699 2 7 2 7 0 0 2227 19 416 3988962 56640 240.60415649414062 1.4612000000000001 406.20179999999999 13440 8553 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8418605160 35017280 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 36 39 290 0 0 1 2 16 0 0 0 0 0 +554 1783877048920399400 REFRESH 53 0 0.73191959049846722 0.37478705281090291 0 8 0 8 0 0 4096 68 404 3988945 56640 231.23670959472656 1.4360999999999999 392.0985 13440 8133 0 0 0 0.21957375535271967 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 8419325464 35737584 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 40 41 272 0 1 3 3 61 0 0 0 0 0 +555 1783877049387860700 REFRESH 1 0 0.73203089734407234 0.36712095400340705 1 7 1 7 0 0 3342 50 419 3988462 56160 227.85542297363281 1.4325000000000001 406.53769999999997 20160 14780 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8420061068 36473188 1 0 4 3 2 2 5 983040 737280 491520 491662 1248000 25 25 25 163 181 0 0 0 24 26 0 0 0 0 0 +556 1783877049884880600 REFRESH 3 0 0.73473561525859665 0.64054514480408853 2 9 2 9 1 0 1157 29 405 3988953 56640 225.27590942382812 1.4410000000000001 383.69319999999999 13440 9680 0 0 0.0077754587997067364 0.15738213335678808 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 8420782392 37194512 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 42 288 0 0 0 0 29 0 0 0 0 1 +557 1783877050299521600 REFRESH 49 0 0.73413667470906829 0.4454855195911413 3 6 3 6 0 0 1613 23 410 3988962 56640 227.17439270019531 1.4287000000000001 358.46559999999999 13440 8544 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8421508816 37920936 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 26 38 56 265 0 0 2 3 18 0 0 0 0 0 +558 1783877050770613100 REFRESH 39 0 0.73047571748385609 0.55451448040885853 1 9 1 9 0 0 1634 10 422 3988963 56640 226.34701538085938 1.4528000000000001 413.93189999999998 13440 9216 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8422247480 38659600 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 25 54 292 0 0 0 0 10 0 0 0 0 0 +559 1783877051182359900 REFRESH 5 0 0.73396887947141931 0.8279386712095399 2 11 2 11 1 0 891 13 415 3988869 56640 229.21522521972656 1.4419999999999999 354.77550000000002 13440 9804 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8422979004 39391124 1 0 5 2 2 1 6 1228800 491520 491520 245828 1497600 25 25 25 40 300 0 0 0 1 12 0 0 0 0 1 +560 1783877051621288600 REFRESH 41 0 0.73317632669626875 0.55451448040885853 1 9 1 9 0 0 2350 21 420 3988949 56640 225.55545043945312 1.4220999999999999 386.37569999999999 13440 8716 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8423715628 40127748 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 42 40 287 0 0 2 3 16 0 0 0 0 0 +561 1783877052071160100 REFRESH 57 0 0.74170896983611234 0.27342419080068137 1 6 1 6 0 0 4096 40 416 3987985 55680 229.70573425292969 1.4337 396.5643 20160 14909 0 0 0.0007301784849736558 0.45465524976525634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8424448172 40860292 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 25 177 164 0 0 0 12 28 0 0 0 0 0 +562 1783877052494871900 REFRESH 43 0 0.73503693941362502 0.8279386712095399 2 11 2 11 0 0 793 11 419 3988878 56640 226.25382995605469 1.4558 366.51409999999998 6720 4817 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8425183776 41595896 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 25 25 25 51 293 0 0 0 0 11 0 0 0 0 0 +563 1783877052944273000 REFRESH 25 0 0.73407964399659065 0.4608177172061329 1 8 1 8 0 0 2414 28 412 3988949 56640 228.09088134765625 1.4271 394.83100000000002 13440 8219 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8425912240 42324360 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 29 29 303 1 0 0 1 26 0 0 0 0 0 +564 1783877053430388500 REFRESH 56 0 0.75228822406303097 0.17206132879045993 2 4 2 4 0 0 4096 40 424 3987584 55200 228.93478393554688 1.4368000000000001 426.00009999999997 20160 12501 0 0 0.0043318378033526299 0.4929472619805555 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8426652944 43065064 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 55 25 25 171 148 3 0 0 12 25 0 0 0 0 0 +565 1783877053855961900 REFRESH 21 0 0.73330966512208384 0.56218057921635434 0 10 0 10 0 0 2682 36 411 3988968 56640 226.21490478515625 1.4194 370.90690000000001 13440 9905 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8427380388 43792508 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 34 302 0 0 0 3 33 0 0 0 0 0 +566 1783877054272517300 REFRESH 29 0 0.72915983291853737 0.82027257240204421 3 10 3 10 0 0 1114 12 423 3988877 56640 227.01260375976562 1.4248000000000001 363.6533 6720 4871 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8428120072 44532192 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 30 25 25 47 296 0 0 0 1 11 0 0 0 0 0 +567 1783877054734211200 REFRESH 22 0 0.72886199861374079 0.91396933560476989 3 11 3 11 0 0 483 14 411 3988946 56640 226.12889099121094 1.4206000000000001 359.55169999999998 6720 4803 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8428847516 45259636 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 26 309 0 0 0 0 14 0 0 0 0 0 +568 1783877055175613300 REFRESH 9 0 0.74201893566773536 0.27342419080068137 1 6 1 6 0 0 3330 46 420 3988000 55680 230.0211181640625 1.4399 386.27460000000002 20160 14845 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8429584140 45996260 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 27 105 238 0 0 0 10 36 0 0 0 0 0 +569 1783877055617589500 REFRESH 50 0 0.72693165389441639 0.64054514480408853 2 9 2 9 0 0 1056 9 429 3988969 56640 225.81964111328125 1.4421999999999999 386.86869999999999 13440 9857 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8430329944 46742064 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 26 328 0 0 0 3 6 0 0 0 0 0 +570 1783877056066314200 REFRESH 8 0 0.74192424695392978 0.26575809199318562 2 5 2 5 0 0 2438 8 421 3988518 56160 228.65408325195312 1.4287000000000001 396.14060000000001 13440 8068 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8431067588 47479708 1 0 4 2 3 2 5 983040 491520 737280 491682 1248000 26 25 25 207 138 0 0 0 3 5 0 0 0 0 0 +571 1783877056558078500 REFRESH 42 0 0.90303183754210758 0 0 4 0 4 0 0 4096 6 423 3987689 55200 229.30534362792969 1.4245000000000001 437.4289 20160 12841 0 0 0 0.0064275276714682349 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8431807272 48219392 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 54 25 38 228 78 0 0 0 0 6 0 0 0 0 0 +572 1783877057073574500 REFRESH 31 0 0.73235919929977555 0.3594548551959113 2 6 2 6 0 0 2878 20 426 3988475 56160 228.73497009277344 1.4207000000000001 408.2604 20160 14868 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 8432550016 48962136 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 234 117 0 0 0 6 14 0 0 0 0 0 +573 1783877057487837100 REFRESH 47 0 0.73534762264685716 0.8279386712095399 2 11 2 11 0 0 680 14 410 3988955 56640 226.09306335449219 1.4286000000000001 361.97320000000002 13440 9894 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8433276440 49688560 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 28 306 0 0 0 2 12 0 0 0 0 0 +574 1783877057910290300 REFRESH 28 0 0.73537569274068582 0.8279386712095399 2 11 2 11 0 0 645 14 407 3988958 56640 228.27520751953125 1.4419 371.36419999999998 6720 4804 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8433999804 50411924 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 26 305 0 0 0 0 14 0 0 0 0 0 +575 1783877058356435300 REFRESH 46 0 0.73153296551207769 0.37478705281090291 0 8 0 8 0 0 2814 28 406 3988476 56160 229.62892150878906 1.4238 390.35320000000002 20160 14792 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8434722148 51134268 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 100 231 0 0 0 6 22 0 0 0 0 0 +576 1783877058764741800 REFRESH 19 0 0.73546460813124748 0.8279386712095399 2 11 2 11 1 0 883 28 413 3988944 56640 227.3597412109375 1.4280999999999999 354.60430000000002 13440 9874 0 0 0.024386483405516884 0.33463239457260791 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8435451632 51863752 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 33 305 0 0 0 1 27 0 0 0 0 1 +577 1783877061215327900 DEPTH 12 1 0.82727614444891706 0.54684838160136284 2 8 2 8 0 0 1724 59 2612 23742649 147840 1310.4066467285156 8.6025999999999989 2398.9110000000001 80640 43482 1 0 0.076106488074004663 0.97831584055220611 4096 2048 384 12 96 360 72 24 0 2612 1920 0 384 1 8439974780 56386900 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 150 150 150 152 2010 0 0 1 2 56 0 0 0 0 0 +578 1783877063732743700 DEPTH 17 1 0.73702389518490952 0.28109028960817717 0 7 0 7 0 0 4096 40 2561 23698528 103680 1309.8209381103516 8.6018000000000008 2461.8162000000002 120960 68586 1 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 8444445908 60858028 1 0 4 3 3 2 4 5898240 4423680 4423680 2950990 5990400 150 150 156 584 1521 0 0 4 0 36 0 0 0 0 0 +579 1783877066259971500 DEPTH 48 1 0.73702099434077928 0.26575809199318562 2 5 2 5 0 0 2597 42 2573 23698524 103680 1315.1846466064453 8.5589999999999993 2469.0162 120960 69480 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 8448929276 65341396 1 0 4 3 3 2 4 5898240 4423680 4423680 2950982 5990400 150 150 162 713 1398 0 0 2 0 40 0 0 0 0 0 +580 1783877069973852300 DEPTH 13 1 0.73704403085758718 0.27342419080068137 1 6 1 6 0 0 4096 53 2558 23698533 103680 1312.0727081298828 8.5909999999999993 3645.7501000000002 120960 63524 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 8453397424 2701320 1 0 4 3 3 2 4 5898240 4423680 4423680 2950997 5990400 150 150 160 905 1193 0 0 2 4 47 0 0 0 0 0 +581 1783877072521628900 DEPTH 20 1 0.73094976193752403 0.26575809199318562 2 5 2 5 0 0 2182 38 2595 23698501 103680 1316.0591430664062 8.6077999999999992 2489.2455 120960 64311 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 8457903232 7207128 1 0 4 3 3 2 4 5898240 4423680 4423680 2950964 5990400 150 150 160 372 1763 0 0 5 0 33 0 0 0 0 0 +582 1783877075092627800 DEPTH 40 1 0.72840077667672043 0.64821124361158422 1 10 1 10 0 0 1820 49 2555 23742695 147840 1360.3596038818359 8.7850000000000001 2512.4735000000001 80640 47010 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 8462368240 11672136 1 0 4 2 2 2 6 5898240 2949120 2949120 2951000 8985600 150 150 150 164 1941 0 0 0 8 41 0 0 0 0 0 +583 1783877077349818000 DEPTH 14 1 0.72842690302796198 0.65587734241908002 0 11 0 11 0 0 1705 90 2514 23742701 147840 1301.0626678466797 8.5815000000000001 2201.6405 80640 44981 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 8466791428 16095324 1 0 4 2 2 2 6 5898240 2949120 2949120 2951006 8985600 156 150 161 156 1891 0 0 0 1 89 0 0 0 0 0 +584 1783877079781846900 DEPTH 54 1 0.72835953112583374 0.4608177172061329 1 8 1 8 0 0 1250 27 2568 23720553 125760 1277.9532470703125 8.6173000000000002 2322.1100000000001 120960 69627 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 8471269696 20573592 1 0 4 3 2 2 5 5898240 4423680 2949120 2950940 7488000 150 150 150 1125 993 0 0 1 0 26 0 0 0 0 0 +585 1783877082374082700 DEPTH 42 1 0.78697972423619245 0 0 4 0 4 0 0 4096 17 2589 23677809 81600 1383.0932464599609 8.6297000000000015 2590.8638000000001 120960 61182 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 8475769384 25073280 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 309 150 205 1408 517 0 0 0 0 17 0 0 0 0 0 +586 1783877084748798300 DEPTH 49 1 0.72876172587639954 0.4454855195911413 3 6 3 6 0 0 1629 68 2557 23727560 132480 1465.654296875 8.8633000000000006 2316.4829 107520 55236 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 8480236432 29540328 1 0 4 3 2 2 5 5898240 3932160 2949120 2950957 7987200 150 153 161 527 1566 2 0 2 12 52 0 0 0 0 0 +587 1783877087536232200 DEPTH 45 1 0.72856843279458539 0.45315161839863699 2 7 2 7 0 0 2234 40 2566 23742950 147840 1477.3852691650391 8.6988000000000003 2603.3784000000001 80640 42809 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 8484712660 34016556 1 0 4 2 2 2 6 5898240 2949120 2949120 2950984 8985600 150 150 181 160 1925 0 0 10 3 27 0 0 0 0 0 +588 1783877089967825300 DEPTH 3 1 0.72856732680133007 0.64054514480408853 2 9 2 9 0 0 1163 50 2533 23742671 147840 1296.3686370849609 8.5959000000000003 2373.1653999999999 80640 47030 1 0 0.0077754587997067364 0.15738213335678808 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 8489155228 38459124 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 150 150 150 164 1919 0 0 1 1 48 0 0 0 0 0 +589 1783877092441232600 DEPTH 32 1 0.7284825967094013 0.4608177172061329 1 8 1 8 0 0 3144 68 2550 23742918 147840 1301.0044708251953 8.7911000000000001 2413.2822999999999 80640 42567 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 8493615136 42919032 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 159 161 1930 0 0 9 6 53 0 0 0 0 0 +590 1783877094885811200 DEPTH 27 1 0.72850713530150535 0.4608177172061329 1 8 1 8 1 0 3851 92 2547 23742848 147840 1289.2384033203125 8.5818000000000012 2377.4335999999998 80640 42426 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 8498071984 47375880 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 168 150 164 159 1906 0 0 4 3 85 0 0 0 0 1 +591 1783877097345485200 DEPTH 30 1 0.72853164916554181 0.4608177172061329 1 8 1 8 0 0 3715 57 2533 23742762 147840 1295.9201965332031 8.6362000000000005 2393.7782000000002 80640 41954 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 8502514552 51818448 1 0 4 2 2 2 6 5898240 2949120 2949120 2950919 8985600 156 150 156 230 1841 0 0 4 3 50 0 0 0 0 0 +592 1783877099630394400 DEPTH 10 1 0.72853794348990852 0.64821124361158422 1 10 1 10 0 0 1200 53 2555 23742654 147840 1331.6691436767578 8.6917999999999989 2227.1695 80640 46747 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 8506979560 56283456 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 150 150 150 169 1936 4 0 0 7 42 0 0 0 0 0 +593 1783877102210726600 DEPTH 56 1 0.74844013232059758 0.17206132879045993 2 4 2 4 0 0 4096 47 2563 23677271 81600 1321.6442565917969 8.5952000000000002 2511.7878000000001 120960 57799 1 0 0.0043318378033526299 0.4929472619805555 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 8511452728 60756624 1 0 4 3 3 3 3 5898240 4423680 4423680 4426305 4492800 271 150 150 989 1003 1 0 0 0 46 0 0 0 0 0 +594 1783877104781681100 DEPTH 9 1 0.73749222205805021 0.27342419080068137 1 6 1 6 0 0 3342 58 2530 23698475 103680 1318.6959381103516 8.6452000000000009 2506.0740999999998 120960 68098 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 8515892236 65196132 1 0 4 3 3 2 4 5898240 4423680 4423680 2950940 5990400 150 150 156 600 1474 0 2 1 2 53 0 0 0 0 0 +595 1783877108462499300 DEPTH 57 1 0.73738679184681422 0.27342419080068137 1 6 1 6 1 0 4096 42 2543 23698435 103680 1295.4857788085938 8.9603999999999999 3624.5661 120960 69740 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 8520345084 2540160 1 0 4 3 3 2 4 5898240 4423680 4423680 2950896 5990400 150 150 150 1030 1063 0 0 0 3 39 0 0 0 0 1 +596 1783877110915428800 DEPTH 25 1 0.72881510395992954 0.4608177172061329 1 8 1 8 0 0 2423 48 2539 23742764 147840 1278.4998321533203 8.5408000000000008 2393.596 80640 40606 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 8524793772 6988848 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 156 150 158 152 1923 1 0 3 9 35 0 0 0 0 0 +597 1783877113048490900 DEPTH 36 1 0.7283752107898922 0.82027257240204421 3 10 3 10 0 0 1266 32 2555 23742644 147840 1275.7031555175781 9.1890999999999998 2078.5727000000002 67200 39187 1 0 0.083980346979836099 0.13032864266777486 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 8529258780 11453856 1 0 4 2 2 2 6 6389760 2457600 2949120 2950950 8985600 156 150 150 160 1939 0 0 0 4 28 0 0 0 0 0 +598 1783877115189180900 DEPTH 37 1 0.72838283518516866 0.8356047700170357 1 12 1 12 1 0 1032 29 2553 23742212 147840 1272.9574890136719 8.5892999999999997 2084.6939000000002 80640 47652 1 0 0.0033021521050498538 0.44876907179808484 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 8533721748 15916824 1 0 4 2 2 2 6 6635520 2949120 2949120 2213238 8985600 151 150 150 187 1915 0 0 0 5 24 0 0 0 0 1 +599 1783877117350760300 DEPTH 43 1 0.72838846983961636 0.8279386712095399 2 11 2 11 0 0 798 36 2579 23741668 147840 1279.4156951904297 8.5607000000000006 2104.9112 80640 44636 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 8538211236 20406312 1 0 6 2 1 1 6 8847360 2949120 1474560 1475412 8985600 150 150 150 175 1954 0 0 0 1 35 0 0 0 0 0 +600 1783877119495337400 DEPTH 34 1 0.72841494303518783 0.8356047700170357 1 12 1 12 0 0 757 40 2585 23741737 147840 1270.2279815673828 8.5549999999999997 2088.7503000000002 80640 44705 1 0 0.00020654801738738873 1.769932182842139 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 8542706844 24901920 1 0 6 2 1 1 6 8847360 2949120 1474560 1475481 8985600 150 150 150 219 1916 0 0 0 1 39 0 0 0 0 0 +601 1783877122022463900 DEPTH 42 1 0.80536116991936713 0 0 4 0 4 0 0 4096 16 2600 23677836 81600 1284.5159149169922 8.5762 2471.0711999999999 120960 50112 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 8547217752 29412828 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 287 150 191 1460 512 0 0 0 0 16 0 0 0 0 0 +602 1783877124421890200 DEPTH 12 1 0.81179946873511555 0.54684838160136284 2 8 2 8 1 0 1759 96 2612 23742742 147840 1266.4504547119141 8.5846 2335.9104000000002 80640 35864 1 0 0.078884394388572407 0.94564116472972037 4096 2048 384 12 96 360 72 24 0 2612 1920 0 384 1 8551740900 33935976 1 0 4 2 2 2 6 5898240 2949120 2949120 2950921 8985600 150 150 150 150 2012 0 0 0 5 91 0 0 0 0 2 +603 1783877126846936300 DEPTH 8 1 0.73556749438221236 0.26575809199318562 2 5 2 5 0 0 2442 29 2605 23699506 103680 1283.4037322998047 8.5721000000000007 2369.7671 80640 38574 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 8556256908 38451984 1 0 4 2 3 3 4 5898240 2949120 4423680 4426462 5990400 154 150 150 1240 911 0 0 0 0 29 0 0 0 0 0 +604 1783877129035530400 DEPTH 19 1 0.72855326918831742 0.8279386712095399 2 11 2 11 1 0 887 39 2554 23742665 147840 1276.2301025390625 8.6535999999999991 2130.9045999999998 80640 45266 1 0 0.0294119914886916 0.44584578655150786 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 8560720896 42915972 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 150 159 1945 0 2 0 5 32 0 0 0 0 2 +605 1783877131225785200 DEPTH 47 1 0.7285469136335283 0.8279386712095399 2 11 2 11 0 0 683 29 2557 23742619 147840 1292.7498016357422 8.5680999999999994 2128.3011999999999 80640 45563 1 0 0.018960026908908086 1.2351126180506042 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 8565187944 47383020 1 0 4 2 2 2 6 5898240 2949120 2949120 2950921 8985600 156 150 150 171 1930 1 0 0 0 28 0 0 0 0 0 +606 1783877133381892600 DEPTH 28 1 0.72857322903353594 0.8279386712095399 2 11 2 11 0 0 648 36 2516 23742673 147840 1283.8635711669922 8.6021000000000001 2098.4193 47040 29045 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 8569613172 51808248 1 0 4 2 2 2 6 7127040 1720320 2949120 2950975 8985600 156 150 150 157 1903 0 0 0 0 36 0 0 0 0 0 +607 1783877135634121600 DEPTH 38 1 0.72805967395638005 0.55451448040885853 1 9 1 9 0 0 2188 41 2550 23727256 132480 1267.7524261474609 8.5948999999999991 2196.7624999999998 107520 54993 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 8574073080 56268156 1 0 4 3 2 2 5 5898240 3932160 2949120 2950921 7987200 150 150 150 574 1526 0 0 0 2 39 0 0 0 0 0 +608 1783877138103531500 DEPTH 1 1 0.72789241795920234 0.36712095400340705 1 7 1 7 0 0 3353 52 2588 23709053 114240 1280.4888763427734 8.5581000000000014 2410.3209999999999 120960 69892 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 8578571748 60766824 1 0 4 3 3 2 4 5898240 4423680 3686400 2950959 6739200 150 150 153 631 1504 0 0 4 1 47 0 0 0 0 0 +609 1783877138465499300 REFRESH 28 0 0.50159703514374843 0.8279386712095399 2 11 2 11 0 0 650 10 408 3988958 56640 221.549560546875 1.4172 360.49950000000001 13440 9419 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8579296132 61491208 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 25 26 306 0 0 0 0 10 0 0 0 0 0 +610 1783877138943258600 REFRESH 56 0 0.66448021308212035 0.17206132879045993 2 4 2 4 1 0 4096 26 429 3987621 55200 223.1961669921875 1.4359999999999999 416.12180000000001 20160 12610 0 0 0.003291157540207252 0.41574178434382847 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8580041936 62237012 1 0 4 3 3 3 3 983040 737280 737280 737533 748800 56 25 25 214 109 1 0 0 4 21 0 0 0 0 1 +611 1783877139347841400 REFRESH 15 0 0.71579809012153595 0.91396933560476989 3 11 3 11 0 0 322 7 413 3988957 56640 222.25216674804688 1.4249000000000001 353.8854 6720 5085 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8580771420 62966496 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 25 25 25 32 306 0 0 0 0 7 0 0 0 0 0 +612 1783877139754546800 REFRESH 29 0 0.72333913363127589 0.82027257240204421 3 10 3 10 0 0 1115 11 421 3988878 56640 220.22860717773438 1.4198 354.23239999999998 6720 4785 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8581509064 63704140 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 30 25 25 51 290 0 0 0 0 11 0 0 0 0 0 +613 1783877140161504800 REFRESH 58 0 0.72602943550281318 0.92163543441226559 2 12 2 12 0 0 536 14 410 3988888 56640 222.46092224121094 1.4232 355.32350000000002 13440 9737 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8582235488 64430564 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 25 25 25 28 307 0 0 0 0 14 0 0 0 0 0 +614 1783877140586850900 REFRESH 45 0 0.72348143898125783 0.45315161839863699 2 7 2 7 0 0 2247 32 417 3988971 56640 220.70783996582031 1.4198999999999999 372.63529999999997 13440 8646 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8582969052 65164128 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 34 39 293 0 0 1 6 25 0 0 0 0 0 +615 1783877141021588300 REFRESH 26 0 0.72654356350738225 0.55451448040885853 1 9 1 9 0 0 2106 37 417 3988001 55680 223.23609924316406 1.4179999999999999 378.97770000000003 20160 13772 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8583702616 65897692 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 29 181 157 0 0 0 9 28 0 0 0 0 0 +616 1783877141440523100 REFRESH 35 0 0.72664795458783271 0.8279386712095399 2 11 2 11 0 0 1119 15 406 3988867 56640 220.60748291015625 1.4367000000000001 366.20749999999998 13440 9708 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8584424960 66620036 1 0 5 2 2 1 6 1228800 491520 491520 245827 1497600 25 25 25 29 302 0 0 0 0 15 0 0 0 0 0 +617 1783877142896384100 REFRESH 19 0 0.60185163245840367 0.8279386712095399 2 11 2 11 1 0 890 27 408 3988938 56640 219.82719421386719 1.4358 1454.2182 13440 9946 0 0 0.029415794635267906 0.44557784607659678 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8585149424 236064 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 25 35 298 0 0 0 1 26 0 0 0 0 1 +618 1783877143359361100 REFRESH 48 0 0.73300779236867353 0.26575809199318562 2 5 2 5 0 0 2598 15 423 3987997 55680 223.42349243164062 1.4244000000000001 409.06560000000002 20160 13981 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8585889108 975748 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 27 192 154 0 0 1 5 9 0 0 0 0 0 +619 1783877143773416400 REFRESH 2 0 0.72435798317761413 0.45315161839863699 2 7 2 7 0 0 3801 44 414 3988993 56640 220.14566040039062 1.4189000000000001 360.17410000000001 13440 8328 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8586619612 1706252 1 0 4 2 2 2 6 983040 491520 491520 491698 1497600 26 25 53 42 268 0 0 3 1 40 0 0 0 0 0 +620 1783877144197068200 REFRESH 41 0 0.7281921311614209 0.55451448040885853 1 9 1 9 0 0 2358 34 413 3988935 56640 220.33120727539062 1.4276 370.57589999999999 13440 8708 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8587349096 2435736 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 26 25 43 40 279 0 0 0 5 29 0 0 0 0 0 +621 1783877144543030800 REFRESH 37 0 0.7019320121609941 0.8356047700170357 1 12 1 12 0 0 1034 15 407 3988944 56640 219.86201477050781 1.4294 344.48360000000002 13440 9960 0 0 0.0033021521050498538 0.44876907179808484 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8588072460 3159100 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 37 295 0 0 0 0 15 0 0 0 0 0 +622 1783877144896659500 REFRESH 34 0 0.69192565930877092 0.8356047700170357 1 12 1 12 0 0 761 15 415 3988411 56160 220.727294921875 1.4363999999999999 352.31979999999999 13440 9907 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8588803984 3890624 1 0 6 2 2 1 5 1474560 491520 491520 245851 1248000 25 25 27 53 285 0 0 1 0 14 0 0 0 0 0 +623 1783877145400848700 REFRESH 9 0 0.73323123107707899 0.27342419080068137 1 6 1 6 0 0 3345 17 416 3988005 55680 225.93536376953125 1.4386000000000001 399.15679999999998 20160 13771 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8589536528 4623168 1 0 4 3 3 2 4 983040 737280 737280 491683 998400 25 25 26 216 124 0 0 0 5 12 0 0 0 0 0 +624 1783877145826431100 REFRESH 50 0 0.72131942760406509 0.64054514480408853 2 9 2 9 0 0 1057 12 422 3988938 56640 220.26853942871094 1.4317 372.7201 13440 9816 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8590275192 5361832 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 26 321 0 0 0 3 9 0 0 0 0 0 +625 1783877146282669000 REFRESH 31 0 0.72819837342743687 0.3594548551959113 2 6 2 6 0 0 2885 17 427 3988460 56160 228.56419372558594 1.4246000000000001 401.53640000000001 20160 14709 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8591018956 6105596 1 0 4 3 2 2 5 983040 737280 491520 491660 1248000 25 25 25 257 95 0 0 0 4 13 0 0 0 0 0 +626 1783877146693118500 REFRESH 23 0 0.72535926732543343 0.74190800681430991 1 11 1 11 0 0 3477 16 413 3988961 56640 222.96780395507812 1.4240999999999999 359.46260000000001 13440 9804 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8591748440 6835080 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 29 309 0 0 0 0 16 0 0 0 0 0 +627 1783877147118343100 REFRESH 25 0 0.72380657167285256 0.4608177172061329 1 8 1 8 0 0 2433 27 407 3988963 56640 221.44102478027344 1.4286000000000001 372.67619999999999 13440 8095 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8592471804 7558444 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 29 30 297 0 0 0 0 27 0 0 0 0 0 +628 1783877147520611000 REFRESH 49 0 0.72400208025380319 0.4454855195911413 3 6 3 6 0 0 1637 29 419 3988467 56160 222.18649291992188 1.4212 349.66399999999999 20160 14918 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8593207408 8294048 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 210 134 0 0 0 13 16 0 0 0 0 0 +629 1783877147945443500 REFRESH 32 0 0.72370748683375907 0.4608177172061329 1 8 1 8 0 0 3151 26 416 3988467 56160 223.26374816894531 1.4395 370.07490000000001 20160 14970 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8593939952 9026592 1 0 4 3 2 2 5 983040 737280 491520 491665 1248000 25 25 25 72 269 0 0 0 4 22 0 0 0 0 0 +630 1783877148362732300 REFRESH 3 0 0.72308754553534804 0.64054514480408853 2 9 2 9 0 0 1168 19 410 3988943 56640 221.14508056640625 1.4353 364.40050000000002 13440 9041 0 0 0.0077754587997067364 0.15738213335678808 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8594666376 9753016 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 48 287 0 0 0 1 18 0 0 0 0 0 +631 1783877148809319600 REFRESH 20 0 0.72778228387051758 0.26575809199318562 2 5 2 5 0 0 2184 7 432 3988010 55680 221.76358032226562 1.4252 394.85950000000003 20160 11997 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 432 320 0 64 0 8595415240 10501880 1 0 4 3 3 2 4 983040 737280 737280 491688 998400 25 25 29 152 201 0 0 0 0 7 0 0 0 0 0 +632 1783877149215311300 REFRESH 43 0 0.72217561518450923 0.8279386712095399 2 11 2 11 0 0 801 12 418 3988377 56160 222.60223388671875 1.4403999999999999 354.8716 13440 9858 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8596149824 11236464 1 0 6 2 2 1 5 1474560 491520 491520 245817 1248000 25 25 30 74 264 0 0 2 2 8 0 0 0 0 0 +633 1783877149665707300 REFRESH 6 0 0.71944128855420009 0.91396933560476989 3 11 3 11 0 0 381 7 422 3988987 56640 219.3438720703125 1.4419999999999999 351.3741 6720 5043 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8596888488 11975128 1 0 5 1 2 2 6 1228800 245760 491520 491707 1497600 26 25 25 31 315 0 0 0 1 6 0 0 0 0 0 +634 1783877150071061400 REFRESH 0 0 0.72848963526564237 0.8279386712095399 2 11 2 11 1 0 910 11 417 3988879 56640 219.67071533203125 1.4226000000000001 353.048 13440 9726 0 0 0.00014096892973242969 2.2830875673008113 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8597622052 12708692 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 26 25 25 25 316 0 0 0 0 11 0 0 0 0 1 +635 1783877150521146300 REFRESH 52 0 0.72842226651124031 0.36712095400340705 1 7 1 7 0 0 2361 9 430 3988456 56160 222.06060791015625 1.4204000000000001 398.51409999999998 20160 13647 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 8598368876 13455516 1 0 4 3 2 2 5 983040 737280 491520 491653 1248000 25 25 25 254 101 0 0 1 1 7 0 0 0 0 0 +636 1783877150947073700 REFRESH 14 0 0.72322327625976346 0.65587734241908002 0 11 0 11 0 0 1708 25 410 3988970 56640 222.3319091796875 1.4679 367.51940000000002 13440 9017 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8599095300 14181940 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 26 25 32 28 299 0 0 0 0 25 0 0 0 0 0 +637 1783877151362527300 REFRESH 4 0 0.72354529858168237 0.8356047700170357 1 12 1 12 0 0 284 8 423 3988947 56640 223.27090454101562 1.4188000000000001 362.70150000000001 6720 5043 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8599834984 14921624 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 25 25 25 30 318 0 0 0 0 8 0 0 0 0 0 +638 1783877151808535000 REFRESH 54 0 0.72391358461395106 0.4608177172061329 1 8 1 8 0 0 1251 5 426 3988458 56160 221.4256591796875 1.4262999999999999 395.18430000000001 20160 13898 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 8600577728 15664368 1 0 4 3 2 2 5 983040 737280 491520 491657 1248000 25 25 25 257 94 0 0 0 0 5 0 0 0 0 0 +639 1783877152252299900 REFRESH 53 0 0.72851415725420332 0.37478705281090291 0 8 0 8 0 0 4096 46 400 3988483 56160 223.57093811035156 1.4448000000000001 384.18110000000001 13440 8073 0 0 0 0.21957375535271967 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 8601293952 16380592 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 26 25 25 33 291 0 0 0 1 45 0 0 0 0 0 +640 1783877152706695100 REFRESH 13 0 0.73347965337622867 0.27342419080068137 1 6 1 6 0 0 4096 11 423 3987986 55680 221.63250732421875 1.4239999999999999 402.16579999999999 20160 11892 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8602033636 17120276 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 27 266 80 0 0 0 4 7 0 0 0 0 0 +641 1783877153134800900 REFRESH 16 0 0.72855957850625752 0.3594548551959113 2 6 2 6 0 0 3424 11 431 3988479 56160 222.71282958984375 1.4492 371.46249999999998 13440 7990 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 8602781480 17868120 1 0 4 2 3 2 5 983040 491520 737280 491677 1248000 25 25 25 213 143 0 0 0 1 10 0 0 0 0 0 +642 1783877153605601000 REFRESH 57 0 0.73359149192321293 0.27342419080068137 1 6 1 6 0 0 4096 21 427 3988004 55680 223.39891052246094 1.4261999999999999 416.16500000000002 20160 14030 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8603525244 18611884 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 25 25 25 251 101 0 0 0 8 13 0 0 0 0 0 +643 1783877153987754400 REFRESH 1 0 0.723522526705628 0.36712095400340705 1 7 1 7 0 0 3367 34 421 3987997 55680 221.95916748046875 1.4595 380.63749999999999 20160 14043 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8604262888 19349528 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 147 199 0 0 0 10 24 0 0 0 0 0 +644 1783877154429573800 REFRESH 46 0 0.72781333536408366 0.37478705281090291 0 8 0 8 0 0 2815 12 414 3988496 56160 224.94412231445312 1.4272 389.22269999999997 20160 14599 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8604993392 20080032 1 0 4 3 2 2 5 983040 737280 491520 491694 1248000 25 25 25 102 237 0 0 0 0 12 0 0 0 0 0 +645 1783877154836556400 REFRESH 51 0 0.72685734138384794 0.91396933560476989 3 11 3 11 1 0 549 19 400 3988883 56640 219.4544677734375 1.4213 354.58550000000002 13440 9632 0 0 0.044049343334966531 0.28092457608118571 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 8605709616 20796256 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 25 25 25 37 288 0 0 0 0 19 0 0 0 0 1 +646 1783877155282169600 REFRESH 33 0 0.7286664385974897 0.36712095400340705 1 7 1 7 1 0 3597 24 417 3988468 56160 225.72441101074219 1.4226000000000001 393.22989999999999 13440 8101 0 0 0.00023870184740373975 0.31072646758859362 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8606443180 21529820 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 26 25 25 168 173 0 0 0 5 19 0 0 0 0 1 +647 1783877155719135900 REFRESH 30 0 0.72411790151072608 0.4608177172061329 1 8 1 8 0 0 3735 59 415 3988965 56640 221.45024108886719 1.5714999999999999 379.91109999999998 13440 8323 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8607174704 22261344 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 31 53 280 0 0 1 2 56 0 0 0 0 0 +648 1783877156164685400 REFRESH 7 0 0.72263431103163323 0.8356047700170357 1 12 1 12 0 0 895 16 407 3988976 56640 240.41062927246094 1.4718 385.01659999999998 13440 9673 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8607898068 22984708 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 25 25 25 30 302 0 0 0 0 16 0 0 0 0 0 +649 1783877156533762500 REFRESH 8 0 0.73186981460312417 0.26575809199318562 2 5 2 5 0 0 2447 16 407 3988070 55680 225.51449584960938 1.4242999999999999 367.77670000000001 13440 8197 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8608621432 23708072 1 0 4 2 3 3 4 983040 491520 737280 737506 998400 26 25 25 76 255 0 0 0 2 14 0 0 0 0 0 +650 1783877157028928100 REFRESH 55 0 0.72378748639413937 0.64054514480408853 2 9 2 9 0 0 1097 22 406 3988948 56640 236.07501220703125 1.4407000000000001 377.54199999999997 13440 9027 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8609343776 24430416 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 58 26 272 0 0 1 0 21 0 0 0 0 0 +651 1783877157488977700 REFRESH 21 0 0.72893902676970046 0.56218057921635434 0 10 0 10 1 0 2705 45 405 3988472 56160 233.31021118164062 1.5528999999999999 395.9581 20160 14902 0 0 0.00014970005513893707 1.1101664084653011 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 8610065100 25151740 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 32 298 0 0 0 1 44 0 0 0 0 1 +652 1783877157982407000 REFRESH 11 0 0.72883600969107187 0.37478705281090291 0 8 0 8 1 0 2619 14 419 3988481 56160 240.40345764160156 1.4953000000000001 434.70299999999997 20160 14448 0 0 0 0.66505512539964451 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8610800704 25887344 1 0 4 3 2 2 5 983040 737280 491520 491681 1248000 25 25 25 219 125 0 0 1 1 12 0 0 0 0 1 +653 1783877158485581400 REFRESH 42 0 0.89430158588278164 0 0 4 0 4 0 0 4096 5 423 3987662 55200 245.41798400878906 1.4442999999999999 444.80790000000002 20160 12636 0 0 0 0.0064275276714682349 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8611540388 26627028 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 50 25 39 235 74 0 0 0 0 5 0 0 0 0 0 +654 1783877158926378700 REFRESH 22 0 0.72384888184830132 0.91396933560476989 3 11 3 11 0 0 483 14 411 3988957 56640 243.79493713378906 1.4392 377.42649999999998 6720 4779 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8612267832 27354472 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 26 309 0 0 0 0 14 0 0 0 0 0 +655 1783877159458868100 REFRESH 39 0 0.72665141799824462 0.55451448040885853 1 9 1 9 0 0 1635 9 424 3988946 56640 241.03219604492188 1.4383999999999999 421.30149999999998 13440 8970 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8613008536 28095176 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 61 287 0 0 0 0 9 0 0 0 0 0 +656 1783877159911044800 REFRESH 27 0 0.72449658367013425 0.4608177172061329 1 8 1 8 0 0 3878 49 410 3988967 56640 240.55909729003906 1.4326000000000001 395.09129999999999 13440 8477 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8613734960 28821600 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 27 25 36 37 285 0 0 1 1 47 0 0 0 0 0 +657 1783877160347192300 REFRESH 5 0 0.72901491546903907 0.8279386712095399 2 11 2 11 0 0 891 9 421 3988879 56640 239.77471923828125 1.4367000000000001 377.44209999999998 13440 9753 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8614472604 29559244 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 39 307 0 0 0 2 7 0 0 0 0 0 +658 1783877160789629800 REFRESH 10 0 0.72363686443610242 0.64821124361158422 1 10 1 10 0 0 1200 8 418 3988968 56640 244.12261962890625 1.4371 383.13400000000001 13440 9110 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8615207188 30293828 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 34 309 0 0 0 2 6 0 0 0 0 0 +659 1783877161276440700 REFRESH 17 0 0.73390256259540432 0.28109028960817717 0 7 0 7 0 0 4096 11 421 3987996 55680 228.73703002929688 1.4268000000000001 429.25040000000001 20160 12737 0 0 1.4185473685797884e-05 0.068331825928353962 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8615944832 31031472 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 26 241 104 0 0 2 2 7 0 0 0 0 0 +660 1783877161709278000 REFRESH 12 0 0.8013621954997121 0.54684838160136284 2 8 2 8 0 0 1776 28 426 3988976 56640 220.37811279296875 1.4248000000000001 377.38510000000002 13440 8237 0 0 0.078884394388572407 0.94564116472972037 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 8616687576 31774216 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 26 325 0 0 0 0 28 0 0 0 0 0 +661 1783877162180719600 REFRESH 40 0 0.72381811918740691 0.64821124361158422 1 10 1 10 0 0 1822 13 408 3988948 56640 230.29452514648438 1.4338 413.76560000000001 13440 9161 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8617411960 32498600 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 32 301 0 0 0 0 13 0 0 0 0 0 +662 1783877162611268600 REFRESH 47 0 0.72291119005260818 0.8279386712095399 2 11 2 11 0 0 685 15 411 3988952 56640 224.10546875 1.4464999999999999 374.38380000000001 13440 9827 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8618139404 33226044 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 32 303 0 0 0 0 15 0 0 0 0 0 +663 1783877163002200200 REFRESH 38 0 0.72326057020419099 0.55451448040885853 1 9 1 9 0 0 2190 22 414 3988478 56160 226.98611450195312 1.8960999999999999 389.30079999999998 20160 14905 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8618869908 33956548 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 192 147 0 0 0 9 13 0 0 0 0 0 +664 1783877163474212700 REFRESH 24 0 0.72505640062065368 1 4 11 4 11 0 0 497 15 399 3988944 56640 226.3531494140625 1.4422999999999999 363.68189999999998 6720 4895 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 8619585112 34671752 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 25 25 25 31 293 0 0 0 0 15 0 0 0 0 0 +665 1783877163943587800 REFRESH 44 0 0.72908219532459917 0.36712095400340705 1 7 1 7 0 0 2385 23 431 3988482 56160 232.06924438476562 1.4295 412.48379999999997 20160 14639 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 8620332956 35419596 1 0 4 3 2 2 5 983040 737280 491520 491681 1248000 25 25 26 92 263 1 1 3 1 17 0 0 0 0 0 +666 1783877164350891300 REFRESH 36 0 0.72304348064321422 0.82027257240204421 3 10 3 10 0 0 1274 31 405 3988954 56640 223.48185729980469 1.4390000000000001 349.85820000000001 13440 9429 0 0 0.083980346979836099 0.13032864266777486 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 8621054280 36140920 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 35 294 1 0 0 1 29 0 0 0 0 0 +667 1783877164759929000 REFRESH 18 0 0.7235451353731599 0.9293015332197615 1 13 1 13 0 0 445 9 412 3988953 56640 221.50041198730469 1.4216 356.37479999999999 6720 4802 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8621782744 36869384 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 25 311 0 0 0 0 9 0 0 0 0 0 +668 1783877167325119100 DEPTH 42 1 0.78758233225093111 0 0 4 0 4 0 0 4096 19 2602 23677824 81600 1290.9220733642578 8.5785999999999998 2505.3535999999999 120960 61691 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 8626295692 41382332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 286 150 207 1452 507 0 0 0 0 19 0 0 0 0 0 +669 1783877169893197700 DEPTH 56 1 0.74165665654493251 0.17206132879045993 2 4 2 4 0 0 4096 55 2573 23677307 81600 1285.0691375732422 8.5586000000000002 2444.8447000000001 120960 58647 1 0 0.003291157540207252 0.41574178434382847 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 8630779060 45865700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426367 4492800 265 150 150 1098 910 5 0 0 0 50 0 0 0 0 0 +670 1783877172481495300 DEPTH 9 1 0.72950877923245394 0.27342419080068137 1 6 1 6 0 0 3353 42 2577 23691182 96000 1318.1030731201172 9.0546000000000006 2586.7546000000002 120960 69157 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 8635266508 50353148 1 0 4 3 3 3 3 5898240 4423680 4423680 3442840 5491200 150 150 156 1046 1075 0 0 0 3 39 0 0 0 0 0 +671 1783877175012293200 DEPTH 57 1 0.729487677397746 0.27342419080068137 1 6 1 6 0 0 4096 41 2552 23698467 103680 1345.1479034423828 8.6080000000000005 2529.2817 120960 69050 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 8639728456 54815096 1 0 4 3 3 2 4 5898240 4423680 4423680 2950927 5990400 150 150 150 1219 883 0 0 0 3 38 0 0 0 0 0 +672 1783877177578041500 DEPTH 48 1 0.729445344563592 0.26575809199318562 2 5 2 5 0 0 2606 36 2577 23694845 99840 1313.3271026611328 8.8783999999999992 2447.8247999999999 120960 68723 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 8644215904 59302544 1 0 4 3 3 3 3 5898240 4423680 4423680 3196901 5740800 150 150 164 910 1203 0 0 2 0 34 0 0 0 0 0 +673 1783877179999750500 DEPTH 13 1 0.72946548752573515 0.27342419080068137 1 6 1 6 0 0 4096 43 2555 23691230 96000 1293.0920562744141 8.5814000000000004 2420.0495000000001 120960 57950 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 8648680912 63767552 1 0 4 3 3 3 3 5898240 4423680 4423680 3442826 5491200 150 150 162 1032 1061 0 0 0 7 36 0 0 0 0 0 +674 1783877183452171400 DEPTH 16 1 0.72411424470945795 0.3594548551959113 2 6 2 6 0 0 3429 42 2557 23716994 121920 1290.0188140869141 8.5740999999999996 3343.1682000000001 80640 37749 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 8653148040 1126072 1 0 4 2 3 3 4 5898240 2949120 4423680 3196856 7238400 150 150 150 1289 818 0 0 0 4 38 0 0 0 0 0 +675 1783877185946132500 DEPTH 53 1 0.7241343392625792 0.37478705281090291 0 8 0 8 0 0 4096 52 2493 23720674 125760 1278.0823211669922 8.5282 2375.1817000000001 80640 38819 1 0 0 0.21957375535271967 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 8657549808 5527840 1 0 4 2 3 2 5 5898240 2949120 4423680 2950934 7488000 150 150 150 207 1836 0 0 0 7 45 0 0 0 0 0 +676 1783877188280235200 DEPTH 8 1 0.72790580365491309 0.26575809199318562 2 5 2 5 0 0 2450 23 2538 23699380 103680 1287.8558807373047 8.6148000000000007 2276.7073 80640 38576 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 8661997476 9975508 1 0 4 2 3 3 4 5898240 2949120 4423680 4426385 5990400 156 150 150 312 1770 0 0 0 1 22 0 0 0 0 0 +677 1783877190823278100 DEPTH 33 1 0.72421641739116827 0.36712095400340705 1 7 1 7 0 0 3603 54 2564 23716855 121920 1290.6978912353516 8.5469000000000008 2424.9911999999999 87360 43790 1 0 0.00023870184740373975 0.31072646758859362 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 8666471664 14449696 1 0 4 3 3 2 4 5898240 3194880 4423680 2950965 7238400 150 150 151 733 1380 0 0 7 0 47 0 0 0 0 0 +678 1783877193361091500 DEPTH 31 1 0.72419500975640283 0.3594548551959113 2 6 2 6 0 0 2925 75 2609 23705230 110400 1321.4535369873047 8.6701999999999995 2468.3555000000001 120960 70239 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2609 1920 0 384 1 8670991752 18969784 1 0 4 3 3 2 4 5898240 4423680 3932160 2950974 6489600 150 150 150 968 1191 0 0 5 2 68 0 0 0 0 0 +679 1783877195844811500 DEPTH 46 1 0.72348760972818527 0.37478705281090291 0 8 0 8 0 0 2825 47 2542 23705205 110400 1289.5907745361328 8.6030999999999995 2411.7028 120960 70253 1 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 8675443500 23421532 1 0 4 3 3 2 4 5898240 4423680 3932160 2950948 6489600 150 150 150 761 1331 0 0 4 1 42 0 0 0 0 0 +680 1783877198349722200 DEPTH 21 1 0.72348905372939032 0.56218057921635434 0 10 0 10 1 0 2725 76 2548 23720621 125760 1335.2171478271484 8.591899999999999 2443.5450999999998 120960 68847 1 0 0.00027008683416342654 1.0545275937412728 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 8679901368 27879400 1 0 4 3 2 2 5 5898240 4423680 2949120 2951007 7488000 150 150 150 234 1864 3 2 0 0 71 0 0 0 0 1 +681 1783877200890387900 DEPTH 41 1 0.72349948309178536 0.55451448040885853 1 9 1 9 0 0 2369 61 2561 23742729 147840 1395.9649353027344 9.2829999999999995 2480.6332000000002 80640 43059 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 8684372496 32350528 1 0 4 2 2 2 6 5898240 2949120 2949120 2951033 8985600 151 150 234 194 1832 0 0 6 12 43 0 0 0 0 0 +682 1783877203543121900 DEPTH 52 1 0.72327826708241694 0.36712095400340705 1 7 1 7 0 0 2373 41 2586 23705220 110400 1406.1272125244141 8.8828999999999994 2587.0765000000001 120960 68260 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 8688869124 36847156 1 0 4 3 3 2 4 5898240 4423680 3932160 2950965 6489600 150 150 152 1490 644 0 0 8 1 32 0 0 0 0 0 +683 1783877205682780700 DEPTH 0 1 0.72273731112211748 0.8279386712095399 2 11 2 11 1 0 918 52 2540 23741675 147840 1282.4667510986328 8.5908999999999995 2083.5459000000001 80640 46436 1 0 0.00014455923624112944 2.2692552129141497 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 8693318832 41296864 1 0 5 2 2 1 6 7372800 2949120 2949120 1475422 8985600 156 150 150 150 1934 1 2 1 3 45 0 0 0 0 1 +684 1783877208112864500 DEPTH 42 1 0.79635779590818045 0 0 4 0 4 0 0 4096 12 2598 23678028 81600 1284.6399688720703 8.5884999999999998 2428.8616999999999 120960 50160 1 0 0 0.0064275276714682349 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 8697827700 45805732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 271 150 184 1493 500 0 0 0 0 12 0 0 0 0 0 +685 1783877210480320100 DEPTH 12 1 0.78805462027492501 0.54684838160136284 2 8 2 8 1 0 1794 78 2575 23742735 147840 1269.3790740966797 8.5790000000000006 2306.4414999999999 80640 39083 1 0 0.12364195243602571 0.80192380270928176 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 8702313108 50291140 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 150 1975 0 0 2 1 75 0 0 0 0 2 +686 1783877213034047600 DEPTH 17 1 0.72974667442303165 0.28109028960817717 0 7 0 7 1 0 4096 51 2572 23698513 103680 1277.7706604003906 8.6729000000000003 2488.3436999999999 120960 63416 1 0 2.3617708100048782e-05 0.065269073852199336 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 8706795456 54773488 1 0 4 3 3 2 4 5898240 4423680 4423680 2950964 5990400 150 150 156 833 1283 0 0 4 0 47 0 0 0 0 1 +687 1783877215474242400 DEPTH 11 1 0.724426547833809 0.37478705281090291 0 8 0 8 1 0 2628 47 2534 23720537 125760 1273.6798858642578 8.591899999999999 2381.3458999999998 120960 69932 1 0 0 0.65805315525530994 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 8711239044 59217076 1 0 4 3 2 2 5 5898240 4423680 2949120 2950921 7488000 150 150 150 509 1575 0 0 3 0 44 0 0 0 0 2 +688 1783877217948486500 DEPTH 20 1 0.72181039460253493 0.26575809199318562 2 5 2 5 0 0 2193 26 2589 23694914 99840 1280.5396270751953 8.7530000000000001 2415.3721999999998 120960 58406 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 8715738732 63716764 1 0 4 3 3 3 3 5898240 4423680 4423680 3196898 5740800 150 150 162 562 1565 0 0 0 0 26 0 0 0 0 0 +689 1783877221184533500 DEPTH 5 1 0.72177546522211045 0.8279386712095399 2 11 2 11 0 0 895 22 2567 23741740 147840 1269.0055694580078 8.5934000000000008 3127.3957 80640 46155 1 0 0.0013470829413883309 0.39801580600099568 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 8720216060 1085272 1 0 5 2 2 1 6 7372800 2949120 2949120 1475485 8985600 150 150 150 150 1967 0 2 0 1 19 0 0 0 0 0 +690 1783877223352537000 DEPTH 35 1 0.72161087622660536 0.8279386712095399 2 11 2 11 0 0 1123 78 2485 23741770 147840 1278.5817565917969 8.6639999999999997 2111.3308999999999 80640 46507 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 360 72 24 0 2485 1920 0 384 1 8724609668 5478880 1 0 5 2 2 1 6 7372800 2949120 2949120 1475514 8985600 150 150 150 157 1878 0 0 0 0 78 0 0 0 0 0 +691 1783877225502880100 DEPTH 51 1 0.72088024229087 0.91396933560476989 3 11 3 11 1 0 549 27 2525 23742338 147840 1272.9719085693359 8.5889000000000006 2090.0311000000002 60480 38899 1 0 0.043972857041873883 0.27738722858163406 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 8729044076 9913288 1 0 4 2 2 2 6 7127040 2211840 2949120 2459121 8985600 150 150 150 168 1907 0 0 0 1 26 0 0 0 0 1 +692 1783877227910939500 DEPTH 44 1 0.72448583978531378 0.36712095400340705 1 7 1 7 0 0 2395 36 2625 23705306 110400 1280.9007568359375 8.625 2355.2939000000001 120960 70181 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2625 1920 0 384 1 8733580484 14449696 1 0 4 3 3 2 4 5898240 4423680 3932160 2951052 6489600 150 150 150 882 1293 1 0 7 1 27 0 0 0 0 0 +693 1783877230050468700 DEPTH 58 1 0.72092244992662746 0.92163543441226559 2 12 2 12 0 0 536 25 2546 23742332 147840 1276.7078399658203 8.5936000000000003 2089.8083999999999 60480 38943 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 8738036312 18905524 1 0 4 2 2 2 6 7127040 2211840 2949120 2459116 8985600 150 150 150 161 1935 0 0 0 0 25 0 0 0 0 0 +694 1783877232420414300 DEPTH 26 1 0.72091072375894361 0.55451448040885853 1 9 1 9 0 0 2112 64 2570 23698454 103680 1281.9290008544922 8.5853999999999999 2311.7474000000002 120960 68431 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 8742516620 23385832 1 0 4 3 3 2 4 5898240 4423680 4423680 2950916 5990400 150 150 156 791 1323 2 0 0 3 59 0 0 0 0 0 +695 1783877234776435400 DEPTH 39 1 0.72066776549127853 0.55451448040885853 1 9 1 9 0 0 1639 36 2573 23742714 147840 1271.3674926757812 8.5867000000000004 2298.5729999999999 80640 44903 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 8746999988 27869200 1 0 4 2 2 2 6 5898240 2949120 2949120 2951020 8985600 166 150 150 197 1910 0 0 0 0 36 0 0 0 0 0 +696 1783877237203584500 DEPTH 2 1 0.72053828605072057 0.45315161839863699 2 7 2 7 0 0 3811 63 2577 23723580 128640 1275.9543762207031 8.6060999999999996 2367.1129999999998 80640 40791 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 8751487436 32356648 1 0 4 2 3 2 5 5898240 2949120 4177920 2950998 7737600 156 150 166 627 1478 0 0 6 5 52 0 0 0 0 0 +697 1783877239340526100 DEPTH 23 1 0.72048379640429039 0.74190800681430991 1 11 1 11 0 0 3488 46 2522 23742638 147840 1294.1677398681641 8.5927000000000007 2087.0473000000002 80640 46860 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 8755918784 36787996 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 150 150 150 157 1915 0 3 0 0 43 0 0 0 0 0 +698 1783877241497541500 DEPTH 49 1 0.72007277484744736 0.4454855195911413 3 6 3 6 0 0 1643 49 2528 23720608 125760 1283.3926086425781 8.6064000000000007 2098.9023999999999 120960 70405 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 8760356252 41225464 1 0 4 3 2 2 5 5898240 4423680 2949120 2950993 7488000 150 150 150 708 1370 0 0 0 7 42 0 0 0 0 0 +699 1783877243939144100 DEPTH 27 1 0.71996645807083925 0.4608177172061329 1 8 1 8 0 0 3889 64 2574 23727338 132480 1302.6795654296875 8.5985999999999994 2384.8436000000002 80640 41066 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 8764840640 45709852 1 0 4 2 3 2 5 5898240 2949120 3932160 2950948 7987200 156 150 158 569 1541 0 0 4 8 52 0 0 0 0 0 +700 1783877244330869700 REFRESH 11 0 0.59975981999206618 0.37478705281090291 0 8 0 8 0 0 2630 9 418 3988467 56160 223.05795288085938 1.4307000000000001 390.13049999999998 20160 13706 0 0 0 0.65805315525530994 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8765575224 46444436 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 229 114 0 0 1 2 6 0 0 0 0 0 +701 1783877244739406700 REFRESH 39 0 0.5253354366234364 0.55451448040885853 1 9 1 9 0 0 1640 7 422 3988948 56640 220.98637390136719 1.4469000000000001 406.7724 13440 8217 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8766313888 47183100 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 25 77 269 0 0 0 1 6 0 0 0 0 0 +702 1783877245104438300 REFRESH 35 0 0.58549242324927664 0.8279386712095399 2 11 2 11 0 0 1125 15 403 3988859 56640 222.74867248535156 1.4307000000000001 363.61250000000001 13440 9286 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 8767033172 47902384 1 0 5 2 2 1 6 1228800 491520 491520 245819 1497600 25 25 25 30 298 0 0 0 0 15 0 0 0 0 0 +703 1783877245601890600 REFRESH 57 0 0.72559686215581243 0.27342419080068137 1 6 1 6 0 0 4096 13 412 3988002 55680 223.64277648925781 1.4339999999999999 398.2792 20160 12655 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8767761636 48630848 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 260 77 0 0 0 5 8 0 0 0 0 0 +704 1783877246041267600 REFRESH 40 0 0.71865348687643749 0.64821124361158422 1 10 1 10 1 0 1826 19 412 3988952 56640 219.19538879394531 1.4299999999999999 380.43709999999999 13440 8972 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8768490100 49359312 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 31 306 1 0 0 1 17 0 0 0 0 1 +705 1783877246468255200 REFRESH 45 0 0.72004302536458686 0.45315161839863699 2 7 2 7 0 0 2255 29 416 3989007 56640 222.30528259277344 1.4288000000000001 374.35399999999998 13440 8550 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8769222644 50091856 1 0 4 2 2 2 6 983040 491520 491520 491702 1497600 26 25 34 37 294 0 0 0 2 27 0 0 0 0 0 +706 1783877246848531200 REFRESH 2 0 0.56548737027044793 0.45315161839863699 2 7 2 7 0 0 3821 28 425 3988467 56160 222.06259155273438 1.4356 378.79509999999999 13440 8202 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8769964368 50833580 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 26 25 25 221 128 0 0 0 17 11 0 0 0 0 0 +707 1783877247261882900 REFRESH 19 0 0.71742381721277515 0.8279386712095399 2 11 2 11 0 0 893 20 411 3988933 56640 220.50314331054688 1.4349000000000001 362.3433 13440 9708 0 0 0.029415794635267906 0.44557784607659678 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8770691812 51561024 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 35 301 0 0 0 0 20 0 0 0 0 0 +708 1783877247680999000 REFRESH 47 0 0.71739932920661997 0.8279386712095399 2 11 2 11 0 0 691 24 408 3988952 56640 222.03904724121094 1.4493 360.71289999999999 13440 9732 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8771416196 52285408 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 30 302 0 0 0 0 24 0 0 0 0 0 +709 1783877248091644300 REFRESH 32 0 0.72001712645541049 0.4608177172061329 1 8 1 8 0 0 3152 12 423 3988470 56160 221.99807739257812 1.4332 360.83699999999999 20160 14662 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8772155880 53025092 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 110 238 0 0 0 2 10 0 0 0 0 0 +710 1783877248536316300 REFRESH 31 0 0.71991740420931949 0.3594548551959113 2 6 2 6 0 0 2931 28 421 3987987 55680 225.97016906738281 1.4298 392.18819999999999 20160 13701 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8772893524 53762736 1 0 4 3 3 2 4 983040 737280 737280 491667 998400 25 25 27 237 107 0 0 1 17 10 0 0 0 0 0 +711 1783877248998038800 REFRESH 56 0 0.73837958895420441 0.17206132879045993 2 4 2 4 0 0 4096 28 423 3987600 55200 224.3450927734375 1.4336 408.66230000000002 20160 12285 0 0 0.003291157540207252 0.41574178434382847 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8773633208 54502420 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 55 25 25 213 105 3 0 0 5 20 0 0 0 0 0 +712 1783877249383514400 REFRESH 4 0 0.71703496256806365 0.8356047700170357 1 12 1 12 0 0 284 7 419 3988959 56640 219.47596740722656 1.4299999999999999 337.19810000000001 6720 4878 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8774368812 55238024 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 32 312 0 0 0 0 7 0 0 0 0 0 +713 1783877249769548200 REFRESH 6 0 0.71218745996180977 0.91396933560476989 3 11 3 11 0 0 381 6 421 3988953 56640 220.78874206542969 1.4279999999999999 337.4821 6720 4947 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8775106456 55975668 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 26 25 25 28 317 0 0 0 0 6 0 0 0 0 0 +714 1783877250186718900 REFRESH 41 0 0.71844291518491266 0.55451448040885853 1 9 1 9 0 0 2383 30 420 3988457 56160 221.77587890625 1.4308000000000001 367.08190000000002 20160 14888 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8775843080 56712292 1 0 4 3 2 2 5 983040 737280 491520 491657 1248000 25 25 26 61 283 0 0 1 5 24 0 0 0 0 0 +715 1783877250601138900 REFRESH 3 0 0.71890243311666835 0.64054514480408853 2 9 2 9 0 0 1184 42 408 3988934 56640 219.31826782226562 1.4319 359.13900000000001 13440 8996 0 0 0.0077754587997067364 0.15738213335678808 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8776567464 57436676 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 41 292 0 0 0 0 42 0 0 0 0 0 +716 1783877250979423700 REFRESH 26 0 0.68449819073287299 0.55451448040885853 1 9 1 9 0 0 2117 18 424 3987991 55680 226.12582397460938 1.4308000000000001 376.82209999999998 20160 12558 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8777308168 58177380 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 26 220 128 0 0 0 8 10 0 0 0 0 0 +717 1783877251384556900 REFRESH 29 0 0.71935489568657451 0.82027257240204421 3 10 3 10 0 0 1115 4 420 3988869 56640 221.66220092773438 1.4339 349.08030000000002 13440 9911 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8778044792 58914004 1 0 6 2 1 1 6 1474560 491520 245760 245828 1497600 30 25 25 58 282 0 0 0 0 4 0 0 0 0 0 +718 1783877251784612600 REFRESH 0 0 0.7170384260975754 0.8279386712095399 2 11 2 11 0 0 923 14 414 3988881 56640 221.0303955078125 1.4301999999999999 346.83370000000002 13440 9296 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 8778775296 59644508 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 26 25 25 40 298 0 0 0 2 12 0 0 0 0 0 +719 1783877252128145100 REFRESH 58 0 0.71491845308453428 0.92163543441226559 2 12 2 12 0 0 540 22 407 3988948 56640 223.92626953125 1.4292 342.2303 13440 9883 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8779498660 60367872 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 29 303 0 0 0 0 22 0 0 0 0 0 +720 1783877252535609400 REFRESH 22 0 0.71864140329663673 0.91396933560476989 3 11 3 11 0 0 483 8 407 3988939 56640 222.060546875 1.4336 354.10899999999998 6720 4662 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8780222024 61091236 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 26 25 25 26 305 0 0 0 0 8 0 0 0 0 0 +721 1783877253012381200 REFRESH 20 0 0.71872370850830336 0.26575809199318562 2 5 2 5 0 0 2198 14 428 3987608 55200 223.87712097167969 1.4311 409.29930000000002 20160 11969 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8780966808 61836020 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 32 103 243 0 0 0 1 13 0 0 0 0 0 +722 1783877253470324100 REFRESH 55 0 0.7192525246901571 0.64054514480408853 2 9 2 9 0 0 1097 13 409 3988942 56640 225.81759643554688 1.4302999999999999 349.5487 13440 8889 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8781692212 62561424 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 65 26 268 0 0 0 0 13 0 0 0 0 0 +723 1783877253911238400 REFRESH 53 0 0.7201763057620747 0.37478705281090291 0 8 0 8 0 0 4096 51 406 3988526 56160 223.177734375 1.4329000000000001 382.92290000000003 13440 8316 0 0 0 0.21957375535271967 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8782414556 63283768 1 0 4 2 3 2 5 983040 491520 737280 491710 1248000 25 25 25 112 219 0 0 0 10 41 0 0 0 0 0 +724 1783877254370379900 REFRESH 46 0 0.7195384658804167 0.37478705281090291 0 8 0 8 0 0 2829 19 418 3987987 55680 229.15994262695312 1.4334 404.58710000000002 20160 13716 0 0 3.9279650703395817e-05 0.39505691968867962 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8783149140 64018352 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 25 203 140 0 0 0 5 14 0 0 0 0 0 +725 1783877254770943600 REFRESH 36 0 0.7178113111359673 0.82027257240204421 3 10 3 10 0 0 1280 22 409 3988932 56640 220.54194641113281 1.4339999999999999 345.5446 13440 9295 0 0 0.083980346979836099 0.13032864266777486 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8783874544 64743756 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 26 25 25 35 298 1 0 1 0 20 0 0 0 0 0 +726 1783877255188658300 REFRESH 43 0 0.71780125949964513 0.8279386712095399 2 11 2 11 0 0 804 12 420 3988415 56160 221.28230285644531 1.4460999999999999 364.8417 13440 9774 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8784611168 65480380 1 0 6 2 2 1 5 1474560 491520 491520 245855 1248000 25 25 31 73 266 0 0 1 0 11 0 0 0 0 0 +727 1783877255596859700 REFRESH 15 0 0.70976873015880027 0.91396933560476989 3 11 3 11 0 0 322 8 412 3988956 56640 221.37266540527344 1.4325000000000001 354.81790000000001 6720 4825 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8785339632 66208844 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 25 25 25 34 303 0 0 0 0 8 0 0 0 0 0 +728 1783877256002816200 REFRESH 51 0 0.71512754140159607 0.91396933560476989 3 11 3 11 0 0 551 10 399 3988932 56640 221.19833374023438 1.4319999999999999 352.11169999999998 13440 9934 0 0 0.043972857041873883 0.27738722858163406 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 8786054836 66924048 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 25 25 25 38 286 0 0 0 0 10 0 0 0 0 0 +729 1783877257490778700 REFRESH 30 0 0.72042984708786184 0.4608177172061329 1 8 1 8 0 0 3756 53 409 3988961 56640 221.7891845703125 1.484 1432.6088 13440 8336 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8786780320 541124 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 30 53 275 0 0 2 2 49 0 0 0 0 0 +730 1783877257884017300 REFRESH 34 0 0.71788970005313002 0.8356047700170357 1 12 1 12 0 0 766 22 417 3988382 56160 220.46719360351562 1.4315 340.21190000000001 13440 9781 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8787513884 1274688 1 0 6 2 2 1 5 1474560 491520 491520 245822 1248000 25 25 32 66 269 0 0 1 0 21 0 0 0 0 0 +731 1783877258303181800 REFRESH 14 0 0.71924005389447032 0.65587734241908002 0 11 0 11 0 0 1722 30 408 3988961 56640 222.52134704589844 1.4330000000000001 364.59980000000002 13440 8941 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8788238268 1999072 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 27 28 302 0 0 0 0 30 0 0 0 0 0 +732 1783877258651455600 REFRESH 49 0 0.71555472844032941 0.4454855195911413 3 6 3 6 0 0 1644 15 424 3988452 56160 221.549560546875 1.4370000000000001 346.77359999999999 20160 14024 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8788978972 2739776 1 0 4 3 2 2 5 983040 737280 491520 491652 1248000 25 25 25 244 105 0 0 0 8 7 0 0 0 0 0 +733 1783877259067422600 REFRESH 38 0 0.71899496962851772 0.55451448040885853 1 9 1 9 0 0 2194 14 416 3988474 56160 222.65753173828125 1.4335 358.32150000000001 20160 14636 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8789711516 3472320 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 221 120 0 0 1 5 8 0 0 0 0 0 +734 1783877259484234500 REFRESH 10 0 0.71720479990227459 0.64821124361158422 1 10 1 10 0 0 1200 15 422 3988936 56640 221.76666259765625 1.4308000000000001 363.16030000000001 13440 9145 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8790450180 4210984 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 25 35 312 1 0 0 2 12 0 0 0 0 0 +735 1783877259928820800 REFRESH 13 0 0.72614586517050395 0.27342419080068137 1 6 1 6 0 0 4096 47 413 3987675 55200 223.09580993652344 1.4327000000000001 388.80180000000001 20160 12088 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8791179664 4940468 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 30 129 204 0 0 0 15 32 0 0 0 0 0 +736 1783877260333603400 REFRESH 23 0 0.71518046441845695 0.74190800681430991 1 11 1 11 0 0 3492 11 408 3988962 56640 223.20025634765625 1.4307000000000001 354.83300000000003 13440 9253 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8791904048 5664852 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 29 304 0 0 0 0 11 0 0 0 0 0 +737 1783877260755969900 REFRESH 8 0 0.7247251215681485 0.26575809199318562 2 5 2 5 0 0 2451 6 406 3987605 55200 225.6732177734375 1.4328000000000001 367.68819999999999 20160 14815 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 8792626392 6387196 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 38 293 0 0 0 0 6 0 0 0 0 0 +738 1783877261193884700 REFRESH 33 0 0.7205051781666707 0.36712095400340705 1 7 1 7 0 0 3622 43 416 3987983 55680 229.6014404296875 1.4307000000000001 383.1241 20160 14890 0 0 0.00023870184740373975 0.31072646758859362 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8793358936 7119740 1 0 4 3 3 2 4 983040 737280 737280 491661 998400 25 25 25 136 205 0 0 1 12 30 0 0 0 0 0 +739 1783877261603312100 REFRESH 7 0 0.71814493349985664 0.8356047700170357 1 12 1 12 0 0 897 17 409 3988939 56640 224.87449645996094 1.4291 355.88209999999998 13440 9635 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8794084340 7845144 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 25 30 304 0 0 0 0 17 0 0 0 0 0 +740 1783877262070510800 REFRESH 17 0 0.72626626386712156 0.28109028960817717 0 7 0 7 0 0 4096 10 424 3987984 55680 227.62495422363281 1.4305000000000001 410.18380000000002 20160 11914 0 0 2.3617708100048782e-05 0.065269073852199336 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8794825044 8585848 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 25 25 28 260 86 0 0 1 0 9 0 0 0 0 0 +741 1783877262561181500 REFRESH 50 0 0.7185519993938887 0.64054514480408853 2 9 2 9 0 0 1060 13 423 3988953 56640 235.68896484375 1.429 383.1748 13440 9822 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8795564728 9325532 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 25 27 321 0 0 1 2 10 0 0 0 0 0 +742 1783877262968617400 REFRESH 5 0 0.71655100791285375 0.8279386712095399 2 11 2 11 0 0 897 15 413 3988879 56640 221.40620422363281 1.4545999999999999 354.34750000000003 13440 9648 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8796294212 10055016 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 25 25 25 36 302 0 1 0 1 13 0 0 0 0 0 +743 1783877263389000800 REFRESH 24 0 0.71979769463060705 1 4 11 4 11 0 0 498 11 399 3988937 56640 220.91987609863281 1.4314 366.36369999999999 6720 4876 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 8797009416 10770220 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 25 25 25 34 290 0 0 0 0 11 0 0 0 0 0 +744 1783877263765082600 REFRESH 27 0 0.71567799680792754 0.4608177172061329 1 8 1 8 0 0 3914 52 415 3988479 56160 221.35107421875 1.4321999999999999 374.7987 13440 8269 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8797740940 11501744 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 26 25 25 161 178 0 0 0 12 40 0 0 0 0 0 +745 1783877264221990700 REFRESH 42 0 0.88573083961275501 0 0 4 0 4 0 0 4096 7 424 3987696 55200 225.16326904296875 1.4303999999999999 402.35890000000001 20160 12850 0 0 0 0.0064275276714682349 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 8798481644 12242448 1 0 4 3 3 3 3 983040 737280 737280 737488 748800 54 25 38 234 73 0 0 0 0 7 0 0 0 0 0 +746 1783877264666995000 REFRESH 44 0 0.72062133390789129 0.36712095400340705 1 7 1 7 0 0 2399 17 437 3988014 55680 222.88896179199219 1.4313 391.05250000000001 20160 13774 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 437 320 0 64 0 8799235608 12996412 1 0 4 3 3 2 4 983040 737280 737280 491693 998400 25 25 26 219 142 0 0 1 3 13 0 0 0 0 0 +747 1783877265173359900 REFRESH 1 0 0.72070591513100246 0.36712095400340705 1 7 1 7 0 0 3381 33 422 3987997 55680 223.73170471191406 1.4318 386.77539999999999 20160 13697 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8799974272 13735076 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 25 177 170 0 0 0 5 28 0 0 0 0 0 +748 1783877265570804500 REFRESH 37 0 0.71831215942200899 0.8356047700170357 1 12 1 12 0 0 1035 17 409 3988945 56640 220.60441589355469 1.4349000000000001 344.05180000000001 13440 9776 0 0 0.0033021521050498538 0.44876907179808484 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8800699676 14460480 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 38 296 0 0 0 0 17 0 0 0 0 0 +749 1783877265977188300 REFRESH 16 0 0.72068209386702065 0.3594548551959113 2 6 2 6 0 0 3438 35 416 3988089 55680 222.55001831054688 1.4320999999999999 352.77319999999997 13440 8095 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8801432220 15193024 1 0 4 2 3 3 4 983040 491520 737280 737520 998400 25 25 25 90 251 0 0 0 12 23 0 0 0 0 0 +750 1783877266433253200 REFRESH 54 0 0.7158553657574509 0.4608177172061329 1 8 1 8 0 0 1252 6 430 3988461 56160 221.21369934082031 1.4300999999999999 400.49310000000003 20160 13724 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 8802179044 15939848 1 0 4 3 2 2 5 983040 737280 491520 491661 1248000 25 25 25 259 96 0 0 0 0 6 0 0 0 0 0 +751 1783877266863643200 REFRESH 48 0 0.72644208483056727 0.26575809199318562 2 5 2 5 0 0 2623 48 413 3987598 55200 223.24429321289062 1.4295 374.07190000000003 20160 12691 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8802908528 16669332 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 33 94 236 0 0 1 9 38 0 0 0 0 0 +752 1783877267322768900 REFRESH 18 0 0.71779904210747814 0.9293015332197615 1 13 1 13 0 0 445 12 413 3988966 56640 222.89202880859375 1.4343999999999999 353.60669999999999 6720 4685 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8803638012 17398816 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 26 25 25 25 312 0 0 0 0 12 0 0 0 0 0 +753 1783877267728926200 REFRESH 28 0 0.71839220084393818 0.8279386712095399 2 11 2 11 0 0 654 16 407 3988951 56640 221.65093994140625 1.4321999999999999 353.14769999999999 13440 9187 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8804361376 18122180 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 27 304 0 0 0 0 16 0 0 0 0 0 +754 1783877268145747000 REFRESH 12 0 0.77688586741481303 0.54684838160136284 2 8 2 8 1 0 1809 36 420 3988985 56640 221.59666442871094 1.4319999999999999 361.84120000000001 13440 8176 0 0 0.1146254091802708 1.0772559285645851 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8805098000 18858804 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 25 26 319 0 0 0 0 36 0 0 0 0 1 +755 1783877268580516700 REFRESH 9 0 0.72660889175412491 0.27342419080068137 1 6 1 6 0 0 3359 29 425 3987606 55200 224.26316833496094 1.4339999999999999 382.49459999999999 20160 12676 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8805839724 19600528 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 26 213 136 0 0 0 5 24 0 0 0 0 0 +756 1783877269024513400 REFRESH 52 0 0.71991300097103794 0.36712095400340705 1 7 1 7 0 0 2376 17 429 3987992 55680 221.9808349609375 1.4702 391.23790000000002 20160 12311 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 8806585528 20346332 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 25 195 159 0 0 1 6 10 0 0 0 0 0 +757 1783877269521263200 REFRESH 25 0 0.72112608589181282 0.4608177172061329 1 8 1 8 0 0 2435 14 404 3988970 56640 223.1357421875 1.4289000000000001 394.26440000000002 13440 8055 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 8807305832 21066636 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 29 29 295 0 0 0 1 13 0 0 0 0 0 +758 1783877269942926100 REFRESH 21 0 0.71947563517832891 0.56218057921635434 0 10 0 10 0 0 2731 16 412 3988454 56160 221.17581176757812 1.4325000000000001 368.01010000000002 20160 14693 0 0 0.00027008683416342654 1.0545275937412728 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8808034296 21795100 1 0 4 3 2 2 5 983040 737280 491520 491653 1248000 25 25 25 159 178 0 0 0 7 9 0 0 0 0 0 +759 1783877272421571100 DEPTH 42 1 0.77134179015715165 0 0 4 0 4 1 0 4096 25 2593 23678180 81600 1291.0930633544922 8.6210000000000004 2422.2937000000002 120960 62533 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 8812538064 26298868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 297 150 202 1443 501 0 0 0 0 25 0 0 0 0 1 +760 1783877274852622800 DEPTH 56 1 0.73530716166738153 0.17206132879045993 2 4 2 4 0 0 4096 45 2582 23677339 81600 1283.1150054931641 8.6151999999999997 2375.4652999999998 120960 58478 1 0 0.003291157540207252 0.41574178434382847 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 8817030612 30791416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426371 4492800 238 150 150 1118 926 5 0 0 3 37 0 0 0 0 0 +761 1783877277340560500 DEPTH 57 1 0.72231156574416511 0.27342419080068137 1 6 1 6 0 0 4096 38 2572 23677339 81600 1286.0885467529297 8.6031999999999993 2423.6945000000001 120960 63577 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 8821512960 35273764 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1457 665 0 0 0 4 34 0 0 0 0 0 +762 1783877279850477000 DEPTH 53 1 0.71618868369161359 0.37478705281090291 0 8 0 8 0 0 4096 54 2500 23698462 103680 1274.425048828125 8.5950999999999986 2441.268 120960 52531 1 0 0 0.21957375535271967 4096 2048 384 12 96 360 72 24 0 2500 1920 0 384 1 8825921868 39682672 1 0 4 3 3 2 4 5898240 4423680 4423680 2950914 5990400 150 150 152 467 1581 0 0 0 5 49 0 0 0 0 0 +763 1783877282261604200 DEPTH 31 1 0.71620546955265285 0.3594548551959113 2 6 2 6 0 0 2943 61 2600 23698516 103680 1289.1766815185547 8.6266999999999996 2351.2995999999998 120960 67773 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 8830432776 44193580 1 0 4 3 3 2 4 5898240 4423680 4423680 2950980 5990400 150 150 159 769 1372 0 0 2 0 59 0 0 0 0 0 +764 1783877284923729800 DEPTH 45 1 0.7160246794998415 0.45315161839863699 2 7 2 7 0 0 2260 39 2576 23720549 125760 1393.3476257324219 8.6368000000000009 2542.1569 107520 53331 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 8834919204 48680008 1 0 4 3 2 2 5 5898240 3932160 3440640 2950850 7488000 150 150 173 412 1691 0 0 10 1 28 0 0 0 0 0 +765 1783877287437493600 DEPTH 32 1 0.71594564213277145 0.4608177172061329 1 8 1 8 0 0 3163 37 2570 23720617 125760 1309.4881896972656 8.5769000000000002 2456.0230000000001 120960 69874 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 8839399512 53160316 1 0 4 3 2 2 5 5898240 4423680 2949120 2950999 7488000 150 150 150 398 1722 0 2 0 2 33 0 0 0 0 0 +766 1783877289956360600 DEPTH 30 1 0.71596499402452385 0.4608177172061329 1 8 1 8 0 0 3764 50 2545 23720564 125760 1329.9540710449219 8.7482000000000006 2457.2291 80640 40385 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 8843854320 57615124 1 0 4 2 3 2 5 5898240 2949120 4423680 2950904 7488000 156 150 156 558 1525 0 0 2 1 47 0 0 0 0 0 +767 1783877292540979400 DEPTH 17 1 0.72239253383858759 0.28109028960817717 0 7 0 7 0 0 4096 47 2571 23687565 92160 1324.4436492919922 8.6487999999999996 2523.7368000000001 120960 57426 1 1 2.3617708100048782e-05 0.065269073852199336 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 8848335648 62096452 1 0 4 3 3 3 3 5898240 4423680 4423680 3688737 5241600 150 150 156 961 1154 0 0 5 0 41 0 0 0 0 0 +768 1783877295161650300 DEPTH 13 1 0.72238566126906512 0.27342419080068137 1 6 1 6 0 0 4096 63 2556 23677558 81600 1333.9453887939453 8.5747999999999998 2497.4639000000002 120960 57663 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 8852801676 66562480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426524 4492800 150 150 162 605 1489 0 0 0 2 61 0 0 0 0 0 +769 1783877298707635800 DEPTH 8 1 0.71709121638952267 0.26575809199318562 2 5 2 5 1 0 2463 79 2491 23677413 81600 1355.8056793212891 8.7263000000000002 3486.8733999999999 120960 68850 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2491 1920 0 384 1 8857201484 3854288 1 0 4 3 3 3 3 5898240 4423680 4423680 4426509 4492800 150 150 150 219 1822 0 0 0 10 69 0 0 0 0 1 +770 1783877301246766200 DEPTH 33 1 0.71636935630664178 0.36712095400340705 1 7 1 7 1 0 3627 54 2555 23698563 103680 1361.6862182617188 8.9660999999999991 2480.1307999999999 120960 69394 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 8861666492 8319296 1 0 4 3 3 2 4 5898240 4423680 4423680 2951028 5990400 150 150 150 631 1474 0 0 3 1 50 0 0 0 0 1 +771 1783877303851986800 DEPTH 20 1 0.71599533205898636 0.26575809199318562 2 5 2 5 0 0 2206 25 2585 23677426 81600 1398.5921325683594 8.673 2548.3530000000001 120960 57400 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 8866162100 12814904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 150 150 182 567 1536 0 0 0 0 25 0 0 0 0 0 +772 1783877306435403900 DEPTH 46 1 0.71578199464227532 0.37478705281090291 0 8 0 8 1 0 2833 38 2548 23698512 103680 1402.0845184326172 8.6547000000000018 2523.6167999999998 120960 68976 1 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 8870619968 17272772 1 0 4 3 3 2 4 5898240 4423680 4423680 2950974 5990400 150 150 150 954 1144 0 0 0 1 37 0 0 0 0 2 +773 1783877308992605100 DEPTH 11 1 0.71542824694703233 0.37478705281090291 0 8 0 8 1 0 2642 45 2522 23720575 125760 1351.5489196777344 9.0066000000000006 2496.0077000000001 120960 67499 1 0 0 0.65781776056824171 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 8875051316 21704120 1 0 4 3 2 2 5 5898240 4423680 2949120 2950960 7488000 150 150 150 645 1427 0 1 2 1 41 0 0 0 0 2 +774 1783877311243794900 DEPTH 55 1 0.71451265192248592 0.64054514480408853 2 9 2 9 0 0 1098 48 2512 23742661 147840 1357.1073455810547 8.5811000000000011 2192.6289000000002 80640 43803 1 0 0.13217072358040352 0.64468272855878161 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 8879472464 26125268 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 150 150 156 156 1900 0 0 5 0 43 0 0 0 0 0 +775 1783877313807052000 DEPTH 42 1 0.79023818685200464 0 0 4 0 4 0 0 4096 16 2597 23678003 81600 1333.4693145751953 8.5806000000000004 2561.6511 120960 51727 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 8883980312 30633116 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 275 150 184 1501 487 0 0 0 0 16 0 0 0 0 0 +776 1783877316295562700 DEPTH 12 1 0.73572222806078202 0.54684838160136284 2 8 2 8 1 0 1842 98 2570 23742886 147840 1347.1785125732422 8.8483999999999998 2421.7148000000002 80640 39359 1 0 0.077209040069200416 0.36633912198410767 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 8888460620 35113424 1 0 4 2 2 2 6 5898240 2949120 2949120 2951036 8985600 150 150 150 150 1970 0 0 0 3 95 0 0 0 0 1 +777 1783877318802737200 DEPTH 1 1 0.71652241303759368 0.36712095400340705 1 7 1 7 0 0 3387 43 2560 23698534 103680 1316.6243743896484 8.5982999999999983 2449.4481000000001 120960 68622 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 8892930728 39583532 1 0 4 3 3 2 4 5898240 4423680 4423680 2950996 5990400 150 150 151 788 1321 0 2 6 0 35 0 0 0 0 0 +778 1783877321137224700 DEPTH 16 1 0.71648472111492978 0.3594548551959113 2 6 2 6 0 0 3456 80 2535 23699394 103680 1330.0336608886719 8.5856999999999992 2267.1003999999998 80640 38200 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 8897375336 44028140 1 0 4 2 3 3 4 5898240 2949120 4423680 4426403 5990400 150 150 150 332 1753 0 0 0 4 76 0 0 0 0 0 +779 1783877323716751400 DEPTH 44 1 0.71650026796164656 0.36712095400340705 1 7 1 7 0 0 2414 52 2629 23698468 103680 1363.5340423583984 8.7065999999999999 2521.8148999999999 120960 67457 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2629 1920 0 384 1 8901915824 48568628 1 0 4 3 3 2 4 5898240 4423680 4423680 2950926 5990400 150 150 151 1022 1156 1 1 5 3 42 0 0 0 0 0 +780 1783877326395519700 DEPTH 40 1 0.71445545595169202 0.64821124361158422 1 10 1 10 0 0 1838 53 2586 23742702 147840 1391.2289276123047 8.6451999999999991 2554.6206999999999 80640 44829 1 0 0.080761468709365639 0.52703851695867954 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 8906412452 53065256 1 0 4 2 2 2 6 5898240 2949120 2949120 2951009 8985600 150 150 150 170 1966 1 0 0 7 45 0 0 0 0 0 +781 1783877328993339500 DEPTH 3 1 0.71447492299079285 0.64054514480408853 2 9 2 9 1 0 1187 37 2527 23742702 147840 1363.1232604980469 8.6470000000000002 2537.7709 80640 44759 1 0 0.0076011884802639389 0.12889959572755086 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 8910848900 57501704 1 0 4 2 2 2 6 5898240 2949120 2949120 2951006 8985600 150 150 150 174 1903 0 0 0 0 37 0 0 0 0 2 +782 1783877331452413700 DEPTH 14 1 0.71448751508496766 0.65587734241908002 0 11 0 11 1 0 1729 76 2517 23742569 147840 1376.0163879394531 8.9872999999999994 2397.5756999999999 80640 43389 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 8915275148 61927952 1 0 4 2 2 2 6 5898240 2949120 2949120 2950872 8985600 156 150 157 156 1898 0 0 1 0 75 0 0 0 0 1 +783 1783877333983640400 DEPTH 9 1 0.72273445344926701 0.27342419080068137 1 6 1 6 0 0 3368 47 2585 23677437 81600 1358.3421478271484 8.5959000000000003 2470.962 120960 63584 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 8919770756 66423560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426528 4492800 150 150 156 1357 772 2 0 4 2 39 0 0 0 0 0 +784 1783877337727196900 DEPTH 48 1 0.7226679223287471 0.26575809199318562 2 5 2 5 0 0 2632 53 2563 23677332 81600 1332.6653137207031 8.6758000000000006 3680.5569 120960 63575 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 8924244004 3789236 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 168 387 1708 0 0 3 1 49 0 0 0 0 0 +785 1783877340268121600 DEPTH 25 1 0.71644709167327059 0.4608177172061329 1 8 1 8 0 0 2442 43 2534 23720693 125760 1326.6042785644531 8.9225999999999992 2484.4533000000001 107520 50079 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 8928687592 8232824 1 0 4 3 2 2 5 5898240 3932160 3440640 2950977 7488000 156 150 162 409 1657 2 0 5 1 35 0 0 0 0 0 +786 1783877342767673200 DEPTH 52 1 0.71581808607973074 0.36712095400340705 1 7 1 7 0 0 2387 60 2564 23698481 103680 1325.9335632324219 8.7055000000000007 2438.7474999999999 120960 61632 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 8933161780 12707012 1 0 4 3 3 2 4 5898240 4423680 4423680 2950944 5990400 150 150 150 717 1397 0 0 0 1 59 0 0 0 0 0 +787 1783877345149209300 DEPTH 38 1 0.71458025876877129 0.55451448040885853 1 9 1 9 0 0 2199 52 2544 23720562 125760 1320.6724853515625 8.6028000000000002 2322.4787000000001 120960 70167 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 8937615568 17160800 1 0 4 3 2 2 5 5898240 4423680 2949120 2950947 7488000 150 150 150 917 1177 0 0 0 3 49 0 0 0 0 0 +788 1783877347678554300 DEPTH 21 1 0.71456758036065615 0.56218057921635434 0 10 0 10 1 0 2742 51 2553 23720600 125760 1322.3231353759766 8.5945 2469.3955000000001 120960 70286 1 0 0.0002696052396465272 1.0475508262042843 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 8942078536 21623768 1 0 4 3 2 2 5 5898240 4423680 2949120 2950987 7488000 150 150 150 460 1643 0 0 0 0 51 0 0 0 0 1 +789 1783877350210543700 DEPTH 41 1 0.71448240218810555 0.55451448040885853 1 9 1 9 0 0 2399 58 2565 23720608 125760 1319.6533660888672 8.5945 2471.2229000000002 120960 68664 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 8946553744 26098976 1 0 4 3 2 2 5 5898240 4423680 2949120 2950992 7488000 150 150 155 341 1769 0 2 3 1 52 0 0 0 0 0 +790 1783877352679597800 DEPTH 50 1 0.71434909304891958 0.64054514480408853 2 9 2 9 0 0 1070 36 2587 23742654 147840 1313.7110900878906 8.6257999999999999 2409.9973 80640 45686 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 8951051392 30596624 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 150 150 150 150 1987 2 0 0 11 23 0 0 0 0 0 +791 1783877353101383500 REFRESH 43 0 0.71299462792428503 0.8279386712095399 2 11 2 11 0 0 804 8 420 3988396 56160 229.42221069335938 1.4956 364.27159999999998 13440 9709 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8951788016 31333248 1 0 6 2 2 1 5 1474560 491520 491520 245835 1248000 25 25 34 75 261 0 0 0 0 8 0 0 0 0 0 +792 1783877353518846900 REFRESH 7 0 0.71306664283668542 0.8356047700170357 1 12 1 12 0 0 903 21 408 3988962 56640 228.25267028808594 1.4252 359.28890000000001 13440 9634 0 0 0.00024723902480694698 0.75064368531896075 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8952512400 32057632 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 32 301 0 0 0 1 20 0 0 0 0 0 +793 1783877353977452600 REFRESH 26 0 0.70944935489938299 0.55451448040885853 1 9 1 9 0 0 2125 26 427 3987996 55680 230.26176452636719 1.4256 401.32839999999999 20160 12543 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8953256164 32801396 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 26 237 114 0 0 1 7 18 0 0 0 0 0 +794 1783877354429494200 REFRESH 33 0 0.7023212224827966 0.36712095400340705 1 7 1 7 0 0 3635 26 423 3987993 55680 231.05535888671875 1.4231 395.3433 20160 13783 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 8953995848 33541080 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 25 223 125 0 0 1 7 18 0 0 0 0 0 +795 1783877354863563000 REFRESH 35 0 0.71148166513082112 0.8279386712095399 2 11 2 11 0 0 1125 17 409 3988889 56640 229.2674560546875 1.4319 376.60270000000003 13440 9170 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8954721252 34266484 1 0 5 2 2 1 6 1228800 491520 491520 245848 1497600 25 25 25 31 303 0 0 0 0 17 0 0 0 0 0 +796 1783877355340596900 REFRESH 20 0 0.71286559309154052 0.26575809199318562 2 5 2 5 0 0 2206 10 426 3987585 55200 231.09939575195312 1.4467000000000001 415.6318 20160 12123 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 8955463996 35009228 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 33 168 175 0 0 0 0 10 0 0 0 0 0 +797 1783877355750969000 REFRESH 4 0 0.71021210931261358 0.8356047700170357 1 12 1 12 0 0 287 10 417 3988951 56640 227.5020751953125 1.4379 354.32010000000002 6720 4943 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8956197560 35742792 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 25 25 25 37 305 0 0 0 0 10 0 0 0 0 0 +798 1783877356182014100 REFRESH 49 0 0.71183170713835997 0.4454855195911413 3 6 3 6 0 0 1648 17 421 3988483 56160 231.05946350097656 1.4211 370.43329999999997 20160 13815 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 8956935204 36480436 1 0 4 3 2 2 5 983040 737280 491520 491683 1248000 25 25 25 248 98 0 0 0 5 12 0 0 0 0 0 +799 1783877356675137800 REFRESH 46 0 0.71181984760433092 0.37478705281090291 0 8 0 8 0 0 2837 20 420 3988013 55680 230.93437194824219 1.4319999999999999 432.68239999999997 20160 12431 0 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8957671828 37217060 1 0 4 3 3 2 4 983040 737280 737280 491692 998400 25 25 25 240 105 0 0 0 7 13 0 0 0 0 0 +800 1783877357085351800 REFRESH 24 0 0.71438839416316857 1 4 11 4 11 0 0 498 10 401 3988971 56640 228.1185302734375 1.4359999999999999 353.92110000000002 6720 4757 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 8958389072 37934304 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 25 25 25 33 293 0 0 0 0 10 0 0 0 0 0 +801 1783877357502690900 REFRESH 47 0 0.71319751496049866 0.8279386712095399 2 11 2 11 0 0 695 17 412 3988960 56640 228.43186950683594 1.4222999999999999 356.55169999999998 13440 9665 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8959117536 38662768 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 31 305 0 0 0 0 17 0 0 0 0 0 +802 1783877357972176700 REFRESH 2 0 0.71231638693402588 0.45315161839863699 2 7 2 7 0 0 3828 18 431 3988470 56160 229.47538757324219 1.4505999999999999 410 13440 8175 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 8959865380 39410612 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 26 25 25 214 141 0 0 0 3 15 0 0 0 0 0 +803 1783877358398851900 REFRESH 23 0 0.71073736030163981 0.74190800681430991 1 11 1 11 0 0 3496 15 411 3988945 56640 231.05136108398438 1.4211 368.30579999999998 13440 9104 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8960592824 40138056 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 27 309 0 0 0 0 15 0 0 0 0 0 +804 1783877358857255500 REFRESH 32 0 0.71171035016630868 0.4608177172061329 1 8 1 8 0 0 3165 18 419 3988469 56160 230.25050354003906 1.4295 400.47500000000002 20160 13837 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8961328428 40873660 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 185 159 0 0 0 5 13 0 0 0 0 0 +805 1783877359288867200 REFRESH 5 0 0.71183626983457848 0.8279386712095399 2 11 2 11 0 0 900 22 418 3988879 56640 226.93887329101562 1.4536 374.5829 13440 9571 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8962063012 41608244 1 0 5 2 2 1 6 1228800 491520 491520 245838 1497600 25 25 25 52 291 0 0 0 1 21 0 0 0 0 0 +806 1783877359722008300 REFRESH 0 0 0.7127718197236198 0.8279386712095399 2 11 2 11 0 0 925 5 418 3988882 56640 229.19474792480469 1.4335 376.45370000000003 13440 9110 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8962797596 42342828 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 26 25 25 36 306 0 0 0 0 5 0 0 0 0 0 +807 1783877360152932800 REFRESH 19 0 0.71336073945360956 0.8279386712095399 2 11 2 11 0 0 895 16 409 3988938 56640 228.14309692382812 1.4239999999999999 373.13799999999998 13440 9675 0 0 0.029415794635267906 0.44557784607659678 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8963523000 43068232 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 32 302 0 0 0 1 15 0 0 0 0 0 +808 1783877360584726600 REFRESH 15 0 0.70431541175914969 0.91396933560476989 3 11 3 11 0 0 322 6 413 3988944 56640 228.21273803710938 1.4289000000000001 374.22930000000002 6720 4924 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8964252484 43797716 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 25 25 25 34 304 0 0 0 0 6 0 0 0 0 0 +809 1783877361023680600 REFRESH 3 0 0.70952683976465969 0.64054514480408853 2 9 2 9 0 0 1192 23 410 3988968 56640 227.41606140136719 1.4318 380.08999999999997 13440 8261 0 0 0.0076011884802639389 0.12889959572755086 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8964978908 44524140 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 47 288 0 0 0 0 23 0 0 0 0 0 +810 1783877361456072900 REFRESH 36 0 0.71340765177960919 0.82027257240204421 3 10 3 10 1 0 1289 32 411 3988947 56640 228.26803588867188 1.4219999999999999 371.79649999999998 13440 9148 0 0 0.083980012303904839 0.13635597639476177 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8965706352 45251584 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 35 300 0 0 0 0 32 0 0 0 0 1 +811 1783877361883269700 REFRESH 25 0 0.71194399092163607 0.4608177172061329 1 8 1 8 0 0 2451 27 412 3988454 56160 242.76275634765625 1.4346000000000001 425.69299999999998 20160 14909 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 8966434816 45980048 1 0 4 3 2 2 5 983040 737280 491520 491654 1248000 25 25 25 94 243 0 0 0 10 17 0 0 0 0 0 +812 1783877362373284900 REFRESH 31 0 0.71253481837844079 0.3594548551959113 2 6 2 6 0 0 2948 16 426 3987977 55680 242.03570556640625 1.4315 430.48610000000002 20160 12540 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 8967177560 46722792 1 0 4 3 3 2 4 983040 737280 737280 491657 998400 25 25 30 238 108 0 0 0 7 9 0 0 0 0 0 +813 1783877362814183500 REFRESH 58 0 0.7107114693483676 0.92163543441226559 2 12 2 12 0 0 542 13 410 3988947 56640 240.56013488769531 1.4319999999999999 380.80009999999999 13440 9814 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8967903984 47449216 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 30 305 0 0 0 0 13 0 0 0 0 0 +814 1783877363316840000 REFRESH 42 0 0.87937378023393797 0 0 4 0 4 0 0 4096 9 428 3987683 55200 243.36384582519531 1.4352 444.72320000000002 20160 12992 0 0 0 0.0064271853280971313 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8968648768 48194000 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 53 25 39 233 78 0 0 0 0 9 0 0 0 0 0 +815 1783877363738421000 REFRESH 9 0 0.71906124731015586 0.27342419080068137 1 6 1 6 0 0 3372 24 430 3987575 55200 242.6378173828125 1.4528000000000001 420.0455 20160 11975 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 8969395592 48940824 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 26 270 84 1 0 0 10 13 0 0 0 0 0 +816 1783877364282735700 REFRESH 56 0 0.7324149332606833 0.17206132879045993 2 4 2 4 0 0 4096 20 428 3987593 55200 241.11410522460938 1.4656 428.0489 20160 12110 0 0 0.003291157540207252 0.41574178434382847 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8970140376 49685608 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 56 25 25 223 99 3 0 0 1 16 0 0 0 0 0 +817 1783877364761176800 REFRESH 54 0 0.70843038602463282 0.4608177172061329 1 8 1 8 0 0 1252 6 428 3988484 56160 240.85708618164062 1.4347000000000001 421.67959999999999 20160 13505 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8970885160 50430392 1 0 4 3 2 2 5 983040 737280 491520 491683 1248000 25 25 25 265 88 0 0 0 0 6 0 0 0 0 0 +818 1783877365150129300 REFRESH 50 0 0.70994093275282788 0.64054514480408853 2 9 2 9 0 0 1071 8 419 3988937 56640 240.59494018554688 1.4325000000000001 387.28750000000002 13440 9724 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8971620764 51165996 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 25 28 316 0 0 0 1 7 0 0 0 0 0 +819 1783877365634485500 REFRESH 11 0 0.71179123613785289 0.37478705281090291 0 8 0 8 0 0 2643 6 418 3988456 56160 241.49504089355469 1.4522999999999999 428.35629999999998 20160 12657 0 0 0 0.65781776056824171 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8972355348 51900580 1 0 4 3 2 2 5 983040 737280 491520 491653 1248000 25 25 25 229 114 0 0 0 0 6 0 0 0 0 0 +820 1783877366132000300 REFRESH 17 0 0.71909135411948411 0.28109028960817717 0 7 0 7 0 0 4096 26 420 3987613 55200 242.79347229003906 1.4380999999999999 435.56619999999998 20160 12058 0 0 2.3617708100048782e-05 0.065269073852199336 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8973091972 52637204 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 33 202 135 0 0 0 10 16 0 0 0 0 0 +821 1783877366608584800 REFRESH 40 0 0.70974538583180247 0.64821124361158422 1 10 1 10 0 0 1841 7 404 3988939 56640 238.92582702636719 1.4470000000000001 412.23289999999997 13440 8183 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 8973812276 53357508 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 25 33 296 0 0 0 0 7 0 0 0 0 0 +822 1783877367008559900 REFRESH 38 0 0.71000301305395042 0.55451448040885853 1 9 1 9 0 0 2201 15 420 3988470 56160 229.94454956054688 1.4342999999999999 398.40269999999998 20160 13731 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8974548900 54094132 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 246 99 0 0 0 5 10 0 0 0 0 0 +823 1783877367485474700 REFRESH 53 0 0.71272752403397233 0.37478705281090291 0 8 0 8 0 0 4096 41 407 3987973 55680 230.89459228515625 1.4439 413.75130000000001 20160 14869 0 0 0 0.21957375535271967 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8975272264 54817496 1 0 4 3 3 2 4 983040 737280 737280 491650 998400 25 25 25 117 215 0 0 0 10 31 0 0 0 0 0 +824 1783877367910801000 REFRESH 55 0 0.70996201327536335 0.64054514480408853 2 9 2 9 0 0 1099 17 407 3988950 56640 230.95808410644531 1.4438 364.28719999999998 13440 8472 0 0 0.13217072358040352 0.64468272855878161 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8975995628 55540860 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 66 26 265 0 0 3 0 14 0 0 0 0 0 +825 1783877368381909800 REFRESH 1 0 0.71281316837492059 0.36712095400340705 1 7 1 7 0 0 3393 23 425 3988001 55680 230.53926086425781 1.4285000000000001 412.4255 20160 12558 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 8976737352 56282584 1 0 4 3 3 2 4 983040 737280 737280 491678 998400 25 25 29 195 151 0 0 0 10 13 0 0 0 0 0 +826 1783877368787438200 REFRESH 41 0 0.70995364721111187 0.55451448040885853 1 9 1 9 0 0 2405 33 427 3988484 56160 229.791748046875 1.4235 404.12540000000001 20160 13983 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8977481116 57026348 1 0 4 3 2 2 5 983040 737280 491520 491681 1248000 25 25 26 164 187 0 0 1 11 21 0 0 0 0 0 +827 1783877369247356600 REFRESH 57 0 0.71923116927234987 0.27342419080068137 1 6 1 6 0 0 4096 21 411 3987593 55200 231.699462890625 1.4326000000000001 397.06189999999998 20160 11995 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 8978208560 57753792 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 136 197 0 0 0 5 16 0 0 0 0 0 +828 1783877369708045700 REFRESH 39 0 0.70968049849790571 0.55451448040885853 1 9 1 9 0 0 1642 8 427 3988941 56640 228.55577087402344 1.4318 403.02870000000001 13440 8188 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 8978952324 58497556 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 25 67 284 0 0 0 0 8 0 0 0 0 0 +829 1783877370160828700 REFRESH 27 0 0.71229192215610426 0.4608177172061329 1 8 1 8 0 0 3926 37 418 3988464 56160 230.03033447265625 1.4435 393.92700000000002 13440 8167 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8979686908 59232140 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 26 25 25 184 158 0 0 0 8 29 0 0 0 0 0 +830 1783877370688082000 REFRESH 48 0 0.71923530634522925 0.26575809199318562 2 5 2 5 0 0 2640 29 415 3987610 55200 232.06195068359375 1.4293 411.1712 20160 12017 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 8980418432 59963664 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 31 178 156 0 0 1 8 20 0 0 0 0 0 +831 1783877371126426500 REFRESH 10 0 0.71355850736901361 0.64821124361158422 1 10 1 10 0 0 1201 11 422 3988969 56640 229.17529296875 1.4244000000000001 380.38240000000002 13440 8980 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8981157096 60702328 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 35 312 0 0 0 0 11 0 0 0 0 0 +832 1783877371551199800 REFRESH 52 0 0.71215174970538397 0.36712095400340705 1 7 1 7 1 0 2393 19 428 3988007 55680 229.8419189453125 1.4377 423.16840000000002 20160 11891 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 8981901880 61447112 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 25 25 25 239 114 0 0 0 4 15 0 0 0 0 1 +833 1783877371979999500 REFRESH 28 0 0.71383548499307858 0.8279386712095399 2 11 2 11 0 0 656 8 408 3988969 56640 229.96173095703125 1.4323999999999999 374.41090000000003 13440 9184 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8982626264 62171496 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 25 26 306 0 0 0 0 8 0 0 0 0 0 +834 1783877372389730900 REFRESH 22 0 0.71274092675338618 0.91396933560476989 3 11 3 11 0 0 483 7 409 3988969 56640 228.15846252441406 1.4229000000000001 352.61200000000002 6720 4645 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 8983351668 62896900 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 25 25 27 306 0 0 0 0 7 0 0 0 0 0 +835 1783877372885601300 REFRESH 16 0 0.7129346813265538 0.3594548551959113 2 6 2 6 0 0 3474 39 416 3988080 55680 231.61549377441406 1.4240999999999999 382.24869999999999 13440 8101 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 8984084212 63629444 1 0 4 2 3 3 4 983040 491520 737280 737517 998400 25 25 25 135 206 0 0 0 14 25 0 0 0 0 0 +836 1783877373309791700 REFRESH 6 0 0.70537758308567922 0.91396933560476989 3 11 3 11 0 0 382 8 417 3988953 56640 227.63623046875 1.4386000000000001 367.29509999999999 6720 4962 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 8984817776 64363008 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 28 313 0 0 0 0 8 0 0 0 0 0 +837 1783877373739200900 REFRESH 34 0 0.71391405343861902 0.8356047700170357 1 12 1 12 0 0 768 8 422 3988407 56160 229.48045349121094 1.4291 372.51620000000003 13440 9663 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8985556440 65101672 1 0 6 2 2 1 5 1474560 491520 491520 245844 1248000 25 25 34 55 283 0 0 0 0 8 0 0 0 0 0 +838 1783877374177450800 REFRESH 8 0 0.7146082481292122 0.26575809199318562 2 5 2 5 0 0 2465 15 408 3987585 55200 232.089599609375 1.4262999999999999 378.47190000000001 20160 13832 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 8986280824 65826056 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 57 276 0 0 0 4 11 0 0 0 0 0 +839 1783877374581352400 REFRESH 21 0 0.71029939850484669 0.56218057921635434 0 10 0 10 0 0 2746 27 413 3988476 56160 229.87469482421875 1.4278 402.47640000000001 20160 13773 0 0 0.0002696052396465272 1.0475508262042843 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 8987010308 66555540 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 25 206 132 0 0 0 10 17 0 0 0 0 0 +840 1783877376224167700 REFRESH 30 0 0.71235999308682829 0.4608177172061329 1 8 1 8 0 0 3768 37 419 3988459 56160 230.21568298339844 1.4212 1527.9892 13440 8222 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8987745992 183024 1 0 4 2 3 2 5 983040 491520 737280 491655 1248000 26 25 25 118 225 0 0 0 9 28 0 0 0 0 0 +841 1783877376650851700 REFRESH 51 0 0.71127345840268785 0.91396933560476989 3 11 3 11 1 0 553 9 394 3988957 56640 228.74520874023438 1.4333 368.3501 13440 9774 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 8988456096 893128 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 40 279 0 0 0 0 9 0 0 0 0 1 +842 1783877377074766300 REFRESH 18 0 0.71349321538587218 0.9293015332197615 1 13 1 13 0 0 445 7 410 3988951 56640 229.7733154296875 1.4423999999999999 368.92989999999998 6720 4604 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8989182520 1619552 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 25 309 0 0 0 0 7 0 0 0 0 0 +843 1783877377507674800 REFRESH 14 0 0.71015673967506765 0.65587734241908002 0 11 0 11 0 0 1735 33 410 3988965 56640 230.09382629394531 1.4248000000000001 377.66759999999999 13440 8393 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 8989908944 2345976 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 29 29 301 0 0 0 0 33 0 0 0 0 0 +844 1783877377997199500 REFRESH 37 0 0.71407643382655384 0.8356047700170357 1 12 1 12 0 0 1042 26 407 3988967 56640 228.38272094726562 1.4302999999999999 372.40359999999998 13440 9729 0 0 0.0033021521050498538 0.44876907179808484 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 8990632308 3069340 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 38 294 1 0 0 0 25 0 0 0 0 0 +845 1783877378468252400 REFRESH 45 0 0.7125372771913745 0.45315161839863699 2 7 2 7 0 0 2269 27 419 3988457 56160 229.928955078125 1.4349000000000001 411.84370000000001 20160 14769 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 8991367912 3804944 1 0 4 3 2 2 5 983040 737280 491520 491656 1248000 25 25 25 105 239 0 0 0 4 23 0 0 0 0 0 +846 1783877378890341300 REFRESH 29 0 0.70995892930446947 0.82027257240204421 3 10 3 10 0 0 1115 10 422 3988866 56640 229.33299255371094 1.4258999999999999 367.33969999999999 13440 9863 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 8992106576 4543608 1 0 6 2 1 1 6 1474560 491520 245760 245825 1497600 30 25 25 56 286 0 0 0 0 10 0 0 0 0 0 +847 1783877379325705400 REFRESH 12 0 0.75618730112736465 0.54684838160136284 2 8 2 8 0 0 1851 33 420 3988977 56640 228.83430480957031 1.4629000000000001 377.16019999999997 13440 8313 0 0 0.077209040069200416 0.36633912198410767 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 8992843200 5280232 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 27 318 0 0 0 0 33 0 0 0 0 0 +848 1783877379805468800 REFRESH 44 0 0.71315361490231965 0.36712095400340705 1 7 1 7 0 0 2414 6 434 3987989 55680 231.19052124023438 1.4360999999999999 420.8426 20160 12408 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 434 320 0 64 0 8993594104 6031136 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 26 212 146 0 0 0 2 4 0 0 0 0 0 +849 1783877380325020500 REFRESH 13 0 0.71954723069418813 0.27342419080068137 1 6 1 6 0 0 4096 43 418 3987604 55200 231.53765869140625 1.4278 403.04829999999998 20160 12365 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 8994328688 6765720 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 28 174 166 0 0 0 19 24 0 0 0 0 0 +850 1783877382964465800 DEPTH 42 1 0.87739641680728897 0 0 4 0 4 0 0 4096 20 2605 23678049 81600 1341.053955078125 8.6204000000000001 2581.3939999999998 120960 63442 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 8998844696 11281728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 285 150 203 1456 511 0 0 0 0 20 0 0 0 0 0 +851 1783877385491005600 DEPTH 56 1 0.72926072544349962 0.17206132879045993 2 4 2 4 1 0 4096 45 2575 23677453 81600 1331.6710510253906 8.5905000000000005 2525.2177999999999 120960 57142 1 0 0.0042796943158716228 0.40320142121760472 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 9003330104 15767136 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 266 150 150 1200 809 9 0 0 0 36 0 0 0 0 1 +852 1783877387975692500 DEPTH 9 1 0.71558614328352399 0.27342419080068137 1 6 1 6 0 0 3378 38 2605 23677421 81600 1337.697265625 8.6093999999999991 2482.8778000000002 120960 58720 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 9007846112 20283144 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 156 1562 587 0 0 1 1 36 0 0 0 0 0 +853 1783877390517715800 DEPTH 17 1 0.71555396779241565 0.28109028960817717 0 7 0 7 0 0 4096 41 2566 23677466 81600 1328.9605102539062 8.6202000000000005 2540.6451999999999 120960 56800 1 1 2.3617708100048782e-05 0.065269073852199336 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 9012322340 24759372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 169 778 1319 0 0 2 0 38 0 0 0 0 0 +854 1783877393111988900 DEPTH 20 1 0.71033067150941931 0.26575809199318562 2 5 2 5 0 0 2221 39 2588 23677550 81600 1355.4976654052734 8.6044 2535.0805 120960 56935 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 9016821008 29258040 1 0 4 3 3 3 3 5898240 4423680 4423680 4426594 4492800 150 150 177 685 1426 1 0 2 0 36 0 0 0 0 0 +855 1783877395561985700 DEPTH 24 1 0.70926446423483924 1 4 11 4 11 0 0 498 43 2552 23742695 147840 1381.5142364501953 8.6597000000000008 2216.1505999999999 67200 39209 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 9021282956 33719988 1 0 4 2 2 2 6 6389760 2457600 2949120 2950998 8985600 150 150 150 160 1942 0 0 0 0 43 0 0 0 0 0 +856 1783877398209608300 DEPTH 33 1 0.70898506292848684 0.36712095400340705 1 7 1 7 0 0 3642 30 2558 23698580 103680 1374.7058410644531 8.613999999999999 2527.7768000000001 120960 68807 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9025751024 38188056 1 0 4 3 3 2 4 5898240 4423680 4423680 2951035 5990400 150 150 150 756 1352 0 0 1 0 29 0 0 0 0 0 +857 1783877400764272700 DEPTH 1 1 0.70895637184932458 0.36712095400340705 1 7 1 7 0 0 3410 53 2580 23687450 92160 1332.1840667724609 8.658100000000001 2492.2266 120960 62572 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 9030241532 42678564 1 0 4 3 3 3 3 5898240 4423680 4423680 3688703 5241600 150 150 162 1068 1050 0 0 5 0 48 0 0 0 0 0 +858 1783877403306665000 DEPTH 57 1 0.71565457656435205 0.27342419080068137 1 6 1 6 0 0 4096 99 2533 23677418 81600 1337.8356170654297 8.6067 2477.9522000000002 120960 58182 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 9034684100 47121132 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 150 618 1465 0 0 1 4 94 0 0 0 0 0 +859 1783877405868967900 DEPTH 48 1 0.7156294488375281 0.26575809199318562 2 5 2 5 0 0 2647 43 2566 23677489 81600 1334.3897552490234 8.6638999999999999 2503.3339000000001 120960 58637 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 9039160328 51597360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426483 4492800 150 150 168 577 1521 0 0 3 0 40 0 0 0 0 0 +860 1783877408465106100 DEPTH 53 1 0.7089598169615583 0.37478705281090291 0 8 0 8 1 0 4096 51 2500 23698648 103680 1326.6155548095703 8.628400000000001 2533.8607999999999 120960 69332 1 0 0 0.20923722992907676 4096 2048 384 12 96 360 72 24 0 2500 1920 0 384 1 9043569236 56006268 1 0 4 3 3 2 4 5898240 4423680 4423680 2951100 5990400 150 150 150 340 1710 0 0 0 0 51 0 0 0 0 2 +861 1783877411014033000 DEPTH 31 1 0.70897481465759826 0.3594548551959113 2 6 2 6 0 0 2961 51 2586 23687381 92160 1337.4474945068359 8.6320999999999994 2485.8393999999998 120960 62931 1 0 0.038055235755292474 0.9707539835146306 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 9048065864 60502896 1 0 4 3 3 3 3 5898240 4423680 4423680 3688634 5241600 150 150 180 1098 1008 1 0 6 1 43 0 0 0 0 0 +862 1783877413294707800 DEPTH 10 1 0.70879958250939856 0.64821124361158422 1 10 1 10 0 0 1208 48 2555 23742744 147840 1326.4025573730469 8.5661000000000005 2220.5844000000002 80640 44853 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9052530872 64967904 1 0 4 2 2 2 6 5898240 2949120 2949120 2951047 8985600 150 150 150 175 1930 3 0 0 3 42 0 0 0 0 0 +863 1783877416680420800 DEPTH 7 1 0.70860130268706856 0.8356047700170357 1 12 1 12 1 0 905 44 2530 23742598 147840 1337.7884368896484 8.5779999999999994 3328.7710999999999 80640 46621 1 0 0.0002557785623443432 0.74836649849048364 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 9056970460 2298912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 150 150 150 162 1918 0 0 0 1 43 0 0 0 0 1 +864 1783877418889220300 DEPTH 19 1 0.70861160459583827 0.8279386712095399 2 11 2 11 1 0 898 33 2561 23742688 147840 1325.6273956298828 8.6012000000000004 2154.2150999999999 80640 46896 1 0 0.030727363677572572 0.40105634473458618 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 9061441588 6770040 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 150 150 150 158 1953 2 0 0 1 30 0 0 0 0 1 +865 1783877421141195900 DEPTH 36 1 0.70862038660670823 0.82027257240204421 3 10 3 10 0 0 1292 35 2558 23742682 147840 1327.2944641113281 8.5810999999999993 2193.4079999999999 80640 45149 1 0 0.083980012303904839 0.13635597639476177 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9065909656 11238108 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 156 150 150 160 1942 0 0 0 1 34 0 0 0 0 0 +866 1783877423790119800 DEPTH 42 1 0.7862136651285877 0 0 4 0 4 0 0 4096 10 2598 23678061 81600 1336.5391387939453 8.6689000000000007 2647.0554000000002 120960 52612 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 9070418524 15746976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 260 150 190 1494 504 0 0 0 0 10 0 0 0 0 0 +867 1783877426224939900 DEPTH 8 1 0.71147290634355098 0.26575809199318562 2 5 2 5 0 0 2474 74 2503 23677373 81600 1336.5923919677734 8.6004000000000005 2313.3051999999998 120960 69251 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2503 1920 0 384 1 9074830492 20158944 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 150 257 1796 0 0 0 5 69 0 0 0 0 0 +868 1783877428591093700 DEPTH 16 1 0.70909162550746552 0.3594548551959113 2 6 2 6 0 0 3489 73 2527 23691772 96000 1339.7800903320312 9.2393999999999998 2307.7584999999999 94080 44273 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 9079266940 24595392 1 0 4 3 3 3 3 5898240 3440640 4423680 4426449 5491200 150 150 150 534 1543 0 0 1 5 67 0 0 0 0 0 +869 1783877431130617200 DEPTH 46 1 0.70866774816121758 0.37478705281090291 0 8 0 8 0 0 2848 35 2567 23698437 103680 1328.2675170898438 8.5943000000000005 2475.9254999999998 120960 63140 1 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 9083744188 29072640 1 0 4 3 3 2 4 5898240 4423680 4423680 2950892 5990400 150 150 150 1064 1053 0 0 1 0 34 0 0 0 0 0 +870 1783877433658029700 DEPTH 2 1 0.70868357950477479 0.45315161839863699 2 7 2 7 0 0 3836 48 2574 23709580 114240 1337.2999725341797 8.5839999999999996 2467.9490000000001 80640 39324 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 9088228576 33557028 1 0 4 2 3 3 4 5898240 2949120 4423680 3688728 6739200 156 150 150 1136 982 0 0 0 3 45 0 0 0 0 0 +871 1783877435921998400 DEPTH 47 1 0.70870406835311917 0.8279386712095399 2 11 2 11 0 0 699 25 2555 23742658 147840 1336.9395141601562 8.5963000000000012 2208.8708999999999 80640 46803 1 0 0.018960026908908086 1.2351126180506042 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9092693584 38022036 1 0 4 2 2 2 6 5898240 2949120 2949120 2950960 8985600 156 150 150 171 1928 0 0 1 0 24 0 0 0 0 0 +872 1783877438549954300 DEPTH 52 1 0.70869268751481918 0.36712095400340705 1 7 1 7 0 0 2406 34 2577 23698616 103680 1323.6428680419922 8.8054000000000006 2566.4171000000001 120960 57606 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 9097181032 42509484 1 0 4 3 3 2 4 5898240 4423680 4423680 2951018 5990400 150 150 150 881 1246 0 0 1 0 33 0 0 0 0 0 +873 1783877440814425400 DEPTH 49 1 0.70836443834891016 0.4454855195911413 3 6 3 6 0 0 1657 60 2578 23701373 106560 1328.6104888916016 9.3270999999999997 2205.4395 120960 69390 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 9101669500 46997952 1 0 4 3 3 2 4 5898240 4423680 4177920 2950959 6240000 150 150 150 1138 990 0 0 1 11 48 0 0 0 0 0 +874 1783877443241911200 DEPTH 12 1 0.74650417197897201 0.54684838160136284 2 8 2 8 1 0 1876 88 2564 23742810 147840 1321.8426818847656 8.9208999999999996 2365.4701 80640 39301 1 0 0.11642942247406785 0.51354969553205687 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 9106143688 51472140 1 0 4 2 2 2 6 5898240 2949120 2949120 2951008 8985600 150 150 150 152 1962 0 0 0 1 87 0 0 0 0 1 +875 1783877445850594300 DEPTH 13 1 0.71588172957721752 0.27342419080068137 1 6 1 6 0 0 4096 52 2559 23677445 81600 1346.2917022705078 8.8209999999999997 2547.5515999999998 120960 57921 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 9110612776 55941228 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 162 759 1338 0 0 0 1 51 0 0 0 0 0 +876 1783877448058125000 DEPTH 37 1 0.70881981882418377 0.8356047700170357 1 12 1 12 1 0 1044 31 2557 23742631 147840 1314.0153350830078 8.5855999999999995 2152.7660000000001 80640 46961 1 0 0.003341142716810911 0.41090130131646124 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 9115079824 60408276 1 0 4 2 2 2 6 5898240 2949120 2949120 2950935 8985600 150 150 150 204 1903 0 0 0 2 29 0 0 0 0 1 +877 1783877450581219400 DEPTH 27 1 0.70833929860392053 0.4608177172061329 1 8 1 8 0 0 3935 30 2586 23705266 110400 1326.0523834228516 8.6307000000000009 2467.4515000000001 107520 49930 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 9119576452 64904904 1 0 4 3 3 2 4 5898240 3932160 4423680 2950994 6489600 150 150 150 971 1165 0 0 3 4 23 0 0 0 0 0 +878 1783877454106230200 DEPTH 25 1 0.70833585697155033 0.4608177172061329 1 8 1 8 0 0 2459 32 2542 23698478 103680 1284.4341125488281 9.3181000000000012 3470.3598000000002 120960 69524 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 9124028280 2248976 1 0 4 3 3 2 4 5898240 4423680 4423680 2950938 5990400 150 150 150 790 1302 0 0 4 2 26 0 0 0 0 0 +879 1783877456516714200 DEPTH 45 1 0.70833722228135199 0.45315161839863699 2 7 2 7 0 0 2274 38 2579 23698409 103680 1278.8506774902344 8.6052999999999997 2352.6464000000001 120960 69697 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 9128517768 6738464 1 0 4 3 3 2 4 5898240 4423680 4423680 2950875 5990400 150 150 150 568 1561 0 0 0 1 37 0 0 0 0 0 +880 1783877458908880600 DEPTH 32 1 0.7082743758290142 0.4608177172061329 1 8 1 8 0 0 3177 45 2583 23698480 103680 1276.3330688476562 8.6052 2333.4405999999999 120960 68177 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 9133011336 11232032 1 0 4 3 3 2 4 5898240 4423680 4423680 2950946 5990400 150 150 150 863 1270 0 0 4 3 38 0 0 0 0 0 +881 1783877461322187300 DEPTH 30 1 0.7082912249107749 0.4608177172061329 1 8 1 8 0 0 3775 41 2558 23709493 114240 1279.6742858886719 8.5914999999999999 2358.9789999999998 80640 39322 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9137479404 15700100 1 0 4 2 3 3 4 5898240 2949120 4423680 3688638 6739200 156 150 150 568 1534 0 0 0 6 35 0 0 0 0 0 +882 1783877461813086800 REFRESH 9 0 0.71210717881318331 0.27342419080068137 1 6 1 6 0 0 3380 18 427 3987632 55200 248.91392517089844 1.4302999999999999 430.83479999999997 20160 11836 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9138223168 16443864 1 0 4 3 3 3 3 983040 737280 737280 737530 748800 25 25 26 277 74 0 0 0 7 11 0 0 0 0 0 +883 1783877462276996100 REFRESH 20 0 0.70736385613535302 0.26575809199318562 2 5 2 5 0 0 2221 6 428 3987594 55200 232.33439636230469 1.4394 410.93349999999998 20160 11999 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9138967952 17188648 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 35 187 156 0 0 0 0 6 0 0 0 0 0 +884 1783877462711957400 REFRESH 28 0 0.70694458460332588 0.8279386712095399 2 11 2 11 0 0 658 10 404 3988934 56640 234.80422973632812 1.4404999999999999 382.47750000000002 13440 9095 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 9139688256 17908952 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 26 25 25 28 300 0 0 0 0 10 0 0 0 0 0 +885 1783877463137637200 REFRESH 29 0 0.70550698323581851 0.82027257240204421 3 10 3 10 0 0 1117 9 422 3988863 56640 236.77235412597656 1.4291 367.70499999999998 13440 9842 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9140426920 18647616 1 0 6 2 1 1 6 1474560 491520 245760 245822 1497600 30 25 25 55 287 0 0 1 0 8 0 0 0 0 0 +886 1783877463558335900 REFRESH 5 0 0.70768363734268791 0.8279386712095399 2 11 2 11 0 0 905 17 417 3988961 56640 235.20664978027344 1.4402999999999999 367.86110000000002 13440 9917 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9141160484 19381180 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 54 288 1 0 0 1 15 0 0 0 0 0 +887 1783877463938205900 REFRESH 32 0 0.523804183019008 0.4608177172061329 1 8 1 8 0 0 3187 37 420 3987989 55680 223.96517944335938 1.4292 378.40539999999999 20160 12540 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9141897108 20117804 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 25 139 206 0 0 0 9 28 0 0 0 0 0 +888 1783877464297802700 REFRESH 12 0 0.62760371855581942 0.54684838160136284 2 8 2 8 0 0 1887 30 413 3988989 56640 221.67552185058594 1.4231 358.44380000000001 13440 8198 0 0 0.11642942247406785 0.51354969553205687 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9142626592 20847288 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 27 311 0 0 0 0 30 0 0 0 0 0 +889 1783877464715544700 REFRESH 51 0 0.70531789913485188 0.91396933560476989 3 11 3 11 0 0 554 15 395 3988966 56640 220.37811279296875 1.4410000000000001 357.54590000000002 13440 9702 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 395 320 0 64 0 9143337716 21558412 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 40 280 0 0 0 0 15 0 0 0 0 0 +890 1783877465209869900 REFRESH 48 0 0.71216799247377471 0.26575809199318562 2 5 2 5 0 0 2651 21 420 3987617 55200 223.44412231445312 1.4527000000000001 433.0179 20160 11877 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9144074340 22295036 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 30 162 178 0 0 0 3 18 0 0 0 0 0 +891 1783877465677494100 REFRESH 31 0 0.70522024468974021 0.3594548551959113 2 6 2 6 0 0 2974 36 418 3987590 55200 224.1239013671875 1.4433 410.7593 20160 11919 0 0 0.038055235755292474 0.9707539835146306 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9144808924 23029620 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 33 171 164 0 0 0 15 21 0 0 0 0 0 +892 1783877466128497300 REFRESH 21 0 0.70621979438031457 0.56218057921635434 0 10 0 10 1 0 2747 13 417 3988499 56160 221.39801025390625 1.4429000000000001 392.36619999999999 20160 13711 0 0 0.00026949520613387074 1.0457884079562556 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9145542488 23763184 1 0 4 3 2 2 5 983040 737280 491520 491699 1248000 25 25 25 211 131 0 0 0 3 10 0 0 0 0 1 +893 1783877466605901100 REFRESH 54 0 0.70163253405859316 0.4608177172061329 1 8 1 8 0 0 1253 5 429 3988489 56160 221.62944030761719 1.4605999999999999 419.21140000000003 20160 13283 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 9146288292 24508988 1 0 4 3 2 2 5 983040 737280 491520 491688 1248000 25 25 25 262 92 0 0 0 0 5 0 0 0 0 0 +894 1783877466983939600 REFRESH 49 0 0.6641063801143704 0.4454855195911413 3 6 3 6 0 0 1661 26 419 3988011 55680 223.10195922851562 1.4339 376.46449999999999 20160 12586 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9147023896 25244592 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 25 236 108 0 0 0 12 14 0 0 0 0 0 +895 1783877467386338600 REFRESH 52 0 0.68486719579431854 0.36712095400340705 1 7 1 7 0 0 2428 43 425 3987604 55200 223.28524780273438 1.4482999999999999 400.68430000000001 20160 11948 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9147765620 25986316 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 27 91 257 0 0 1 8 34 0 0 0 0 0 +896 1783877467813305600 REFRESH 6 0 0.69974936179390412 0.91396933560476989 3 11 3 11 1 0 383 10 416 3988973 56640 220.69453430175781 1.4298999999999999 367.37259999999998 6720 4958 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9148498164 26718860 1 0 5 1 2 2 6 1228800 245760 491520 491691 1497600 26 25 25 33 307 0 0 0 1 9 0 0 0 0 1 +897 1783877468275299800 REFRESH 57 0 0.71231109942676452 0.27342419080068137 1 6 1 6 0 0 4096 20 408 3987677 55200 224.89292907714844 1.5399 409.04969999999997 20160 11899 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9149222548 27443244 1 0 4 3 3 3 3 983040 737280 737280 737533 748800 25 25 29 163 166 0 0 1 3 16 0 0 0 0 0 +898 1783877468737019400 REFRESH 0 0 0.70372701139279525 0.8279386712095399 2 11 2 11 0 0 926 6 419 3988884 56640 219.71763610839844 1.4238 356.79570000000001 13440 9175 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9149958152 28178848 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 26 25 25 34 309 0 0 0 0 6 0 0 0 0 0 +899 1783877469164956400 REFRESH 16 0 0.70534772841945348 0.3594548551959113 2 6 2 6 0 0 3504 42 412 3987599 55200 223.78086853027344 1.4319999999999999 370.70440000000002 20160 14911 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9150686616 28907312 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 63 274 0 0 0 6 36 0 0 0 0 0 +900 1783877469599146600 REFRESH 33 0 0.705444897213795 0.36712095400340705 1 7 1 7 0 0 3663 43 411 3987592 55200 224.47001647949219 1.4350000000000001 375.00630000000001 20160 12768 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9151414060 29634756 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 46 290 0 0 0 6 37 0 0 0 0 0 +901 1783877470014297500 REFRESH 4 0 0.70720919609832178 0.8356047700170357 1 12 1 12 0 0 288 6 420 3988955 56640 219.87532043457031 1.4280999999999999 353.96620000000001 6720 4917 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9152150684 30371380 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 25 25 32 313 2 0 0 0 4 0 0 0 0 0 +902 1783877470494128000 REFRESH 17 0 0.71236766743956004 0.28109028960817717 0 7 0 7 0 0 4096 17 429 3987590 55200 222.53567504882812 1.4435 420.35890000000001 20160 12132 0 0 2.3617708100048782e-05 0.065269073852199336 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 9152896488 31117184 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 30 246 103 0 0 1 5 11 0 0 0 0 0 +903 1783877470969323500 REFRESH 3 0 0.70598425824833688 0.64054514480408853 2 9 2 9 1 0 1196 17 411 3988954 56640 219.8446044921875 1.4306000000000001 360.79180000000002 13440 8265 0 0 0.0076147355873878199 0.13126453427776055 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9153623932 31844628 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 46 290 0 0 0 0 17 0 0 0 0 1 +904 1783877471434486200 REFRESH 53 0 0.7054487411716357 0.37478705281090291 0 8 0 8 0 0 4096 44 409 3987982 55680 223.42247009277344 1.4289000000000001 406.66849999999999 20160 14074 0 0 0 0.20923722992907676 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9154349336 32570032 1 0 4 3 3 2 4 983040 737280 737280 491655 998400 25 25 25 160 174 0 0 0 15 29 0 0 0 0 0 +905 1783877471891031500 REFRESH 40 0 0.70301036890608914 0.64821124361158422 1 10 1 10 0 0 1847 15 410 3988971 56640 221.05001831054688 1.4289000000000001 399.07159999999999 13440 8141 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9155075760 33296456 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 33 302 0 0 0 1 14 0 0 0 0 0 +906 1783877472291082200 REFRESH 24 0 0.70434605304027043 1 4 11 4 11 0 0 498 7 398 3988968 56640 221.517822265625 1.4418 348.01139999999998 13440 9297 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 398 320 0 64 0 9155789944 34010640 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 33 290 0 0 0 0 7 0 0 0 0 0 +907 1783877472705793300 REFRESH 47 0 0.70380831156725998 0.8279386712095399 2 11 2 11 0 0 702 19 410 3988975 56640 221.34579467773438 1.4351 358.82900000000001 13440 8872 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9156516368 34737064 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 25 31 303 0 0 0 0 19 0 0 0 0 0 +908 1783877473164446300 REFRESH 44 0 0.70573313705817098 0.36712095400340705 1 7 1 7 0 0 2415 7 438 3987999 55680 223.64979553222656 2.4146999999999998 401.52809999999999 20160 12412 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 438 320 0 64 0 9157271352 35492048 1 0 4 3 3 2 4 983040 737280 737280 491675 998400 25 25 26 218 144 0 0 1 0 6 0 0 0 0 0 +909 1783877473633221700 REFRESH 22 0 0.70540375913542142 0.91396933560476989 3 11 3 11 0 0 483 11 411 3988958 56640 222.02470397949219 1.4420999999999999 360.82690000000002 6720 4574 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9157998796 36219492 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 26 309 0 0 0 0 11 0 0 0 0 0 +910 1783877474050136100 REFRESH 35 0 0.70798342049140151 0.8279386712095399 2 11 2 11 0 0 1127 18 406 3988943 56640 220.87065124511719 1.4326000000000001 360.5138 13440 9817 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9158721140 36941836 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 30 301 0 0 0 0 18 0 0 0 0 0 +911 1783877474452749800 REFRESH 34 0 0.70743634081841433 0.8356047700170357 1 12 1 12 0 0 770 15 410 3988395 56160 221.76153564453125 1.421 347.5249 20160 14969 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9159447564 37668260 1 0 6 3 1 1 5 1474560 737280 245760 245835 1248000 25 25 40 62 258 0 0 1 0 14 0 0 0 0 0 +912 1783877474873635100 REFRESH 43 0 0.70745435652304478 0.8279386712095399 2 11 2 11 0 0 805 7 418 3988393 56160 223.06201171875 1.4255 368.25810000000001 20160 14873 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9160182148 38402844 1 0 6 3 1 1 5 1474560 737280 245760 245830 1248000 25 25 35 82 251 0 0 0 0 7 0 0 0 0 0 +913 1783877475310738000 REFRESH 1 0 0.70560657824609407 0.36712095400340705 1 7 1 7 0 0 3425 34 415 3987598 55200 223.84034729003906 1.4314 382.71859999999998 20160 11930 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9160913672 39134368 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 29 146 190 0 0 0 7 27 0 0 0 0 0 +914 1783877475698013400 REFRESH 27 0 0.70434699099560283 0.4608177172061329 1 8 1 8 0 0 3963 57 418 3987996 55680 223.425537109375 1.4415 385.6191 20160 14885 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9161648256 39868952 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 25 180 163 0 0 0 27 30 0 0 0 0 0 +915 1783877476148463400 REFRESH 23 0 0.70728235187572774 0.74190800681430991 1 11 1 11 0 0 3504 16 412 3988945 56640 224.12594604492188 1.4373 390.98059999999998 13440 8831 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9162376720 40597416 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 29 308 0 0 0 0 16 0 0 0 0 0 +916 1783877476529845200 REFRESH 37 0 0.70407466008816144 0.8356047700170357 1 12 1 12 0 0 1048 23 404 3988969 56640 222.26841735839844 1.4438 379.6866 13440 9158 0 0 0.003341142716810911 0.41090130131646124 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 9163097024 41317720 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 42 287 0 0 0 2 21 0 0 0 0 0 +917 1783877477003612800 REFRESH 39 0 0.70457516854156266 0.55451448040885853 1 9 1 9 0 0 1645 11 426 3988947 56640 219.63980102539062 1.4295 412.27449999999999 13440 8195 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9163839768 42060464 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 69 281 0 0 0 0 11 0 0 0 0 0 +918 1783877477437284100 REFRESH 58 0 0.70683488681962436 0.92163543441226559 2 12 2 12 0 0 543 8 410 3988943 56640 221.0355224609375 1.4289000000000001 374.8349 13440 9677 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9164566192 42786888 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 30 305 1 0 0 0 7 0 0 0 0 0 +919 1783877477881796700 REFRESH 41 0 0.70657834716195822 0.55451448040885853 1 9 1 9 0 0 2407 20 422 3988479 56160 222.08409118652344 1.4265000000000001 388.40870000000001 20160 13817 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9165304856 43525552 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 26 173 173 1 0 0 4 15 0 0 0 0 0 +920 1783877478404575500 REFRESH 56 0 0.72672297136154029 0.17206132879045993 2 4 2 4 0 0 4096 11 427 3987720 55200 224.13722229003906 1.4265000000000001 411.83229999999998 20160 12111 0 0 0.0042796943158716228 0.40320142121760472 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9166048620 44269316 1 0 4 3 3 3 3 983040 737280 737280 737555 748800 55 25 25 227 95 2 0 0 1 8 0 0 0 0 0 +921 1783877478805802200 REFRESH 25 0 0.70444096946669466 0.4608177172061329 1 8 1 8 0 0 2471 33 414 3987995 55680 224.76185607910156 1.4430000000000001 399.2199 20160 13992 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9166779124 44999820 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 25 25 25 161 178 0 0 0 16 17 0 0 0 0 0 +922 1783877479243745600 REFRESH 2 0 0.70489184987295772 0.45315161839863699 2 7 2 7 0 0 3867 63 414 3988074 55680 221.91923522949219 1.4457 379.19630000000001 13440 8162 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9167509628 45730324 1 0 4 2 3 3 4 983040 491520 737280 737506 998400 26 25 25 108 230 0 0 0 17 46 0 0 0 0 0 +923 1783877479717068800 REFRESH 13 0 0.71266365270802989 0.27342419080068137 1 6 1 6 0 0 4096 27 421 3987608 55200 222.98419189453125 1.4244000000000001 418.40839999999997 20160 12204 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9168247272 46467968 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 28 174 169 0 0 0 9 18 0 0 0 0 0 +924 1783877480132743200 REFRESH 55 0 0.70647998763379849 0.64054514480408853 2 9 2 9 1 0 1101 13 405 3988960 56640 221.76573181152344 1.4274 361.78820000000002 13440 8396 0 0 0.11339517288494173 0.64403607071318869 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 9168968596 47189292 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 75 26 254 0 0 3 0 10 0 0 0 0 1 +925 1783877480662700900 REFRESH 46 0 0.70535452935512566 0.37478705281090291 0 8 0 8 0 0 2849 14 422 3988004 55680 223.204345703125 1.4360999999999999 405.56610000000001 20160 11895 0 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9169707260 47927956 1 0 4 3 3 2 4 983040 737280 737280 491682 998400 25 25 25 230 117 0 0 0 3 11 0 0 0 0 0 +926 1783877481085547400 REFRESH 18 0 0.70624865387561231 0.9293015332197615 1 13 1 13 0 0 445 10 411 3988944 56640 221.74617004394531 1.4263999999999999 368.4701 6720 4690 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9170434704 48655400 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 25 310 0 0 0 0 10 0 0 0 0 0 +927 1783877481472498400 REFRESH 45 0 0.70452276808265402 0.45315161839863699 2 7 2 7 0 0 2279 22 416 3987993 55680 222.16397094726562 1.4227000000000001 385.66219999999998 20160 13959 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9171167248 49387944 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 135 206 0 0 0 9 13 0 0 0 0 0 +928 1783877481916522600 REFRESH 8 0 0.70888288162080881 0.26575809199318562 2 5 2 5 0 0 2476 10 406 3987596 55200 224.42291259765625 1.4426000000000001 384.8571 20160 12728 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9171889592 50110288 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 95 236 0 0 0 3 7 0 0 0 0 0 +929 1783877482389802800 REFRESH 11 0 0.70528453082014941 0.37478705281090291 0 8 0 8 0 0 2645 12 417 3988448 56160 222.34521484375 1.4802999999999999 420.12759999999997 20160 12444 0 0 0 0.65781776056824171 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9172623156 50843852 1 0 4 3 2 2 5 983040 737280 491520 491647 1248000 25 25 25 240 102 0 0 0 0 12 0 0 0 0 0 +930 1783877482841272400 REFRESH 26 0 0.7055729103174978 0.55451448040885853 1 9 1 9 0 0 2125 14 425 3988016 55680 222.97206115722656 1.4213 395.74489999999997 20160 12341 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9173364880 51585576 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 26 208 141 0 0 0 3 11 0 0 0 0 0 +931 1783877483272536200 REFRESH 15 0 0.69798601154146311 0.91396933560476989 3 11 3 11 0 0 322 11 411 3988945 56640 221.03347778320312 2.4420000000000002 370.31849999999997 6720 4982 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9174092324 52313020 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 38 298 0 0 0 0 11 0 0 0 0 0 +932 1783877483694347300 REFRESH 7 0 0.70428728138708319 0.8356047700170357 1 12 1 12 0 0 907 15 404 3988961 56640 220.03506469726562 1.4261999999999999 365.76729999999998 13440 8864 0 0 0.0002557785623443432 0.74836649849048364 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 9174812628 53033324 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 25 33 296 0 0 0 1 14 0 0 0 0 0 +933 1783877484191458100 REFRESH 50 0 0.70534165715775399 0.64054514480408853 2 9 2 9 0 0 1074 11 422 3988961 56640 221.44000244140625 1.4399999999999999 379.5025 13440 9545 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9175551292 53771988 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 27 320 0 0 0 1 10 0 0 0 0 0 +934 1783877484617563900 REFRESH 10 0 0.70496841660590881 0.64821124361158422 1 10 1 10 0 0 1210 10 419 3988941 56640 221.18605041503906 1.4296 367.21609999999998 13440 8252 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9176286896 54507592 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 38 306 0 0 0 2 8 0 0 0 0 0 +935 1783877485037562500 REFRESH 30 0 0.70457802723717111 0.4608177172061329 1 8 1 8 0 0 3800 64 412 3988063 55680 234.14784240722656 1.47 418.01900000000001 13440 8155 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9177015360 55236056 1 0 4 2 3 3 4 983040 491520 737280 737499 998400 26 25 25 126 210 0 0 0 19 45 0 0 0 0 0 +936 1783877485468553100 REFRESH 19 0 0.70440048238612174 0.8279386712095399 2 11 2 11 0 0 900 18 408 3988952 56640 220.73548889160156 1.4428000000000001 370.59070000000003 13440 9032 0 0 0.030727363677572572 0.40105634473458618 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9177739744 55960440 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 36 297 0 0 0 1 17 0 0 0 0 0 +937 1783877485908721700 REFRESH 38 0 0.70698768038627446 0.55451448040885853 1 9 1 9 0 0 2201 8 425 3988479 56160 222.0001220703125 1.4421999999999999 384.46170000000001 20160 13574 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9178481468 56702164 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 234 116 0 0 0 0 8 0 0 0 0 0 +938 1783877486318679600 REFRESH 36 0 0.70437412141993394 0.82027257240204421 3 10 3 10 0 0 1300 27 407 3988939 56640 221.34783935546875 1.421 353.1275 13440 8549 0 0 0.083980012303904839 0.13635597639476177 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9179204832 57425528 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 25 40 291 0 0 0 1 26 0 0 0 0 0 +939 1783877486850076000 REFRESH 42 0 0.87565479319551831 0 0 4 0 4 0 0 4096 9 428 3987703 55200 224.036865234375 1.4370000000000001 417.78519999999997 20160 12938 0 0 0 0.0064271853280971313 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9179949616 58170312 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 52 25 41 232 78 0 0 0 0 9 0 0 0 0 0 +940 1783877487280933500 REFRESH 14 0 0.70660591253195115 0.65587734241908002 0 11 0 11 0 0 1742 25 410 3988958 56640 232.35379028320312 1.4464999999999999 373.12290000000002 13440 8364 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9180676040 58896736 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 27 29 303 0 0 1 0 24 0 0 0 0 0 +941 1783877489638101200 DEPTH 12 1 0.72964939443874077 0.54684838160136284 2 8 2 8 1 0 1917 94 2560 23731340 136320 1294.7158966064453 8.6211000000000002 2305.4479999999999 100800 48055 1 0 0.13529846646087451 0.26542254657489162 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 9185146148 63366844 1 0 4 3 2 2 5 5898240 3686400 2949120 2950991 8236800 150 150 150 307 1803 1 0 4 16 73 0 0 0 0 1 +942 1783877493253611200 DEPTH 9 1 0.70917022621981052 0.27342419080068137 1 6 1 6 0 0 3393 51 2591 23677581 81600 1290.6160888671875 8.5798000000000005 3504.6395000000002 120960 57486 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 9189647956 761276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426369 4492800 150 150 156 1584 551 0 0 0 2 49 0 0 0 0 0 +943 1783877495618695700 DEPTH 57 1 0.7091626526290582 0.27342419080068137 1 6 1 6 0 0 4096 87 2529 23677458 81600 1292.7508697509766 8.5695000000000014 2363.8271 120960 57003 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 9194086444 5199764 1 0 4 3 3 3 3 5898240 4423680 4423680 4426410 4492800 150 150 155 614 1460 0 0 2 4 81 0 0 0 0 0 +944 1783877498066889900 DEPTH 17 1 0.70915996348772325 0.28109028960817717 0 7 0 7 0 0 4096 46 2564 23677345 81600 1285.5019378662109 8.5797000000000008 2446.6068 120960 56245 1 1 2.3617708100048782e-05 0.065269073852199336 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 9198560632 9673952 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 173 870 1221 0 0 5 0 40 0 0 0 0 0 +945 1783877500710100100 DEPTH 48 1 0.70915813918427917 0.26575809199318562 2 5 2 5 0 0 2665 43 2574 23677432 81600 1304.3332977294922 8.5578000000000003 2462.0675999999999 120960 56865 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 9203045020 14158340 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 168 646 1460 0 0 1 1 41 0 0 0 0 0 +946 1783877502872417700 DEPTH 5 1 0.70331822804171074 0.8279386712095399 2 11 2 11 0 0 907 35 2555 23742628 147840 1275.565185546875 8.6155999999999988 2101.5275999999999 80640 45895 1 0 0.0013470829413883309 0.39801580600099568 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9207510028 18623348 1 0 4 2 2 2 6 5898240 2949120 2949120 2950933 8985600 150 150 150 160 1945 0 0 1 1 33 0 0 0 0 0 +947 1783877505166547100 DEPTH 35 1 0.70321190279083234 0.8279386712095399 2 11 2 11 0 0 1134 93 2483 23742649 147840 1283.1457366943359 8.613999999999999 2162.9378999999999 80640 45629 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 360 72 24 0 2483 1920 0 384 1 9211901596 23014916 1 0 4 2 2 2 6 5898240 2949120 2949120 2950952 8985600 150 150 150 156 1877 0 0 0 0 93 0 0 0 0 0 +948 1783877507387981500 DEPTH 28 1 0.70272041004968944 0.8279386712095399 2 11 2 11 0 0 661 31 2509 23742625 147840 1287.4629058837891 8.6260999999999992 2160.7829000000002 80640 44703 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 9216319684 27433004 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 156 150 150 156 1897 0 0 1 0 30 0 0 0 0 0 +949 1783877509999756200 DEPTH 56 1 0.72363103167969389 0.17206132879045993 2 4 2 4 0 0 4096 48 2597 23677670 81600 1292.2583160400391 8.6226000000000003 2543.2464 120960 57574 1 0 0.0042796943158716228 0.40320142121760472 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 9220827532 31940852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 285 150 150 1194 818 5 0 0 0 43 0 0 0 0 0 +950 1783877512552433100 DEPTH 42 1 0.73331565374428342 0 0 4 0 4 0 0 4096 15 2590 23678322 81600 1299.8266754150391 8.625 2550.9182000000001 120960 63138 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 9225328240 36441560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426538 4492800 279 150 209 1428 524 0 0 0 0 15 0 0 0 0 0 +951 1783877515092161700 DEPTH 13 1 0.7092439766020282 0.27342419080068137 1 6 1 6 0 0 4096 62 2561 23677447 81600 1287.1895294189453 8.6042000000000005 2478.1632 120960 57696 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 9229799368 40912688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 162 712 1387 0 0 0 2 60 0 0 0 0 0 +952 1783877517314191100 DEPTH 34 1 0.70278870413227434 0.8356047700170357 1 12 1 12 0 0 777 60 2576 23719674 125760 1275.2281036376953 8.7332999999999998 2107.2795000000001 120960 52526 1 0 0.00020654801738738873 1.769932182842139 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 9234285796 45399116 1 0 5 3 2 1 5 7372800 4423680 2949120 1475499 7488000 150 150 232 284 1760 0 0 0 1 59 0 0 0 0 0 +953 1783877519499385300 DEPTH 23 1 0.70265082556299374 0.74190800681430991 1 11 1 11 0 0 3514 49 2518 23742640 147840 1290.2494201660156 8.6006999999999998 2130.3071 80640 44567 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2518 1920 0 384 1 9238713064 49826384 1 0 4 2 2 2 6 5898240 2949120 2949120 2950946 8985600 150 150 150 163 1905 0 0 0 0 49 0 0 0 0 0 +954 1783877522006433800 DEPTH 21 1 0.70243443735136624 0.56218057921635434 0 10 0 10 1 0 2758 43 2551 23720502 125760 1278.0308532714844 8.6226000000000003 2443.4974000000002 120960 68357 1 0 0.00028363135060272563 1.0449479241235204 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 9243173992 54287312 1 0 4 3 2 2 5 5898240 4423680 2949120 2950888 7488000 150 150 150 568 1533 0 0 0 1 42 0 0 0 0 1 +955 1783877524457201400 DEPTH 41 1 0.70235961109666456 0.55451448040885853 1 9 1 9 0 0 2421 60 2570 23716802 121920 1272.8618774414062 8.5992999999999995 2393.5661 120960 68487 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 9247654300 58767620 1 0 4 3 3 2 4 5898240 4423680 3194880 2951026 7238400 150 150 156 618 1496 0 1 10 2 47 0 0 0 0 0 +956 1783877526938671100 DEPTH 33 1 0.70218681633633828 0.36712095400340705 1 7 1 7 0 0 3670 64 2511 23677270 81600 1290.3350677490234 8.5977999999999994 2413.5414000000001 120960 63725 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 9252074428 63187748 1 0 4 3 3 3 3 5898240 4423680 4423680 4426361 4492800 150 150 150 222 1839 0 0 0 5 59 0 0 0 0 0 +957 1783877530542024900 DEPTH 8 1 0.70586012901142803 0.26575809199318562 2 5 2 5 0 0 2494 93 2493 23677371 81600 1291.296875 8.6415999999999986 3534.3326999999999 120960 63612 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 9256476276 481248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 150 150 150 298 1745 0 0 0 6 87 0 0 0 0 0 +958 1783877533129394200 DEPTH 1 1 0.70217962841804549 0.36712095400340705 1 7 1 7 0 0 3447 83 2546 23677441 81600 1326.4272613525391 8.6278999999999986 2513.3027999999999 120960 57706 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 9260932104 4937076 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 172 574 1500 0 0 3 1 79 0 0 0 0 0 +959 1783877535802469800 DEPTH 53 1 0.70217815356566771 0.37478705281090291 0 8 0 8 0 0 4096 54 2521 23687418 92160 1363.3515472412109 8.7675000000000001 2609.2314000000001 120960 67968 1 0 0 0.20923722992907676 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 9265362432 9367404 1 0 4 3 3 3 3 5898240 4423680 4423680 3688663 5241600 150 150 150 675 1396 0 0 0 2 52 0 0 0 0 0 +960 1783877538144858400 DEPTH 16 1 0.70217224088502161 0.3594548551959113 2 6 2 6 0 0 3531 123 2535 23677415 81600 1326.3513641357422 8.6547000000000001 2278.7496999999998 120960 69294 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 9269807040 13812012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 150 346 1739 0 0 0 4 119 0 0 0 0 0 +961 1783877540651243100 DEPTH 31 1 0.70218525576468516 0.3594548551959113 2 6 2 5 1 0 2985 69 2570 23711489 116160 1304.8586578369141 8.5975999999999999 2441.3951000000002 100800 45839 1 1 0.047556383555149753 1.3464390602538212 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 9274287348 18292320 1 0 4 2 2 2 6 5898240 3686400 3686400 3688684 6739200 150 150 186 344 1740 0 0 2 7 59 0 0 0 0 1 +962 1783877542881308900 DEPTH 55 1 0.70211887947716534 0.64054514480408853 2 9 2 9 1 0 1108 67 2510 23742716 147840 1294.6161499023438 9.0061999999999998 2168.9256 80640 41750 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 9278706456 22711428 1 0 4 2 2 2 6 5898240 2949120 2949120 2950980 8985600 150 150 159 156 1895 0 0 6 0 61 0 0 0 0 1 +963 1783877545412353300 DEPTH 11 1 0.70202273319661512 0.37478705281090291 0 8 0 8 1 0 2651 42 2506 23720537 125760 1278.1209716796875 8.672699999999999 2460.5886 120960 61517 1 0 0 0.66658507942426259 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 9283121484 27126456 1 0 4 3 2 2 5 5898240 4423680 2949120 2950910 7488000 150 150 150 671 1385 0 0 0 2 40 0 0 0 0 2 +964 1783877547888715500 DEPTH 3 1 0.70198496469990079 0.64054514480408853 2 9 2 9 0 0 1199 37 2536 23742679 147840 1293.8477783203125 8.7062999999999988 2418.0151999999998 80640 40457 1 0 0.0076147355873878199 0.13126453427776055 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 9287567112 31572084 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 150 150 150 179 1907 0 0 0 2 35 0 0 0 0 0 +965 1783877550428597200 DEPTH 42 1 0.7720927389391935 0 0 4 0 4 0 0 4096 20 2589 23678239 81600 1286.4819183349609 8.5686999999999998 2482.0039999999999 120960 52479 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 9292066800 36071772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 266 150 196 1494 483 0 0 0 0 20 0 0 0 0 0 +966 1783877552874700600 DEPTH 12 1 0.72220362639926861 0.54684838160136284 2 8 2 8 1 0 1933 87 2581 23720739 125760 1268.8117828369141 8.6008000000000013 2383.7548999999999 120960 44470 1 0 0.11618525878432012 0.23319651143523057 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 9296558328 40563300 1 0 4 3 2 2 5 5898240 4423680 2949120 2950961 7488000 150 150 150 832 1299 3 1 6 15 62 0 0 0 0 1 +967 1783877555169475900 DEPTH 14 1 0.70201377454288472 0.65587734241908002 0 11 0 11 0 0 1762 122 2519 23735061 140160 1288.0394439697266 8.5730000000000004 2226.2148999999999 80640 41318 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 9300986616 44991588 1 0 4 2 3 2 5 5898240 2949120 3440640 2950996 8486400 156 150 161 220 1832 1 0 9 6 106 0 0 0 0 0 +968 1783877557650738200 DEPTH 46 1 0.70193272016918162 0.37478705281090291 0 8 0 8 0 0 2854 42 2570 23680196 84480 1285.9750366210938 8.6144999999999996 2421.0446000000002 120960 58315 1 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 9305466924 49471896 1 0 4 3 3 3 3 5898240 4423680 4423680 4180612 4742400 150 150 150 1295 825 0 0 1 0 41 0 0 0 0 0 +969 1783877560132509300 DEPTH 52 1 0.70192785418274894 0.36712095400340705 1 7 1 7 0 0 2437 51 2572 23677404 81600 1291.1675262451172 8.657 2421.2703000000001 120960 56027 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 9309949272 53954244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 153 733 1386 0 0 1 2 48 0 0 0 0 0 +970 1783877562313842000 DEPTH 18 1 0.70178831080793469 0.9293015332197615 1 13 2 12 1 0 448 49 2522 23742695 147840 1291.3137969970703 8.6062999999999992 2125.0999000000002 73920 41087 1 0 0.0013764776509660676 1.1118534372596272 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 9314380620 58385592 1 0 4 2 2 2 6 6144000 2703360 2949120 2951001 8985600 156 150 150 150 1916 0 0 0 0 49 0 0 0 0 1 +971 1783877564730082100 DEPTH 50 1 0.70162126248399326 0.64054514480408853 2 9 2 9 0 0 1080 45 2583 23742611 147840 1267.0033874511719 8.6071000000000009 2359.223 80640 46318 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 9318874188 62879160 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 150 150 150 152 1981 0 0 0 4 41 0 0 0 0 0 +972 1783877568139519600 DEPTH 22 1 0.70134385265501087 0.91396933560476989 3 11 3 11 0 0 489 55 2533 23742672 147840 1282.2220764160156 8.6379000000000001 3353.348 73920 40788 1 0 0.0083569577158233901 0.70301508708995641 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 9323316836 212988 1 0 4 2 2 2 6 6144000 2703360 2949120 2950979 8985600 150 150 150 158 1925 0 0 0 0 55 0 0 0 0 0 +973 1783877568590700400 REFRESH 13 0 0.67584447408925941 0.27342419080068137 1 6 1 6 0 0 4096 28 416 3987620 55200 222.09843444824219 1.421 394.22039999999998 20160 12074 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9324049380 945532 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 28 192 146 0 0 0 8 20 0 0 0 0 0 +974 1783877569020383400 REFRESH 43 0 0.70016069606524234 0.8279386712095399 2 11 2 11 0 0 806 11 419 3988405 56160 230.10406494140625 1.4314 373.029 20160 14684 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9324784984 1681136 1 0 6 3 1 1 5 1474560 737280 245760 245843 1248000 25 25 40 133 196 0 0 1 0 10 0 0 0 0 0 +975 1783877569468789700 REFRESH 57 0 0.70590197203099714 0.27342419080068137 1 6 1 6 0 0 4096 24 413 3987610 55200 224.22119140625 1.4322999999999999 389.91680000000002 20160 12311 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9325514468 2410620 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 28 154 181 0 0 2 5 17 0 0 0 0 0 +976 1783877569861309300 REFRESH 46 0 0.52811479206038214 0.37478705281090291 0 8 0 8 0 0 2857 15 421 3987602 55200 223.52896118164062 1.4208000000000001 390.65809999999999 20160 11844 0 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9326252112 3148264 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 26 206 139 0 0 0 2 13 0 0 0 0 0 +977 1783877570288905000 REFRESH 8 0 0.65277727789392459 0.26575809199318562 2 5 2 5 0 0 2500 19 408 3987599 55200 223.97747802734375 1.4377 371.52089999999998 20160 12079 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9326976496 3872648 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 85 248 0 0 0 3 16 0 0 0 0 0 +978 1783877570654203700 REFRESH 55 0 0.60758946530866664 0.64054514480408853 2 9 2 9 0 0 1109 16 407 3988465 56160 228.41445922851562 1.4307000000000001 363.81209999999999 13440 8142 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9327699860 4596012 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 25 25 25 71 261 0 0 0 2 14 0 0 0 0 0 +979 1783877571023577500 REFRESH 18 0 0.58695262421956229 0.92163543441226559 2 12 2 12 0 0 448 14 414 3988949 56640 223.69996643066406 1.4412 367.60919999999999 13440 9084 0 0 0.0013764776509660676 1.1118534372596272 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9328430364 5326516 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 25 25 313 0 0 0 0 14 0 0 0 0 0 +980 1783877571393027500 REFRESH 3 0 0.60741891516672453 0.64054514480408853 2 9 2 9 1 0 1204 29 407 3988962 56640 218.68646240234375 1.4374 367.82859999999999 13440 7828 0 0 0.0076224078323330153 0.12664224281341724 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9329153728 6049880 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 47 285 0 0 0 2 27 0 0 0 0 1 +981 1783877571810593000 REFRESH 58 0 0.70035051802616866 0.92163543441226559 2 12 2 12 0 0 543 9 409 3988971 56640 225.86778259277344 1.4417 364.97340000000003 13440 9691 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9329879132 6775284 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 25 25 25 29 305 0 0 0 0 9 0 0 0 0 0 +982 1783877572216831000 REFRESH 15 0 0.69474282203992299 0.91396933560476989 3 11 3 11 0 0 322 8 413 3988948 56640 223.067138671875 1.4352 353.53699999999998 6720 4940 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9330608616 7504768 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 39 299 0 0 0 0 8 0 0 0 0 0 +983 1783877572629593400 REFRESH 34 0 0.69819126262268383 0.8356047700170357 1 12 1 12 0 0 778 14 417 3988401 56160 221.53952026367188 1.4387000000000001 360.36919999999998 20160 14847 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9331342180 8238332 1 0 5 3 2 1 5 1228800 737280 491520 245839 1248000 25 25 47 122 198 0 0 0 2 12 0 0 0 0 0 +984 1783877573101744400 REFRESH 52 0 0.59821095632886501 0.36712095400340705 1 7 1 7 0 0 2442 16 423 3987582 55200 222.36058044433594 1.4803999999999999 419.46109999999999 20160 11956 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9332081864 8978016 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 26 167 180 0 0 0 3 13 0 0 0 0 0 +985 1783877573518933000 REFRESH 49 0 0.70108686933647779 0.4454855195911413 3 6 3 6 0 0 1665 13 426 3988001 55680 223.9447021484375 1.4481999999999999 363.50290000000001 20160 12478 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9332824608 9720760 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 241 110 0 0 0 2 11 0 0 0 0 0 +986 1783877574038247300 REFRESH 56 0 0.72073069438711268 0.17206132879045993 2 4 2 4 0 0 4096 9 427 3987653 55200 252.89830017089844 1.4420999999999999 463.3528 20160 12400 0 0 0.0042796943158716228 0.40320142121760472 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9333568372 10464524 1 0 4 3 3 3 3 983040 737280 737280 737530 748800 52 25 25 229 96 2 0 0 1 6 0 0 0 0 0 +987 1783877574532101500 REFRESH 9 0 0.70608650794318217 0.27342419080068137 1 6 1 6 0 0 3394 13 429 3987603 55200 246.81385803222656 1.4427000000000001 437.76990000000001 20160 12572 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 9334314176 11210328 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 26 275 78 0 0 0 2 11 0 0 0 0 0 +988 1783877574984694700 REFRESH 2 0 0.70143141359905803 0.45315161839863699 2 7 2 7 0 0 3898 63 414 3988058 55680 240.22834777832031 1.4595 398.13150000000002 13440 7996 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9335044680 11940832 1 0 4 2 3 3 4 983040 491520 737280 737494 998400 26 25 25 113 225 0 0 0 10 53 0 0 0 0 0 +989 1783877575462858400 REFRESH 11 0 0.69872245058270543 0.37478705281090291 0 8 0 8 0 0 2655 13 419 3988474 56160 239.27090454101562 1.444 424.70620000000002 20160 11835 0 0 0 0.66658507942426259 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9335780284 12676436 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 251 93 0 0 0 2 11 0 0 0 0 0 +990 1783877575925641000 REFRESH 48 0 0.70607784316475408 0.26575809199318562 2 5 2 5 0 0 2666 13 420 3987594 55200 241.18476867675781 1.4482999999999999 409.01229999999998 20160 12043 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9336516908 13413060 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 178 163 0 0 1 5 7 0 0 0 0 0 +991 1783877576362184900 REFRESH 37 0 0.70003840221408831 0.8356047700170357 1 12 1 12 0 0 1049 22 403 3988965 56640 237.58540344238281 1.4348000000000001 375.68220000000002 13440 8912 0 0 0.003341142716810911 0.41090130131646124 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9337236192 14132344 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 45 283 0 0 0 1 21 0 0 0 0 0 +992 1783877576788660400 REFRESH 47 0 0.69995727574449451 0.8279386712095399 2 11 2 11 0 0 702 13 410 3988938 56640 238.65139770507812 1.4339 367.73360000000002 13440 8792 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9337962616 14858768 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 25 32 302 0 0 0 0 13 0 0 0 0 0 +993 1783877577271258100 REFRESH 21 0 0.69841667118277462 0.56218057921635434 0 10 0 10 1 0 2761 21 421 3988486 56160 240.16383361816406 1.4331 424.55270000000002 20160 12506 0 0 0.00024586140467608046 1.0516998700065356 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9338700260 15596412 1 0 4 3 2 2 5 983040 737280 491520 491686 1248000 25 25 25 239 107 0 0 0 9 12 0 0 0 0 1 +994 1783877577708904300 REFRESH 5 0 0.69893843084719365 0.8279386712095399 2 11 2 11 0 0 907 17 417 3988941 56640 237.62022399902344 1.5096000000000001 380.50880000000001 13440 9871 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9339433824 16329976 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 55 287 0 0 0 2 15 0 0 0 0 0 +995 1783877578221450600 REFRESH 38 0 0.70108637178890676 0.55451448040885853 1 9 1 9 0 0 2202 6 420 3988462 56160 240.3450927734375 1.4379999999999999 404.5711 20160 13408 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9340170448 17066600 1 0 4 3 2 2 5 983040 737280 491520 491661 1248000 25 25 25 248 97 0 0 0 2 4 0 0 0 0 0 +996 1783877578697380000 REFRESH 40 0 0.69977653214191204 0.64821124361158422 1 10 1 10 0 0 1848 17 413 3988953 56640 237.66732788085938 1.4393 416.31330000000003 13440 8254 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9340899932 17796084 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 25 33 305 0 0 0 1 16 0 0 0 0 0 +997 1783877579185843800 REFRESH 41 0 0.69839399358077769 0.55451448040885853 1 9 1 9 0 0 2427 25 419 3987999 55680 231.08096313476562 1.5891999999999999 430.12830000000002 20160 12557 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9341635536 18531688 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 28 127 214 0 0 0 9 16 0 0 0 0 0 +998 1783877579601793000 REFRESH 23 0 0.69833555057270436 0.74190800681430991 1 11 1 11 0 0 3525 27 410 3988945 56640 230.06617736816406 1.4328000000000001 359.4409 13440 8206 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9342361960 19258112 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 29 306 0 0 0 0 27 0 0 0 0 0 +999 1783877580082468400 REFRESH 20 0 0.70168945448232822 0.26575809199318562 2 5 2 5 0 0 2221 6 428 3987614 55200 231.48748779296875 1.4390000000000001 426.4323 20160 12131 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9343106744 20002896 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 35 183 160 0 0 0 0 6 0 0 0 0 0 +1000 1783877580522396400 REFRESH 51 0 0.70177319736505872 0.91396933560476989 3 11 3 11 0 0 556 9 398 3988958 56640 227.69664001464844 1.4337 375.19909999999999 13440 9719 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 398 320 0 64 0 9343820928 20717080 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 38 285 0 0 0 0 9 0 0 0 0 0 +1001 1783877581020805100 REFRESH 39 0 0.70161367991372514 0.55451448040885853 1 9 1 9 0 0 1646 6 428 3988961 56640 232.86067199707031 1.4539 442.2475 13440 8092 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9344565712 21461864 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 25 81 271 0 0 0 0 6 0 0 0 0 0 +1002 1783877581485230100 REFRESH 1 0 0.69883580087161423 0.36712095400340705 1 7 1 7 0 0 3463 34 420 3987619 55200 231.38099670410156 1.4331 405.48849999999999 20160 11952 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9345302336 22198488 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 30 179 161 0 0 1 6 27 0 0 0 0 0 +1003 1783877581942623900 REFRESH 32 0 0.70118543750371909 0.4608177172061329 1 8 1 8 0 0 3190 20 420 3988016 55680 231.56643676757812 1.4285000000000001 399.08850000000001 20160 12436 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9346038960 22935112 1 0 4 3 3 2 4 983040 737280 737280 491695 998400 25 25 25 149 196 0 0 0 2 18 0 0 0 0 0 +1004 1783877582408265300 REFRESH 44 0 0.70032574945597514 0.36712095400340705 1 7 1 7 0 0 2418 14 431 3988004 55680 231.80415344238281 1.4260999999999999 408.18720000000002 20160 12411 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 9346786804 23682956 1 0 4 3 3 2 4 983040 737280 737280 491682 998400 25 25 26 231 124 0 0 1 1 12 0 0 0 0 0 +1005 1783877582799974100 REFRESH 50 0 0.69795634182169342 0.64054514480408853 2 9 2 9 0 0 1082 11 408 3988964 56640 227.60047912597656 1.4357 389.82850000000002 13440 8821 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9347511188 24407340 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 25 28 305 0 0 0 3 8 0 0 0 0 0 +1006 1783877583291007800 REFRESH 17 0 0.7063094040362341 0.28109028960817717 0 7 0 7 1 0 4096 17 428 3987598 55200 231.02668762207031 1.4488000000000001 429.91430000000003 20160 11997 0 0 2.3614399206808226e-05 0.063571466830954174 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9348255972 25152124 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 30 254 94 0 0 1 1 15 0 0 0 0 1 +1007 1783877583712582800 REFRESH 29 0 0.70170796410989877 0.82027257240204421 3 10 3 10 0 0 1119 7 421 3988868 56640 228.53733825683594 1.4363999999999999 365.67559999999997 13440 9863 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9348993616 25889768 1 0 6 2 1 1 6 1474560 491520 245760 245826 1497600 30 25 25 58 283 0 0 0 0 7 0 0 0 0 0 +1008 1783877584174924400 REFRESH 31 0 0.8138849373268755 0.26575809199318562 2 5 2 5 0 0 3023 61 416 3988974 56640 230.5771484375 1.4341999999999999 399.46749999999997 13440 10042 0 0 0.047556383555149753 1.3464390602538212 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9349726160 26622312 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 25 25 31 32 303 0 0 0 2 59 0 0 0 0 0 +1009 1783877584544260500 REFRESH 22 0 0.69701743295370333 0.91396933560476989 3 11 3 11 0 0 491 19 410 3988946 56640 230.11225891113281 1.4387000000000001 367.51799999999997 13440 9288 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9350452584 27348736 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 26 25 25 26 308 0 0 0 0 19 0 0 0 0 0 +1010 1783877585006886300 REFRESH 27 0 0.70138206528502978 0.4608177172061329 1 8 1 8 0 0 3969 25 419 3987988 55680 231.2120361328125 2.0396999999999998 401.9787 20160 14671 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9351188188 28084340 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 25 188 156 0 0 0 10 15 0 0 0 0 0 +1011 1783877585489880100 REFRESH 54 0 0.6948903053552955 0.4608177172061329 1 8 1 8 0 0 1253 4 424 3988486 56160 229.07084655761719 1.4378 426.65350000000001 20160 13226 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9351928892 28825044 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 25 254 95 0 0 0 0 4 0 0 0 0 0 +1012 1783877585912219900 REFRESH 4 0 0.70034752714433934 0.8356047700170357 1 12 1 12 0 0 288 5 418 3988940 56640 227.43653869628906 1.4287000000000001 363.77190000000002 6720 4922 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9352663476 29559628 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 25 25 25 36 307 0 0 0 0 5 0 0 0 0 0 +1013 1783877586324168500 REFRESH 6 0 0.6974651943075334 0.91396933560476989 3 11 3 11 0 0 383 5 415 3988933 56640 228.0396728515625 1.4315 356.12009999999998 6720 4891 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9353395000 30291152 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 26 25 25 32 307 0 0 0 0 5 0 0 0 0 0 +1014 1783877586742008800 REFRESH 19 0 0.7003877737754578 0.8279386712095399 2 11 2 11 1 0 905 17 409 3988957 56640 227.1192626953125 1.4238 361.76909999999998 13440 8833 0 0 0.030707499926226556 0.38856309740227091 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9354120404 31016556 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 40 294 0 0 0 0 17 0 0 0 0 1 +1015 1783877587194927400 REFRESH 28 0 0.69870610816244139 0.8279386712095399 2 11 2 11 0 0 663 6 408 3988945 56640 231.40249633789062 1.4338 394.40429999999998 13440 8401 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9354844788 31740940 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 25 26 306 0 0 0 0 6 0 0 0 0 0 +1016 1783877587767143600 REFRESH 26 0 0.70103413122576752 0.55451448040885853 1 9 1 9 0 0 2127 19 426 3987993 55680 229.68934631347656 1.4787999999999999 440.25599999999997 20160 12274 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9355587532 32483684 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 26 236 114 0 0 0 2 17 0 0 0 0 0 +1017 1783877588278699600 REFRESH 42 0 0.87123145016169401 0 0 4 0 4 0 0 4096 8 422 3987737 55200 233.28767395019531 1.8089 453.60149999999999 20160 13343 0 0 0 0.0064271853280971313 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9356326196 33222348 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 51 25 37 232 77 0 0 0 0 8 0 0 0 0 0 +1018 1783877588700392300 REFRESH 36 0 0.70039658180345665 0.82027257240204421 3 10 3 10 0 0 1306 21 409 3988955 56640 227.54508972167969 1.4365000000000001 365.61410000000001 13440 8456 0 0 0.083980012303904839 0.13635597639476177 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9357051600 33947752 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 25 39 294 0 0 0 0 21 0 0 0 0 0 +1019 1783877589140391800 REFRESH 10 0 0.70145286666781548 0.64821124361158422 1 10 1 10 0 0 1216 28 417 3988944 56640 229.90232849121094 1.4441999999999999 381.7586 13440 8145 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9357785164 34681316 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 44 298 0 0 0 2 26 0 0 0 0 0 +1020 1783877589584794500 REFRESH 33 0 0.69911879817706279 0.36712095400340705 1 7 1 7 0 0 3692 47 412 3987609 55200 233.65037536621094 1.4892000000000001 385.1617 20160 12043 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9358513628 35409780 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 25 78 259 0 0 0 3 44 0 0 0 0 0 +1021 1783877590046760000 REFRESH 30 0 0.70144933230001894 0.4608177172061329 1 8 1 8 0 0 3819 53 414 3988078 55680 243.00338745117188 1.4331 402.7124 13440 8174 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9359244132 36140284 1 0 4 2 3 3 4 983040 491520 737280 737514 998400 26 25 25 151 187 0 0 0 12 41 0 0 0 0 0 +1022 1783877590531265000 REFRESH 7 0 0.70047505940031607 0.8356047700170357 1 12 1 12 1 0 912 24 405 3988964 56640 237.31712341308594 1.4355 374.3141 13440 8844 0 0 0.00025577824422975086 0.7187818504182335 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 9359965456 36861608 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 32 298 0 0 0 1 23 0 0 0 0 1 +1023 1783877590960511300 REFRESH 16 0 0.69909413040223312 0.3594548551959113 2 6 2 6 0 0 3536 21 420 3987584 55200 223.67744445800781 1.4192 370.03739999999999 20160 13935 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9360702080 37598232 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 25 112 233 0 0 0 3 18 0 0 0 0 0 +1024 1783877591425000700 REFRESH 25 0 0.7015701119603146 0.4608177172061329 1 8 1 8 0 0 2475 23 414 3988004 55680 225.17759704589844 1.4784999999999999 406.24950000000001 20160 13728 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9361432584 38328736 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 26 144 194 0 0 0 6 17 0 0 0 0 0 +1025 1783877591865968600 REFRESH 45 0 0.70157207841839031 0.45315161839863699 2 7 2 7 0 0 2286 29 413 3987994 55680 223.38560485839844 1.4398 386.68270000000001 20160 13817 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9362162068 39058220 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 158 180 0 0 0 5 24 0 0 0 0 0 +1026 1783877592283952900 REFRESH 14 0 0.69810786606629505 0.65587734241908002 0 11 0 11 0 0 1797 64 409 3988486 56160 223.27500915527344 1.4280999999999999 359.88940000000002 13440 8089 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9362887472 39783624 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 26 25 25 120 213 0 0 0 31 33 0 0 0 0 0 +1027 1783877592755337200 REFRESH 12 0 0.71630881250423317 0.54684838160136284 2 8 2 8 0 0 1938 21 422 3987993 55680 221.84959411621094 1.4164000000000001 367.29820000000001 20160 14035 0 0 0.11618525878432012 0.23319651143523057 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9363626136 40522288 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 28 89 255 0 0 4 2 15 0 0 0 0 0 +1028 1783877593181036500 REFRESH 0 0 0.69692225972146205 0.8279386712095399 2 11 2 11 0 0 927 11 414 3988898 56640 231.63699340820312 1.4314 374.16410000000002 13440 9007 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9364356640 41252792 1 0 5 2 2 1 6 1228800 491520 491520 245858 1497600 26 25 25 39 299 0 0 0 0 11 0 0 0 0 0 +1029 1783877593605004500 REFRESH 24 0 0.69786484670147264 1 4 11 4 11 0 0 498 13 393 3988964 56640 230.07334899902344 1.4458 369.22730000000001 13440 9256 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 393 320 0 64 0 9365065724 41961876 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 25 33 285 0 0 0 0 13 0 0 0 0 0 +1030 1783877594039644300 REFRESH 35 0 0.6994011226312522 0.8279386712095399 2 11 2 11 0 0 1136 17 403 3988960 56640 234.8800048828125 1.4265000000000001 382.30369999999999 13440 9855 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9365785008 42681160 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 31 297 0 0 0 0 17 0 0 0 0 0 +1031 1783877594520618100 REFRESH 53 0 0.69922253212670937 0.37478705281090291 0 8 0 8 0 0 4096 42 413 3987592 55200 239.32211303710938 1.4322999999999999 420.73930000000001 20160 12618 0 0 0 0.20923722992907676 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9366514492 43410644 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 149 189 0 0 0 5 37 0 0 0 0 0 +1032 1783877597086418300 DEPTH 31 1 0.79036648354404226 0.26575809199318562 2 5 2 5 0 0 3031 54 2582 23742668 147840 1350.1309051513672 8.7550000000000008 2506.567 80640 46293 1 0 0.047556383555149753 1.3464390602538212 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 9371007040 47903192 1 0 4 2 2 2 6 5898240 2949120 2949120 2950924 8985600 150 150 179 176 1927 0 1 0 0 53 0 0 0 0 0 +1033 1783877599718473500 DEPTH 42 1 0.77795067890931724 0 0 4 0 4 0 0 4096 10 2591 23678081 81600 1363.6044616699219 8.5929000000000002 2578.5504999999998 120960 65281 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 9375508768 52404920 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 273 150 201 1476 491 0 0 0 0 10 0 0 0 0 0 +1034 1783877601979124700 DEPTH 18 1 0.73807090801088004 0.92163543441226559 2 12 2 12 0 0 453 52 2524 23742609 147840 1403.199462890625 8.6988000000000003 2258.9769000000001 80640 44392 1 0 0.0013764776509660676 1.1118534372596272 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 9379942156 56838308 1 0 4 2 2 2 6 5898240 2949120 2949120 2950912 8985600 156 150 150 150 1918 0 0 0 0 52 0 0 0 0 0 +1035 1783877604709767700 DEPTH 56 1 0.71705522383162745 0.17206132879045993 2 4 2 4 0 0 4096 66 2593 23677519 81600 1446.2076110839844 8.6457999999999995 2662.6550999999999 120960 58491 1 0 0.0042796943158716228 0.40320142121760472 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 9384445924 61342076 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 290 150 150 1227 776 16 0 0 3 47 0 0 0 0 0 +1036 1783877607454288300 DEPTH 9 1 0.70313299811641206 0.27342419080068137 1 6 1 6 0 0 3405 39 2607 23677462 81600 1468.7745361328125 8.7279999999999998 2680.1678000000002 120960 58407 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2607 1920 0 384 1 9388963972 65860124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 156 1616 535 0 0 4 1 34 0 0 0 0 0 +1037 1783877611284788800 DEPTH 57 1 0.70312821322272101 0.27342419080068137 1 6 1 6 0 0 4096 56 2534 23677421 81600 1439.1021575927734 8.6737000000000002 3767.4962999999998 120960 57564 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 9393407640 3195184 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 150 150 162 639 1433 0 0 2 1 53 0 0 0 0 0 +1038 1783877613982372100 DEPTH 17 1 0.70312898885825859 0.28109028960817717 0 7 0 7 0 0 4096 42 2580 23677368 81600 1437.6120300292969 8.6892999999999994 2636.3663999999999 120960 56880 1 0 2.3614399206808226e-05 0.063571466830954174 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 9397898148 7685692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426376 4492800 150 150 178 1004 1098 0 0 4 0 38 0 0 0 0 0 +1039 1783877616654070200 DEPTH 48 1 0.70312725555134925 0.26575809199318562 2 5 2 5 0 0 2673 47 2577 23677488 81600 1376.6617431640625 8.6821999999999999 2547.0736999999999 120960 56476 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 9402385596 12173140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426499 4492800 150 150 173 670 1434 0 0 4 0 43 0 0 0 0 0 +1040 1783877619412258700 DEPTH 13 1 0.70314021391899506 0.27342419080068137 1 6 1 6 0 0 4096 62 2558 23677429 81600 1408.0061798095703 8.8163999999999998 2642.1260000000002 120960 56964 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9406853664 16641208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 162 677 1419 0 0 1 1 60 0 0 0 0 0 +1041 1783877621822785700 DEPTH 8 1 0.70034303070994253 0.26575809199318562 2 5 2 5 0 0 2511 77 2506 23677506 81600 1365.3587036132812 8.6044999999999998 2351.8879000000002 120960 58788 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 9411268692 21056236 1 0 4 3 3 3 3 5898240 4423680 4423680 4426558 4492800 150 150 152 308 1746 0 2 0 1 74 0 0 0 0 0 +1042 1783877624435420100 DEPTH 2 1 0.69788985355949174 0.45315161839863699 2 7 2 7 0 0 3914 83 2555 23699431 103680 1350.3818511962891 8.6187000000000005 2488.4893999999999 80640 38808 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9415733700 25521244 1 0 4 2 3 3 4 5898240 2949120 4423680 4426427 5990400 156 150 150 486 1613 0 0 0 1 82 0 0 0 0 0 +1043 1783877626742750600 DEPTH 49 1 0.69763416431457115 0.4454855195911413 3 6 3 6 0 0 1675 58 2573 23698470 103680 1357.9815063476562 9.0124999999999993 2251.0095999999999 120960 62526 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 9420217068 30004612 1 0 4 3 3 2 4 5898240 4423680 4423680 2950932 5990400 150 150 150 1076 1047 0 0 2 3 53 0 0 0 0 0 +1044 1783877629325281400 DEPTH 27 1 0.69758055861768931 0.4608177172061329 1 8 1 8 0 0 3975 48 2560 23698491 103680 1353.1997375488281 8.6054999999999993 2525.1975000000002 120960 70706 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 9424687176 34474720 1 0 4 3 3 2 4 5898240 4423680 4423680 2950951 5990400 150 150 150 592 1518 0 0 2 1 45 0 0 0 0 0 +1045 1783877631843743900 DEPTH 32 1 0.69751038027664314 0.4608177172061329 1 8 1 8 0 0 3199 50 2561 23698484 103680 1330.3144226074219 8.6230000000000011 2457.8593000000001 120960 62415 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 9429158304 38945848 1 0 4 3 3 2 4 5898240 4423680 4423680 2950944 5990400 150 150 150 409 1702 0 0 0 2 48 0 0 0 0 0 +1046 1783877634409243300 DEPTH 44 1 0.6974536718099289 0.36712095400340705 1 7 1 7 0 0 2424 36 2636 23680140 84480 1334.2586822509766 8.6136999999999997 2504.5650000000001 120960 60570 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2636 1920 0 384 1 9433705932 43493476 1 0 4 3 3 3 3 5898240 4423680 4423680 4180596 4742400 150 150 150 1339 847 0 0 1 0 35 0 0 0 0 0 +1047 1783877636680017900 DEPTH 43 1 0.69650925742966985 0.8279386712095399 2 11 2 11 0 0 811 45 2573 23704323 110400 1329.1970672607422 8.6844999999999999 2210.1315 127680 79557 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 9438189300 47976844 1 0 6 3 2 1 4 8847360 4669440 2211840 1475509 6489600 150 150 170 744 1359 0 0 4 1 40 0 0 0 0 0 +1048 1783877639208265100 DEPTH 42 1 0.76683894113562967 0 0 4 0 4 0 0 4096 17 2587 23678072 81600 1332.019287109375 8.5693999999999999 2526.9124000000002 120960 53780 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 9442686948 52474492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426346 4492800 251 150 188 1494 504 0 0 0 0 17 0 0 0 0 0 +1049 1783877641681948000 DEPTH 31 1 0.70786598039656512 0.26575809199318562 2 5 2 5 1 0 3037 57 2609 23742771 147840 1325.9871215820312 8.5866999999999987 2472.5140000000001 80640 38359 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2609 1920 0 384 1 9447207036 56994580 1 0 4 2 2 2 6 5898240 2949120 2949120 2951043 8985600 150 150 175 174 1960 0 0 0 3 54 0 0 0 0 1 +1050 1783877644200083400 DEPTH 30 1 0.69758052037669804 0.4608177172061329 1 8 1 8 1 0 3826 46 2525 23699516 103680 1334.0379333496094 8.5792999999999999 2457.3935999999999 80640 39073 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 9451641444 61428988 1 0 4 2 3 3 4 5898240 2949120 4423680 4426531 5990400 156 150 150 457 1612 0 0 0 7 39 0 0 0 0 1 +1051 1783877646473240900 DEPTH 10 1 0.69723771288340552 0.64821124361158422 1 10 1 10 0 0 1223 47 2554 23731151 136320 1322.2840270996094 8.6189 2219.4513000000002 80640 40016 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 9456105432 65892976 1 0 4 2 3 2 5 5898240 2949120 3686400 2950959 8236800 150 150 150 383 1721 0 0 0 0 47 0 0 0 0 0 +1052 1783877650020188700 DEPTH 51 1 0.69637665499038293 0.91396933560476989 3 11 3 11 0 0 557 22 2486 23742631 147840 1317.6230010986328 9.3742999999999999 3347.2516000000001 80640 46808 1 0 0.04334156167556856 0.2777547488783888 4096 2048 384 12 96 360 72 24 0 2486 1920 0 384 1 9460500140 3178864 1 0 4 2 2 2 6 5898240 2949120 2949120 2950935 8985600 150 150 150 171 1865 0 0 0 0 22 0 0 0 0 0 +1053 1783877652526591200 DEPTH 40 1 0.69608239143180839 0.64821124361158422 1 10 1 10 0 0 1860 36 2593 23731134 136320 1317.1363830566406 8.5767999999999986 2451.1439 80640 39981 1 0 0.080761468709365639 0.52703851695867954 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 9465003908 7682632 1 0 4 2 3 2 5 5898240 2949120 3686400 2950936 8236800 150 150 150 348 1795 0 0 2 5 29 0 0 0 0 0 +1054 1783877655054870600 DEPTH 26 1 0.69605321592311076 0.55451448040885853 1 9 1 9 0 0 2138 51 2599 23680125 84480 1326.95556640625 8.6142000000000003 2463.1988999999999 120960 59928 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 9469513796 12192520 1 0 4 3 3 3 3 5898240 4423680 4423680 4180577 4742400 150 150 156 1319 824 0 0 4 7 40 0 0 0 0 0 +1055 1783877657580955300 DEPTH 11 1 0.69604612547331501 0.37478705281090291 0 8 0 8 1 0 2670 52 2532 23702455 107520 1319.910400390625 8.5913000000000004 2465.1374999999998 120960 56855 1 0 0 0.66249085669187513 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 9473955344 16634068 1 0 4 3 3 2 4 5898240 4423680 4177920 2950959 6240000 150 150 150 923 1159 0 1 7 0 44 0 0 0 0 3 +1056 1783877659986504300 DEPTH 12 1 0.70941743193636198 0.54684838160136284 2 8 2 8 0 0 1972 99 2569 23698510 103680 1325.7881622314453 8.5653000000000006 2345.9445999999998 120960 68510 1 1 0.11618525878432012 0.23319651143523057 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 9478434632 21113356 1 0 4 3 3 2 4 5898240 4423680 4423680 2950930 5990400 150 150 164 302 1803 0 0 13 0 85 0 0 0 0 0 +1057 1783877662227512600 DEPTH 18 1 0.70933934320095404 0.92163543441226559 2 12 2 12 0 0 457 61 2541 23742674 147840 1327.1852111816406 8.5706000000000007 2182.0250000000001 80640 36716 1 0 0.0013764776509660676 1.1118534372596272 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 9482885360 25564084 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 156 150 150 150 1935 0 0 0 0 61 0 0 0 0 0 +1058 1783877664819849200 DEPTH 25 1 0.69776164935055296 0.4608177172061329 1 8 1 8 0 0 2479 30 2546 23698501 103680 1339.241455078125 8.6066000000000003 2526.6734000000001 120960 68389 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 9487341188 30019912 1 0 4 3 3 2 4 5898240 4423680 4423680 2950952 5990400 150 150 157 491 1598 0 0 0 1 29 0 0 0 0 0 +1059 1783877667426234800 DEPTH 45 1 0.69776426264671132 0.45315161839863699 2 7 2 7 0 0 2292 45 2579 23698577 103680 1372.5286407470703 8.8079999999999998 2544.3858 120960 68083 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 9491830676 34509400 1 0 4 3 3 2 4 5898240 4423680 4423680 2951035 5990400 150 150 150 410 1719 0 0 0 0 45 0 0 0 0 0 +1060 1783877669663258500 DEPTH 19 1 0.6960467413777337 0.8279386712095399 2 11 2 11 1 0 911 34 2555 23742652 147840 1342.3564910888672 8.6083999999999996 2183.6822000000002 80640 44248 1 0 0.030726597407889203 0.38680088795667933 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9496295684 38974408 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 150 150 150 171 1934 2 0 0 1 31 0 0 0 0 1 +1061 1783877671806029900 DEPTH 37 1 0.69605974172010165 0.8356047700170357 1 12 1 12 1 0 1051 30 2558 23742598 147840 1284.2833862304688 8.5993999999999993 2090.8247999999999 80640 44913 1 0 0.0035069413192741618 0.38769601964999223 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9500763752 43442476 1 0 4 2 2 2 6 5898240 2949120 2949120 2950901 8985600 150 150 150 182 1926 0 0 0 7 23 0 0 0 0 1 +1062 1783877673904414000 DEPTH 7 1 0.69606496822805519 0.8356047700170357 1 12 1 12 1 0 915 47 2527 23742636 147840 1273.906982421875 8.583400000000001 2048.6514999999999 80640 44308 1 0 0.00024294576435012201 0.71873422066324466 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 9505200200 47878924 1 0 4 2 2 2 6 5898240 2949120 2949120 2950938 8985600 150 150 150 156 1921 0 0 0 0 47 0 0 0 0 1 +1063 1783877676017790100 DEPTH 36 1 0.69602279369792985 0.82027257240204421 3 10 3 10 0 0 1309 34 2553 23742797 147840 1275.9200744628906 8.6117000000000008 2060.7822000000001 80640 41731 1 0 0.083980012303904839 0.13635597639476177 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 9509663168 52341892 1 0 4 2 2 2 6 5898240 2949120 2949120 2951030 8985600 156 150 150 162 1935 0 0 0 4 30 0 0 0 0 0 +1064 1783877676463711400 REFRESH 44 0 0.62430305435792466 0.36712095400340705 1 7 1 7 0 0 2457 66 419 3987604 55200 223.35200500488281 1.4327000000000001 387.96550000000002 20160 11813 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9510398772 53077496 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 26 89 254 0 0 1 11 54 0 0 0 0 0 +1065 1783877676882096000 REFRESH 23 0 0.69451759496124721 0.74190800681430991 1 11 1 11 0 0 3532 18 408 3988968 56640 227.2491455078125 1.4376 362.15350000000001 13440 8132 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9511123156 53801880 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 29 304 0 0 0 0 18 0 0 0 0 0 +1066 1783877677368145700 REFRESH 32 0 0.65366754495923307 0.4608177172061329 1 8 1 8 0 0 3209 30 416 3987982 55680 260.031494140625 1.4399 427.899 20160 11830 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9511855700 54534424 1 0 4 3 3 2 4 983040 737280 737280 491660 998400 25 25 25 180 161 0 0 0 11 19 0 0 0 0 0 +1067 1783877677859681300 REFRESH 56 0 0.71433659713330511 0.17206132879045993 2 4 2 4 0 0 4096 18 428 3987623 55200 237.88758850097656 1.4439 433.42059999999998 20160 12287 0 0 0.0042796943158716228 0.40320142121760472 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9512600484 55279208 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 51 25 25 233 94 2 0 0 3 13 0 0 0 0 0 +1068 1783877678338220300 REFRESH 39 0 0.69442187297700364 0.55451448040885853 1 9 1 9 0 0 1649 8 421 3988969 56640 239.21049499511719 1.4278999999999999 426.20229999999998 13440 8101 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9513338128 56016852 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 25 82 263 0 0 0 0 8 0 0 0 0 0 +1069 1783877678760059000 REFRESH 15 0 0.69017762138914063 0.91396933560476989 3 11 3 11 0 0 322 8 412 3988971 56640 222.81318664550781 1.4279999999999999 360.07999999999998 6720 4840 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9514066592 56745316 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 25 25 25 40 297 0 0 0 0 8 0 0 0 0 0 +1070 1783877679177328700 REFRESH 37 0 0.53135521184558498 0.8356047700170357 1 12 1 12 1 0 1055 20 406 3988960 56640 278.98675537109375 1.4339999999999999 415.73590000000002 13440 8255 0 0 0.0038464816791220339 0.35921236575616428 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9514788936 57467660 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 43 288 0 0 0 2 18 0 0 0 0 1 +1071 1783877679620469100 REFRESH 45 0 0.56378771633641311 0.45315161839863699 2 7 2 7 0 0 2297 27 420 3988014 55680 278.58023071289062 1.4259999999999999 441.44639999999998 20160 12592 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9515525560 58204284 1 0 4 3 3 2 4 983040 737280 737280 491694 998400 25 25 25 183 162 0 0 0 9 18 0 0 0 0 0 +1072 1783877680133908600 REFRESH 46 0 0.69560967728319634 0.37478705281090291 0 8 0 8 0 0 2862 9 413 3987615 55200 268.9884033203125 1.4373 459.22800000000001 20160 11955 0 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9516255044 58933768 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 26 220 117 0 0 0 0 9 0 0 0 0 0 +1073 1783877680590387900 REFRESH 4 0 0.69209060364680042 0.8356047700170357 1 12 1 12 0 0 288 6 422 3988942 56640 267.53945922851562 1.4277 404.10340000000002 6720 4798 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9516993708 59672432 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 25 25 25 34 313 0 0 0 0 6 0 0 0 0 0 +1074 1783877681093735600 REFRESH 52 0 0.69562007090988232 0.36712095400340705 1 7 1 7 0 0 2444 16 424 3987597 55200 270.45681762695312 1.4505999999999999 446.48450000000003 20160 12024 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9517734412 60413136 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 26 172 176 0 0 0 1 15 0 0 0 0 0 +1075 1783877681541535800 REFRESH 50 0 0.69494279158277217 0.64054514480408853 2 9 2 9 0 0 1083 9 414 3988958 56640 234.90969848632812 1.4430000000000001 392.3467 13440 8680 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9518464916 61143640 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 28 311 0 0 0 2 7 0 0 0 0 0 +1076 1783877682011024000 REFRESH 13 0 0.70009799744700563 0.27342419080068137 1 6 1 6 0 0 4096 35 421 3987662 55200 236.91468811035156 1.4374 414.7217 20160 12090 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9519202560 61881284 1 0 4 3 3 3 3 983040 737280 737280 737549 748800 25 25 28 199 144 0 0 1 6 28 0 0 0 0 0 +1077 1783877682435712700 REFRESH 47 0 0.69621173488348487 0.8279386712095399 2 11 2 11 0 0 704 17 409 3988941 56640 233.97171020507812 1.4273 367.8646 13440 8740 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9519927964 62606688 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 25 31 302 0 0 0 0 17 0 0 0 0 0 +1078 1783877682858054600 REFRESH 34 0 0.69476861993305672 0.8356047700170357 1 12 1 12 0 0 785 29 411 3988011 55680 235.7442626953125 1.4447000000000001 368.12169999999998 20160 14649 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9520655408 63334132 1 0 5 3 2 2 4 1228800 737280 491520 491690 998400 25 25 64 40 257 0 0 2 2 25 0 0 0 0 0 +1079 1783877683273938300 REFRESH 11 0 0.68285962663886068 0.37478705281090291 0 8 0 8 0 0 2674 14 416 3988498 56160 237.60911560058594 1.4328000000000001 414.03960000000001 20160 11835 0 0 0 0.66249085669187513 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9521387952 64066676 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 243 98 0 1 0 4 9 0 0 0 0 0 +1080 1783877683743148200 REFRESH 48 0 0.7001476873235275 0.26575809199318562 2 5 2 5 0 0 2674 14 421 3987601 55200 236.51533508300781 1.4423999999999999 410.80119999999999 20160 12130 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9522125596 64804320 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 30 192 149 0 0 1 4 9 0 0 0 0 0 +1081 1783877684186876500 REFRESH 22 0 0.69340836761212721 0.91396933560476989 3 11 3 11 0 0 491 18 412 3988963 56640 243.14163208007812 1.4276 390.10149999999999 13440 9016 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9522854060 65532784 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 27 310 0 0 0 0 18 0 0 0 0 0 +1082 1783877684620064100 REFRESH 58 0 0.6958395080816806 0.92163543441226559 2 12 2 12 0 0 544 11 407 3988963 56640 240.62361145019531 1.4701 375.92189999999999 13440 9650 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9523577424 66256148 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 30 302 0 0 0 0 11 0 0 0 0 0 +1083 1783877685105567100 REFRESH 53 0 0.69605855365974856 0.37478705281090291 0 8 0 8 0 0 4096 31 407 3987580 55200 244.5086669921875 1.4377 420.05090000000001 20160 12608 0 0 0 0.20923722992907676 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9524300788 66979512 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 25 171 161 0 0 0 6 25 0 0 0 0 0 +1084 1783877686684726000 REFRESH 54 0 0.68687532256330308 0.4608177172061329 1 8 1 8 0 0 1255 4 423 3988474 56160 221.47276306152344 1.4227000000000001 1525.1382000000001 20160 13057 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9525040552 610444 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 258 90 0 0 0 0 4 0 0 0 0 0 +1085 1783877687123635900 REFRESH 10 0 0.69321024045120483 0.64821124361158422 1 10 1 10 0 0 1228 18 421 3988492 56160 222.55104064941406 1.4363999999999999 377.6773 13440 7868 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9525778196 1348088 1 0 4 2 3 2 5 983040 491520 737280 491687 1248000 25 25 26 106 239 0 0 0 2 16 0 0 0 0 0 +1086 1783877687675062900 REFRESH 17 0 0.70023519716816729 0.28109028960817717 0 7 0 7 0 0 4096 7 426 3987634 55200 223.02928161621094 1.4409000000000001 435.9871 20160 12026 0 0 2.3614399206808226e-05 0.063571466830954174 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9526520940 2090832 1 0 4 3 3 3 3 983040 737280 737280 737533 748800 25 25 31 261 84 0 0 1 0 6 0 0 0 0 0 +1087 1783877688042755200 REFRESH 12 0 0.70299982447000775 0.54684838160136284 2 8 2 8 0 0 1972 8 424 3987999 55680 223.20947265625 1.4317 366.1721 20160 12829 0 0 0.11618525878432012 0.23319651143523057 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9527261644 2831536 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 40 98 236 0 0 1 0 7 0 0 0 0 0 +1088 1783877688513127900 REFRESH 40 0 0.69218632122467594 0.64821124361158422 1 10 1 10 0 0 1865 18 418 3988482 56160 220.88192749023438 1.4282999999999999 410.02600000000001 13440 7905 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9527996228 3566120 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 116 227 0 0 0 4 14 0 0 0 0 0 +1089 1783877688950454600 REFRESH 43 0 0.69250168219829211 0.8279386712095399 2 11 2 11 0 0 813 14 418 3987925 55680 224.31333923339844 1.4408000000000001 377.61509999999998 26880 18993 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9528730812 4300704 1 0 6 4 1 1 4 1474560 983040 245760 245844 998400 25 28 79 113 173 0 0 1 0 13 0 0 0 0 0 +1090 1783877689413488100 REFRESH 8 0 0.69774219720542563 0.26575809199318562 2 5 2 5 0 0 2512 13 407 3987629 55200 224.38092041015625 1.4468000000000001 404.26920000000001 20160 11899 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9529454176 5024068 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 26 113 218 0 0 0 1 12 0 0 0 0 0 +1091 1783877689818014300 REFRESH 28 0 0.69096119809003265 0.8279386712095399 2 11 2 11 0 0 665 8 403 3988946 56640 222.07180786132812 1.4285000000000001 349.7355 13440 8491 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9530173460 5743352 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 25 26 301 0 0 0 0 8 0 0 0 0 0 +1092 1783877690332013600 REFRESH 33 0 0.69621779660258865 0.36712095400340705 1 7 1 7 0 0 3705 37 409 3987607 55200 224.92568969726562 1.4238 381.34140000000002 20160 11923 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9530898864 6468756 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 106 228 0 0 0 5 32 0 0 0 0 0 +1093 1783877690769457200 REFRESH 16 0 0.69617126966576026 0.3594548551959113 2 6 2 6 0 0 3547 31 414 3987598 55200 224.80076599121094 1.4303999999999999 375.50830000000002 20160 13918 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9531629368 7199260 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 111 228 0 0 0 0 31 0 0 0 0 0 +1094 1783877691237878100 REFRESH 41 0 0.69534296311296173 0.55451448040885853 1 9 1 9 0 0 2435 28 421 3988002 55680 223.57708740234375 1.4565999999999999 411.48489999999998 20160 12454 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9532367012 7936904 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 31 158 182 1 0 0 7 20 0 0 0 0 0 +1095 1783877691671505200 REFRESH 3 0 0.69449437696444338 0.64054514480408853 2 9 2 9 0 0 1209 23 405 3988970 56640 232.53094482421875 1.4348000000000001 378.16719999999998 13440 7918 0 0 0.0076224078323330153 0.12664224281341724 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 9533088336 8658228 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 46 284 0 0 0 0 23 0 0 0 0 0 +1096 1783877692085779600 REFRESH 51 0 0.69214290791772859 0.91396933560476989 3 11 3 11 0 0 559 17 395 3988962 56640 233.55699157714844 1.4435 360.54860000000002 13440 8781 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 395 320 0 64 0 9533799460 9369352 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 25 43 277 0 0 0 1 16 0 0 0 0 0 +1097 1783877692528686800 REFRESH 27 0 0.69416043576385889 0.4608177172061329 1 8 1 8 0 0 3983 32 421 3987980 55680 236.88499450683594 1.4229000000000001 389.63630000000001 20160 13800 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9534537104 10106996 1 0 4 3 3 2 4 983040 737280 737280 491657 998400 25 25 26 229 116 0 0 0 16 16 0 0 0 0 0 +1098 1783877693006651800 REFRESH 21 0 0.69548462819150969 0.56218057921635434 0 10 0 10 0 0 2765 17 423 3988463 56160 234.534912109375 1.5426 416.15089999999998 20160 12295 0 0 0.00024586140467608046 1.0516998700065356 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9535276788 10846680 1 0 4 3 2 2 5 983040 737280 491520 491661 1248000 25 25 25 226 122 0 0 0 1 16 0 0 0 0 0 +1099 1783877693415933400 REFRESH 5 0 0.69559081402340128 0.8279386712095399 2 11 2 11 0 0 910 23 418 3988951 56640 221.01811218261719 1.4411 357.68540000000002 13440 9684 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9536011372 11581264 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 60 283 0 0 1 2 20 0 0 0 0 0 +1100 1783877693856056800 REFRESH 57 0 0.70041831529024923 0.27342419080068137 1 6 1 6 0 0 4096 35 414 3987611 55200 223.22291564941406 1.4265000000000001 386.99090000000001 20160 12239 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9536741876 12311768 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 28 147 189 0 0 0 5 30 0 0 0 0 0 +1101 1783877694305687800 REFRESH 2 0 0.69451730676030965 0.45315161839863699 2 7 2 7 0 0 3929 32 418 3988049 55680 240.75776672363281 1.4283999999999999 396.32339999999999 13440 8081 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9537476460 13046352 1 0 4 2 3 3 4 983040 491520 737280 737485 998400 26 25 25 137 205 0 0 0 7 25 0 0 0 0 0 +1102 1783877694722185100 REFRESH 26 0 0.69145580428272968 0.55451448040885853 1 9 1 9 0 0 2145 27 419 3987597 55200 222.19468688964844 1.4235 363.06169999999997 20160 11940 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9538212064 13781956 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 36 147 186 0 0 1 6 20 0 0 0 0 0 +1103 1783877695125249300 REFRESH 18 0 0.72154755285370076 0.92163543441226559 2 12 2 12 0 0 457 14 411 3988986 56640 222.49165344238281 1.9044000000000001 351.08229999999998 13440 8204 0 0 0.0013764776509660676 1.1118534372596272 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9538939508 14509400 1 0 4 2 2 2 6 983040 491520 491520 491704 1497600 26 25 25 25 310 0 0 0 0 14 0 0 0 0 0 +1104 1783877695537391500 REFRESH 55 0 0.69479590406681002 0.64054514480408853 2 9 2 9 0 0 1111 23 406 3988471 56160 221.98988342285156 1.421 359.52460000000002 13440 8169 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9539661852 15231744 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 25 25 25 99 232 0 0 0 5 18 0 0 0 0 0 +1105 1783877695997135200 REFRESH 1 0 0.69635516286489829 0.36712095400340705 1 7 1 7 0 0 3476 39 423 3987598 55200 243.58604431152344 1.4306000000000001 405.4547 20160 11993 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9540401536 15971428 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 138 206 0 0 1 1 37 0 0 0 0 0 +1106 1783877696409246200 REFRESH 35 0 0.69559325528696214 0.8279386712095399 2 11 2 11 0 0 1137 13 403 3988960 56640 220.25932312011719 1.4401999999999999 355.65069999999997 13440 9685 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9541120820 16690712 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 31 297 0 0 0 0 13 0 0 0 0 0 +1107 1783877696766032000 REFRESH 7 0 0.69186284342958904 0.8356047700170357 1 12 1 12 0 0 919 22 406 3988968 56640 219.53330993652344 1.4403999999999999 355.02300000000002 13440 8112 0 0 0.00024294576435012201 0.71873422066324466 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9541843164 17413056 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 32 299 0 0 0 0 22 0 0 0 0 0 +1108 1783877697201392200 REFRESH 38 0 0.69429701206922467 0.55451448040885853 1 9 1 9 0 0 2202 6 421 3988488 56160 222.42509460449219 1.4381999999999999 382.72140000000002 20160 13235 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9542580808 18150700 1 0 4 3 2 2 5 983040 737280 491520 491688 1248000 25 25 25 251 95 0 0 0 1 5 0 0 0 0 0 +1109 1783877697663360200 REFRESH 6 0 0.68977772700356399 0.91396933560476989 3 11 3 11 0 0 383 7 416 3988960 56640 219.46368408203125 1.4439 346.84910000000002 6720 4837 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9543313352 18883244 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 26 25 25 32 308 0 0 0 0 7 0 0 0 0 0 +1110 1783877698014743400 REFRESH 19 0 0.69191874561665623 0.8279386712095399 2 11 2 11 0 0 913 14 409 3988963 56640 219.94189453125 1.4345000000000001 349.81450000000001 13440 8191 0 0 0.030726597407889203 0.38680088795667933 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9544038756 19608648 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 36 298 0 0 0 2 12 0 0 0 0 0 +1111 1783877698507136600 REFRESH 42 0 0.86615965189066801 0 0 4 0 4 0 0 4096 7 427 3987720 55200 223.14393615722656 1.4229000000000001 440.1481 20160 13233 0 0 0 0.0064271853280971313 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9544782520 20352412 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 52 25 37 238 75 0 0 0 0 7 0 0 0 0 0 +1112 1783877698955960300 REFRESH 25 0 0.69434576240595636 0.4608177172061329 1 8 1 8 0 0 2482 19 417 3987978 55680 223.15426635742188 1.4279999999999999 396.1155 20160 12474 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9545516084 21085976 1 0 4 3 3 2 4 983040 737280 737280 491655 998400 25 25 27 158 182 0 0 0 7 12 0 0 0 0 0 +1113 1783877699387211100 REFRESH 30 0 0.69433282653091766 0.4608177172061329 1 8 1 8 0 0 3843 40 421 3988062 55680 221.55191040039062 1.4260999999999999 377.46339999999998 13440 7982 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9546253728 21823620 1 0 4 2 3 3 4 983040 491520 737280 737497 998400 26 25 25 171 174 0 0 0 12 28 0 0 0 0 0 +1114 1783877699782119900 REFRESH 36 0 0.6919109613183041 0.82027257240204421 3 10 3 10 0 0 1311 23 403 3988961 56640 219.87942504882812 1.4211 344.19349999999997 13440 8117 0 0 0.083980012303904839 0.13635597639476177 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9546973012 22542904 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 42 285 0 0 0 1 22 0 0 0 0 0 +1115 1783877700219559300 REFRESH 31 0 0.77698951698803265 0.26575809199318562 2 5 2 5 0 0 3057 39 417 3988949 56640 222.33395385742188 1.4298 377.72230000000002 13440 8581 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9547706576 23276468 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 29 40 298 0 0 0 0 39 0 0 0 0 0 +1116 1783877700618805800 REFRESH 0 0 0.69384289473625627 0.8279386712095399 2 11 2 11 0 0 928 5 417 3988970 56640 220.51225280761719 1.4357 347.90030000000002 13440 9771 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9548440140 24010032 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 26 25 25 34 307 0 0 0 0 5 0 0 0 0 0 +1117 1783877701085749700 REFRESH 9 0 0.70064114634808394 0.27342419080068137 1 6 1 6 0 0 3408 8 428 3987602 55200 224.28671264648438 1.4331 412.28809999999999 20160 12326 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9549184924 24754816 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 26 269 83 0 0 0 0 8 0 0 0 0 0 +1118 1783877701567525500 REFRESH 20 0 0.69634219930115016 0.26575809199318562 2 5 2 5 0 0 2222 3 432 3987600 55200 222.65753173828125 1.4745999999999999 421.9067 20160 11901 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 432 320 0 64 0 9549933788 25503680 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 35 186 161 0 0 0 0 3 0 0 0 0 0 +1119 1783877702057114500 REFRESH 49 0 0.69451203193394151 0.4454855195911413 3 6 3 6 0 0 1676 7 421 3987968 55680 222.5296630859375 1.4815 386.3109 20160 11965 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9550671432 26241324 1 0 4 3 3 2 4 983040 737280 737280 491646 998400 25 25 25 250 96 0 0 1 3 3 0 0 0 0 0 +1120 1783877702479143300 REFRESH 14 0 0.69482155497861398 0.65587734241908002 0 11 0 11 0 0 1804 35 408 3988465 56160 222.17727661132812 1.4198999999999999 369.34249999999997 13440 8064 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9551395816 26965708 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 26 25 25 119 213 0 0 0 20 15 0 0 0 0 0 +1121 1783877702886857800 REFRESH 29 0 0.6958433481945353 0.82027257240204421 3 10 3 10 0 0 1119 8 420 3988869 56640 221.65504455566406 1.4279999999999999 356.29379999999998 13440 9850 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9552132440 27702332 1 0 6 2 1 1 6 1474560 491520 245760 245829 1497600 30 25 25 61 279 0 0 0 0 8 0 0 0 0 0 +1122 1783877703293643600 REFRESH 24 0 0.69426549150159089 1 4 11 4 11 0 0 498 15 391 3988969 56640 225.01376342773438 1.4373 354.33909999999997 13440 9278 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 391 320 0 64 0 9552839484 28409376 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 34 282 0 0 0 0 15 0 0 0 0 0 +1123 1783877705836628500 DEPTH 42 1 0.73194682793167543 0 0 4 0 4 0 0 4096 25 2592 23678176 81600 1291.1134796142578 8.5605000000000011 2490.4431 120960 64811 1 0 0 0.0064271853280971313 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 9557342232 32912124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 287 150 214 1440 501 0 0 0 0 25 0 0 0 0 0 +1124 1783877708445958100 DEPTH 56 1 0.71196924402634021 0.17206132879045993 2 4 2 4 0 0 4096 49 2575 23677624 81600 1286.5841369628906 8.6348000000000003 2488.7206999999999 120960 58190 1 0 0.0042796943158716228 0.40320142121760472 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 9561827640 37397532 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 294 150 150 1221 760 5 0 0 0 44 0 0 0 0 0 +1125 1783877710910639700 DEPTH 48 1 0.69729231326517316 0.26575809199318562 2 5 2 5 0 0 2687 53 2561 23677525 81600 1306.3446044921875 8.6856000000000009 2463.2469000000001 120960 56722 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 9566298768 41868660 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 176 711 1374 2 0 2 0 49 0 0 0 0 0 +1126 1783877713497902900 DEPTH 13 1 0.69730416370718684 0.27342419080068137 1 6 1 6 0 0 4096 55 2554 23677488 81600 1400.2042846679688 8.6038999999999994 2529.1015000000002 120960 56872 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 9570762756 46332648 1 0 4 3 3 3 3 5898240 4423680 4423680 4426297 4492800 150 150 162 780 1312 0 0 0 1 54 0 0 0 0 0 +1127 1783877715925660500 DEPTH 12 1 0.69509877929847219 0.54684838160136284 2 8 2 8 1 0 1987 77 2564 23698674 103680 1357.7431182861328 8.5888000000000009 2371.3236999999999 120960 64535 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 9575236944 50806836 1 0 4 3 3 2 4 5898240 4423680 4177920 3196858 5990400 150 150 167 364 1733 1 1 6 4 65 0 0 0 0 2 +1128 1783877718193710200 DEPTH 8 1 0.69505163360040645 0.26575809199318562 2 5 2 5 0 0 2520 48 2506 23677615 81600 1297.6844787597656 8.6109999999999989 2266.8782000000001 120960 57729 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 9579651972 55221864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 150 150 156 320 1730 0 0 0 1 47 0 0 0 0 0 +1129 1783877720867361600 DEPTH 17 1 0.69435157528441371 0.28109028960817717 0 7 0 7 1 0 4096 56 2573 23677412 81600 1321.2088317871094 8.6074000000000002 2495.6509999999998 120960 56186 1 0 3.5835210246097901e-05 0.061905419258030558 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 9584135340 59705232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 177 965 1131 3 0 2 0 51 0 0 0 0 2 +1130 1783877723338151100 DEPTH 33 1 0.69295093946395625 0.36712095400340705 1 7 1 7 0 0 3726 87 2524 23677450 81600 1350.5259552001953 8.6175000000000015 2403.1289000000002 120960 57782 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 9588568728 64138620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 150 252 1822 0 0 1 2 84 0 0 0 0 0 +1131 1783877726639113800 DEPTH 18 1 0.71402739143686067 0.92163543441226559 2 12 2 12 1 0 460 50 2529 23742612 147840 1289.4573211669922 8.5931999999999995 3239.5668000000001 80640 40606 1 0 0.0018039710106545091 1.0313233098963772 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 9593007296 1468372 1 0 4 2 2 2 6 5898240 2949120 2949120 2950897 8985600 156 150 150 150 1923 0 0 0 0 50 0 0 0 0 1 +1132 1783877729364545300 DEPTH 57 1 0.6973968911261974 0.27342419080068137 1 6 1 6 0 0 4096 107 2547 23677395 81600 1334.7401275634766 8.8026999999999997 2578.8519000000001 120960 57510 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 9597464144 5925220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 166 756 1325 0 0 1 3 103 0 0 0 0 0 +1133 1783877731924814400 DEPTH 1 1 0.69296133732097687 0.36712095400340705 1 7 1 7 0 0 3499 72 2563 23677462 81600 1331.9523010253906 8.6561000000000003 2493.7669000000001 120960 56830 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 9601937312 10398388 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 170 663 1430 0 0 4 3 65 0 0 0 0 0 +1134 1783877734491060000 DEPTH 53 1 0.69296189612085091 0.37478705281090291 0 8 0 8 0 0 4096 40 2500 23677389 81600 1320.7880249023438 8.8044999999999991 2509.5686999999998 120960 62269 1 0 0 0.20923722992907676 4096 2048 384 12 96 360 72 24 0 2500 1920 0 384 1 9606346220 14807296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 150 727 1323 0 0 0 2 38 0 0 0 0 0 +1135 1783877736800054300 DEPTH 16 1 0.69295921953572437 0.3594548551959113 2 6 2 6 0 0 3569 94 2526 23677433 81600 1310.442626953125 8.5648 2248.4868000000001 120960 68486 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 9610781648 19242724 1 0 4 3 3 3 3 5898240 4423680 4423680 4426525 4492800 150 150 150 475 1601 0 0 0 6 88 0 0 0 0 0 +1136 1783877739340645700 DEPTH 52 1 0.69269742350647667 0.36712095400340705 1 7 1 7 0 0 2458 51 2581 23677477 81600 1344.6615753173828 9.4307999999999996 2475.4587999999999 120960 56378 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 9615273176 23734252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 160 982 1139 1 0 4 4 42 0 0 0 0 0 +1137 1783877741493618200 DEPTH 47 1 0.6922168991606209 0.8279386712095399 2 11 2 11 0 0 707 30 2567 23742673 147840 1280.3738403320312 8.6265000000000001 2096.1062000000002 80640 42923 1 0 0.018960026908908086 1.2351126180506042 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 9619750424 28211500 1 0 4 2 2 2 6 5898240 2949120 2949120 2950977 8985600 156 150 150 185 1926 0 0 0 0 30 0 0 0 0 0 +1138 1783877743959578200 DEPTH 44 1 0.69192996329371814 0.36712095400340705 1 7 1 7 0 0 2469 75 2603 23677570 81600 1290.3628082275391 8.5573999999999995 2405.1417000000001 120960 56856 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 9624264392 32725468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 155 345 1803 3 0 4 0 68 0 0 0 0 0 +1139 1783877746457633300 DEPTH 42 1 0.77104956078249953 0 0 4 0 4 1 0 4096 23 2594 23678387 81600 1285.3860168457031 8.5774000000000008 2496.6876999999999 120960 54142 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2594 1920 0 384 1 9628769180 37230256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 261 150 203 1488 492 0 0 0 0 23 0 0 0 0 1 +1140 1783877748882638600 DEPTH 31 1 0.76648942993460656 0.26575809199318562 2 5 2 5 0 0 3071 65 2598 23742672 147840 1287.4812164306641 8.9054000000000002 2364.9612000000002 80640 43004 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 9633278048 41739124 1 0 4 2 2 2 6 5898240 2949120 2949120 2950947 8985600 150 150 168 189 1941 0 0 0 5 60 0 0 0 0 0 +1141 1783877751043377100 DEPTH 58 1 0.69189700229669682 0.92163543441226559 2 12 2 12 0 0 544 19 2535 23742654 147840 1277.7463226318359 8.6432000000000002 2104.1351 80640 47023 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 9637722656 46183732 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 150 150 150 162 1923 0 0 0 0 19 0 0 0 0 0 +1142 1783877753513706900 DEPTH 46 1 0.69178540017498613 0.37478705281090291 0 8 0 8 0 0 2864 37 2548 23677396 81600 1288.8977813720703 8.7342999999999993 2415.2972 120960 56114 1 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 9642180524 50641600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 874 1224 0 0 0 0 37 0 0 0 0 0 +1143 1783877755967701800 DEPTH 21 1 0.69177695345600865 0.56218057921635434 0 10 0 10 1 0 2775 45 2557 23716705 121920 1276.0933380126953 8.5827000000000009 2395.0724 120960 61552 1 0 0.00031281723306166432 1.0356549966016075 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 9646647572 55108648 1 0 4 3 3 2 4 5898240 4423680 3194880 2950922 7238400 150 150 152 703 1402 0 3 1 0 41 0 0 0 0 1 +1144 1783877758464748300 DEPTH 41 1 0.69171236056395102 0.55451448040885853 1 9 1 9 0 0 2444 47 2558 23698508 103680 1275.5349426269531 8.6766000000000005 2442.0509000000002 120960 61633 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9651115640 59576716 1 0 4 3 3 2 4 5898240 4423680 4423680 2950966 5990400 150 150 161 542 1555 2 0 4 1 40 0 0 0 0 0 +1145 1783877760656203700 DEPTH 5 1 0.69147714023366025 0.8279386712095399 2 11 2 11 0 0 916 35 2571 23742607 147840 1266.9922027587891 8.7335000000000012 2082.8634000000002 80640 46957 1 0 0.0013470829413883309 0.39801580600099568 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 9655596968 64058044 1 0 4 2 2 2 6 5898240 2949120 2949120 2950910 8985600 150 150 150 178 1943 0 1 1 1 32 0 0 0 0 0 +1146 1783877763966991300 DEPTH 35 1 0.69140106855850969 0.8279386712095399 2 11 2 11 0 0 1140 72 2486 23742628 147840 1274.0564117431641 8.5401000000000007 3251.6911 80640 46896 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 360 72 24 0 2486 1920 0 384 1 9659991676 1344272 1 0 4 2 2 2 6 5898240 2949120 2949120 2950931 8985600 150 150 150 157 1879 0 0 0 0 72 0 0 0 0 0 +1147 1783877766442578400 DEPTH 9 1 0.69558739611481823 0.27342419080068137 1 6 1 6 0 0 3414 31 2597 23677563 81600 1294.0332794189453 8.6232000000000006 2418.2397999999998 120960 59249 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 9664499524 5852120 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 156 1618 523 0 0 2 0 29 0 0 0 0 0 +1148 1783877768930643400 DEPTH 2 1 0.69108295725648672 0.45315161839863699 2 7 2 7 0 0 3947 72 2548 23677433 81600 1289.0196075439453 8.5977999999999994 2420.3822 120960 47403 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 9668957392 10309988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 156 150 150 914 1178 2 0 0 3 67 0 0 0 0 0 +1149 1783877771108429500 DEPTH 34 1 0.69107200181762618 0.8356047700170357 1 12 1 12 0 0 792 66 2570 23698470 103680 1278.326904296875 8.6255000000000006 2120.2033000000001 120960 70912 1 0 0.00020654801738738873 1.769932182842139 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 9673437700 14790296 1 0 5 3 2 2 4 7372800 4423680 2949120 2950934 5990400 150 150 272 236 1762 0 0 0 1 65 0 0 0 0 0 +1150 1783877773323389500 DEPTH 23 1 0.69106262107264183 0.74190800681430991 1 11 1 11 0 0 3536 36 2527 23727291 132480 1319.7308807373047 8.5633999999999997 2157.6705999999999 80640 40482 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 9677874148 19226744 1 0 4 2 3 2 5 5898240 2949120 3932160 2950933 7987200 150 150 150 436 1641 0 0 0 1 35 0 0 0 0 0 +1151 1783877775731393900 DEPTH 50 1 0.6910467289094756 0.64054514480408853 2 9 2 9 0 0 1087 31 2578 23742730 147840 1281.5900268554688 8.5638000000000005 2351.5664999999999 80640 43246 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 9682362616 23715212 1 0 4 2 2 2 6 5898240 2949120 2949120 2951030 8985600 150 150 150 152 1976 0 0 0 3 28 0 0 0 0 0 +1152 1783877777919562500 DEPTH 55 1 0.69095478623113149 0.64054514480408853 2 9 2 9 0 0 1117 52 2509 23720657 125760 1295.4654693603516 8.5845000000000002 2130.2601 80640 39389 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 9686780704 28133300 1 0 4 2 3 2 5 5898240 2949120 4423680 2951035 7488000 150 150 150 437 1622 0 0 0 8 44 0 0 0 0 0 +1153 1783877780509421900 DEPTH 27 1 0.69087273382286285 0.4608177172061329 1 8 1 8 0 0 3995 50 2559 23677342 81600 1352.3323364257812 8.9247000000000014 2518.8613 120960 68429 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 9691249792 32602388 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 150 879 1230 0 0 0 9 41 0 0 0 0 0 +1154 1783877783268610700 DEPTH 25 1 0.69087332444405547 0.4608177172061329 1 8 1 8 0 0 2492 26 2547 23677296 81600 1577.1156921386719 8.6212999999999997 2700.9528 120960 63346 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 9695706640 37059236 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 162 841 1244 0 0 0 1 25 0 0 0 0 0 +1155 1783877783740383800 REFRESH 12 0 0.69008676840194705 0.54684838160136284 2 8 2 8 0 0 1991 18 423 3988002 55680 245.94329833984375 1.4917 404.67439999999999 20160 11942 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9696446324 37798920 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 45 109 219 0 0 6 0 12 0 0 0 0 0 +1156 1783877784237827400 REFRESH 39 0 0.68997063131494296 0.55451448040885853 1 9 1 9 0 0 1652 9 423 3988948 56640 237.95814514160156 1.5405 439.2287 13440 7974 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9697186008 38538604 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 25 81 266 0 0 0 0 9 0 0 0 0 0 +1157 1783877784671553500 REFRESH 3 0 0.69086379992786129 0.64054514480408853 2 9 2 9 0 0 1215 16 405 3988489 56160 234.81549072265625 1.448 376.59800000000001 13440 7888 0 0 0.0076224078323330153 0.12664224281341724 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 9697907332 39259928 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 25 25 25 34 296 0 0 0 2 14 0 0 0 0 0 +1158 1783877785095691300 REFRESH 25 0 0.47704054778816229 0.4608177172061329 1 8 1 8 0 0 2499 23 419 3987565 55200 243.14469909667969 1.4341999999999999 422.79730000000001 20160 11910 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9698642936 39995532 1 0 4 3 3 3 3 983040 737280 737280 737480 748800 25 25 28 134 207 0 0 0 8 15 0 0 0 0 0 +1159 1783877785520043100 REFRESH 49 0 0.68800299974038914 0.4454855195911413 3 6 3 6 0 0 1678 18 406 3987553 55200 223.10195922851562 1.4360999999999999 366.85160000000002 20160 12001 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9699365280 40717876 1 0 4 3 3 3 3 983040 737280 737280 737468 748800 25 25 25 40 291 0 0 0 1 17 0 0 0 0 0 +1160 1783877785956889600 REFRESH 36 0 0.68788144668374063 0.82027257240204421 3 10 3 10 1 0 1322 36 412 3988958 56640 222.47731018066406 1.4480999999999999 379.27210000000002 13440 8226 0 0 0.083950986341412126 0.13623009756232651 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9700093744 41446340 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 25 42 294 0 0 0 1 35 0 0 0 0 1 +1161 1783877786427385900 REFRESH 46 0 0.62851140342794198 0.37478705281090291 0 8 0 8 0 0 2867 14 422 3987612 55200 224.16178894042969 1.4276 410.47379999999998 20160 12031 0 0 1.0812853856276755e-06 0.32727609753864689 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9700832408 42185004 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 26 238 108 0 0 0 4 10 0 0 0 0 0 +1162 1783877786838641500 REFRESH 43 0 0.68906476159245 0.8279386712095399 2 11 2 11 0 0 816 9 424 3987914 55680 223.79417419433594 1.4244000000000001 355.58640000000003 20160 14741 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9701573112 42925708 1 0 6 3 2 1 4 1474560 737280 491520 245833 998400 25 25 101 138 135 0 0 1 0 8 0 0 0 0 0 +1163 1783877787281717700 REFRESH 8 0 0.69237868508382372 0.26575809199318562 2 5 2 5 0 0 2520 12 409 3987599 55200 238.99961853027344 1.4333 383.50709999999998 20160 12395 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9702298516 43651112 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 26 120 213 0 0 0 1 11 0 0 0 0 0 +1164 1783877787659361400 REFRESH 55 0 0.5567796250532101 0.64054514480408853 2 9 2 9 0 0 1120 19 412 3988487 56160 240.11366271972656 1.5261 375.94119999999998 13440 7908 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9703026980 44379576 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 190 147 0 0 0 10 9 0 0 0 0 0 +1165 1783877788023303800 REFRESH 34 0 0.59675126649957333 0.8356047700170357 1 12 1 12 0 0 801 17 421 3988005 55680 222.27165222167969 1.4358 362.3691 20160 13803 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9703764624 45117220 1 0 5 3 2 2 4 1228800 737280 491520 491684 998400 25 25 62 106 203 0 0 0 7 10 0 0 0 0 0 +1166 1783877788427756600 REFRESH 18 0 0.7071385763422553 0.92163543441226559 2 12 2 12 1 0 460 12 409 3988969 56640 224.62361145019531 1.4263999999999999 350.84989999999999 13440 7896 0 0 0.0018896969417674517 1.0184854335263751 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9704490028 45842624 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 25 308 0 0 0 0 12 0 0 0 0 1 +1167 1783877788886608900 REFRESH 53 0 0.68973031842316823 0.37478705281090291 0 8 0 8 0 0 4096 26 414 3987577 55200 224.91751098632812 1.4268000000000001 399.85059999999999 20160 11955 0 0 0 0.20923722992907676 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9705220532 46573128 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 215 124 0 0 0 13 13 0 0 0 0 0 +1168 1783877789332891100 REFRESH 40 0 0.68902110645002534 0.64821124361158422 1 10 1 10 0 0 1873 22 421 3988462 56160 223.40301513671875 1.4346000000000001 393.56220000000002 13440 7958 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9705958176 47310772 1 0 4 2 3 2 5 983040 491520 737280 491649 1248000 25 25 25 149 197 0 0 0 1 21 0 0 0 0 0 +1169 1783877789730039100 REFRESH 7 0 0.68804911938847746 0.8356047700170357 1 12 1 12 0 0 922 20 406 3988959 56640 221.41337585449219 1.4237 345.4624 13440 8082 0 0 0.00024294576435012201 0.71873422066324466 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9706680520 48033116 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 32 299 0 0 0 0 20 0 0 0 0 0 +1170 1783877790187303600 REFRESH 20 0 0.68748686755615462 0.26575809199318562 2 5 2 5 0 0 2223 3 431 3987589 55200 226.58457946777344 1.4241999999999999 403.07479999999998 20160 12012 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 9707428364 48780960 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 35 183 163 1 0 0 0 2 0 0 0 0 0 +1171 1783877790540548900 REFRESH 5 0 0.68724657788025345 0.8279386712095399 2 11 2 11 0 0 920 13 416 3988947 56640 219.84358215332031 1.4285000000000001 351.65649999999999 13440 9043 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9708160908 49513504 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 66 275 0 0 0 3 10 0 0 0 0 0 +1172 1783877790987944300 REFRESH 6 0 0.68410594373780897 0.91396933560476989 3 11 3 11 0 0 383 10 421 3988956 56640 220.67123413085938 1.4393 343.80470000000003 6720 4862 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9708898552 50251148 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 36 309 0 0 0 0 10 0 0 0 0 0 +1173 1783877791440425300 REFRESH 13 0 0.69454084446250453 0.27342419080068137 1 6 1 6 0 0 4096 29 418 3987626 55200 224.61849975585938 1.4350000000000001 397.29570000000001 20160 12219 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9709633136 50985732 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 190 150 0 0 0 3 26 0 0 0 0 0 +1174 1783877791868377100 REFRESH 14 0 0.69106790086592007 0.65587734241908002 0 11 0 11 0 0 1810 27 414 3988463 56160 226.27737426757812 1.4241999999999999 371.79759999999999 13440 8009 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9710363640 51716236 1 0 4 2 3 2 5 983040 491520 737280 491661 1248000 26 25 25 123 215 0 0 0 12 15 0 0 0 0 0 +1175 1783877792301553900 REFRESH 51 0 0.68855456115466207 0.91396933560476989 3 11 3 11 0 0 560 17 394 3988964 56640 234.95065307617188 1.4415 371.79329999999999 13440 8831 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 9711073744 52426340 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 43 276 0 0 0 2 15 0 0 0 0 0 +1176 1783877792754887800 REFRESH 21 0 0.68807176296453587 0.56218057921635434 0 10 0 10 0 0 2781 20 415 3987991 55680 224.01434326171875 1.4368000000000001 400.18310000000002 20160 11872 0 0 0.00031281723306166432 1.0356549966016075 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9711805268 53157864 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 26 154 185 0 0 1 5 14 0 0 0 0 0 +1177 1783877793160133400 REFRESH 29 0 0.69045121462222081 0.82027257240204421 3 10 3 10 0 0 1121 16 423 3988404 56160 221.28742980957031 1.4365000000000001 346.46210000000002 13440 9905 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9712544952 53897548 1 0 6 2 2 1 5 1474560 491520 491520 245844 1248000 30 25 34 60 274 0 0 0 0 16 0 0 0 0 0 +1178 1783877793646914800 REFRESH 11 0 0.69066486245647862 0.37478705281090291 0 8 0 8 1 0 2695 47 402 3988012 55680 223.96231079101562 1.4713000000000001 422.40539999999999 20160 11926 0 0 2.2195712661000718e-05 0.66225374060364872 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 9713263216 54615812 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 25 44 283 0 0 1 3 43 0 0 0 0 1 +1179 1783877794104807500 REFRESH 31 0 0.7569723054401658 0.26575809199318562 2 5 2 5 0 0 3093 48 419 3988960 56640 220.82048034667969 1.4381999999999999 400.64519999999999 13440 7934 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9713998820 55351416 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 29 37 303 0 0 0 0 48 0 0 0 0 0 +1180 1783877794508450200 REFRESH 10 0 0.69013845603415314 0.64821124361158422 1 10 1 10 0 0 1229 6 419 3988476 56160 221.63456726074219 1.4259999999999999 352.3827 13440 7866 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9714734424 56087020 1 0 4 2 3 2 5 983040 491520 737280 491672 1248000 25 25 25 109 235 0 0 1 0 5 0 0 0 0 0 +1181 1783877794969520500 REFRESH 17 0 0.69194992627959107 0.28109028960817717 0 7 0 7 0 0 4096 14 425 3987632 55200 223.4757080078125 1.4231 405.6062 20160 11897 0 0 3.5835210246097901e-05 0.061905419258030558 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9715476148 56828744 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 32 257 86 1 0 1 0 12 0 0 0 0 0 +1182 1783877795343717500 REFRESH 2 0 0.68759138274197174 0.45315161839863699 2 7 2 7 0 0 3970 50 411 3987587 55200 223.33439636230469 1.4401999999999999 372.93310000000002 20160 14791 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9716203592 57556188 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 77 259 1 2 0 5 42 0 0 0 0 0 +1183 1783877795749133600 REFRESH 58 0 0.68785587111717317 0.92163543441226559 2 12 2 12 0 0 545 14 411 3988959 56640 220.89830017089844 1.4218999999999999 353.03320000000002 13440 8714 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9716931036 58283632 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 31 305 0 0 0 0 14 0 0 0 0 0 +1184 1783877796147053100 REFRESH 37 0 0.68830861697983792 0.8356047700170357 1 12 1 12 1 0 1056 27 405 3988934 56640 221.5045166015625 1.4234 345.62959999999998 13440 8088 0 0 0.0038464825449119663 0.37463918263131929 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 9717652360 59004956 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 25 25 25 48 282 0 0 0 3 24 0 0 0 0 1 +1185 1783877796552594200 REFRESH 4 0 0.68616201711013958 0.8356047700170357 1 12 1 12 0 0 288 3 419 3988942 56640 219.94700622558594 1.4205000000000001 354.37790000000001 6720 4866 0 0 0.039814522382665453 1.2483225492210968 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9718387964 59740560 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 25 25 35 309 0 0 0 0 3 0 0 0 0 0 +1186 1783877796978046500 REFRESH 45 0 0.69126292284578494 0.45315161839863699 2 7 2 7 0 0 2307 34 410 3987592 55200 223.1910400390625 1.421 372.15620000000001 20160 12359 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9719114388 60466984 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 27 308 0 0 0 3 31 0 0 0 0 0 +1187 1783877797394979700 REFRESH 16 0 0.68995298075308498 0.3594548551959113 2 6 2 6 0 0 3573 22 413 3987609 55200 223.58528137207031 1.4382999999999999 364.04809999999998 20160 12583 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9719843872 61196468 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 25 133 205 0 0 0 1 21 0 0 0 0 0 +1188 1783877797814100300 REFRESH 32 0 0.69124050466821796 0.4608177172061329 1 8 1 8 0 0 3225 30 403 3987592 55200 223.26486206054688 1.4175 366.7072 20160 11841 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9720563156 61915752 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 34 294 0 0 0 0 30 0 0 0 0 0 +1189 1783877798276965000 REFRESH 9 0 0.69295360406850204 0.27342419080068137 1 6 1 6 0 0 3414 12 427 3987608 55200 224.94412231445312 1.4414 409.0523 20160 12270 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9721306920 62659516 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 26 280 71 0 0 0 2 10 0 0 0 0 0 +1190 1783877798714727900 REFRESH 57 0 0.69475184969986592 0.27342419080068137 1 6 1 6 0 0 4096 22 413 3987625 55200 223.36921691894531 1.4149 385.16820000000001 20160 12137 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9722036404 63389000 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 28 169 166 0 0 0 2 20 0 0 0 0 0 +1191 1783877799212715800 REFRESH 38 0 0.68750385637308153 0.55451448040885853 1 9 1 9 0 0 2203 9 426 3988477 56160 221.64274597167969 1.4641 382.23660000000001 20160 12930 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9722779148 64131744 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 248 103 0 0 0 1 8 0 0 0 0 0 +1192 1783877799624428600 REFRESH 0 0 0.68562911785960479 0.8279386712095399 2 11 2 11 0 0 932 20 413 3988953 56640 220.51533508300781 1.4275 360.0172 13440 9792 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9723508632 64861228 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 26 311 0 0 0 1 19 0 0 0 0 0 +1193 1783877800059146200 REFRESH 1 0 0.69004735999418987 0.36712095400340705 1 7 1 7 0 0 3515 43 415 3987596 55200 222.87770080566406 1.4231 379.54860000000002 20160 12066 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9724240156 65592752 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 29 150 186 0 0 0 5 38 0 0 0 0 0 +1194 1783877800462447700 REFRESH 47 0 0.68831906721210456 0.8279386712095399 2 11 2 11 0 0 709 16 409 3988953 56640 221.75129699707031 1.4326000000000001 352.31259999999997 13440 8083 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9724965560 66318156 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 25 32 301 0 0 0 0 16 0 0 0 0 0 +1195 1783877800863235900 REFRESH 15 0 0.68636988129137677 0.91396933560476989 3 11 3 11 0 0 322 5 412 3988977 56640 221.06842041015625 1.4202999999999999 344.87520000000001 6720 4897 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9725694024 67046620 1 0 5 1 2 2 6 1228800 245760 491520 491696 1497600 25 25 25 37 300 0 0 0 0 5 0 0 0 0 0 +1196 1783877802446250400 REFRESH 26 0 0.68763430634767198 0.55451448040885853 1 9 1 9 0 0 2146 16 413 3987608 55200 222.60223388671875 1.4336 1479.4747 20160 11952 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9726423588 667444 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 37 167 159 0 0 1 0 15 0 0 0 0 0 +1197 1783877802840789200 REFRESH 19 0 0.68843354971333126 0.8279386712095399 2 11 2 11 0 0 914 11 413 3988941 56640 219.75244140625 1.4406000000000001 342.58769999999998 13440 8064 0 0 0.030726597407889203 0.38680088795667933 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9727153072 1396928 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 36 302 0 0 0 0 11 0 0 0 0 0 +1198 1783877803271353400 REFRESH 33 0 0.69012972102085168 0.36712095400340705 1 7 1 7 0 0 3747 41 411 3987691 55200 225.02911376953125 1.4386000000000001 376.15460000000002 20160 11829 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9727880516 2124372 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 105 231 0 0 0 9 32 0 0 0 0 0 +1199 1783877803704605400 REFRESH 30 0 0.69140823904841286 0.4608177172061329 1 8 1 8 0 0 3854 32 416 3988055 55680 221.26284790039062 1.4201999999999999 375.65910000000002 13440 7916 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9728613060 2856916 1 0 4 2 3 3 4 983040 491520 737280 737492 998400 26 25 25 183 157 0 0 0 7 25 0 0 0 0 0 +1200 1783877804141510600 REFRESH 41 0 0.68826693043538811 0.55451448040885853 1 9 1 9 0 0 2448 18 427 3987989 55680 221.98988342285156 1.4219999999999999 384.2688 20160 11899 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9729356824 3600680 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 31 228 118 0 0 0 9 9 0 0 0 0 0 +1201 1783877804545143500 REFRESH 23 0 0.68724873098884676 0.74190800681430991 1 11 1 11 0 0 3546 24 413 3988459 56160 223.04460144042969 1.4443999999999999 351.89269999999999 13440 7858 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 9730086308 4330164 1 0 4 2 3 2 5 983040 491520 737280 491657 1248000 25 25 25 126 212 0 0 0 11 13 0 0 0 0 0 +1202 1783877804947862300 REFRESH 35 0 0.68757722440508451 0.8279386712095399 2 11 2 11 0 0 1146 23 403 3988932 56640 220.7406005859375 1.4209000000000001 350.29149999999998 13440 9031 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9730805592 5049448 1 0 4 2 2 2 6 983040 491520 491520 491649 1497600 25 25 25 30 298 0 1 0 0 22 0 0 0 0 0 +1203 1783877805411576300 REFRESH 42 0 0.86053707584791672 0 0 4 0 4 0 0 4096 4 428 3987743 55200 223.81773376464844 1.4222999999999999 410.62720000000002 20160 13388 0 0 0 0.0064243164954683766 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9731550376 5794232 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 50 25 38 237 78 0 0 0 0 4 0 0 0 0 0 +1204 1783877805888077800 REFRESH 44 0 0.68945963043491121 0.36712095400340705 1 7 1 7 0 0 2473 19 428 3987607 55200 230.92839050292969 1.4214 423.51549999999997 20160 12300 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 9732295160 6539016 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 26 78 274 0 0 0 0 19 0 0 0 0 0 +1205 1783877806386400200 REFRESH 56 0 0.7098980893845539 0.17206132879045993 2 4 2 4 0 0 4096 12 431 3987648 55200 242.84774780273438 1.4575 441.57029999999997 20160 12256 0 0 0.0042796943158716228 0.40320142121760472 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 9733043004 7286860 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 52 25 25 230 99 0 0 0 1 11 0 0 0 0 0 +1206 1783877806833273900 REFRESH 50 0 0.68799832916824655 0.64054514480408853 2 9 2 9 0 0 1088 6 419 3988947 56640 233.99320983886719 1.4354 392.88929999999999 13440 8053 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9733778608 8022464 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 28 316 0 0 0 1 5 0 0 0 0 0 +1207 1783877807245513900 REFRESH 28 0 0.6862624297075266 0.8279386712095399 2 11 2 11 0 0 665 9 404 3988964 56640 235.00700378417969 1.4311 360.5428 13440 8372 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 9734498912 8742768 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 26 302 0 0 0 0 9 0 0 0 0 0 +1208 1783877807669825700 REFRESH 22 0 0.6906575063757151 0.91396933560476989 3 11 3 11 0 0 492 15 409 3988972 56640 233.97273254394531 1.4359 368.21339999999998 13440 9020 0 0 0.0083569577158233901 0.70301508708995641 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9735224316 9468172 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 26 25 25 26 307 0 0 0 0 15 0 0 0 0 0 +1209 1783877808185126400 REFRESH 54 0 0.6800754854424832 0.4608177172061329 1 8 1 8 0 0 1256 9 427 3988463 56160 235.7628173828125 1.4352 409.84109999999998 20160 12932 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9735968080 10211936 1 0 4 3 2 2 5 983040 737280 491520 491662 1248000 25 25 25 254 98 0 0 0 0 9 0 0 0 0 0 +1210 1783877808638268600 REFRESH 48 0 0.6949547513304607 0.26575809199318562 2 5 2 5 0 0 2691 15 421 3987606 55200 236.90342712402344 1.4345000000000001 401.0437 20160 12010 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 9736705724 10949580 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 31 205 135 0 0 1 2 12 0 0 0 0 0 +1211 1783877809021203500 REFRESH 27 0 0.68769466939486168 0.4608177172061329 1 8 1 8 0 0 4017 47 411 3987595 55200 238.9432373046875 1.4272 381.44069999999999 20160 12502 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9737433168 11677024 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 124 210 0 0 0 16 31 0 0 0 0 0 +1212 1783877809439338100 REFRESH 24 0 0.6907036946592553 1 4 11 4 11 0 0 498 14 392 3988940 56640 234.50111389160156 1.4335 361.70280000000002 13440 9161 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 392 320 0 64 0 9738141232 12385088 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 34 283 0 0 0 0 14 0 0 0 0 0 +1213 1783877809907016200 REFRESH 52 0 0.69000879437952822 0.36712095400340705 1 7 1 7 0 0 2463 26 427 3987587 55200 237.50656127929688 1.4327000000000001 411.58580000000001 20160 11956 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9738884996 13128852 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 27 186 164 1 0 0 4 21 0 0 0 0 0 +1214 1783877812385785400 DEPTH 31 1 0.74814494140827681 0.26575809199318562 2 5 2 5 0 0 3119 63 2608 23727348 132480 1317.3760375976562 8.6109999999999989 2423.2305000000001 107520 49834 1 1 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2608 1920 0 384 1 9743404064 17647920 1 0 4 3 2 2 5 5898240 3932160 2949120 2950956 7987200 150 150 164 396 1748 0 0 0 0 62 0 0 0 0 0 +1215 1783877814929238800 DEPTH 42 1 0.72350901056740413 0 0 4 0 4 0 0 4096 20 2585 23678195 81600 1316.0161285400391 8.567499999999999 2490.6127000000001 120960 64892 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 9747899672 22143528 1 0 4 3 3 3 3 5898240 4423680 4423680 4426385 4492800 270 150 208 1459 498 0 0 0 0 20 0 0 0 0 0 +1216 1783877817067959700 DEPTH 18 1 0.70083405682011468 0.92163543441226559 2 12 2 12 1 0 462 53 2533 23727810 132480 1310.9126129150391 8.5914999999999999 2137.3843000000002 80640 38129 1 0 0.0030756790657852913 0.93460072653259618 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 9752342240 26586096 1 0 4 2 2 3 5 5898240 2949120 3194880 3688679 7987200 156 150 150 454 1623 0 0 0 2 51 0 0 0 1 0 +1217 1783877819657725300 DEPTH 13 1 0.6918108469388482 0.27342419080068137 1 6 1 6 0 0 4096 74 2560 23677497 81600 1364.93896484375 8.6146999999999991 2526.6320999999998 120960 57109 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 9756812348 31056204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 162 734 1364 0 0 4 1 69 0 0 0 0 0 +1218 1783877822210175100 DEPTH 9 1 0.69023100541665627 0.27342419080068137 1 6 1 6 0 0 3418 30 2600 23677601 81600 1354.1943206787109 8.591800000000001 2488.8636000000001 120960 58176 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 9761323256 35567112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426489 4492800 150 150 154 1646 500 0 0 1 2 27 0 0 0 0 0 +1219 1783877824681164800 DEPTH 8 1 0.68998880968201437 0.26575809199318562 2 5 2 5 0 0 2526 56 2491 23677490 81600 1361.1188049316406 8.7247000000000003 2345.0718000000002 120960 58567 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2491 1920 0 384 1 9765722984 39966840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 156 332 1703 0 1 0 0 55 0 0 0 0 0 +1220 1783877827261878100 DEPTH 17 1 0.68943024997834534 0.28109028960817717 0 7 0 7 0 0 4096 40 2581 23677607 81600 1337.1711120605469 8.5739999999999998 2522.9423000000002 120960 55647 1 0 3.5835210246097901e-05 0.061905419258030558 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 9770214512 44458368 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 181 1056 1044 3 0 1 0 36 0 0 0 0 0 +1221 1783877829822152600 DEPTH 11 1 0.68781256137273705 0.37478705281090291 0 8 0 8 0 0 2709 46 2522 23705282 110400 1313.5453338623047 8.5411999999999999 2444.0553 120960 55968 1 0 2.2195712661000718e-05 0.66225374060364872 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 9774645860 48889716 1 0 4 3 3 2 4 5898240 4423680 3932160 2950997 6489600 150 150 150 585 1487 0 0 3 0 43 0 0 0 0 0 +1222 1783877832366902200 DEPTH 57 1 0.69188267259619363 0.27342419080068137 1 6 1 6 0 0 4096 95 2543 23677492 81600 1419.8067474365234 8.6218000000000004 2482.8161 120960 57657 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 9779098628 53342484 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 168 774 1301 0 0 0 0 95 0 0 0 0 0 +1223 1783877834856009500 DEPTH 45 1 0.68781827797648898 0.45315161839863699 2 7 2 7 0 0 2316 57 2546 23677301 81600 1339.1452178955078 8.5922000000000001 2428.6005 120960 61882 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 9783554456 57798312 1 0 4 3 3 3 3 5898240 4423680 4423680 4426397 4492800 150 150 150 222 1874 0 1 0 9 47 0 0 0 0 0 +1224 1783877837342332700 DEPTH 32 1 0.68778775676704851 0.4608177172061329 1 8 1 8 0 0 3244 83 2555 23677579 81600 1335.9229431152344 8.5621000000000009 2353.8845000000001 120960 57290 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 9788019464 62263320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 183 1922 0 0 0 2 81 0 0 0 0 0 +1225 1783877839803035400 DEPTH 3 1 0.68741341538013756 0.64054514480408853 2 9 2 9 0 0 1220 38 2531 23720671 125760 1326.171142578125 8.5742999999999991 2400.4863 80640 37217 1 0 0.0076224078323330153 0.12664224281341724 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 9792459992 66703848 1 0 4 2 3 2 5 5898240 2949120 4423680 2951039 7488000 150 150 150 236 1845 0 0 1 2 35 0 0 0 0 0 +1226 1783877843206886900 DEPTH 14 1 0.68740763003293925 0.65587734241908002 0 11 0 11 0 0 1817 75 2512 23716920 121920 1298.5456695556641 8.5451999999999995 3342.8926000000001 80640 38742 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 9796881220 4016468 1 0 4 2 3 3 4 5898240 2949120 4423680 3196890 7238400 156 150 150 394 1662 0 0 1 8 66 0 0 0 0 0 +1227 1783877845356848100 DEPTH 29 1 0.68725638049759519 0.82027257240204421 3 10 3 10 0 0 1126 56 2560 23715789 121920 1282.0805358886719 8.5656999999999996 2092.1187 100800 60881 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 9801351328 8486576 1 0 6 3 2 1 4 8847360 3686400 2457600 1475454 7238400 151 150 194 243 1822 0 0 2 0 54 0 0 0 0 0 +1228 1783877847809147900 DEPTH 1 1 0.68691877156182723 0.36712095400340705 1 7 1 7 0 0 3545 76 2558 23677444 81600 1288.0005187988281 8.5973000000000006 2388.3350999999998 120960 57158 1 0 0.028757582214450197 1.7174169605870635 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 9805819396 12954644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 172 721 1365 0 0 1 0 75 0 0 0 0 0 +1229 1783877850302323800 DEPTH 53 1 0.68692047801134648 0.37478705281090291 0 8 0 8 0 0 4096 66 2525 23677492 81600 1289.3245391845703 8.5353999999999992 2429.9052000000001 120960 57378 1 0 0 0.20923722992907676 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 9810253804 17389052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426537 4492800 150 150 150 844 1231 0 0 0 5 61 0 0 0 0 0 +1230 1783877852782064700 DEPTH 42 1 0.75307455108925747 0 0 4 0 4 0 0 4096 17 2589 23678159 81600 1286.0031280517578 8.6132999999999988 2477.7829999999999 120960 54171 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 9814753492 21888740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 249 150 191 1498 501 0 0 0 0 17 0 0 0 0 0 +1231 1783877855318318100 DEPTH 56 1 0.70727949700108006 0.17206132879045993 2 4 2 4 1 0 4096 53 2580 23677672 81600 1302.1511688232422 8.5686999999999998 2474.6871999999998 120960 58235 1 0 0.003291061305650188 0.34452168957490853 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 9819244000 26379248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 300 150 150 1334 646 6 0 0 3 44 0 0 0 0 1 +1232 1783877857874004300 DEPTH 30 1 0.68791165964185874 0.4608177172061329 1 8 1 8 0 0 3860 41 2543 23680320 84480 1375.7255706787109 8.5944000000000003 2498.6936999999998 114240 46421 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 9823696768 30832016 1 0 4 3 3 3 3 5898240 4177920 4423680 4426424 4742400 156 150 151 1042 1044 0 0 7 6 28 0 0 0 0 0 +1233 1783877860301565100 DEPTH 33 1 0.68699658110802908 0.36712095400340705 1 7 1 7 0 0 3757 70 2523 23677541 81600 1310.7507781982422 8.5959000000000003 2367.3366000000001 120960 57841 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 9828129136 35264384 1 0 4 3 3 3 3 5898240 4423680 4423680 4426451 4492800 150 150 150 275 1798 0 0 2 2 66 0 0 0 0 0 +1234 1783877862561241700 DEPTH 16 1 0.68696447670178928 0.3594548551959113 2 6 2 6 0 0 3582 59 2554 23677465 81600 1294.7874603271484 8.6005000000000003 2205.6747 120960 62769 1 0 0.0061145245995964234 0.25422467921659231 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 9832593124 39728372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426552 4492800 150 150 150 526 1578 0 0 0 3 56 0 0 0 0 0 +1235 1783877864982506800 DEPTH 44 1 0.68660919687337141 0.36712095400340705 1 7 1 7 0 0 2489 64 2589 23677477 81600 1291.623291015625 8.5862999999999996 2360.3471 120960 57011 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 9837092812 44228060 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 155 412 1722 3 0 3 0 58 0 0 0 0 0 +1236 1783877867398308400 DEPTH 39 1 0.68659157494528578 0.55451448040885853 1 9 1 9 0 0 1657 29 2578 23723446 128640 1270.5709991455078 8.5799999999999983 2312.7222000000002 80640 38594 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 9841581280 48716528 1 0 4 2 3 2 5 5898240 2949120 4177920 2950907 7737600 156 150 150 596 1526 0 0 1 0 28 0 0 0 0 0 +1237 1783877869797159400 DEPTH 46 1 0.68597753202800771 0.37478705281090291 0 8 0 8 1 0 2874 37 2551 23677378 81600 1289.7287750244141 8.5808999999999997 2346.2860000000001 120960 56233 1 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 9846042208 53177456 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 150 150 150 1034 1067 0 0 0 0 37 0 0 0 0 1 +1238 1783877872197736100 DEPTH 31 1 0.72986866764933223 0.26575809199318562 2 5 2 5 0 0 3128 57 2628 23709567 114240 1287.2120666503906 8.5859000000000005 2343.0675000000001 120960 43263 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2628 1920 0 384 1 9850581676 57716924 1 0 4 3 2 3 4 5898240 4423680 2949120 3688672 6739200 150 150 160 1037 1131 0 0 0 3 54 0 0 0 0 0 +1239 1783877874659769000 DEPTH 48 1 0.69204795080029013 0.26575809199318562 2 5 2 5 0 0 2698 35 2571 23677450 81600 1295.0601806640625 8.5858999999999988 2408.9243999999999 120960 56707 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 9855063004 62198252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426359 4492800 150 150 180 754 1337 0 0 1 0 34 0 0 0 0 0 +1240 1783877877171196500 DEPTH 52 1 0.68680959585380874 0.36712095400340705 1 7 1 7 0 0 2471 43 2585 23677411 81600 1355.2742309570312 8.632299999999999 2452.6860999999999 120960 56108 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 9859558612 66693860 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 166 1060 1059 3 1 1 2 36 0 0 0 0 0 +1241 1783877880644775300 DEPTH 22 1 0.68667235318245745 0.91396933560476989 3 11 3 11 1 0 496 58 2533 23742599 147840 1301.7425079345703 8.7314000000000007 3407.3294999999998 80640 44085 1 0 0.0083534486929875175 0.70272977095887668 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 9864001260 4027688 1 0 4 2 2 2 6 5898240 2949120 2949120 2950903 8985600 150 150 150 161 1922 0 0 0 0 58 0 0 0 0 1 +1242 1783877882869900300 DEPTH 24 1 0.68645064423823055 1 4 11 4 11 0 0 498 48 2537 23742646 147840 1273.0041198730469 8.5993999999999993 2162.8321000000001 80640 44560 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 9868447908 8474336 1 0 4 2 2 2 6 5898240 2949120 2949120 2950948 8985600 150 150 150 158 1929 0 0 0 0 48 0 0 0 0 0 +1243 1783877885469144400 DEPTH 40 1 0.6858472326022711 0.64821124361158422 1 10 1 10 0 0 1878 38 2572 23716790 121920 1294.0800018310547 8.6189 2540.2256000000002 87360 42395 1 0 0.080761468709365639 0.52703851695867954 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 9872930256 12956684 1 0 4 3 3 2 4 5898240 3194880 4423680 2950995 7238400 150 150 150 467 1655 0 1 5 0 32 0 0 0 0 0 +1244 1783877887917576100 DEPTH 12 1 0.68556405976891255 0.54684838160136284 2 8 2 8 0 0 2005 59 2552 23691177 96000 1364.8660583496094 8.5951000000000004 2388.9811 120960 58224 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 9877392204 17418632 1 0 4 3 3 3 3 5898240 4423680 4423680 3442766 5491200 150 150 176 503 1573 2 0 1 3 53 0 0 0 0 0 +1245 1783877890211961600 DEPTH 49 1 0.68544541929081526 0.4454855195911413 3 6 3 6 0 0 1704 106 2513 23677511 81600 1320.7063293457031 8.6334999999999997 2224.9654999999998 120960 57908 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 9881814372 21840800 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 150 206 1857 0 0 1 1 104 0 0 0 0 0 +1246 1783877890731922200 REFRESH 53 0 0.60368349345801375 0.37478705281090291 0 8 0 8 0 0 4096 28 415 3987587 55200 226.81916809082031 1.446 453.05380000000002 20160 11866 0 0 0 0.20923722992907676 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9882545896 22572324 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 205 135 0 0 0 6 22 0 0 0 0 0 +1247 1783877891216322400 REFRESH 11 0 0.68482814724260166 0.37478705281090291 0 8 0 8 0 0 2711 10 420 3987991 55680 225.49708557128906 1.4399 428.56950000000001 20160 11843 0 0 2.2195712661000718e-05 0.66225374060364872 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9883282520 23308948 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 25 186 159 0 0 0 2 8 0 0 0 0 0 +1248 1783877891666521400 REFRESH 45 0 0.68433970205555728 0.45315161839863699 2 7 2 7 0 0 2328 41 414 3987594 55200 226.88870239257812 1.4892000000000001 389.69979999999998 20160 11879 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9884013024 24039452 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 58 281 0 0 0 4 37 0 0 0 0 0 +1249 1783877892115261400 REFRESH 57 0 0.68903798968462182 0.27342419080068137 1 6 1 6 0 0 4096 13 411 3987618 55200 225.77459716796875 1.4212 394.71260000000001 20160 12094 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9884740468 24766896 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 29 172 160 0 0 0 4 9 0 0 0 0 0 +1250 1783877892522146900 REFRESH 40 0 0.50193112265591711 0.64821124361158422 1 10 1 10 0 0 1880 13 422 3987988 55680 235.37663269042969 1.4499 404.99160000000001 20160 14903 0 0 0.080761468709365639 0.52703851695867954 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9885479132 25505560 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 25 114 233 0 0 1 2 10 0 0 0 0 0 +1251 1783877892979423300 REFRESH 13 0 0.68904307609785997 0.27342419080068137 1 6 1 6 0 0 4096 41 417 3987633 55200 227.07096862792969 1.4226000000000001 394.9923 20160 12233 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9886212696 26239124 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 28 184 155 0 0 1 6 34 0 0 0 0 0 +1252 1783877893406151100 REFRESH 15 0 0.6787122852773636 0.91396933560476989 3 11 3 11 0 0 322 7 414 3988963 56640 223.62623596191406 1.4318 368.65929999999997 6720 4839 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9886943200 26969628 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 25 25 25 40 299 0 0 0 1 6 0 0 0 0 0 +1253 1783877893827729100 REFRESH 19 0 0.68464270092222768 0.8279386712095399 2 11 2 11 0 0 917 14 410 3988955 56640 226.46272277832031 1.4286000000000001 365.93049999999999 13440 8037 0 0 0.030726597407889203 0.38680088795667933 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9887669624 27696052 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 36 299 0 0 0 0 14 0 0 0 0 0 +1254 1783877894263214900 REFRESH 50 0 0.6809069584816323 0.64054514480408853 2 9 2 9 0 0 1088 6 415 3988965 56640 224.6297607421875 1.4336 379.23390000000001 13440 7963 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9888401148 28427576 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 28 312 0 0 0 0 6 0 0 0 0 0 +1255 1783877894691994300 REFRESH 5 0 0.68391059995598946 0.8279386712095399 2 11 2 11 0 0 928 21 418 3988951 56640 233.02450561523438 1.4339999999999999 368.4196 13440 8875 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9889135732 29162160 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 74 269 0 0 0 1 20 0 0 0 0 0 +1256 1783877895138946100 REFRESH 3 0 0.68361372354719219 0.64054514480408853 2 9 2 9 0 0 1228 24 411 3988447 56160 232.16537475585938 1.4281999999999999 387.16930000000002 13440 8002 0 0 0.0076224078323330153 0.12664224281341724 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9889863176 29889604 1 0 4 2 3 2 5 983040 491520 737280 491645 1248000 25 25 25 149 187 0 0 0 3 21 0 0 0 0 0 +1257 1783877895506500400 REFRESH 49 0 0.55207418788830043 0.4454855195911413 3 6 3 6 0 0 1717 30 414 3987591 55200 225.30355834960938 1.4388000000000001 366.01999999999998 20160 12065 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9890593680 30620108 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 72 267 0 0 0 1 29 0 0 0 0 0 +1258 1783877895964776100 REFRESH 54 0 0.67775038250466513 0.4608177172061329 1 8 1 8 0 0 1261 25 412 3988017 55680 234.89637756347656 1.4257 405.0591 26880 19803 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 9891322144 31348572 1 0 4 4 2 2 4 983040 983040 491520 491697 998400 25 25 26 43 293 0 0 0 1 24 0 0 0 0 0 +1259 1783877896429638200 REFRESH 1 0 0.68383406918726819 0.36712095400340705 1 7 1 7 0 0 3556 25 420 3987591 55200 235.79750061035156 1.4257 409.22289999999998 20160 12076 0 0 0.028757582214450197 1.7174169605870635 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9892058768 32085196 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 29 171 170 0 0 1 1 23 0 0 0 0 0 +1260 1783877896846431900 REFRESH 31 0 0.702185409860828 0.26575809199318562 2 5 2 5 0 0 3134 22 424 3988081 55680 244.32537841796875 1.4403999999999999 415.31060000000002 20160 14201 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9892799472 32825900 1 0 4 3 2 3 4 983040 737280 491520 737514 998400 25 25 26 242 106 0 0 0 8 14 0 0 0 0 0 +1261 1783877897288394400 REFRESH 18 0 0.69496344131390198 0.92163543441226559 2 12 2 12 0 0 462 12 414 3988589 56160 242.66035461425781 1.4439 383.55439999999999 13440 7879 0 0 0.0030756790657852913 0.93460072653259618 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9893529976 33556404 1 0 4 2 2 3 5 983040 491520 491520 737537 1248000 26 25 25 73 265 0 0 0 0 12 0 0 0 0 0 +1262 1783877897677043600 REFRESH 22 0 0.64266901378956687 0.91396933560476989 3 11 3 11 0 0 497 9 411 3988921 56640 236.7530517578125 1.4347000000000001 387.22219999999999 13440 8461 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9894257420 34283848 1 0 4 2 2 2 6 983040 491520 491520 491637 1497600 26 25 25 26 309 0 0 0 0 9 0 0 0 0 0 +1263 1783877898103794800 REFRESH 46 0 0.68294144488986985 0.37478705281090291 0 8 0 8 0 0 2874 8 418 3987607 55200 238.14860534667969 1.4229000000000001 424.6463 20160 11789 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9894992004 35018432 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 229 114 0 0 0 2 6 0 0 0 0 0 +1264 1783877898544678400 REFRESH 6 0 0.68213760145418267 0.91396933560476989 3 11 3 11 0 0 384 5 420 3988929 56640 233.98605346679688 1.4447000000000001 379.19049999999999 6720 4799 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9895728628 35755056 1 0 5 1 2 2 6 1228800 245760 491520 491649 1497600 26 25 25 35 309 0 0 0 0 5 0 0 0 0 0 +1265 1783877899002936800 REFRESH 2 0 0.68477220783689341 0.45315161839863699 2 7 2 7 0 0 3989 49 410 3987579 55200 245.41696166992188 1.4356 398.58409999999998 20160 14664 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9896455052 36481480 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 25 66 269 0 0 0 3 46 0 0 0 0 0 +1266 1783877899450454600 REFRESH 33 0 0.68392950539121422 0.36712095400340705 1 7 1 7 0 0 3778 45 415 3987622 55200 239.20640563964844 1.4313 385.57979999999998 20160 12377 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9897186576 37213004 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 116 224 0 0 0 5 40 0 0 0 0 0 +1267 1783877899942335000 REFRESH 34 0 0.68368647660961734 0.8356047700170357 1 12 1 12 0 0 808 21 422 3987990 55680 236.50201416015625 1.4309000000000001 371.53960000000001 20160 13659 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 9897925240 37951668 1 0 5 3 2 2 4 1228800 737280 491520 491670 998400 25 25 59 100 213 0 0 0 1 20 0 0 0 0 0 +1268 1783877900376905800 REFRESH 10 0 0.68301692707652062 0.64821124361158422 1 10 1 10 0 0 1230 11 424 3988473 56160 235.21792602539062 1.4247000000000001 378.70530000000002 13440 7817 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9898665944 38692372 1 0 4 2 3 2 5 983040 491520 737280 491668 1248000 25 25 26 157 191 0 0 1 1 9 0 0 0 0 0 +1269 1783877900831676500 REFRESH 26 0 0.6837201356472995 0.55451448040885853 1 9 1 9 0 0 2153 21 416 3987628 55200 237.48710632324219 1.4380999999999999 399.89449999999999 20160 11733 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 9899398488 39424916 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 36 165 165 0 1 1 0 19 0 0 0 0 0 +1270 1783877901256564000 REFRESH 51 0 0.6852580705274105 0.91396933560476989 3 11 3 11 0 0 562 13 394 3988937 56640 233.89286804199219 1.4300999999999999 364.91140000000001 13440 8743 0 0 0.04334156167556856 0.2777547488783888 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 9900108592 40135020 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 25 43 276 0 0 0 1 12 0 0 0 0 0 +1271 1783877901684400500 REFRESH 29 0 0.6840411250871089 0.82027257240204421 3 10 3 10 0 0 1127 12 417 3987921 55680 229.43539428710938 1.4301999999999999 364.12090000000001 20160 14924 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 9900842156 40868584 1 0 6 3 2 1 4 1474560 737280 491520 245839 998400 30 25 37 48 277 0 0 1 3 8 0 0 0 0 0 +1272 1783877902113577900 REFRESH 4 0 0.67719799985953411 0.8356047700170357 1 12 1 12 1 0 288 10 420 3988956 56640 233.85189819335938 1.4321999999999999 372.65910000000002 6720 4817 0 0 0.039919103659356581 1.2724669966760918 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 9901578780 41605208 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 37 308 1 0 0 0 9 0 0 0 0 1 +1273 1783877902614883500 REFRESH 8 0 0.68761271106538746 0.26575809199318562 2 5 2 5 0 0 2528 12 406 3987605 55200 228.02227783203125 1.4564999999999999 383.18579999999997 20160 12242 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9902301124 42327552 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 26 126 204 0 0 0 1 11 0 0 0 0 0 +1274 1783877903079563700 REFRESH 25 0 0.68464296076453435 0.4608177172061329 1 8 1 8 0 0 2508 26 418 3987590 55200 239.11219787597656 1.4431 404.93130000000002 20160 11917 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9903035708 43062136 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 28 171 169 0 0 0 7 19 0 0 0 0 0 +1275 1783877903460966900 REFRESH 24 0 0.68239428060219598 1 4 11 4 11 0 0 498 13 397 3988947 56640 227.10989379882812 1.4378 379.78429999999997 13440 8528 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 9903748872 43775300 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 36 286 0 0 0 0 13 0 0 0 0 0 +1276 1783877903899885000 REFRESH 28 0 0.68215415878202923 0.8279386712095399 2 11 2 11 0 0 668 11 409 3988946 56640 236.27162170410156 1.4413 380.6626 13440 8251 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9904474276 44500704 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 25 26 307 0 0 0 0 11 0 0 0 0 0 +1277 1783877904372381500 REFRESH 44 0 0.68393173431524801 0.36712095400340705 1 7 1 7 0 0 2503 33 423 3987614 55200 237.70623779296875 1.427 412.01859999999999 20160 12256 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 9905213960 45240388 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 26 107 240 0 0 0 6 27 0 0 0 0 0 +1278 1783877904848405600 REFRESH 48 0 0.68932368000275512 0.26575809199318562 2 5 2 5 0 0 2702 15 419 3987639 55200 238.41075134277344 1.4319 416.17669999999998 20160 11986 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 9905949564 45975992 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 30 211 128 0 0 1 2 12 0 0 0 0 0 +1279 1783877905309518300 REFRESH 41 0 0.68518688032752273 0.55451448040885853 1 9 1 9 0 0 2450 13 427 3987992 55680 236.3504638671875 1.4251 404.26499999999999 20160 11829 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9906693328 46719756 1 0 4 3 3 2 4 983040 737280 737280 491667 998400 25 25 31 207 139 0 0 0 3 10 0 0 0 0 0 +1280 1783877905739290400 REFRESH 23 0 0.68389919382673114 0.74190800681430991 1 11 1 11 0 0 3552 16 411 3988489 56160 236.04432678222656 1.4349000000000001 374.35180000000003 13440 7840 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 9907420772 47447200 1 0 4 2 3 2 5 983040 491520 737280 491686 1248000 25 25 25 148 188 0 0 0 3 13 0 0 0 0 0 +1281 1783877906181328100 REFRESH 0 0 0.68313444890586184 0.8279386712095399 2 11 2 11 0 0 933 15 414 3988949 56640 235.28346252441406 1.4291 385.29250000000002 13440 9789 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9908151276 48177704 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 34 304 0 0 0 1 14 0 0 0 0 0 +1282 1783877906599495400 REFRESH 7 0 0.68499096428922457 0.8356047700170357 1 12 1 12 0 0 925 22 407 3988968 56640 223.61088562011719 1.4251 359.39499999999998 13440 8059 0 0 0.00024294576435012201 0.71873422066324466 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 9908874640 48901068 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 25 34 298 0 0 0 0 22 0 0 0 0 0 +1283 1783877907093771700 REFRESH 42 0 0.85286612217027513 0 0 4 0 4 0 0 4096 4 426 3987746 55200 239.47059631347656 1.4454 435.88249999999999 20160 13484 0 0 0 0.0064243164954683766 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9909617384 49643812 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 51 25 41 232 77 0 0 0 0 4 0 0 0 0 0 +1284 1783877907534394800 REFRESH 32 0 0.68470995342811469 0.4608177172061329 1 8 1 8 0 0 3260 37 418 3987681 55200 227.57887268066406 1.4516 380.18849999999998 20160 12454 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9910351968 50378396 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 51 292 0 0 0 5 32 0 0 0 0 0 +1285 1783877908016343000 REFRESH 9 0 0.68796405456917364 0.27342419080068137 1 6 1 6 0 0 3418 10 425 3987640 55200 239.285400390625 1.4446000000000001 424.78500000000003 20160 11969 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9911093692 51120120 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 26 271 78 0 0 0 3 7 0 0 0 0 0 +1286 1783877908406708200 REFRESH 12 0 0.68078398889856628 0.54684838160136284 2 8 2 8 0 0 2007 20 425 3987647 55200 232.08551025390625 1.4585999999999999 388.95089999999999 20160 11949 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9911835416 51861844 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 48 140 187 1 0 5 1 13 0 0 0 0 0 +1287 1783877908900222900 REFRESH 17 0 0.68724437948022887 0.28109028960817717 0 7 0 7 0 0 4096 10 426 3987643 55200 238.45085144042969 1.4380999999999999 436.7072 20160 12027 0 0 3.5835210246097901e-05 0.061905419258030558 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 9912578160 52604588 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 32 261 83 1 0 0 1 8 0 0 0 0 0 +1288 1783877909336899600 REFRESH 16 0 0.68412721031059376 0.3594548551959113 2 6 2 6 0 0 3587 18 415 3987612 55200 238.15168762207031 1.4394 379.99079999999998 20160 11882 0 0 0.0061145245995964234 0.25422467921659231 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9913309684 53336112 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 25 131 209 0 0 0 2 16 0 0 0 0 0 +1289 1783877909830919800 REFRESH 56 0 0.70517707782120587 0.17206132879045993 2 4 2 4 0 0 4096 23 427 3987633 55200 238.12608337402344 1.4246000000000001 433.16719999999998 20160 12388 0 0 0.003291061305650188 0.34452168957490853 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9914053448 54079876 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 58 25 25 238 81 3 0 0 3 17 0 0 0 0 0 +1290 1783877910255671400 REFRESH 58 0 0.68478168052076582 0.92163543441226559 2 12 2 12 0 0 547 15 406 3988939 56640 234.83187866210938 1.4356 368.37959999999998 13440 8654 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 9914775792 54802220 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 25 34 297 1 0 0 0 14 0 0 0 0 0 +1291 1783877910743716200 REFRESH 14 0 0.68401314469347818 0.65587734241908002 0 11 0 11 0 0 1824 25 408 3988077 55680 229.64019775390625 1.4244000000000001 370.37549999999999 13440 7989 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 9915500176 55526604 1 0 4 2 3 3 4 983040 491520 737280 737516 998400 26 25 25 73 259 0 0 0 5 20 0 0 0 0 0 +1292 1783877911180280100 REFRESH 36 0 0.68507170689312413 0.82027257240204421 3 10 3 10 0 0 1325 22 403 3988956 56640 235.07968139648438 1.4336 379.33260000000001 13440 8129 0 0 0.083950986341412126 0.13623009756232651 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9916219460 56245888 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 25 41 286 0 0 0 2 20 0 0 0 0 0 +1293 1783877911625131100 REFRESH 27 0 0.68486592009325653 0.4608177172061329 1 8 1 8 0 0 4034 34 414 3987613 55200 226.46885681152344 1.427 383.68470000000002 20160 12477 0 0 0.093285221477725735 0.9451563867766839 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9916949964 56976392 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 27 135 202 0 0 0 2 32 0 0 0 0 0 +1294 1783877912113918500 REFRESH 20 0 0.68008600829092514 0.26575809199318562 2 5 2 5 0 0 2224 8 431 3987618 55200 237.74208068847656 1.4329000000000001 427.19170000000003 20160 12013 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 9917697808 57724236 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 35 175 171 1 0 0 0 7 0 0 0 0 0 +1295 1783877912535888200 REFRESH 47 0 0.68509301386226951 0.8279386712095399 2 11 2 11 0 0 711 12 409 3988952 56640 224.48025512695312 1.4204000000000001 366.33600000000001 13440 8021 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 9918423212 58449640 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 25 32 301 0 0 0 0 12 0 0 0 0 0 +1296 1783877913026952600 REFRESH 37 0 0.68521912621258185 0.8356047700170357 1 12 1 12 0 0 1059 20 410 3988989 56640 234.19290161132812 1.4358 373.54790000000003 13440 8144 0 0 0.0038464825449119663 0.37463918263131929 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9919149636 59176064 1 0 4 2 2 2 6 983040 491520 491520 491706 1497600 25 25 25 45 290 0 0 0 4 16 0 0 0 0 0 +1297 1783877913474470000 REFRESH 21 0 0.68549027554770992 0.56218057921635434 0 10 0 10 0 0 2786 23 414 3988002 55680 230.73178100585938 1.4297 389.32510000000002 20160 11859 0 0 0.00031281723306166432 1.0356549966016075 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 9919880140 59906568 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 26 188 150 0 0 1 7 15 0 0 0 0 0 +1298 1783877913931313500 REFRESH 38 0 0.68441339793733236 0.55451448040885853 1 9 1 9 0 0 2207 13 425 3988452 56160 236.98739624023438 1.4399999999999999 400.39659999999998 20160 12920 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 9920621864 60648292 1 0 4 3 2 2 5 983040 737280 491520 491652 1248000 25 25 25 257 93 0 0 0 2 11 0 0 0 0 0 +1299 1783877914403263800 REFRESH 39 0 0.68408590871456409 0.55451448040885853 1 9 1 9 0 0 1658 7 424 3988488 56160 234.76325988769531 1.4252 415.8596 13440 7954 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 9921362568 61388996 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 25 25 25 153 196 0 0 0 0 7 0 0 0 0 0 +1300 1783877914823198900 REFRESH 35 0 0.68439120976850609 0.8279386712095399 2 11 2 11 0 0 1148 16 403 3988455 56160 235.29061889648438 1.4618 363.17360000000002 13440 9993 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 9922081852 62108280 1 0 5 2 2 2 5 1228800 491520 491520 491654 1248000 25 25 25 31 297 0 0 0 0 16 0 0 0 0 0 +1301 1783877915250065000 REFRESH 55 0 0.68427430558755142 0.64054514480408853 2 9 2 9 0 0 1123 14 410 3988480 56160 238.56153869628906 1.4325000000000001 367.26319999999998 13440 8037 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 9922808276 62834704 1 0 4 2 3 2 5 983040 491520 737280 491674 1248000 25 25 25 203 132 0 0 0 4 10 0 0 0 0 0 +1302 1783877915763792100 REFRESH 30 0 0.68493731606745589 0.4608177172061329 1 8 1 8 0 0 3879 46 415 3987603 55200 231.48646545410156 1.4251 391.60570000000001 20160 14897 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 9923539800 63566228 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 27 181 157 0 0 0 17 29 0 0 0 0 0 +1303 1783877916192051400 REFRESH 43 0 0.68556206407900599 0.8279386712095399 2 11 2 11 0 0 816 13 418 3988016 55680 239.80339050292969 1.425 369.31900000000002 26880 19956 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 9924274384 64300812 1 0 6 4 1 1 4 1474560 983040 245760 245838 998400 25 25 67 111 190 0 0 1 0 12 0 0 0 0 0 +1304 1783877916652132400 REFRESH 52 0 0.68409754236975906 0.36712095400340705 1 7 1 7 0 0 2479 18 427 3987601 55200 225.77066040039062 1.4379 400.90969999999999 20160 11983 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 9925018148 65044576 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 191 158 1 0 0 0 17 0 0 0 0 0 +1305 1783877920545699900 DEPTH 42 1 0.81631970050197578 0 0 4 0 4 0 0 4096 13 2587 23678342 81600 1376.6584167480469 8.7469999999999999 3774.1932999999999 120960 65491 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 9929515876 2434080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426570 4492800 273 150 216 1446 502 0 0 0 0 13 0 0 0 0 0 +1306 1783877923074639600 DEPTH 31 1 0.72530240119115352 0.26575809199318562 2 5 2 5 0 0 3138 56 2634 23699494 103680 1348.6356506347656 8.6105 2527.3560000000002 120960 68735 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2634 1920 0 384 1 9934061464 6979668 1 0 4 3 2 3 4 5898240 4423680 2949120 4426478 5990400 150 150 152 906 1276 0 0 0 2 54 0 0 0 0 0 +1307 1783877925242645100 DEPTH 18 1 0.68930841237906515 0.92163543441226559 2 12 2 12 0 0 463 44 2534 23706119 110400 1336.2298889160156 8.6184999999999992 2166.6642999999999 80640 37987 1 0 0.0030756790657852913 0.93460072653259618 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 9938505052 11423256 1 0 4 2 3 3 4 5898240 2949120 3932160 4426364 6489600 156 150 150 683 1395 0 0 0 2 42 0 0 0 0 0 +1308 1783877927749257000 DEPTH 57 1 0.68659323251579329 0.27342419080068137 1 6 1 6 0 0 4096 91 2536 23677692 81600 1316.5557708740234 8.5904000000000007 2388.2575999999999 120960 56974 1 0 0.00072320436298138147 0.46725676151593171 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 9942950680 15868884 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 168 752 1316 0 0 1 4 86 0 0 0 0 0 +1309 1783877930136938500 DEPTH 48 1 0.68658892059701659 0.26575809199318562 2 5 2 5 0 0 2711 38 2571 23677694 81600 1295.56494140625 8.594100000000001 2386.4173000000001 120960 56745 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 9947432008 20350212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 150 150 186 842 1243 0 0 3 0 35 0 0 0 0 0 +1310 1783877932674280700 DEPTH 13 1 0.68659889947307184 0.27342419080068137 1 6 1 6 0 0 4096 60 2566 23677688 81600 1299.8882141113281 8.6074999999999982 2410.9337999999998 120960 58099 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 9951908236 24826440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 162 806 1298 0 0 0 0 60 0 0 0 0 0 +1311 1783877935055465300 DEPTH 8 1 0.68511545279149932 0.26575809199318562 2 5 2 5 0 0 2533 63 2508 23677457 81600 1342.8224029541016 8.6019000000000005 2265.8987000000002 120960 58668 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2508 1920 0 384 1 9956325304 29243508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 156 360 1692 0 0 0 1 62 0 0 0 0 0 +1312 1783877937532981700 DEPTH 11 1 0.68232847810918729 0.37478705281090291 0 8 0 8 0 0 2723 43 2540 23698568 103680 1280.5595092773438 8.5910999999999991 2350.7806 120960 55948 1 0 2.2195712661000718e-05 0.66225374060364872 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 9960775012 33693216 1 0 4 3 3 2 4 5898240 4423680 4423680 2950973 5990400 150 150 150 879 1211 0 1 0 0 42 0 0 0 0 0 +1313 1783877940011143700 DEPTH 56 1 0.69264470504524933 0.17206132879045993 2 4 2 4 0 0 4096 46 2570 23677821 81600 1292.9875335693359 8.6023999999999994 2417.2429999999999 120960 58402 1 0 0.003291061305650188 0.34452168957490853 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 9965255320 38173524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 291 150 150 1264 715 5 0 0 0 41 0 0 0 0 0 +1314 1783877942521639400 DEPTH 9 1 0.68535029624901189 0.27342419080068137 1 6 1 6 0 0 3427 29 2600 23677783 81600 1335.5007781982422 8.5924999999999994 2450.4128999999998 120960 57282 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 9969766228 42684432 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 153 1628 519 0 0 1 1 27 0 0 0 0 0 +1315 1783877945097492400 DEPTH 17 1 0.68469407511698743 0.28109028960817717 0 7 0 7 1 0 4096 57 2569 23684894 89280 1327.0640563964844 8.7257999999999996 2515.7678000000001 120960 56550 1 1 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 9974245516 47163720 1 0 4 3 3 2 4 5898240 4423680 4423680 3934570 4992000 150 150 187 826 1256 2 0 3 0 51 0 0 0 0 3 +1316 1783877947536500900 DEPTH 41 1 0.68170341082538255 0.55451448040885853 1 9 1 9 0 0 2457 49 2579 23691374 96000 1307.6449127197266 8.5925000000000011 2382.3137999999999 120960 56912 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 9978735004 51653208 1 0 4 3 3 3 3 5898240 4423680 4423680 3442828 5491200 150 150 158 927 1194 4 0 5 7 33 0 0 0 0 0 +1317 1783877949901438500 DEPTH 2 1 0.68166553057343293 0.45315161839863699 2 7 2 7 0 0 4021 132 2536 23677476 81600 1295.1019439697266 8.5903000000000009 2297.8411000000001 120960 70565 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 9983180632 56098836 1 0 4 3 3 3 3 5898240 4423680 4423680 4426562 4492800 150 150 150 280 1806 2 0 0 0 130 0 0 0 0 0 +1318 1783877952330971100 DEPTH 25 1 0.68146834635593145 0.4608177172061329 1 8 1 8 0 0 2519 47 2552 23677473 81600 1294.6145172119141 8.6051000000000002 2373.5974000000001 120960 57871 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 9987642580 60560784 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 160 655 1437 0 0 1 0 46 0 0 0 0 0 +1319 1783877954766495400 DEPTH 45 1 0.68147248558275453 0.45315161839863699 2 7 2 7 0 0 2334 39 2547 23677525 81600 1292.5460510253906 8.5903000000000009 2373.5994000000001 120960 57362 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 9992099428 65017632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426528 4492800 150 150 150 367 1730 0 0 0 4 35 0 0 0 0 0 +1320 1783877957954266200 DEPTH 51 1 0.68148480673665102 0.91396933560476989 3 11 3 11 1 0 563 23 2470 23742689 147840 1276.3289642333984 8.5995999999999988 3133.569 80640 43878 1 0 0.050945970454884047 0.25708581262690366 4096 2048 384 12 96 360 72 24 0 2470 1920 0 384 1 9996477816 2288552 1 0 4 2 2 2 6 5898240 2949120 2949120 2950993 8985600 150 150 150 183 1837 0 1 0 0 22 0 0 0 0 2 +1321 1783877960368399700 DEPTH 42 1 0.75625895802434295 0 0 4 0 4 0 0 4096 17 2583 23678196 81600 1305.2037048339844 8.5950999999999986 2412.8706000000002 120960 54547 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 10000971384 6782120 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 250 150 198 1484 501 0 0 0 0 17 0 0 0 0 0 +1322 1783877962752742000 DEPTH 27 1 0.68152032332795809 0.4608177172061329 1 8 1 8 0 0 4057 108 2557 23677452 81600 1307.936767578125 8.5952999999999999 2327.4348 120960 62222 1 0 0.093285221477725735 0.9451563867766839 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 10005438432 11249168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426540 4492800 150 150 150 465 1642 0 0 0 2 106 0 0 0 0 0 +1323 1783877965130718700 DEPTH 32 1 0.68148137308636914 0.4608177172061329 1 8 1 8 0 0 3275 76 2559 23677380 81600 1315.0649108886719 8.6532999999999998 2313.5337 120960 58340 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10009907520 15718256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 150 183 1926 0 0 0 1 75 0 0 0 0 0 +1324 1783877967648197900 DEPTH 44 1 0.6813500784328772 0.36712095400340705 1 7 1 7 0 0 2513 40 2589 23677519 81600 1313.5033874511719 8.6172000000000004 2397.8053 120960 57570 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 10014407208 20217944 1 0 4 3 3 3 3 5898240 4423680 4423680 4426545 4492800 150 150 155 388 1746 5 0 1 1 33 0 0 0 0 0 +1325 1783877970025247700 DEPTH 33 1 0.68121775840600718 0.36712095400340705 1 7 1 7 0 0 3790 61 2520 23677371 81600 1309.3843383789062 8.6143999999999998 2322.4427999999998 120960 58143 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 10018836516 24647252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 298 1772 0 0 2 4 55 0 0 0 0 0 +1326 1783877972451306300 DEPTH 1 1 0.68121054925626501 0.36712095400340705 1 7 1 7 1 0 3587 84 2564 23677552 81600 1314.2129669189453 8.6252999999999993 2362.8523 120960 57067 1 0 0.027220421789096085 1.2023003026364414 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 10023310704 29121440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426538 4492800 150 150 172 759 1333 0 0 7 0 77 0 0 0 0 1 +1327 1783877974613732600 DEPTH 37 1 0.68122685635191171 0.8356047700170357 1 12 1 12 0 0 1061 30 2551 23735064 140160 1301.3431091308594 8.6097999999999999 2107.1338999999998 94080 47050 1 0 0.0038464825449119663 0.37463918263131929 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10027771632 33582368 1 0 4 3 2 2 5 5898240 3440640 2949120 2951026 8486400 150 150 150 275 1826 0 0 0 2 28 0 0 0 0 0 +1328 1783877977109799200 DEPTH 53 1 0.6812233964710912 0.37478705281090291 0 8 0 8 1 0 4096 62 2534 23677349 81600 1314.7197265625 8.5971999999999991 2430.1008999999999 120960 55711 1 0 0 0.20692837474269371 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 10032215220 38025956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 150 150 150 897 1187 0 0 0 4 58 0 0 0 0 2 +1329 1783877979568964700 DEPTH 31 1 0.69868867108550092 0.26575809199318562 2 5 2 5 0 0 3144 47 2649 23680144 84480 1291.4974670410156 8.6081000000000003 2400.1752999999999 120960 56730 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2649 1920 0 384 1 10036776108 42586844 1 0 4 3 3 3 3 5898240 4423680 4177920 4426332 4742400 150 150 150 1293 906 0 0 6 3 38 0 0 0 0 0 +1330 1783877981963667400 DEPTH 21 1 0.68194497567483392 0.56218057921635434 0 10 0 10 1 0 2799 51 2554 23698546 103680 1285.4150695800781 8.5882000000000005 2336.1100000000001 120960 57029 1 0 0.00032950048249881503 1.0347713611380345 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 10041240096 47050832 1 0 4 3 3 2 4 5898240 4423680 4423680 2950973 5990400 150 150 155 752 1347 0 0 1 5 45 0 0 0 0 1 +1331 1783877984257048300 DEPTH 43 1 0.68179206964551664 0.8279386712095399 2 11 2 11 0 0 816 37 2595 23678952 84480 1390.8944396972656 8.6340000000000003 2235.6174999999998 161280 91172 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 10045745904 51556640 1 0 6 4 2 1 3 8847360 5898240 2703360 1475488 4742400 150 150 210 1002 1083 2 0 0 1 34 0 0 0 0 0 +1332 1783877987006561100 DEPTH 30 1 0.68160205679846086 0.4608177172061329 1 8 1 8 0 0 3895 75 2534 23677408 81600 1501.3992462158203 9.610100000000001 2680.1676000000002 120960 69480 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 10050189492 56000228 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 150 150 150 706 1378 0 2 0 3 70 0 0 0 0 0 +1333 1783877989727868000 DEPTH 38 1 0.68155191824991301 0.55451448040885853 1 9 1 9 0 0 2214 46 2565 23701353 106560 1545.9787445068359 8.6228999999999996 2657.0383000000002 120960 64640 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 10054664700 60475436 1 0 4 3 3 2 4 5898240 4423680 4177920 2950934 6240000 150 150 150 1381 734 0 0 1 7 38 0 0 0 0 0 +1334 1783877992182831900 DEPTH 16 1 0.68127514016985058 0.3594548551959113 2 6 2 6 1 0 3608 121 2545 23677524 81600 1427.4355163574219 8.7365999999999993 2386.1990999999998 120960 57941 1 0 0.0060390870541172353 0.13567556836191094 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 10059119508 64930244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 513 1582 0 0 0 1 120 0 0 0 0 1 +1335 1783877995877770200 DEPTH 19 1 0.68127845842117241 0.8279386712095399 2 11 2 11 0 0 924 32 2554 23734944 140160 1581.6468505859375 8.9847999999999999 3636.0772999999999 80640 38820 1 0 0.030726597407889203 0.38680088795667933 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 10063583576 2285720 1 0 4 2 3 2 5 5898240 2949120 3440640 2950901 8486400 150 150 150 265 1839 0 0 0 2 30 0 0 0 0 0 +1336 1783877998251217700 DEPTH 7 1 0.68128056413914884 0.8356047700170357 1 12 1 12 1 0 929 50 2531 23738843 144000 1375.3057403564453 8.6785999999999994 2315.5351000000001 80640 39098 1 0 0.00027547762741404031 0.69819537361901229 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 10068024104 6726248 1 0 4 2 3 2 5 5898240 2949120 3194880 2950962 8736000 150 150 150 189 1892 0 0 0 2 48 0 0 0 0 2 +1337 1783877998652800700 REFRESH 38 0 0.46837753713156649 0.55451448040885853 1 9 1 9 0 0 2215 14 424 3987983 55680 236.5716552734375 1.4318 400.03120000000001 20160 12036 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10068764808 7466952 1 0 4 3 3 2 4 983040 737280 737280 491662 998400 25 25 25 229 120 0 0 0 6 8 0 0 0 0 0 +1338 1783877999102286900 REFRESH 29 0 0.68116381373328749 0.82027257240204421 3 10 3 10 0 0 1127 9 422 3987908 55680 243.5758056640625 1.4366000000000001 389.05829999999997 20160 14650 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10069503472 8205616 1 0 6 3 2 1 4 1474560 737280 491520 245828 998400 30 25 39 71 257 0 0 2 0 7 0 0 0 0 0 +1339 1783877999539828800 REFRESH 36 0 0.68127810534154454 0.82027257240204421 3 10 3 10 0 0 1331 20 414 3988975 56640 234.80012512207031 1.4415 379.95350000000002 13440 8129 0 0 0.083950986341412126 0.13623009756232651 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10070233976 8936120 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 44 294 0 0 0 0 20 0 0 0 0 0 +1340 1783877999984356700 REFRESH 24 0 0.67886186245326752 1 4 11 4 11 0 0 498 7 399 3988957 56640 239.96826171875 1.4386000000000001 387.31720000000001 13440 8367 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 10070949180 9651324 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 25 35 289 0 0 0 0 7 0 0 0 0 0 +1341 1783878000411628600 REFRESH 53 0 0.55812459770727152 0.37478705281090291 0 8 0 8 0 0 4096 29 413 3987581 55200 239.1173095703125 1.4331 426.01979999999998 20160 11876 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10071678664 10380808 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 220 118 0 0 0 12 17 0 0 0 0 0 +1342 1783878000854976600 REFRESH 47 0 0.68129926217350611 0.8279386712095399 2 11 2 11 0 0 714 26 411 3988464 56160 237.47482299804688 1.4581 378.4067 13440 7944 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10072406108 11108252 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 25 25 25 34 302 0 0 0 1 25 0 0 0 0 0 +1343 1783878001279568100 REFRESH 31 0 0.60245066680938986 0.26575809199318562 2 5 2 5 0 0 3159 38 417 3987579 55200 238.90534973144531 1.4316 422.61500000000001 20160 12157 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10073139672 11841816 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 26 177 164 0 0 0 10 28 0 0 0 0 0 +1344 1783878001733951200 REFRESH 49 0 0.67960920069685615 0.4454855195911413 3 6 3 6 0 0 1721 21 411 3987599 55200 237.62226867675781 1.4318 394.9579 20160 12023 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10073867116 12569260 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 85 251 0 0 0 1 20 0 0 0 0 0 +1345 1783878002232807500 REFRESH 56 0 0.70025056398529451 0.17206132879045993 2 4 2 4 0 0 4096 9 418 3987642 55200 237.57926940917969 1.4306000000000001 441.28339999999997 20160 12430 0 0 0.003291061305650188 0.34452168957490853 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10074601700 13303844 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 53 25 25 239 76 3 0 0 0 6 0 0 0 0 0 +1346 1783878002674365300 REFRESH 10 0 0.6802326328105105 0.64821124361158422 1 10 1 10 0 0 1231 9 422 3988460 56160 234.77247619628906 1.4487000000000001 384.66699999999997 13440 7932 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10075340364 14042508 1 0 4 2 3 2 5 983040 491520 737280 491656 1248000 25 25 25 145 202 0 0 1 0 8 0 0 0 0 0 +1347 1783878003149274200 REFRESH 45 0 0.67821868601637703 0.45315161839863699 2 7 2 7 0 0 2352 42 411 3987598 55200 237.68063354492188 1.4316 410.4889 20160 11967 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10076067808 14769952 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 85 251 0 0 0 5 37 0 0 0 0 0 +1348 1783878003652874600 REFRESH 20 0 0.67747194027988922 0.26575809199318562 2 5 2 5 0 0 2226 11 430 3987613 55200 239.04972839355469 1.4337 441.43299999999999 20160 12026 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 10076814632 15516776 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 35 187 158 1 0 1 0 9 0 0 0 0 0 +1349 1783878004113604000 REFRESH 32 0 0.67820873892530931 0.4608177172061329 1 8 1 8 0 0 3293 37 413 3987623 55200 239.70098876953125 1.4972000000000001 398.4434 20160 12468 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10077544116 16246260 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 25 60 278 0 0 0 4 33 0 0 0 0 0 +1350 1783878004576021400 REFRESH 2 0 0.67844329247800672 0.45315161839863699 2 7 2 7 0 0 4037 38 410 3987593 55200 234.24205017089844 1.4400999999999999 402.49639999999999 20160 13733 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10078270540 16972684 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 95 240 0 0 1 5 32 0 0 0 0 0 +1351 1783878005024784000 REFRESH 41 0 0.67830389493431364 0.55451448040885853 1 9 1 9 0 0 2482 55 410 3987667 55200 229.49069213867188 1.4345000000000001 389.98910000000001 20160 12379 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10078996964 17699108 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 37 76 247 1 0 1 5 48 0 0 0 0 0 +1352 1783878005438983900 REFRESH 6 0 0.6750400515413939 0.91396933560476989 3 11 3 11 0 0 386 7 419 3988954 56640 221.3939208984375 1.4362999999999999 358.63720000000001 6720 4801 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10079732568 18434712 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 36 307 0 1 0 0 6 0 0 0 0 0 +1353 1783878005909729300 REFRESH 13 0 0.6840515932519744 0.27342419080068137 1 6 1 6 0 0 4096 29 420 3987640 55200 226.03468322753906 1.4329000000000001 408.36669999999998 20160 12227 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10080469192 19171336 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 28 180 162 0 0 0 1 28 0 0 0 0 0 +1354 1783878006331691500 REFRESH 37 0 0.67732913925360294 0.8356047700170357 1 12 1 12 1 0 1063 14 423 3988478 56160 222.16294860839844 1.4312 368.0127 20160 14984 0 0 0.0038465446887722379 0.3735084283888786 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10081208876 19911020 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 166 182 0 0 0 2 12 0 0 0 0 1 +1355 1783878006765615300 REFRESH 26 0 0.68010483103451813 0.55451448040885853 1 9 1 9 0 0 2154 17 416 3987665 55200 225.63226318359375 1.4299999999999999 377.37630000000001 20160 12011 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10081941420 20643564 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 37 178 151 0 0 1 2 14 0 0 0 0 0 +1356 1783878007267841600 REFRESH 1 0 0.67904841565425822 0.36712095400340705 1 7 1 7 0 0 3602 32 419 3987672 55200 223.57402038574219 1.4339 393.24299999999999 20160 11933 0 0 0.027220421789096085 1.2023003026364414 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10082677024 21379168 1 0 4 3 3 3 3 983040 737280 737280 737550 748800 25 25 29 156 184 0 0 0 0 32 0 0 0 0 0 +1357 1783878007651376600 REFRESH 16 0 0.65851362674232738 0.3594548551959113 2 6 2 6 0 0 3618 24 411 3987665 55200 224.22732543945312 1.4321999999999999 382.08420000000001 20160 12225 0 0 0.0060390870541172353 0.13567556836191094 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10083404468 22106612 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 137 199 0 0 0 2 22 0 0 0 0 0 +1358 1783878008102297100 REFRESH 33 0 0.67830893774682699 0.36712095400340705 1 7 1 7 0 0 3798 31 417 3987641 55200 225.0250244140625 1.4347000000000001 387.85000000000002 20160 12353 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10084138032 22840176 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 26 96 245 0 0 0 3 28 0 0 0 0 0 +1359 1783878008549470300 REFRESH 23 0 0.68062670966781158 0.74190800681430991 1 11 1 11 0 0 3556 15 416 3988464 56160 223.65286254882812 1.4955000000000001 382.33659999999998 13440 7989 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10084870576 23572720 1 0 4 2 3 2 5 983040 491520 737280 491662 1248000 25 25 25 161 180 0 0 0 3 12 0 0 0 0 0 +1360 1783878008916129700 REFRESH 7 0 0.66736755632432454 0.8356047700170357 1 12 1 12 0 0 937 29 413 3988503 56160 231.16902160644531 1.4309000000000001 365.25139999999999 13440 7928 0 0 0.00027547762741404031 0.69819537361901229 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10085600060 24302204 1 0 4 2 3 2 5 983040 491520 737280 491701 1248000 25 25 25 124 214 0 0 0 7 22 0 0 0 0 0 +1361 1783878009333321000 REFRESH 21 0 0.67849003701824917 0.56218057921635434 0 10 0 10 1 0 2804 19 423 3987981 55680 233.53958129882812 1.4309000000000001 415.61829999999998 20160 11647 0 0 0.00032898430553869579 1.0278675447307204 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10086339744 25041888 1 0 4 3 3 2 4 983040 737280 737280 491656 998400 25 25 26 248 99 0 0 0 10 9 0 0 0 0 1 +1362 1783878009788904800 REFRESH 30 0 0.6783656866611949 0.4608177172061329 1 8 1 8 0 0 3908 28 419 3987587 55200 235.80876159667969 1.446 399.202 20160 13871 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10087075348 25777492 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 27 214 128 0 0 0 12 16 0 0 0 0 0 +1363 1783878010213997000 REFRESH 12 0 0.67661985459847007 0.54684838160136284 2 8 2 8 0 0 2012 14 427 3987685 55200 224.38604736328125 1.4441999999999999 368.37900000000002 20160 12023 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10087819112 26521256 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 48 150 179 0 0 0 0 14 0 0 0 0 0 +1364 1783878010674445500 REFRESH 39 0 0.67859861372532371 0.55451448040885853 1 9 1 9 0 0 1659 11 424 3988461 56160 220.45184326171875 1.4302999999999999 402.4837 13440 7909 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10088559816 27261960 1 0 4 2 3 2 5 983040 491520 737280 491659 1248000 25 25 25 166 183 0 0 0 0 11 0 0 0 0 0 +1365 1783878011128881100 REFRESH 27 0 0.67842009823822402 0.4608177172061329 1 8 1 8 1 0 4065 28 413 3987603 55200 230.66316223144531 1.4331 387.77749999999997 20160 11937 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10089289300 27991444 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 27 143 193 0 0 0 6 22 0 0 0 0 1 +1366 1783878011585353300 REFRESH 57 0 0.68418878894081714 0.27342419080068137 1 6 1 6 0 0 4096 29 410 3987649 55200 233.49554443359375 1.4317 398.61669999999998 20160 12238 0 0 0.00072320436298138147 0.46725676151593171 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10090015724 28717868 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 29 188 143 0 0 0 7 22 0 0 0 0 0 +1367 1783878012111519300 REFRESH 40 0 0.67939531825698429 0.64821124361158422 1 10 1 10 1 0 1884 12 419 3988012 55680 223.10502624511719 1.4433 408.83420000000001 20160 14668 0 0 0.080761387287169403 0.52034308865915524 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10090751328 29453472 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 25 136 208 0 0 2 3 7 0 0 0 0 1 +1368 1783878012539473800 REFRESH 28 0 0.67946347708635035 0.8279386712095399 2 11 2 11 0 0 671 15 400 3988976 56640 231.22840881347656 1.4314 372.90629999999999 13440 8304 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 10091467552 30169696 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 25 26 298 0 0 0 0 15 0 0 0 0 0 +1369 1783878012957825800 REFRESH 18 0 0.68414736238807516 0.92163543441226559 2 12 2 12 1 0 464 11 415 3988088 55680 227.42732238769531 1.4441999999999999 359.41210000000001 13440 7972 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10092199076 30901220 1 0 4 2 3 3 4 983040 491520 737280 737523 998400 26 25 25 142 197 0 0 0 2 9 0 0 0 0 1 +1370 1783878013357928800 REFRESH 5 0 0.68100106096793644 0.8279386712095399 2 11 2 11 0 0 934 22 418 3988953 56640 220.78157043457031 1.4359 345.12779999999998 13440 8738 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10092933660 31635804 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 25 72 271 0 0 0 0 22 0 0 0 0 0 +1371 1783878013801377500 REFRESH 52 0 0.68147035945731838 0.36712095400340705 1 7 1 7 0 0 2489 21 429 3987599 55200 223.62931823730469 1.4314 388.70069999999998 20160 12024 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 10093679464 32381608 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 28 199 152 0 0 0 1 20 0 0 0 0 0 +1372 1783878014206710200 REFRESH 34 0 0.68068800325744683 0.8356047700170357 1 12 1 12 0 0 810 10 430 3987980 55680 223.4532470703125 1.4328000000000001 350.80779999999999 20160 13470 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 10094426288 33128432 1 0 5 3 2 2 4 1228800 737280 491520 491657 998400 25 25 56 102 222 0 0 0 1 9 0 0 0 0 0 +1373 1783878014666241800 REFRESH 48 0 0.68424248034886526 0.26575809199318562 2 5 2 5 0 0 2713 13 422 3987641 55200 222.51622009277344 1.4336 398.63490000000002 20160 12098 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10095164952 33867096 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 31 198 143 0 0 1 0 12 0 0 0 0 0 +1374 1783878015097742600 REFRESH 50 0 0.67510465473159875 0.64054514480408853 2 9 2 9 0 0 1088 5 418 3988478 56160 220.17741394042969 1.4836 379.59989999999999 13440 8000 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10095899536 34601680 1 0 4 2 3 2 5 983040 491520 737280 491677 1248000 25 25 25 30 313 0 0 0 0 5 0 0 0 0 0 +1375 1783878015503143700 REFRESH 22 0 0.67889440629628561 0.91396933560476989 3 11 3 11 0 0 497 11 410 3988955 56640 220.85530090332031 1.454 352.74169999999998 13440 8441 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10096625960 35328104 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 26 308 0 0 0 0 11 0 0 0 0 0 +1376 1783878015900799700 REFRESH 51 0 0.67789939655841236 0.91396933560476989 3 11 3 11 0 0 563 14 397 3988937 56640 222.04620361328125 1.4341999999999999 342.923 13440 8000 0 0 0.050945970454884047 0.25708581262690366 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 10097339124 36041268 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 25 45 277 0 0 0 0 14 0 0 0 0 0 +1377 1783878016320326600 REFRESH 8 0 0.68293631540551969 0.26575809199318562 2 5 2 5 0 0 2535 11 408 3987618 55200 225.63226318359375 1.4337 365.11070000000001 20160 12090 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10098063508 36765652 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 26 102 230 0 0 0 0 11 0 0 0 0 0 +1378 1783878016806130500 REFRESH 42 0 0.8463929780264412 0 0 4 0 4 0 0 4096 6 426 3987727 55200 224.90010070800781 1.4438 428.1816 20160 13233 0 0 0 0.0064243164954683766 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10098806252 37508396 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 50 25 43 228 80 0 0 0 0 6 0 0 0 0 0 +1379 1783878017314327200 REFRESH 11 0 0.67988221763509582 0.37478705281090291 0 8 0 8 1 0 2730 35 411 3987596 55200 224.20582580566406 1.4403999999999999 398.40120000000002 20160 11891 0 0 3.7356109212119836e-05 0.66132477188337058 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10099533696 38235840 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 25 78 258 0 0 0 11 24 0 0 0 0 1 +1380 1783878017721784500 REFRESH 4 0 0.6761278860168547 0.8356047700170357 1 12 1 12 0 0 288 9 418 3988949 56640 218.56562805175781 1.4345000000000001 352.82130000000001 6720 4825 0 0 0.039919103659356581 1.2724669966760918 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10100268280 38970424 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 25 36 307 1 0 0 0 8 0 0 0 0 0 +1381 1783878018128091800 REFRESH 15 0 0.67446310441645663 0.91396933560476989 3 11 3 11 0 0 322 14 407 3988963 56640 230.2689208984375 1.4291 355.9846 6720 4698 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10100991644 39693788 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 25 25 25 38 294 0 0 0 1 13 0 0 0 0 0 +1382 1783878018578165800 REFRESH 9 0 0.68316804794500574 0.27342419080068137 1 6 1 6 0 0 3429 14 424 3987611 55200 223.54841613769531 1.4353 396.73939999999999 20160 12380 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10101732348 40434492 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 26 274 74 0 0 0 3 11 0 0 0 0 0 +1383 1783878018973471300 REFRESH 0 0 0.68076973016419695 0.8279386712095399 2 11 2 11 0 0 942 23 419 3988950 56640 222.12506103515625 1.4947999999999999 343.22489999999999 13440 9833 0 0 0.00014455923624112944 2.2692552129141497 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10102467952 41170096 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 25 48 295 0 0 0 0 23 0 0 0 0 0 +1384 1783878019389270500 REFRESH 3 0 0.68103149229141435 0.64054514480408853 2 9 2 9 0 0 1234 19 418 3988469 56160 223.07942199707031 1.431 365.1848 13440 8052 0 0 0.0076224078323330153 0.12664224281341724 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10103202536 41904680 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 170 173 0 0 0 3 16 0 0 0 0 0 +1385 1783878019857586100 REFRESH 35 0 0.68110608284642093 0.8279386712095399 2 11 2 11 0 0 1152 15 407 3988453 56160 231.36767578125 1.4377 361.36720000000003 13440 9882 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10103925900 42628044 1 0 4 2 3 2 5 983040 491520 737280 491653 1248000 25 25 25 52 280 0 0 0 1 14 0 0 0 0 0 +1386 1783878020315120200 REFRESH 46 0 0.6789750957561258 0.37478705281090291 0 8 0 8 0 0 2875 8 421 3987592 55200 232.37632751464844 1.4287000000000001 403.8784 20160 11917 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10104663544 43365688 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 25 224 122 0 0 0 1 7 0 0 0 0 0 +1387 1783878020750389300 REFRESH 14 0 0.68104948617736016 0.65587734241908002 0 11 0 11 0 0 1829 23 412 3988045 55680 239.33952331542969 1.4357 380.49149999999997 13440 7847 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10105392008 44094152 1 0 4 2 3 3 4 983040 491520 737280 737484 998400 26 25 25 63 273 0 0 0 4 19 0 0 0 0 0 +1388 1783878021183595700 REFRESH 25 0 0.67864900874634349 0.4608177172061329 1 8 1 8 0 0 2525 21 417 3987590 55200 224.76902770996094 1.4289000000000001 380.48450000000003 20160 11996 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10106125572 44827716 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 27 157 183 0 0 1 4 16 0 0 0 0 0 +1389 1783878021541014200 REFRESH 19 0 0.67768374592556913 0.8279386712095399 2 11 2 11 0 0 924 5 416 3988477 56160 227.08428955078125 1.4343999999999999 356.21519999999998 13440 7956 0 0 0.030726597407889203 0.38680088795667933 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10106858116 45560260 1 0 4 2 3 2 5 983040 491520 737280 491674 1248000 25 25 25 143 198 0 0 0 0 5 0 0 0 0 0 +1390 1783878021953167400 REFRESH 55 0 0.68121177290672996 0.64054514480408853 2 9 2 9 0 0 1125 11 406 3988074 55680 225.15225219726562 1.429 358.2242 13440 8016 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10107580460 46282604 1 0 4 2 3 3 4 983040 491520 737280 737505 998400 25 25 25 26 305 0 0 0 0 11 0 0 0 0 0 +1391 1783878022460241500 REFRESH 44 0 0.67900767205370904 0.36712095400340705 1 7 1 7 0 0 2519 20 425 3987631 55200 232.35276794433594 1.4313 400.66140000000001 20160 12164 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10108322184 47024328 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 26 95 254 0 0 2 1 17 0 0 0 0 0 +1392 1783878022911264200 REFRESH 54 0 0.67736871262085885 0.4608177172061329 1 8 1 8 0 0 1271 25 414 3987983 55680 231.45472717285156 1.4312 394.57119999999998 26880 19601 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10109052688 47754832 1 0 4 4 2 2 4 983040 983040 491520 491662 998400 25 25 26 57 281 1 0 0 1 23 0 0 0 0 0 +1393 1783878023335461300 REFRESH 43 0 0.67852187015737631 0.8279386712095399 2 11 2 11 0 0 816 9 419 3987435 55200 232.85862731933594 1.431 373.98309999999998 33600 24095 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10109788292 48490436 1 0 6 5 1 1 3 1474560 1228800 245760 245834 748800 26 26 120 140 107 1 2 0 0 6 0 0 0 0 0 +1394 1783878023735441100 REFRESH 58 0 0.6816987870231237 0.92163543441226559 2 12 2 12 0 0 548 15 409 3988958 56640 221.79737854003906 1.4338 344.61700000000002 13440 8584 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10110513696 49215840 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 33 301 0 0 0 0 15 0 0 0 0 0 +1395 1783878024253749600 REFRESH 17 0 0.68270103773354052 0.28109028960817717 0 7 0 7 0 0 4096 22 421 3988019 55680 273.49502563476562 1.4330000000000001 463.00560000000002 20160 12226 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10111251340 49953484 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 48 84 239 0 0 0 3 19 0 0 0 0 0 +1396 1783878026924818800 DEPTH 42 1 0.77212244697677956 0 0 4 0 4 0 0 4096 17 2581 23678295 81600 1373.9192962646484 8.6230999999999991 2607.7478000000001 120960 65383 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 10115742868 54445012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426362 4492800 274 150 220 1432 505 0 0 0 0 17 0 0 0 0 0 +1397 1783878029549143200 DEPTH 31 1 0.70700575563181633 0.26575809199318562 2 5 2 5 0 0 3171 46 2578 23677441 81600 1343.0684814453125 8.6592000000000002 2571.9497000000001 120960 59921 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 10120231336 58933480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426499 4492800 150 150 154 662 1462 0 0 0 0 46 0 0 0 0 0 +1398 1783878032052564200 DEPTH 56 1 0.69710218856829642 0.17206132879045993 2 4 2 4 0 0 4096 55 2567 23677761 81600 1333.3964691162109 8.611699999999999 2502.1206999999999 120960 58705 1 0 0.003291061305650188 0.34452168957490853 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 10124708584 63410728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 301 150 150 1312 654 8 0 0 1 46 0 0 0 0 0 +1399 1783878035757209900 DEPTH 57 1 0.68160540807434944 0.27342419080068137 1 6 1 6 1 0 4096 93 2535 23677514 81600 1366.9508972167969 8.6071000000000009 3642.8368999999998 120960 57272 1 0 0.00072518865631744308 0.43007162194663895 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 10129153272 746728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 168 838 1229 0 0 0 6 87 0 0 0 0 1 +1400 1783878038328768500 DEPTH 13 1 0.68160305610192129 0.27342419080068137 1 6 1 6 0 0 4096 72 2563 23677609 81600 1327.2412261962891 8.5810999999999993 2497.0990000000002 120960 58188 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 10133626440 5219896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 162 809 1292 0 0 0 1 71 0 0 0 0 0 +1401 1783878040554934300 DEPTH 18 1 0.67896462615879716 0.92163543441226559 2 12 2 12 0 0 466 67 2533 23699455 103680 1329.0536956787109 8.6423000000000005 2166.2098999999998 80640 37946 1 0 0.0029941425525071893 0.92661218102623089 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 10138069008 9662464 1 0 4 2 3 3 4 5898240 2949120 4423680 4426449 5990400 156 150 150 436 1641 0 0 0 1 66 0 0 0 0 0 +1402 1783878043060054000 DEPTH 52 1 0.67854833007590276 0.36712095400340705 1 7 1 7 0 0 2497 39 2591 23677534 81600 1329.3365020751953 8.6052999999999997 2389.8391000000001 120960 56366 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 10142570736 14164192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426506 4492800 150 150 168 1103 1020 4 0 0 0 35 0 0 0 0 0 +1403 1783878045299251700 DEPTH 36 1 0.6777962304533901 0.82027257240204421 3 10 3 10 1 0 1333 32 2571 23723541 128640 1302.3897552490234 8.620099999999999 2128.4607000000001 80640 39190 1 0 0.083860730168666478 0.13115594993602395 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 10147052064 18645520 1 0 4 2 3 2 5 5898240 2949120 4177920 2950979 7737600 156 150 150 582 1533 0 0 0 0 32 0 0 0 0 1 +1404 1783878047919342100 DEPTH 48 1 0.6816399172815284 0.26575809199318562 2 5 2 5 0 0 2723 41 2578 23677513 81600 1343.2268676757812 8.9153999999999982 2506.6936000000001 120960 57064 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 10151540532 23133988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426339 4492800 150 150 186 805 1287 0 2 3 0 36 0 0 0 0 0 +1405 1783878050341613900 DEPTH 8 1 0.68043944962163017 0.26575809199318562 2 5 2 5 0 0 2542 59 2514 23677479 81600 1352.1489868164062 8.6343999999999994 2358.5369999999998 120960 58357 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 10155963720 27557176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 156 394 1664 0 0 0 1 58 0 0 0 0 0 +1406 1783878052580479400 DEPTH 47 1 0.67781688675831042 0.8279386712095399 2 11 2 11 1 0 719 33 2547 23720520 125760 1322.9176330566406 8.6135999999999999 2180.6527000000001 80640 38668 1 0 0.0072853174080265868 0.99678840260751533 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 10160420568 32014024 1 0 4 2 3 2 5 5898240 2949120 4423680 2950901 7488000 150 150 150 218 1879 0 0 0 1 32 0 0 0 0 1 +1407 1783878054838918800 DEPTH 29 1 0.6773340658814192 0.82027257240204421 3 10 3 10 0 0 1132 45 2569 23697820 103680 1336.3773345947266 8.666500000000001 2199.1147999999998 147840 87162 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 10164899856 36493312 1 0 6 4 1 1 4 8847360 5406720 1966080 1475496 5990400 150 150 156 500 1613 0 0 0 0 45 0 0 0 0 0 +1408 1783878057059293400 DEPTH 5 1 0.67728022242343688 0.8279386712095399 2 11 2 11 0 0 938 31 2567 23720569 125760 1280.6144104003906 8.6288 2159.0668999999998 80640 44206 1 0 0.0013470829413883309 0.39801580600099568 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 10169377104 40970560 1 0 4 2 3 2 5 5898240 2949120 4423680 2950929 7488000 150 150 150 653 1464 0 1 1 0 29 0 0 0 0 0 +1409 1783878059501856000 DEPTH 11 1 0.67711652828131375 0.37478705281090291 0 8 0 8 1 0 2753 75 2537 23691159 96000 1281.7039337158203 8.6152999999999995 2384.4315999999999 120960 55870 1 0 4.1707973945706838e-05 0.6612302271173901 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 10173823752 45417208 1 0 4 3 3 2 4 5898240 4423680 4423680 3442769 5491200 150 150 150 371 1716 0 0 0 8 67 0 0 0 0 1 +1410 1783878061752344700 DEPTH 23 1 0.67712944792635832 0.74190800681430991 1 11 1 11 0 0 3560 38 2554 23705835 110400 1328.8386688232422 8.6006 2197.4486999999999 80640 37393 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 10178287740 49881196 1 0 4 2 3 3 4 5898240 2949120 4423680 3934597 6489600 150 150 150 936 1168 0 0 0 10 28 0 0 0 0 0 +1411 1783878063935720500 DEPTH 34 1 0.67701082141872804 0.8356047700170357 1 12 1 12 0 0 813 37 2585 23698436 103680 1281.8290405273438 8.6429000000000009 2132.8310000000001 120960 67008 1 1 0.00020654801738738873 1.769932182842139 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 10182783348 54376804 1 0 5 3 2 2 4 7372800 4423680 2949120 2950878 5990400 150 150 267 385 1633 0 0 0 0 36 0 0 0 0 0 +1412 1783878066401103600 DEPTH 42 1 0.7521470215383198 0 0 4 0 4 0 0 4096 13 2575 23678281 81600 1284.7554626464844 8.585799999999999 2464.1574999999998 120960 54106 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 10187268756 58862212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 251 150 207 1471 496 0 0 0 0 13 0 0 0 0 0 +1413 1783878068836700000 DEPTH 9 1 0.68067889770169887 0.27342419080068137 1 6 1 6 0 0 3438 53 2607 23677624 81600 1292.2919311523438 8.6495999999999995 2382.0230000000001 120960 57929 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2607 1920 0 384 1 10191786804 63380260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 152 1640 515 0 0 1 2 50 0 0 0 0 0 +1414 1783878072047848000 DEPTH 0 1 0.67757549697112518 0.8279386712095399 2 11 2 11 1 0 946 38 2560 23742693 147840 1274.1805725097656 8.6190999999999995 3158.2611000000002 80640 46496 1 0 0.0001442316467257171 2.2553238703365661 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 10196256992 741728 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 156 150 150 150 1954 0 0 1 0 37 0 0 0 0 1 +1415 1783878074495672900 DEPTH 3 1 0.6774381435866379 0.64054514480408853 2 9 2 9 1 0 1234 41 2546 23698545 103680 1287.1303253173828 8.5824999999999996 2392.8872000000001 120960 49150 1 0 0.007660491971153616 0.13236378039086213 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 10200712820 5197556 1 0 4 3 3 2 4 5898240 4423680 4423680 2950998 5990400 150 150 150 661 1435 0 0 0 3 38 0 0 0 0 1 +1416 1783878076729548800 DEPTH 14 1 0.67743539956222021 0.65587734241908002 0 11 0 11 0 0 1847 112 2518 23699397 103680 1305.5078582763672 8.5772999999999993 2178.0981000000002 80640 37913 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2518 1920 0 384 1 10205140088 9624824 1 0 4 2 3 3 4 5898240 2949120 4423680 4426405 5990400 156 150 150 244 1818 0 0 2 6 104 0 0 0 0 0 +1417 1783878078889341300 DEPTH 35 1 0.67731972074221924 0.8279386712095399 2 11 2 11 1 0 1166 84 2496 23720650 125760 1292.7382965087891 8.5878999999999994 2057.5513999999998 80640 45436 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2496 1920 0 384 1 10209544916 14029652 1 0 4 2 3 2 5 5898240 2949120 4423680 2951034 7488000 150 150 150 213 1833 1 0 0 5 78 0 0 0 0 1 +1418 1783878081331068900 DEPTH 20 1 0.67705865237728624 0.26575809199318562 2 5 2 5 0 0 2235 25 2608 23677497 81600 1296.2938842773438 8.6038999999999994 2379.1187 120960 57193 1 1 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2608 1920 0 384 1 10214063984 18548720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 183 924 1201 0 0 4 0 20 0 0 0 0 0 +1419 1783878083560934500 DEPTH 49 1 0.67703880619143941 0.4454855195911413 3 6 3 6 0 0 1741 81 2517 23677377 81600 1296.1772766113281 8.7700999999999993 2176.8453 120960 56886 1 0 0.15673126877466381 2.0956342605692027 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 10218490232 22974968 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 333 1734 0 0 0 5 76 0 0 0 0 0 +1420 1783878085956835500 DEPTH 31 1 0.68165051461000969 0.26575809199318562 2 5 2 5 0 0 3179 51 2602 23677538 81600 1298.3982391357422 8.5927000000000007 2341.2253999999998 120960 47937 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 10223003180 27487916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 151 806 1345 1 0 0 0 50 0 0 0 0 0 +1421 1783878088472417200 DEPTH 17 1 0.68022164963187137 0.28109028960817717 0 7 0 7 0 0 4096 52 2556 23677508 81600 1285.8499298095703 8.5981000000000005 2458.0297999999998 120960 56975 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 10227469208 31953944 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 204 574 1478 1 1 3 0 47 0 0 0 0 0 +1422 1783878090559067600 DEPTH 58 1 0.67782641332865823 0.92163543441226559 2 12 2 12 0 0 551 27 2546 23738783 144000 1277.0969543457031 8.6077999999999992 2033.2619 80640 42831 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 10231925036 36409772 1 0 4 2 3 2 5 5898240 2949120 3194880 2950918 8736000 150 150 150 187 1909 0 0 0 1 26 0 0 0 0 0 +1423 1783878092695118100 DEPTH 55 1 0.67762576216488835 0.64054514480408853 2 9 2 9 0 0 1135 78 2506 23699486 103680 1294.0042724609375 8.6189 2081.1911 80640 38573 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 10236340064 40824800 1 0 4 2 3 3 4 5898240 2949120 4423680 4426482 5990400 150 150 150 150 1906 0 0 0 2 76 0 0 0 0 0 +1424 1783878095063703500 DEPTH 27 1 0.67699819590167731 0.4608177172061329 1 8 1 8 0 0 4086 76 2562 23677419 81600 1295.3782653808594 8.5856999999999992 2312.6963999999998 120960 58046 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 10240812212 45296948 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 154 542 1566 0 0 0 2 74 0 0 0 0 0 +1425 1783878097472290100 DEPTH 1 1 0.67648726214275401 0.36712095400340705 1 7 1 7 1 0 3621 90 2572 23677489 81600 1292.6403656005859 8.5950000000000006 2348.2734999999998 120960 56458 1 0 0.01758808884266605 1.1144142614160466 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 10245294560 49779296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 174 797 1301 0 0 1 2 87 0 0 0 0 1 +1426 1783878099657026700 DEPTH 10 1 0.67649564844654964 0.64821124361158422 1 10 1 10 0 0 1235 40 2558 23709144 114240 1279.33935546875 8.6027000000000005 2132.4802 100800 45363 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 10249762628 54247364 1 0 4 3 3 2 4 5898240 3686400 4423680 2951040 6739200 150 150 154 694 1410 0 0 3 0 37 0 0 0 0 0 +1427 1783878102074375100 DEPTH 26 1 0.67648821705775863 0.55451448040885853 1 9 1 9 0 0 2163 80 2559 23677566 81600 1345.1643981933594 8.6270999999999987 2358.1941999999999 120960 57839 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10254231716 58716452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426511 4492800 150 150 162 707 1390 0 2 6 3 69 0 0 0 0 0 +1428 1783878102504187600 REFRESH 23 0 0.60339247114574079 0.74190800681430991 1 11 1 11 0 0 3567 16 414 3988071 55680 250.02085876464844 1.4337 375.52789999999999 13440 7931 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10254962220 59446956 1 0 4 2 3 3 4 983040 491520 737280 737505 998400 25 25 25 118 221 0 0 0 7 9 0 0 0 0 0 +1429 1783878102902995300 REFRESH 29 0 0.64411452359148302 0.82027257240204421 3 10 3 10 0 0 1133 19 420 3987511 55200 224.17817687988281 1.4347000000000001 344.29390000000001 26880 19948 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10255698844 60183580 1 0 6 4 2 1 3 1474560 983040 491520 245831 748800 30 25 44 89 232 0 0 5 0 14 0 0 0 0 0 +1430 1783878103273066200 REFRESH 3 0 0.57379563974617953 0.64054514480408853 2 9 2 9 0 0 1240 31 416 3988002 55680 222.19673156738281 1.4313 368.68369999999999 20160 14885 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10256431388 60916124 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 26 160 180 0 0 0 6 25 0 0 0 0 0 +1431 1783878103734265000 REFRESH 13 0 0.67906916473257461 0.27342419080068137 1 6 1 6 0 0 4096 30 417 3987635 55200 223.5914306640625 1.4309000000000001 409.2604 20160 12128 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10257164952 61649688 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 28 175 164 0 0 0 3 27 0 0 0 0 0 +1432 1783878104141630400 REFRESH 18 0 0.6740358344801165 0.92163543441226559 2 12 2 12 0 0 466 3 414 3988111 55680 223.0855712890625 1.429 357.44540000000001 13440 8052 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10257895456 62380192 1 0 4 2 3 3 4 983040 491520 737280 737542 998400 26 25 25 156 182 0 0 0 1 2 0 0 0 0 0 +1433 1783878104582351300 REFRESH 51 0 0.67442690889723989 0.91396933560476989 3 11 3 11 0 0 563 13 398 3988935 56640 220.25421142578125 1.4325000000000001 338.72289999999998 13440 7991 0 0 0.050945970454884047 0.25708581262690366 4096 2048 64 1 16 60 12 4 0 398 320 0 64 0 10258609640 63094376 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 25 25 25 44 279 0 0 0 0 13 0 0 0 0 0 +1434 1783878105003126300 REFRESH 32 0 0.67562126026443003 0.4608177172061329 1 8 1 8 0 0 3306 28 410 3987567 55200 222.90534973144531 1.4285000000000001 366.4033 20160 12495 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10259336064 63820800 1 0 4 3 3 3 3 983040 737280 737280 737483 748800 25 25 25 61 274 0 0 0 1 27 0 0 0 0 0 +1435 1783878105362689000 REFRESH 49 0 0.5839322618704329 0.4454855195911413 3 6 3 6 0 0 1749 21 411 3987611 55200 222.86540222167969 1.4340999999999999 357.89339999999999 20160 12058 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10260063508 64548244 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 112 224 0 0 0 2 19 0 0 0 0 0 +1436 1783878105767353600 REFRESH 19 0 0.66912331728921481 0.8279386712095399 2 11 2 11 1 0 924 10 419 3988466 56160 220.56448364257812 1.4335 351.7165 13440 7866 0 0 0.030524037516062641 0.38118919030534321 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10260799112 65283848 1 0 4 2 3 2 5 983040 491520 737280 491661 1248000 25 25 25 155 189 0 0 0 0 10 0 0 0 0 1 +1437 1783878106195343900 REFRESH 45 0 0.67567847829023575 0.45315161839863699 2 7 2 7 0 0 2363 37 415 3987625 55200 224.23551940917969 1.4308000000000001 373.12950000000001 20160 12035 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10261530636 66015372 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 25 79 261 0 0 0 2 35 0 0 0 0 0 +1438 1783878106578020000 REFRESH 1 0 0.55367893332827622 0.36712095400340705 1 7 1 7 0 0 3634 33 423 3987629 55200 222.85005187988281 1.4331 381.25310000000002 20160 11869 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10262270320 66755056 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 29 192 152 0 0 0 4 29 0 0 0 0 0 +1439 1783878108043777800 REFRESH 36 0 0.67412483523846833 0.82027257240204421 3 10 3 10 0 0 1333 13 420 3988482 56160 221.14508056640625 1.431 1411.2896000000001 13440 7995 0 0 0.083860730168666478 0.13115594993602395 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10263007024 382944 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 26 25 25 236 108 0 0 0 1 12 0 0 0 0 0 +1440 1783878108394164800 REFRESH 55 0 0.59398925853610085 0.64054514480408853 2 9 2 9 0 0 1136 20 407 3988066 55680 222.20903015136719 1.4317 348.82420000000002 13440 8001 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10263730388 1106308 1 0 4 2 3 3 4 983040 491520 737280 737505 998400 25 25 25 34 298 0 0 0 1 19 0 0 0 0 0 +1441 1783878108790272500 REFRESH 6 0 0.67039098135435116 0.91396933560476989 3 11 3 11 0 0 386 5 423 3988950 56640 219.65113830566406 1.4400999999999999 343.4271 6720 4762 0 0 0.07846375202075595 0.14336107671093984 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10264470072 1845992 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 26 25 25 37 310 0 0 0 0 5 0 0 0 0 0 +1442 1783878109210268600 REFRESH 38 0 0.67633723256999478 0.55451448040885853 1 9 1 9 0 0 2217 9 424 3988007 55680 223.96841430664062 1.4391 366.75630000000001 20160 12009 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10265210776 2586696 1 0 4 3 3 2 4 983040 737280 737280 491683 998400 25 25 25 233 116 0 0 0 1 8 0 0 0 0 0 +1443 1783878109626456300 REFRESH 41 0 0.67558886052437472 0.55451448040885853 1 9 1 9 0 0 2504 42 414 3987617 55200 222.86746215820312 1.4507000000000001 361.47559999999999 20160 12366 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10265941280 3317200 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 35 73 256 2 0 2 1 37 0 0 0 0 0 +1444 1783878110083693200 REFRESH 46 0 0.67457097499198704 0.37478705281090291 0 8 0 8 0 0 2877 12 423 3987591 55200 224.09829711914062 1.4365000000000001 402.90350000000001 20160 12021 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10266680964 4056884 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 25 241 107 0 0 1 0 11 0 0 0 0 0 +1445 1783878110539894100 REFRESH 42 0 0.84217344120691484 0 0 4 0 4 0 0 4096 5 427 3987766 55200 223.815673828125 1.4240999999999999 404.49149999999997 20160 13666 0 0 0 0.0064243164954683766 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10267424728 4800648 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 50 25 43 230 79 0 0 0 0 5 0 0 0 0 0 +1446 1783878110930516200 REFRESH 15 0 0.67260611429429007 0.91396933560476989 3 11 3 11 0 0 322 6 411 3988960 56640 220.3135986328125 1.4306000000000001 339.89879999999999 6720 4768 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10268152172 5528092 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 44 292 0 0 0 0 6 0 0 0 0 0 +1447 1783878111341076500 REFRESH 43 0 0.67423746222203929 0.8279386712095399 2 11 2 11 0 0 817 8 421 3987430 55200 222.87052917480469 1.4292 350.78500000000003 26880 19896 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10268889816 6265736 1 0 6 4 2 1 3 1474560 983040 491520 245828 748800 26 25 76 156 138 0 1 0 0 7 0 0 0 0 0 +1448 1783878111797531900 REFRESH 44 0 0.67659352459158273 0.36712095400340705 1 7 1 7 0 0 2531 20 423 3987612 55200 223.81773376464844 1.4343999999999999 400.5883 20160 12230 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10269629500 7005420 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 26 96 251 0 0 1 0 19 0 0 0 0 0 +1449 1783878112213879100 REFRESH 50 0 0.66812727791467452 0.64054514480408853 2 9 2 9 0 0 1088 8 416 3988470 56160 220.55424499511719 1.4323999999999999 363.49610000000001 13440 7909 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10270362044 7737964 1 0 4 2 3 2 5 983040 491520 737280 491670 1248000 25 25 25 42 299 0 0 0 0 8 0 0 0 0 0 +1450 1783878112623542800 REFRESH 12 0 0.67275936065578956 0.54684838160136284 2 8 2 8 0 0 2015 17 429 3987612 55200 222.4373779296875 1.4296 353.4273 20160 12001 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 10271107848 8483768 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 48 158 173 0 0 0 1 16 0 0 0 0 0 +1451 1783878113041614400 REFRESH 34 0 0.67345794691433292 0.8356047700170357 1 12 1 12 1 0 814 7 421 3987993 55680 222.53056335449219 1.4380999999999999 355.31990000000002 20160 12304 0 0 0.00020653887011450506 1.7523984227231839 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10271845492 9221412 1 0 5 3 2 2 4 1228800 737280 491520 491671 998400 25 25 57 128 186 0 0 0 1 6 0 0 0 0 1 +1452 1783878113476655900 REFRESH 54 0 0.67597897649795047 0.4608177172061329 1 8 1 8 0 0 1275 15 416 3988006 55680 220.96998596191406 1.4419999999999999 381.30439999999999 26880 19606 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10272578036 9953956 1 0 4 4 2 2 4 983040 983040 491520 491686 998400 25 25 26 103 237 1 0 0 3 11 0 0 0 0 0 +1453 1783878113977692300 REFRESH 53 0 0.67605383232834004 0.37478705281090291 0 8 0 8 0 0 4096 24 417 3987606 55200 222.51724243164062 1.4322999999999999 393.03550000000001 20160 11993 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10273311600 10687520 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 217 125 0 0 0 7 17 0 0 0 0 0 +1454 1783878114386524800 REFRESH 14 0 0.67402720057293664 0.65587734241908002 0 11 0 11 0 0 1856 30 411 3988071 55680 222.23257446289062 1.4314 357.4622 13440 7997 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10274039044 11414964 1 0 4 2 3 3 4 983040 491520 737280 737509 998400 26 25 25 102 233 0 1 0 2 27 0 0 0 0 0 +1455 1783878114793871600 REFRESH 28 0 0.67672068714026257 0.8279386712095399 2 11 2 11 0 0 672 12 406 3988968 56640 223.12345886230469 1.4319999999999999 355.93689999999998 13440 8288 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10274761388 12137308 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 25 26 304 0 0 0 0 12 0 0 0 0 0 +1456 1783878115207581900 REFRESH 16 0 0.67628764641407835 0.3594548551959113 2 6 2 6 0 0 3621 21 408 3987622 55200 226.52851867675781 1.4323999999999999 362.17590000000001 20160 12233 0 0 0.0060390870541172353 0.13567556836191094 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10275485772 12861692 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 140 193 0 0 0 3 18 0 0 0 0 0 +1457 1783878115598663100 REFRESH 4 0 0.67351549816792688 0.8356047700170357 1 12 1 12 1 0 289 10 420 3988953 56640 218.99468994140625 1.4411 336.55650000000003 6720 4724 0 0 0.040192961040709289 1.252364350151844 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10276222396 13598316 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 25 25 25 41 304 0 0 0 0 10 0 0 0 0 1 +1458 1783878116067662500 REFRESH 20 0 0.67619474712815042 0.26575809199318562 2 5 2 5 0 0 2235 3 428 3987619 55200 223.83718872070312 1.4297 415.2679 20160 11845 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10276967180 14343100 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 35 183 160 0 0 0 0 3 0 0 0 0 0 +1459 1783878116513775500 REFRESH 48 0 0.67931794390128775 0.26575809199318562 2 5 2 5 0 0 2728 16 423 3987617 55200 223.36000061035156 1.4330000000000001 390.16250000000002 20160 12147 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10277706864 15082784 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 31 195 147 0 1 0 1 14 0 0 0 0 0 +1460 1783878116862720700 REFRESH 58 0 0.67418608974675442 0.92163543441226559 2 12 2 12 0 0 554 16 420 3988456 56160 220.74266052246094 1.4453 346.95240000000001 13440 8070 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10278443488 15819408 1 0 4 2 3 2 5 983040 491520 737280 491656 1248000 25 25 26 155 189 0 0 0 6 10 0 0 0 0 0 +1461 1783878117337091900 REFRESH 56 0 0.6951818280753016 0.17206132879045993 2 4 2 4 0 0 4096 14 427 3987630 55200 224.41267395019531 1.4351 412.63619999999997 20160 12306 0 0 0.003291061305650188 0.34452168957490853 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10279187252 16563172 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 56 25 25 245 76 2 0 0 1 11 0 0 0 0 0 +1462 1783878117811483100 REFRESH 11 0 0.67462649765510685 0.37478705281090291 0 8 0 8 1 0 2777 50 407 3988010 55680 222.44761657714844 1.4424999999999999 413.16910000000001 20160 12054 0 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10279910616 17286536 1 0 4 3 3 2 4 983040 737280 737280 491684 998400 25 25 25 40 292 0 0 0 2 48 0 0 0 0 1 +1463 1783878118254696400 REFRESH 39 0 0.676768415090651 0.55451448040885853 1 9 1 9 0 0 1659 3 423 3988468 56160 223.42247009277344 1.4452 390.42860000000002 13440 7886 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10280650300 18026220 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 25 25 25 182 166 0 0 0 0 3 0 0 0 0 0 +1464 1783878118663821200 REFRESH 5 0 0.6738664088460411 0.8279386712095399 2 11 2 11 0 0 941 15 421 3988479 56160 220.13337707519531 1.4334 350.75650000000002 13440 8086 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10281387944 18763864 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 130 216 0 0 2 2 11 0 0 0 0 0 +1465 1783878119123318000 REFRESH 25 0 0.67595616927613911 0.4608177172061329 1 8 1 8 0 0 2527 22 419 3987622 55200 223.87712097167969 1.5866 406.25490000000002 20160 12095 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10282123548 19499468 1 0 4 3 3 3 3 983040 737280 737280 737531 748800 25 25 27 183 159 0 0 0 5 17 0 0 0 0 0 +1466 1783878119532579600 REFRESH 47 0 0.67456781901436036 0.8279386712095399 2 11 2 11 0 0 724 21 417 3988475 56160 221.12153625488281 1.4286000000000001 354.89190000000002 13440 7900 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10282857112 20233032 1 0 4 2 3 2 5 983040 491520 737280 491674 1248000 25 25 25 128 214 0 0 0 5 16 0 0 0 0 0 +1467 1783878119980365600 REFRESH 40 0 0.67668088122907732 0.64821124361158422 1 10 1 10 1 0 1887 13 424 3988013 55680 222.0606689453125 1.4330000000000001 396.22359999999998 20160 14574 0 0 0.07950177477394639 0.52031291337843433 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10283597816 20973736 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 26 162 186 0 0 1 0 12 0 0 0 0 1 +1468 1783878120422729100 REFRESH 31 0 0.69685965819785856 0.26575809199318562 2 5 2 5 0 0 3189 24 420 3987622 55200 223.1541748046875 1.4316 385.3929 20160 12074 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10284334440 21710360 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 27 184 159 1 0 0 1 22 0 0 0 0 0 +1469 1783878120935556500 REFRESH 17 0 0.67798926445961039 0.28109028960817717 0 7 0 7 0 0 4096 23 419 3987626 55200 222.42303466796875 1.4301999999999999 407.71089999999998 20160 12030 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10285070044 22445964 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 49 149 171 0 0 1 3 19 0 0 0 0 0 +1470 1783878121348829500 REFRESH 22 0 0.67602516244251332 0.91396933560476989 3 11 3 11 0 0 498 15 409 3988934 56640 222.202880859375 1.4333 353.4889 13440 8288 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10285795448 23171368 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 26 25 25 26 307 0 0 0 0 15 0 0 0 0 0 +1471 1783878121799850300 REFRESH 9 0 0.67848410251955782 0.27342419080068137 1 6 1 6 0 0 3440 13 426 3987630 55200 223.51461791992188 1.4317 394.01949999999999 20160 12414 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10286538192 23914112 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 27 274 75 0 0 0 3 10 0 0 0 0 0 +1472 1783878122200645600 REFRESH 0 0 0.67479438315127405 0.8279386712095399 2 11 2 11 0 0 951 20 420 3988963 56640 222.03596496582031 1.4327000000000001 347.8501 13440 9696 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10287274816 24650736 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 27 25 25 37 306 0 0 0 2 18 0 0 0 0 0 +1473 1783878122610349100 REFRESH 33 0 0.67625174922993003 0.36712095400340705 1 7 1 7 0 0 3806 34 413 3987606 55200 223.65696716308594 1.4293 356.95460000000003 20160 12329 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10288004300 25380220 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 27 90 246 0 0 0 3 31 0 0 0 0 0 +1474 1783878123090682500 REFRESH 8 0 0.67836093924983265 0.26575809199318562 2 5 2 5 0 0 2544 9 406 3987643 55200 224.24371337890625 1.4328000000000001 365.07749999999999 20160 12040 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10288726644 26102564 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 26 115 215 0 0 0 1 8 0 0 0 0 0 +1475 1783878123566981100 REFRESH 52 0 0.67609605324874567 0.36712095400340705 1 7 1 7 0 0 2507 27 426 3987627 55200 222.68415832519531 1.4419 414.96679999999998 20160 11982 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10289469388 26845308 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 206 142 2 0 0 3 22 0 0 0 0 0 +1476 1783878124015243900 REFRESH 57 0 0.68040901229464845 0.27342419080068137 1 6 1 6 0 0 4096 25 415 3987628 55200 223.84947204589844 1.4455 392.76459999999997 20160 12206 0 0 0.00072518865631744308 0.43007162194663895 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10290200912 27576832 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 30 176 159 0 0 1 4 20 0 0 0 0 0 +1477 1783878124466913900 REFRESH 21 0 0.67601238667254737 0.56218057921635434 0 10 0 10 0 0 2804 11 422 3987979 55680 222.74969482421875 1.4400999999999999 397.64400000000001 20160 11805 0 0 0.00032898430553869579 1.0278675447307204 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10290939576 28315496 1 0 4 3 3 2 4 983040 737280 737280 491652 998400 25 25 26 257 89 0 0 0 4 7 0 0 0 0 0 +1478 1783878124869731800 REFRESH 24 0 0.67322420344020228 1 4 11 4 11 0 0 498 11 392 3988959 56640 220.263427734375 1.4330000000000001 348.9957 13440 8373 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 392 320 0 64 0 10291647640 29023560 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 36 281 0 0 0 0 11 0 0 0 0 0 +1479 1783878125284518700 REFRESH 35 0 0.67402174860226383 0.8279386712095399 2 11 2 11 0 0 1170 24 407 3988480 56160 223.981689453125 1.429 361.16109999999998 13440 9840 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10292371004 29746924 1 0 4 2 3 2 5 983040 491520 737280 491678 1248000 25 25 25 134 198 0 0 0 4 20 0 0 0 0 0 +1480 1783878125695782400 REFRESH 37 0 0.67462045301094253 0.8356047700170357 1 12 1 12 0 0 1065 9 418 3988447 56160 222.40870666503906 1.4898 357.57740000000001 20160 14565 0 0 0.0038465446887722379 0.3735084283888786 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10293105588 30481508 1 0 4 3 2 2 5 983040 737280 491520 491647 1248000 25 25 25 191 152 0 0 1 1 7 0 0 0 0 0 +1481 1783878126050980000 REFRESH 10 0 0.67363191706733194 0.64821124361158422 1 10 1 10 0 0 1238 17 418 3987969 55680 223.82080078125 1.4311 353.91550000000001 20160 14856 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10293840172 31216092 1 0 4 3 3 2 4 983040 737280 737280 491648 998400 25 25 25 160 183 0 1 0 3 13 0 0 0 0 0 +1482 1783878126476010700 REFRESH 27 0 0.67405601115197245 0.4608177172061329 1 8 1 8 0 0 4094 30 414 3987593 55200 223.48902893066406 1.4376 370.93459999999999 20160 12077 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10294570676 31946596 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 29 145 190 0 0 0 4 26 0 0 0 0 0 +1483 1783878126879372800 REFRESH 7 0 0.67462337178590159 0.8356047700170357 1 12 1 12 0 0 941 20 414 3988470 56160 220.56550598144531 1.4339999999999999 348.04450000000003 13440 7938 0 0 0.00027547762741404031 0.69819537361901229 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10295301180 32677100 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 25 25 25 179 160 0 0 0 3 17 0 0 0 0 0 +1484 1783878127265397800 REFRESH 26 0 0.67287494740552001 0.55451448040885853 1 9 1 9 0 0 2170 27 420 3987604 55200 225.34962463378906 1.4321999999999999 384.08609999999999 20160 12239 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10296037804 33413724 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 35 188 147 0 0 1 7 19 0 0 0 0 0 +1485 1783878127748721900 REFRESH 2 0 0.6763165870853618 0.45315161839863699 2 7 2 7 0 0 4060 45 409 3987603 55200 223.18911743164062 1.4388000000000001 366.53890000000001 20160 13642 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10296763208 34139128 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 80 254 0 0 0 1 44 0 0 0 0 0 +1486 1783878128175513800 REFRESH 30 0 0.67614376813405375 0.4608177172061329 1 8 1 8 0 0 3918 31 421 3987582 55200 224.43315124511719 1.4278 370.8784 20160 13921 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10297500852 34876772 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 27 218 126 0 0 0 10 21 0 0 0 0 0 +1487 1783878130648113400 DEPTH 42 1 0.83715188050894296 0 0 4 0 4 0 0 4096 12 2595 23678227 81600 1292.5441284179688 8.5962000000000014 2419.6116000000002 120960 66296 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 10302006660 39382580 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 278 150 231 1425 511 0 0 0 0 12 0 0 0 0 0 +1488 1783878133121769300 DEPTH 56 1 0.69299131490454458 0.17206132879045993 2 4 2 4 0 0 4096 53 2587 23677791 81600 1289.0567016601562 8.5991 2411.4259999999999 120960 59193 1 0 0.003291061305650188 0.34452168957490853 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 10306504308 43880228 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 298 150 150 1403 586 6 0 0 2 45 0 0 0 0 0 +1489 1783878135507781600 DEPTH 48 1 0.67683353268884161 0.26575809199318562 2 5 2 5 0 0 2754 59 2571 23677672 81600 1293.6895599365234 8.6564999999999994 2384.7550999999999 120960 57424 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 10310985636 48361556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 186 780 1305 0 1 2 0 56 0 0 0 0 0 +1490 1783878137965532900 DEPTH 13 1 0.67684209903847825 0.27342419080068137 1 6 1 6 0 0 4096 54 2572 23677660 81600 1289.7330627441406 8.5960999999999999 2389.7134999999998 120960 57795 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 10315467984 52843904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 162 754 1356 0 0 0 0 54 0 0 0 0 0 +1491 1783878140313123300 DEPTH 54 1 0.674270428209506 0.4608177172061329 1 8 1 8 0 0 1285 33 2551 23698561 103680 1279.8747711181641 8.5739999999999998 2346.3022999999998 141120 85790 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10319928912 57304832 1 0 4 3 3 2 4 5898240 5160960 3686400 2951023 5990400 150 150 156 395 1700 2 0 0 1 30 0 0 0 0 0 +1492 1783878142792159300 DEPTH 44 1 0.67409541528562222 0.36712095400340705 1 7 1 7 0 0 2543 54 2589 23677566 81600 1295.1766967773438 8.5776000000000003 2367.7082999999998 120960 57782 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 10324428600 61804520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 150 150 154 400 1735 3 1 2 0 48 0 0 0 0 0 +1493 1783878145005364900 DEPTH 16 1 0.67353120907413822 0.3594548551959113 2 6 2 6 0 0 3635 68 2547 23677464 81600 1295.5453186035156 8.5766999999999989 2160.1149999999998 120960 57715 1 0 0.0060390870541172353 0.13567556836191094 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 10328885448 66261368 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 150 555 1542 0 0 0 2 66 0 0 0 0 0 +1494 1783878148404023000 DEPTH 28 1 0.673496465060615 0.8279386712095399 2 11 2 11 0 0 673 31 2520 23735053 140160 1307.1943817138672 8.7126000000000001 3163.2962000000002 80640 40109 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 10333314836 3582264 1 0 4 2 3 2 5 5898240 2949120 3440640 2951011 8486400 156 150 150 259 1805 0 0 0 0 31 0 0 0 0 0 +1495 1783878150836783500 DEPTH 31 1 0.69219959858696822 0.26575809199318562 2 5 2 5 0 0 3195 38 2592 23677472 81600 1294.2837829589844 8.5989000000000004 2376.7037 120960 56780 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 10337817584 8085012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 155 785 1352 1 0 0 1 36 0 0 0 0 0 +1496 1783878153292798500 DEPTH 17 1 0.67561846072855358 0.28109028960817717 0 7 0 7 0 0 4096 49 2550 23677500 81600 1288.2975463867188 8.6257999999999999 2399.1614 120960 57214 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 10342277492 12544920 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 214 501 1535 0 0 2 0 47 0 0 0 0 0 +1497 1783878155718760100 DEPTH 53 1 0.67338181254692464 0.37478705281090291 0 8 0 8 0 0 4096 55 2532 23677455 81600 1291.0992889404297 8.5964999999999989 2367.3308999999999 120960 56332 1 0 0 0.20692837474269371 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 10346719040 16986468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 150 876 1206 0 0 0 1 54 0 0 0 0 0 +1498 1783878158127555500 DEPTH 40 1 0.67331662694498795 0.64821124361158422 1 10 1 10 0 0 1903 45 2573 23698525 103680 1286.8403167724609 8.6249000000000002 2354.2040000000002 120960 70332 1 0 0.07950177477394639 0.52031291337843433 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 10351202408 21469836 1 0 4 3 3 2 4 5898240 4423680 4423680 2950981 5990400 150 150 150 653 1470 1 0 3 0 41 0 0 0 0 0 +1499 1783878160547155400 DEPTH 25 1 0.67291749412402324 0.4608177172061329 1 8 1 8 0 0 2532 32 2556 23677359 81600 1291.9613189697266 8.6100999999999992 2363.7049000000002 120960 56661 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 10355668436 25935864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 161 763 1332 0 0 4 0 28 0 0 0 0 0 +1500 1783878162989841200 DEPTH 45 1 0.67292196004884608 0.45315161839863699 2 7 2 7 0 0 2371 65 2550 23677374 81600 1313.4725952148438 8.6173999999999999 2385.8058000000001 120960 57128 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 10360128344 30395772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 415 1685 0 0 0 4 61 0 0 0 0 0 +1501 1783878165377777600 DEPTH 32 1 0.67290627478845544 0.4608177172061329 1 8 1 8 1 0 3316 63 2544 23677486 81600 1309.1154022216797 8.6066000000000003 2332.3465999999999 120960 59006 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 10364582132 34849560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426517 4492800 150 150 154 188 1902 0 0 0 0 63 0 0 0 0 1 +1502 1783878167689001600 DEPTH 38 1 0.67281097404150281 0.55451448040885853 1 9 1 9 0 0 2221 39 2561 23698543 103680 1280.9582672119141 8.5909000000000013 2257.6019000000001 120960 58160 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 10369053260 39320688 1 0 4 3 3 2 4 5898240 4423680 4423680 2950915 5990400 150 150 150 1141 970 0 0 0 2 37 0 0 0 0 0 +1503 1783878170150469000 DEPTH 42 1 0.7473562019446417 0 0 4 0 4 0 0 4096 17 2588 23678229 81600 1317.0852813720703 8.5887000000000011 2460.2512000000002 120960 55063 1 0 0 0.0064243164954683766 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 10373551928 43819356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 250 150 195 1493 500 0 0 0 0 17 0 0 0 0 0 +1504 1783878172595584300 DEPTH 57 1 0.67780924481062454 0.27342419080068137 1 6 1 6 1 0 4096 52 2536 23677578 81600 1309.6110076904297 8.5926000000000009 2384.6635000000001 120960 57656 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 10377997556 48264984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 167 738 1331 0 0 3 2 47 0 0 0 0 1 +1505 1783878175122028900 DEPTH 9 1 0.67612468094607747 0.27342419080068137 1 6 1 6 0 0 3446 41 2598 23677607 81600 1326.1835327148438 8.5992999999999995 2410.6401999999998 120960 58889 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 10382506424 52773852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426416 4492800 150 150 154 1654 490 0 0 1 2 38 0 0 0 0 0 +1506 1783878177389853100 DEPTH 8 1 0.674998698904133 0.26575809199318562 2 5 2 5 0 0 2548 62 2494 23677605 81600 1300.6141510009766 8.6457999999999995 2209.2851999999998 120960 57221 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2494 1920 0 384 1 10386909212 57176640 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 150 150 156 366 1672 0 0 1 0 61 0 0 0 0 0 +1507 1783878179780479400 DEPTH 33 1 0.67348270720096814 0.36712095400340705 1 7 1 7 0 0 3818 79 2512 23677515 81600 1314.4022979736328 8.6346999999999987 2334.1170000000002 120960 59118 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 10391330360 61597788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 160 323 1729 0 0 0 0 79 0 0 0 0 0 +1508 1783878182168885900 DEPTH 52 1 0.67333493179822224 0.36712095400340705 1 7 1 7 0 0 2514 41 2590 23677588 81600 1294.0576934814453 8.5808 2332.1261 120960 56691 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 10395831068 66098496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426500 4492800 150 150 167 1153 970 2 1 1 1 36 0 0 0 0 0 +1509 1783878185858822900 DEPTH 21 1 0.67274164697723049 0.56218057921635434 0 10 0 10 1 0 2812 42 2568 23698455 103680 1382.5627899169922 8.6264999999999983 3632.5268999999998 120960 56358 1 0 0.00032870285718717969 1.0244732372210883 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 10400309416 3468544 1 0 4 3 3 2 4 5898240 4423680 4423680 2950875 5990400 150 150 152 1111 1005 0 0 10 0 32 0 0 0 0 1 +1510 1783878188301607200 DEPTH 41 1 0.67267523844427202 0.55451448040885853 1 9 1 9 0 0 2514 60 2540 23677398 81600 1298.9830322265625 8.6031000000000013 2384.6057000000001 120960 58087 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 10404759124 7918252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 186 333 1721 3 0 1 1 55 0 0 0 0 0 +1511 1783878190639223600 DEPTH 2 1 0.67318079858484281 0.45315161839863699 2 7 2 7 0 0 4090 147 2513 23677313 81600 1288.6283264160156 8.610199999999999 2270.2175999999999 120960 67246 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 10409181292 12340420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 333 1730 0 0 0 0 147 0 0 0 0 0 +1512 1783878193092149200 DEPTH 30 1 0.67302594712482411 0.4608177172061329 1 8 1 8 0 0 3924 30 2553 23677442 81600 1308.45703125 8.6053999999999995 2398.8501000000001 120960 68270 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 10413644260 16803388 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 150 150 150 867 1236 0 0 0 2 28 0 0 0 0 0 +1513 1783878195297825900 DEPTH 22 1 0.67264922058918297 0.91396933560476989 3 11 3 11 0 0 506 54 2526 23734957 140160 1332.6317596435547 8.6302000000000003 2147.7294000000002 80640 40922 1 0 0.0083534486929875175 0.70272977095887668 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 10418079688 21238816 1 0 4 2 3 2 5 5898240 2949120 3440640 2950930 8486400 150 150 150 265 1811 0 0 0 1 53 0 0 0 0 0 +1514 1783878197795759700 DEPTH 46 1 0.67250856643343271 0.37478705281090291 0 8 0 8 0 0 2884 48 2557 23677520 81600 1309.4400177001953 8.6230999999999991 2440.6579000000002 120960 56437 1 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 10422546736 25705864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 150 1032 1075 0 0 0 1 47 0 0 0 0 0 +1515 1783878200187054000 DEPTH 11 1 0.67218360265943566 0.37478705281090291 0 8 0 8 0 0 2797 68 2527 23694946 99840 1282.3337097167969 8.5789000000000009 2334.2716 120960 56348 1 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 10426983184 30142312 1 0 4 3 3 3 3 5898240 4423680 4423680 3196927 5740800 150 150 150 239 1838 3 0 2 8 55 0 0 0 0 0 +1516 1783878202261748600 DEPTH 0 1 0.67182587290221496 0.8279386712095399 2 11 2 11 0 0 960 51 2567 23723450 128640 1275.496337890625 8.5947999999999993 2024.0458000000001 80640 44513 1 0 0.0001442316467257171 2.2553238703365661 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 10431460432 34619560 1 0 5 2 2 2 5 7127040 2949120 2949120 2950953 7737600 158 150 150 594 1515 0 0 3 4 44 0 0 0 0 0 +1517 1783878204344887300 DEPTH 4 1 0.6717469639874839 0.8356047700170357 1 12 1 12 1 0 291 40 2558 23742669 147840 1268.9119110107422 8.5877999999999997 2032.9528 73920 42659 1 0 0.040587155531663782 0.9015613560709953 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 10435928500 39087628 1 0 4 2 2 2 6 6144000 2703360 2949120 2950972 8985600 150 150 150 176 1932 0 0 0 0 40 0 0 0 0 3 +1518 1783878206460325800 DEPTH 29 1 0.67165711121769511 0.82027257240204421 3 10 3 10 0 0 1141 52 2551 23675632 81600 1286.7945709228516 8.6509 2062.9355999999998 174720 112278 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10440389428 43548556 1 0 6 4 2 1 3 8847360 6389760 2457600 1475448 4492800 150 150 332 458 1461 0 0 2 0 50 0 0 0 0 0 +1519 1783878206910436600 REFRESH 57 0 0.57517936348428578 0.27342419080068137 1 6 1 6 0 0 4096 17 415 3987632 55200 224.22323608398438 1.4299999999999999 388.76740000000001 20160 12142 0 0 0.00072518623570734639 0.42989973567536088 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10441120952 44280080 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 30 188 147 0 0 1 7 9 0 0 0 0 0 +1520 1783878207324556500 REFRESH 32 0 0.6098827184839527 0.4608177172061329 1 8 1 8 0 0 3341 48 412 3987581 55200 224.13618469238281 1.4338 357.6266 20160 12341 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10441849416 45008544 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 26 67 269 0 0 0 2 46 0 0 0 0 0 +1521 1783878207784517800 REFRESH 56 0 0.69089570828325275 0.17206132879045993 2 4 2 4 0 0 4096 11 427 3987666 55200 222.91250610351562 1.4411 399.6071 20160 12656 0 0 0.003291061305650188 0.34452168957490853 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10442593180 45752308 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 52 25 25 247 78 0 0 0 1 10 0 0 0 0 0 +1522 1783878208245500400 REFRESH 17 0 0.67329043373711905 0.28109028960817717 0 7 0 7 0 0 4096 14 426 3987635 55200 224.5960693359375 1.4272 406.72280000000001 20160 12030 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10443335924 46495052 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 51 188 137 0 0 0 1 13 0 0 0 0 0 +1523 1783878208698269200 REFRESH 48 0 0.67444619577300247 0.26575809199318562 2 5 2 5 0 0 2759 18 423 3987642 55200 223.65081787109375 1.4342999999999999 399.20490000000001 20160 12155 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10444075608 47234736 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 31 216 126 0 0 1 1 16 0 0 0 0 0 +1524 1783878209134675900 REFRESH 39 0 0.66749402411887515 0.55451448040885853 1 9 1 9 0 0 1659 14 425 3988470 56160 220.30642700195312 1.4320999999999999 382.82650000000001 13440 7869 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10444817332 47976460 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 173 177 0 0 0 1 13 0 0 0 0 0 +1525 1783878209541679500 REFRESH 28 0 0.6702586997203609 0.8279386712095399 2 11 2 11 0 0 673 15 409 3988475 56160 222.2213134765625 1.4336 346.93759999999997 13440 7986 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10445542736 48701864 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 26 25 25 126 207 0 0 0 1 14 0 0 0 0 0 +1526 1783878209991729200 REFRESH 45 0 0.66989581048332125 0.45315161839863699 2 7 2 7 0 0 2390 45 416 3987606 55200 222.45890808105469 1.4325000000000001 394.28550000000001 20160 12045 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10446275280 49434408 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 85 256 0 0 0 3 42 0 0 0 0 0 +1527 1783878210405412000 REFRESH 50 0 0.66462577332794648 0.64054514480408853 2 9 2 9 0 0 1088 4 424 3988471 56160 220.9566650390625 1.4351 359.5917 13440 7845 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10447015984 50175112 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 109 240 0 0 0 0 4 0 0 0 0 0 +1528 1783878210834724400 REFRESH 26 0 0.66929229590185779 0.55451448040885853 1 9 1 9 0 0 2175 22 415 3987627 55200 222.58790588378906 1.4402999999999999 374.98970000000003 20160 12229 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10447747508 50906636 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 32 207 126 0 0 1 8 13 0 0 0 0 0 +1529 1783878211201435500 REFRESH 2 0 0.6000638607373241 0.45315161839863699 2 7 2 7 0 0 4096 49 412 3987584 55200 225.20217895507812 1.4297 365.37369999999999 20160 12347 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10448475972 51635100 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 25 89 248 0 0 0 6 43 0 0 0 0 0 +1530 1783878211552652900 REFRESH 22 0 0.58909590155460101 0.91396933560476989 3 11 3 11 0 0 508 14 410 3988457 56160 221.95916748046875 1.4283999999999999 349.90640000000002 13440 7976 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10449202396 52361524 1 0 4 2 3 2 5 983040 491520 737280 491654 1248000 25 25 25 137 198 0 0 1 4 9 0 0 0 0 0 +1531 1783878211966349100 REFRESH 16 0 0.67085721238296769 0.3594548551959113 2 6 2 6 0 0 3640 19 416 3987613 55200 224.17613220214844 1.4333 360.57850000000002 20160 12284 0 0 0.0060390870541172353 0.13567556836191094 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10449934940 53094068 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 139 202 0 0 0 3 16 0 0 0 0 0 +1532 1783878212405748200 REFRESH 31 0 0.68790973208669959 0.26575809199318562 2 5 2 5 0 0 3199 13 424 3987598 55200 224.41267395019531 1.4348000000000001 385.28059999999999 20160 12174 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10450675644 53834772 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 27 204 143 0 0 0 2 11 0 0 0 0 0 +1533 1783878212837190700 REFRESH 38 0 0.6701255377284161 0.55451448040885853 1 9 1 9 0 0 2222 7 423 3988006 55680 222.41705322265625 1.4339999999999999 379.2174 20160 11928 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10451415328 54574456 1 0 4 3 3 2 4 983040 737280 737280 491674 998400 25 25 26 261 86 0 0 0 1 6 0 0 0 0 0 +1534 1783878213282721000 REFRESH 20 0 0.66853006680088689 0.26575809199318562 2 5 2 5 0 0 2238 9 428 3987623 55200 224.64408874511719 1.4265000000000001 391.63380000000001 20160 11899 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10452160112 55319240 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 32 182 164 0 0 2 0 7 0 0 0 0 0 +1535 1783878213682094500 REFRESH 36 0 0.67116564369197018 0.82027257240204421 3 10 3 10 1 0 1335 10 422 3988451 56160 220.97920227050781 1.4537 344.86559999999997 13440 8034 0 0 0.084465413719790217 0.12897153469017797 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10452898776 56057904 1 0 4 2 3 2 5 983040 491520 737280 491647 1248000 26 25 25 256 90 0 0 0 0 10 0 0 0 0 1 +1536 1783878214087413300 REFRESH 55 0 0.67124110008978555 0.64054514480408853 2 9 2 9 0 0 1136 18 406 3988094 55680 222.74252319335938 1.4309000000000001 351.88369999999998 13440 8124 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10453621120 56780248 1 0 4 2 3 3 4 983040 491520 737280 737525 998400 25 25 25 35 296 0 0 0 1 17 0 0 0 0 0 +1537 1783878214431234500 REFRESH 0 0 0.62867014669444432 0.8279386712095399 2 11 2 11 0 0 960 6 417 3988482 56160 220.6876220703125 1.4309000000000001 342.416 13440 8721 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10454354684 57513812 1 0 4 2 3 2 5 983040 491520 737280 491682 1248000 26 25 25 189 152 1 0 0 0 5 0 0 0 0 0 +1538 1783878214834875900 REFRESH 35 0 0.67072512380791194 0.8279386712095399 2 11 2 11 0 0 1171 15 406 3988471 56160 220.9566650390625 1.4362999999999999 350.63159999999999 13440 9765 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10455077028 58236156 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 25 25 25 143 188 0 0 0 0 15 0 0 0 0 0 +1539 1783878215277902100 REFRESH 52 0 0.6706291058934517 0.36712095400340705 1 7 1 7 0 0 2523 28 426 3987606 55200 223.70201110839844 1.4311 388.74209999999999 20160 12066 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10455819772 58978900 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 29 214 133 1 0 0 4 23 0 0 0 0 0 +1540 1783878215669639900 REFRESH 51 0 0.67155876733148756 0.91396933560476989 3 11 3 11 0 0 564 11 396 3988925 56640 220.4979248046875 1.4312 339.92759999999998 13440 7854 0 0 0.050945970454884047 0.25708581262690366 4096 2048 64 1 16 60 12 4 0 396 320 0 64 0 10456531916 59691044 1 0 4 2 2 2 6 983040 491520 491520 491642 1497600 25 25 25 46 275 0 0 0 0 11 0 0 0 0 0 +1541 1783878216124628300 REFRESH 42 0 0.83757471833542252 0 0 4 0 4 0 0 4096 4 424 3987751 55200 223.64364624023438 1.4277 401.08780000000002 20160 13440 0 0 0 0.0064243164954683766 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10457272620 60431748 1 0 4 3 3 3 3 983040 737280 737280 737541 748800 50 25 42 228 79 0 0 0 0 4 0 0 0 0 0 +1542 1783878216479747800 REFRESH 4 0 0.66994217946876322 0.8356047700170357 1 12 1 12 0 0 293 5 420 3988958 56640 219.83334350585938 1.4295 353.86930000000001 13440 9307 0 0 0.040587155531663782 0.9015613560709953 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10458009244 61168372 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 52 293 0 0 0 0 5 0 0 0 0 0 +1543 1783878216933469800 REFRESH 44 0 0.67170342771085156 0.36712095400340705 1 7 1 7 0 0 2555 26 423 3987625 55200 223.56172180175781 1.4315 397.07780000000002 20160 11984 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10458748928 61908056 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 26 97 250 1 0 1 2 22 0 0 0 0 0 +1544 1783878217364527200 REFRESH 54 0 0.67262377793848116 0.4608177172061329 1 8 1 8 0 0 1285 16 421 3987978 55680 224.09727478027344 1.4278 377.20370000000003 20160 14879 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10459486572 62645700 1 0 4 3 3 2 4 983040 737280 737280 491655 998400 25 25 27 177 167 0 0 0 6 10 0 0 0 0 0 +1545 1783878217821756800 REFRESH 40 0 0.67019528575647358 0.64821124361158422 1 10 1 10 0 0 1903 8 424 3988009 55680 222.04006958007812 1.4340999999999999 403.93490000000003 20160 13681 0 0 0.07950177477394639 0.52031291337843433 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10460227276 63386404 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 206 143 0 0 0 0 8 0 0 0 0 0 +1546 1783878218234668600 REFRESH 18 0 0.66315984305730258 0.92163543441226559 2 12 2 12 0 0 466 6 416 3988093 55680 223.43782043457031 1.4308000000000001 356.03840000000002 13440 8094 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10460959820 64118948 1 0 4 2 3 3 4 983040 491520 737280 737528 998400 26 25 25 194 146 0 0 0 0 6 0 0 0 0 0 +1547 1783878218671636700 REFRESH 3 0 0.67126430444156449 0.64054514480408853 2 9 2 9 0 0 1242 17 410 3987989 55680 221.81170654296875 1.4771000000000001 383.47370000000001 20160 14637 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10461686244 64845372 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 26 173 161 0 0 0 4 13 0 0 0 0 0 +1548 1783878219127344300 REFRESH 9 0 0.67389186767341958 0.27342419080068137 1 6 1 6 0 0 3451 19 426 3987628 55200 223.70816040039062 1.4319999999999999 400.62959999999998 20160 12226 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10462428988 65588116 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 27 270 79 0 0 1 3 15 0 0 0 0 0 +1549 1783878219524627500 REFRESH 5 0 0.67083418072583245 0.8279386712095399 2 11 2 11 0 0 941 14 418 3988473 56160 220.6904296875 1.4328000000000001 346.73880000000003 13440 8101 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10463163572 66322700 1 0 4 2 3 2 5 983040 491520 737280 491673 1248000 25 25 25 126 217 0 0 1 1 12 0 0 0 0 0 +1550 1783878219933197000 REFRESH 58 0 0.6711810590281867 0.92163543441226559 2 12 2 12 0 0 554 11 419 3988484 56160 221.79533386230469 1.4437 347.86250000000001 20160 14926 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10463899176 67058304 1 0 4 3 2 2 5 983040 737280 491520 491684 1248000 25 25 26 172 171 0 0 0 1 10 0 0 0 0 0 +1551 1783878221469103200 REFRESH 12 0 0.66920506631364463 0.54684838160136284 2 8 2 8 0 0 2017 8 422 3987625 55200 224.60313415527344 1.4292 1428.6378 20160 11988 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10464637920 688144 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 47 160 165 0 0 0 1 7 0 0 0 0 0 +1552 1783878221889982900 REFRESH 33 0 0.67088228329909061 0.36712095400340705 1 7 1 7 0 0 3833 36 417 3987623 55200 223.16246032714844 1.4433 367.23289999999997 20160 12122 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10465371484 1421708 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 27 111 229 0 0 0 4 32 0 0 0 0 0 +1553 1783878222292900700 REFRESH 7 0 0.67137684655131957 0.8356047700170357 1 12 1 12 0 0 942 14 421 3988459 56160 221.80146789550781 1.4317 350.16250000000002 13440 7833 0 0 0.00027547762741404031 0.69819537361901229 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10466109128 2159352 1 0 4 2 3 2 5 983040 491520 737280 491656 1248000 25 25 25 199 147 0 0 0 4 10 0 0 0 0 0 +1554 1783878222709270200 REFRESH 49 0 0.67186466222484076 0.4454855195911413 3 6 3 6 0 0 1755 21 409 3987626 55200 223.29446411132812 1.4336 362.43939999999998 20160 11931 0 0 0.15673126877466381 2.0956342605692027 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10466834532 2884756 1 0 4 3 3 3 3 983040 737280 737280 737530 748800 25 25 25 100 234 0 0 0 0 21 0 0 0 0 0 +1555 1783878223164421200 REFRESH 21 0 0.66970278476199785 0.56218057921635434 0 10 0 10 0 0 2817 21 425 3987980 55680 221.71340942382812 1.4315 403.11040000000003 20160 12024 0 0 0.00032870285718717969 1.0244732372210883 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10467576256 3626480 1 0 4 3 3 2 4 983040 737280 737280 491655 998400 25 25 26 262 87 0 1 1 4 15 0 0 0 0 0 +1556 1783878223589793900 REFRESH 1 0 0.67165778570181711 0.36712095400340705 1 7 1 7 0 0 3647 31 420 3987637 55200 224.44134521484375 1.4292 372.08929999999998 20160 11957 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10468312880 4363104 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 29 189 152 0 0 0 1 30 0 0 0 0 0 +1557 1783878223984733800 REFRESH 11 0 0.66969192661796617 0.37478705281090291 0 8 0 8 0 0 2820 44 409 3987603 55200 222.54386901855469 1.4316 393.72039999999998 20160 11946 0 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10469038284 5088508 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 91 243 1 0 0 6 37 0 0 0 0 0 +1558 1783878224380878600 REFRESH 19 0 0.66692772683202151 0.8279386712095399 2 11 2 11 0 0 924 7 422 3988479 56160 220.08525085449219 1.4325000000000001 346.6635 13440 7930 0 0 0.030524037516062641 0.38118919030534321 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10469776948 5827172 1 0 4 2 3 2 5 983040 491520 737280 491678 1248000 25 25 25 182 165 0 0 1 2 4 0 0 0 0 0 +1559 1783878224799196200 REFRESH 47 0 0.67154456805081963 0.8279386712095399 2 11 2 11 0 0 726 16 417 3988497 56160 221.39494323730469 1.4320999999999999 364.60449999999997 13440 7867 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10470510512 6560736 1 0 4 2 3 2 5 983040 491520 737280 491694 1248000 25 25 25 111 231 0 0 0 2 14 0 0 0 0 0 +1560 1783878225225547800 REFRESH 27 0 0.67137406415359391 0.4608177172061329 1 8 1 8 0 0 4096 41 416 3987593 55200 225.27308654785156 1.4286000000000001 372.17489999999998 20160 12064 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10471243056 7293280 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 30 143 193 0 0 0 1 40 0 0 0 0 0 +1561 1783878225673524300 REFRESH 37 0 0.67048039211094113 0.8356047700170357 1 12 1 12 0 0 1066 11 418 3988477 56160 223.13778686523438 1.4545999999999999 344.49189999999999 20160 14493 0 0 0.0038465446887722379 0.3735084283888786 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10471977640 8027864 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 25 218 125 0 0 0 3 8 0 0 0 0 0 +1562 1783878226095881600 REFRESH 8 0 0.67298529156652398 0.26575809199318562 2 5 2 5 0 0 2548 9 408 3987630 55200 224.47514343261719 1.4314 370.03910000000002 20160 12262 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10472702024 8752248 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 26 113 219 0 0 0 0 9 0 0 0 0 0 +1563 1783878226533612500 REFRESH 25 0 0.67023261351215768 0.4608177172061329 1 8 1 8 0 0 2538 21 420 3987614 55200 223.90579223632812 1.4318 384.34500000000003 20160 12131 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10473438648 9488872 1 0 4 3 3 3 3 983040 737280 737280 737532 748800 25 25 27 165 178 0 0 0 1 20 0 0 0 0 0 +1564 1783878226877581300 REFRESH 29 0 0.66876907065884317 0.82027257240204421 3 10 3 10 0 0 1141 14 419 3987436 55200 221.80455017089844 1.4313 342.73849999999999 26880 18611 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10474174252 10224476 1 0 6 4 2 1 3 1474560 983040 491520 245835 748800 27 25 82 109 176 0 0 2 0 12 0 0 0 0 0 +1565 1783878227324785900 REFRESH 13 0 0.67479155694428683 0.27342419080068137 1 6 1 6 0 0 4096 36 421 3987673 55200 225.78892517089844 1.4347000000000001 391.55849999999998 20160 12345 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10474911896 10962120 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 29 188 154 0 0 0 2 34 0 0 0 0 0 +1566 1783878227741089700 REFRESH 23 0 0.67096304646407345 0.74190800681430991 1 11 1 11 0 0 3568 21 413 3988075 55680 222.58586120605469 1.4359999999999999 363.08749999999998 13440 7927 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10475641380 11691604 1 0 4 2 3 3 4 983040 491520 737280 737514 998400 25 25 25 131 207 0 0 0 5 16 0 0 0 0 0 +1567 1783878228157919800 REFRESH 6 0 0.66433353333632528 0.91396933560476989 3 11 3 11 1 0 387 8 419 3988949 56640 219.82208251953125 1.4292 344.59210000000002 6720 4714 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10476376984 12427208 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 26 25 25 39 304 0 0 0 0 8 0 0 0 0 1 +1568 1783878228576734000 REFRESH 10 0 0.67112147176471248 0.64821124361158422 1 10 1 10 0 0 1240 11 428 3987999 55680 223.56889343261719 1.4309000000000001 366.8698 20160 14682 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10477121768 13171992 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 25 178 175 0 0 0 0 11 0 0 0 0 0 +1569 1783878228993639100 REFRESH 14 0 0.67145978983267951 0.65587734241908002 0 11 0 11 0 0 1867 32 409 3988060 55680 223.30572509765625 1.4316 363.56569999999999 13440 7987 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10477847172 13897396 1 0 4 2 3 3 4 983040 491520 737280 737495 998400 26 25 25 106 227 0 0 0 2 30 0 0 0 0 0 +1570 1783878229459712300 REFRESH 41 0 0.66976508288815473 0.55451448040885853 1 9 1 9 0 0 2520 24 421 3987623 55200 237.45433044433594 1.4285000000000001 406.91930000000002 20160 12444 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10478584816 14635040 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 34 108 229 0 0 0 3 21 0 0 0 0 0 +1571 1783878229865720000 REFRESH 24 0 0.67041517988945887 1 4 11 4 11 0 0 498 12 394 3988958 56640 221.09286499023438 1.4303999999999999 352.07940000000002 13440 8289 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 10479294920 15345144 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 36 283 0 0 0 0 12 0 0 0 0 0 +1572 1783878230373663100 REFRESH 46 0 0.67034773147729543 0.37478705281090291 0 8 0 8 0 0 2887 17 424 3987612 55200 227.88096618652344 1.4340999999999999 398.3322 20160 11843 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10480035624 16085848 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 252 97 0 0 0 4 13 0 0 0 0 0 +1573 1783878230778015300 REFRESH 43 0 0.66985340009721317 0.8279386712095399 2 11 2 11 0 0 818 11 423 3987430 55200 223.66412353515625 1.4484999999999999 355.3682 33600 24883 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10480775308 16825532 1 0 6 5 1 1 3 1474560 1228800 245760 245828 748800 26 25 76 149 147 0 0 1 0 10 0 0 0 0 0 +1574 1783878231226862400 REFRESH 30 0 0.67031896242802635 0.4608177172061329 1 8 1 8 0 0 3927 31 426 3987562 55200 228.21682739257812 1.4298 387.95620000000002 20160 12494 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10481518052 17568276 1 0 4 3 3 3 3 983040 737280 737280 737477 748800 25 25 26 245 105 0 0 0 15 16 0 0 0 0 0 +1575 1783878231621089500 REFRESH 34 0 0.6678664078176928 0.8356047700170357 1 12 1 12 0 0 816 7 419 3987992 55680 221.63763427734375 1.4295 342.66090000000003 20160 12323 0 0 0.00020653887011450506 1.7523984227231839 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10482253656 18303880 1 0 5 3 2 2 4 1228800 737280 491520 491664 998400 25 25 57 123 189 0 0 0 1 6 0 0 0 0 0 +1576 1783878232026035700 REFRESH 15 0 0.66737051580179185 0.91396933560476989 3 11 3 11 0 0 322 6 413 3988956 56640 220.64230346679688 1.4282999999999999 351.6164 6720 4760 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10482983140 19033364 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 25 25 25 45 293 0 0 0 1 5 0 0 0 0 0 +1577 1783878232526472700 REFRESH 53 0 0.67108552276793487 0.37478705281090291 0 8 0 8 0 0 4096 19 414 3987642 55200 223.383544921875 1.4339999999999999 389.55470000000003 20160 11983 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10483713644 19763868 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 229 110 0 0 0 8 11 0 0 0 0 0 +1578 1783878235022667100 DEPTH 42 1 0.83166501054319164 0 0 4 0 4 1 0 4096 26 2586 23678295 81600 1293.6724395751953 8.6165000000000003 2443.0868999999998 120960 65378 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 10488210272 24260496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 275 150 217 1439 505 0 0 0 0 26 0 0 0 0 2 +1579 1783878237487350500 DEPTH 56 1 0.68903761155315757 0.17206132879045993 2 4 2 4 1 0 4096 70 2573 23677721 81600 1290.4707794189453 8.6457999999999995 2404.6015000000002 120960 60314 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 10492693640 28743864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 294 150 150 1359 620 6 0 0 4 60 0 0 0 0 1 +1580 1783878239911986700 DEPTH 31 1 0.68396562998098454 0.26575809199318562 2 5 2 5 0 0 3204 38 2577 23677490 81600 1292.5769958496094 8.6414999999999988 2364.3658999999998 120960 57067 1 0 0.042451876527762694 1.3083878931287392 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 10497181088 33231312 1 0 4 3 3 3 3 5898240 4423680 4423680 4426454 4492800 150 150 162 888 1227 0 0 1 1 36 0 0 0 0 0 +1581 1783878242391690300 DEPTH 57 1 0.67300095445819619 0.27342419080068137 1 6 1 6 0 0 4096 59 2536 23677752 81600 1297.3720397949219 8.6210000000000004 2421.6448 120960 58095 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 10501626716 37676940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426524 4492800 150 150 164 804 1268 0 0 2 0 57 0 0 0 0 0 +1582 1783878244910920400 DEPTH 48 1 0.67231910884667268 0.26575809199318562 2 5 2 5 0 0 2773 48 2583 23677771 81600 1290.7714385986328 8.6499000000000006 2411.3523 120960 57700 1 1 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 10506120284 42170508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 186 873 1224 0 0 3 0 44 0 0 0 0 0 +1583 1783878247328617400 DEPTH 9 1 0.67164233528848793 0.27342419080068137 1 6 1 6 0 0 3462 41 2599 23677650 81600 1295.3540496826172 8.6305999999999994 2362.0621000000001 120960 58520 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 10510630172 46680396 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 155 1643 501 0 0 5 0 36 0 0 0 0 0 +1584 1783878249830641200 DEPTH 17 1 0.67130233707345299 0.28109028960817717 0 7 0 7 0 0 4096 70 2559 23677603 81600 1286.4289245605469 8.5881999999999987 2385.8456000000001 120960 57294 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10515099260 51149484 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 150 150 216 500 1543 3 1 4 0 62 0 0 0 0 0 +1585 1783878252227609400 DEPTH 54 1 0.67079294112253807 0.4608177172061329 1 8 1 8 0 0 1289 29 2557 23698518 103680 1279.9877777099609 8.5717999999999996 2341.9980999999998 120960 69634 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 10519566308 55616532 1 0 4 3 3 2 4 5898240 4423680 4423680 2950971 5990400 150 150 162 632 1463 0 0 0 0 29 0 0 0 0 0 +1586 1783878254654805800 DEPTH 44 1 0.66928438659536527 0.36712095400340705 1 7 1 7 0 0 2569 57 2588 23677581 81600 1292.4378356933594 8.5986999999999991 2371.2406999999998 120960 56909 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 10524064976 60115200 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 150 150 155 410 1723 5 2 4 0 46 0 0 0 0 0 +1587 1783878256781303600 DEPTH 49 1 0.66904188395083863 0.4454855195911413 3 6 3 6 1 0 1773 76 2525 23677423 81600 1288.6544647216797 8.5919999999999987 2071.6358 120960 56905 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 10528499384 64549608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 372 1703 0 0 0 0 76 0 0 0 0 1 +1588 1783878260240573500 DEPTH 1 1 0.66893893237474888 0.36712095400340705 1 7 1 7 0 0 3665 74 2573 23677625 81600 1294.3565216064453 8.591899999999999 3401.3870999999999 120960 57055 1 0 0.01758808884266605 1.1144142614160466 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 10532982832 1924916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426511 4492800 150 150 173 838 1262 0 0 4 0 70 0 0 0 0 0 +1589 1783878262485168000 DEPTH 16 1 0.66842106338500018 0.3594548551959113 2 6 2 6 0 0 3652 67 2549 23677547 81600 1291.5182952880859 8.6163000000000007 2183.9778000000001 120960 57952 1 0 0.0060390870541172353 0.13567556836191094 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 10537441720 6383804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 150 608 1491 0 0 0 4 63 0 0 0 0 0 +1590 1783878264834340600 DEPTH 27 1 0.66834250505715054 0.4608177172061329 1 8 1 8 0 0 4096 55 2559 23677380 81600 1292.8227081298828 8.5982000000000003 2294.8105 120960 57187 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10541910808 10852892 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 156 535 1568 0 0 2 1 52 0 0 0 0 0 +1591 1783878267186860300 DEPTH 33 1 0.66829687419058525 0.36712095400340705 1 7 1 7 0 0 3841 51 2523 23677542 81600 1294.9043121337891 8.6755999999999993 2297.0446999999999 120960 58193 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 10546343176 15285260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 163 352 1708 0 0 2 0 49 0 0 0 0 0 +1592 1783878269279089600 DEPTH 51 1 0.66820156355995941 0.91396933560476989 3 11 3 11 1 0 566 23 2472 23720697 125760 1274.5976867675781 8.6036000000000001 2042.3905999999999 120960 52818 1 0 0.045038803178812724 0.27494059731149856 4096 2048 384 12 96 360 72 24 0 2472 1920 0 384 1 10550723524 19665608 1 0 4 3 2 2 5 5898240 4423680 2949120 2951027 7488000 150 150 150 330 1692 1 0 0 0 22 0 0 0 0 2 +1593 1783878271667804700 DEPTH 52 1 0.66818658060280156 0.36712095400340705 1 7 1 7 0 0 2537 49 2592 23677564 81600 1285.1709442138672 8.5859000000000005 2332.7527 120960 56671 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 10555226272 24168356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 166 1189 937 2 0 0 0 47 0 0 0 0 0 +1594 1783878274092888900 DEPTH 42 1 0.74211919025293671 0 0 4 0 4 0 0 4096 20 2582 23678384 81600 1287.8018188476562 8.6404999999999994 2423.8400000000001 120960 54021 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 10559718820 28660904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 250 150 194 1500 488 0 0 0 0 20 0 0 0 0 0 +1595 1783878276515275300 DEPTH 13 1 0.67242235179787357 0.27342419080068137 1 6 1 6 1 0 4096 62 2572 23677627 81600 1289.2989807128906 8.5824999999999996 2358.7899000000002 120960 58465 1 0 0.022787154352698975 0.15350815743700386 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 10564201168 33143252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426376 4492800 150 150 162 754 1356 0 0 0 0 62 0 0 0 0 1 +1596 1783878278828856900 DEPTH 8 1 0.66982660050176235 0.26575809199318562 2 5 2 5 0 0 2554 41 2515 23677619 81600 1293.8740539550781 8.6015999999999995 2201.5268000000001 120960 58040 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 10568625376 37567460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 156 385 1674 0 0 0 1 40 0 0 0 0 0 +1597 1783878280976450400 DEPTH 55 1 0.66821758690204147 0.64054514480408853 2 9 2 9 0 0 1145 60 2517 23687903 92160 1293.0896301269531 8.5968999999999998 2093.9805000000001 100800 44580 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 10573051624 41993708 1 0 4 3 3 3 3 5898240 3686400 4423680 4426424 5241600 150 150 150 528 1539 0 0 0 6 54 0 0 0 0 0 +1598 1783878283378511900 DEPTH 3 1 0.66815311070867389 0.64054514480408853 2 9 2 9 0 0 1243 42 2532 23698536 103680 1279.9714965820312 8.6347000000000005 2346.7892999999999 120960 70021 1 0 0.007660491971153616 0.13236378039086213 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 10577493172 46435256 1 0 4 3 3 2 4 5898240 4423680 4423680 2950986 5990400 150 150 150 445 1637 1 0 0 1 40 0 0 0 0 0 +1599 1783878285643226100 DEPTH 14 1 0.66815082893414135 0.65587734241908002 0 11 0 11 0 0 1874 96 2517 23684062 88320 1292.3544311523438 8.6104000000000003 2206.6316999999999 107520 44792 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 10581919420 50861504 1 0 4 3 3 3 3 5898240 3932160 4423680 4426417 4992000 156 150 150 780 1281 0 0 4 15 77 0 0 0 0 0 +1600 1783878287800920600 DEPTH 10 1 0.66812240410363621 0.64821124361158422 1 10 1 10 0 0 1249 35 2553 23698491 103680 1284.0133514404297 8.6036999999999999 2105.1030999999998 120960 70108 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 10586382388 55324472 1 0 4 3 3 2 4 5898240 4423680 4423680 2950945 5990400 150 150 150 800 1303 0 0 0 0 35 0 0 0 0 0 +1601 1783878289947847900 DEPTH 47 1 0.6681057077697331 0.8279386712095399 2 11 2 11 0 0 727 15 2563 23705180 110400 1283.6321258544922 8.6245999999999992 2094.6913 107520 46705 1 0 0.0072853174080265868 0.99678840260751533 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 10590855556 59797640 1 0 4 3 3 2 4 5898240 3932160 4423680 2950913 6489600 150 150 150 777 1336 0 0 0 0 15 0 0 0 0 0 +1602 1783878292373246600 DEPTH 53 1 0.66837885160617971 0.37478705281090291 0 8 0 8 0 0 4096 55 2525 23677446 81600 1288.7316436767578 8.6359999999999992 2368.3155000000002 120960 56283 1 0 0 0.20692837474269371 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 10595289964 64232048 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 150 150 150 948 1127 0 0 0 1 54 0 0 0 0 0 +1603 1783878295511966200 DEPTH 7 1 0.66802637406505727 0.8356047700170357 1 12 1 12 1 0 943 31 2536 23720620 125760 1274.9568786621094 8.5927000000000007 3086.0825 80640 37505 1 0 0.00027547702210905622 0.69816806324139213 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 10599735672 1570196 1 0 4 2 3 2 5 5898240 2949120 4423680 2950985 7488000 150 150 150 884 1202 0 0 0 2 29 0 0 0 0 1 +1604 1783878297647743100 DEPTH 36 1 0.66800567380315989 0.82027257240204421 3 10 3 10 0 0 1342 35 2551 23720598 125760 1277.3912048339844 8.6408000000000005 2076.1671000000001 80640 38480 1 0 0.084465413719790217 0.12897153469017797 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10604196600 6031124 1 0 4 2 3 2 5 5898240 2949120 4423680 2950966 7488000 156 150 150 739 1356 0 0 0 0 35 0 0 0 0 0 +1605 1783878300085908100 DEPTH 46 1 0.66799727875014581 0.37478705281090291 0 8 0 8 0 0 2892 37 2551 23677629 81600 1289.0848388671875 8.5937000000000001 2380.0715 120960 56763 1 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10608657528 10492052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 150 150 150 1126 975 0 0 0 1 36 0 0 0 0 0 +1606 1783878302206246700 DEPTH 58 1 0.66790548558259233 0.92163543441226559 2 12 2 12 0 0 555 18 2541 23712893 118080 1279.4839172363281 8.613900000000001 2067.4016000000001 120960 68511 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 10613108256 14942780 1 0 4 3 3 2 4 5898240 4423680 3440640 2950958 6988800 150 150 150 763 1328 0 0 0 0 18 0 0 0 0 0 +1607 1783878304377226100 DEPTH 23 1 0.66764506276328828 0.74190800681430991 1 11 1 11 0 0 3587 65 2524 23699387 103680 1295.8326873779297 8.6244999999999994 2114.9153000000001 80640 37432 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 10617541644 19376168 1 0 4 2 3 3 4 5898240 2949120 4423680 4426387 5990400 150 150 150 530 1544 0 0 0 7 58 0 0 0 0 0 +1608 1783878306485145100 DEPTH 5 1 0.667620178830724 0.8279386712095399 2 11 2 11 0 0 948 50 2580 23698475 103680 1268.8912658691406 8.6328999999999994 2051.9661999999998 120960 51174 1 0 0.0013470829413883309 0.39801580600099568 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 10622032152 23866676 1 0 4 3 3 2 4 5898240 4423680 4423680 2950939 5990400 150 150 150 1000 1130 0 0 3 0 47 0 0 0 0 0 +1609 1783878308613170500 DEPTH 35 1 0.66762887590418118 0.8279386712095399 2 11 2 11 0 0 1173 57 2518 23701314 106560 1280.8490142822266 8.6302000000000003 2067.5915 114240 62242 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2518 1920 0 384 1 10626459420 28293944 1 0 4 3 3 2 4 5898240 4177920 4423680 2950898 6240000 150 150 150 985 1083 0 0 0 14 43 0 0 0 0 0 +1610 1783878309016815300 REFRESH 6 0 0.66076554700799417 0.91396933560476989 3 11 3 11 0 0 387 6 419 3988960 56640 220.11289978027344 1.4455 349.20260000000002 13440 9597 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10627195024 29029548 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 25 37 306 0 0 0 0 6 0 0 0 0 0 +1611 1783878309425253000 REFRESH 18 0 0.6557061191414808 0.92163543441226559 2 12 2 12 0 0 466 7 413 3988085 55680 222.73741149902344 1.4287000000000001 354.9153 13440 8000 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10627924508 29759032 1 0 4 2 3 3 4 983040 491520 737280 737515 998400 26 25 25 149 188 0 0 0 1 6 0 0 0 0 0 +1612 1783878309862826500 REFRESH 50 0 0.65729342312733396 0.64054514480408853 2 9 2 9 0 0 1088 6 426 3988461 56160 220.90751647949219 1.4376 383.74740000000003 13440 7849 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10628667252 30501776 1 0 4 2 3 2 5 983040 491520 737280 491658 1248000 25 25 25 110 241 0 0 0 0 6 0 0 0 0 0 +1613 1783878310216113300 REFRESH 36 0 0.50438117426800344 0.82027257240204421 3 10 3 10 0 0 1347 21 407 3988105 55680 222.51008605957031 1.4334 351.9914 13440 8001 0 0 0.084465413719790217 0.12897153469017797 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10629390616 31225140 1 0 4 2 3 3 4 983040 491520 737280 737541 998400 26 25 25 68 263 0 0 0 2 19 0 0 0 0 0 +1614 1783878310619659800 REFRESH 29 0 0.66595822375491032 0.82027257240204421 3 10 3 10 0 0 1141 10 420 3987442 55200 222.58380126953125 1.448 347.82040000000001 33600 23968 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10630127240 31961764 1 0 5 5 2 1 3 1228800 1228800 491520 245842 748800 25 25 87 119 164 0 0 1 0 9 0 0 0 0 0 +1615 1783878310970305000 REFRESH 23 0 0.49412766368774802 0.74190800681430991 1 11 1 11 0 0 3591 10 408 3987573 55200 225.98655700683594 1.4457 348.9547 20160 14962 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10630851624 32686148 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 34 299 0 0 0 0 10 0 0 0 0 0 +1616 1783878311373833500 REFRESH 4 0 0.66309184459562764 0.8356047700170357 1 12 1 12 0 0 294 6 422 3988942 56640 220.36685180664062 1.4296 349.82310000000001 13440 9147 0 0 0.040587155531663782 0.9015613560709953 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10631590288 33424812 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 42 305 0 0 0 0 6 0 0 0 0 0 +1617 1783878311726953200 REFRESH 58 0 0.52429948058085352 0.92163543441226559 2 12 2 12 1 0 558 8 418 3988018 55680 222.46707153320312 1.4325000000000001 351.5813 20160 14733 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10632324872 34159396 1 0 4 3 3 2 4 983040 737280 737280 491696 998400 25 25 25 183 160 0 0 0 1 7 0 0 0 0 1 +1618 1783878312171536700 REFRESH 2 0 0.66765455335328405 0.45315161839863699 2 7 2 7 0 0 4096 34 416 3987592 55200 223.44703674316406 1.4565999999999999 377.24290000000002 20160 12443 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10633057416 34891940 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 85 256 0 0 0 1 33 0 0 0 0 0 +1619 1783878312627657500 REFRESH 13 0 0.66007333782959399 0.27342419080068137 1 6 1 6 0 0 4096 25 417 3987636 55200 223.23507690429688 1.427 401.42189999999999 20160 12422 0 0 0.022787154352698975 0.15350815743700386 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10633790980 35625504 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 29 194 144 0 0 0 4 21 0 0 0 0 0 +1620 1783878313058774600 REFRESH 38 0 0.66498392148141616 0.55451448040885853 1 9 1 9 0 0 2222 7 423 3988010 55680 222.67085266113281 1.4639 379.29160000000002 20160 12021 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10634530664 36365188 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 25 261 87 0 0 0 0 7 0 0 0 0 0 +1621 1783878313480590300 REFRESH 3 0 0.6448789776818028 0.64054514480408853 2 9 2 9 0 0 1245 15 415 3988008 55680 222.00729370117188 1.4311 368.34899999999999 20160 13689 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10635262188 37096712 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 26 201 138 0 0 0 6 9 0 0 0 0 0 +1622 1783878313930131400 REFRESH 25 0 0.66756581415599991 0.4608177172061329 1 8 1 8 0 0 2540 11 418 3987607 55200 225.07417297363281 1.4437 394.48149999999998 20160 12034 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10635996772 37831296 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 27 155 186 0 0 0 0 11 0 0 0 0 0 +1623 1783878314372699600 REFRESH 40 0 0.6654348154824814 0.64821124361158422 1 10 1 10 0 0 1905 12 428 3988000 55680 223.64979553222656 1.4286000000000001 389.57220000000001 20160 13510 0 0 0.07950177477394639 0.52031291337843433 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10636741556 38576080 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 234 119 0 0 1 0 11 0 0 0 0 0 +1624 1783878314791984600 REFRESH 16 0 0.66585592373935065 0.3594548551959113 2 6 2 6 0 0 3660 30 415 3987639 55200 223.63136291503906 1.4292 367.07549999999998 20160 12154 0 0 0.0060390870541172353 0.13567556836191094 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10637473080 39307604 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 25 155 185 0 0 0 3 27 0 0 0 0 0 +1625 1783878315197921800 REFRESH 37 0 0.66735461715501943 0.8356047700170357 1 12 1 12 0 0 1066 5 421 3988448 56160 223.4388427734375 1.4455 354.8682 20160 14538 0 0 0.0038465446887722379 0.3735084283888786 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10638210724 40045248 1 0 4 3 2 2 5 983040 737280 491520 491647 1248000 25 25 25 197 149 0 0 0 1 4 0 0 0 0 0 +1626 1783878315660042700 REFRESH 17 0 0.66919139542746131 0.28109028960817717 0 7 0 7 0 0 4096 22 421 3987661 55200 223.21151733398438 1.4308000000000001 406.46159999999998 20160 12169 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10638948368 40782892 1 0 4 3 3 3 3 983040 737280 737280 737536 748800 25 25 49 196 126 1 0 0 2 19 0 0 0 0 0 +1627 1783878316107526700 REFRESH 48 0 0.67012852755262475 0.26575809199318562 2 5 2 5 0 0 2775 8 428 3987654 55200 225.32095336914062 1.431 397.87389999999999 20160 12196 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10639693152 41527676 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 31 210 137 0 0 1 1 6 0 0 0 0 0 +1628 1783878316507395300 REFRESH 28 0 0.66778267351363685 0.8279386712095399 2 11 2 11 0 0 675 16 405 3988498 56160 221.70008850097656 1.4237 351.19720000000001 13440 8015 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 10640414476 42249000 1 0 4 2 3 2 5 983040 491520 737280 491696 1248000 26 25 25 158 171 0 0 0 1 15 0 0 0 0 0 +1629 1783878316952688000 REFRESH 9 0 0.66952765314370044 0.27342419080068137 1 6 1 6 0 0 3464 12 426 3987641 55200 223.65811157226562 1.4410000000000001 395.72649999999999 20160 12139 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10641157220 42991744 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 26 279 71 0 0 0 1 11 0 0 0 0 0 +1630 1783878317306551900 REFRESH 5 0 0.63415613016169659 0.8279386712095399 2 11 2 11 0 0 954 22 417 3987976 55680 223.88633728027344 1.4456 352.51179999999999 20160 14829 0 0 0.0013470829413883309 0.39801580600099568 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10641890784 43725308 1 0 4 3 3 2 4 983040 737280 737280 491654 998400 25 25 26 187 154 0 1 1 7 13 0 0 0 0 0 +1631 1783878317700025800 REFRESH 24 0 0.66731782511644355 1 4 11 4 11 0 0 498 9 392 3988958 56640 220.89010620117188 1.4298999999999999 345.16000000000003 13440 8286 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 392 320 0 64 0 10642598848 44433372 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 37 280 0 0 0 0 9 0 0 0 0 0 +1632 1783878318095091100 REFRESH 19 0 0.66124847022378475 0.8279386712095399 2 11 2 11 0 0 924 8 420 3988458 56160 221.75846862792969 1.4309000000000001 346.65069999999997 13440 7918 0 0 0.030524037516062641 0.38118919030534321 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10643335472 45169996 1 0 4 2 3 2 5 983040 491520 737280 491655 1248000 25 25 25 179 166 0 1 0 0 7 0 0 0 0 0 +1633 1783878318493122800 REFRESH 22 0 0.66646504277776919 0.91396933560476989 3 11 3 11 0 0 511 18 413 3988486 56160 221.97676086425781 1.4472 348.33659999999998 13440 7972 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10644064956 45899480 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 25 25 25 159 179 0 0 0 3 15 0 0 0 0 0 +1634 1783878318929351100 REFRESH 57 0 0.67080316452464173 0.27342419080068137 1 6 1 6 0 0 4096 22 415 3987620 55200 223.20640563964844 1.4319999999999999 386.38510000000002 20160 12222 0 0 0.00072518623570734639 0.42989973567536088 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10644796480 46631004 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 30 190 145 0 0 0 5 17 0 0 0 0 0 +1635 1783878319376682000 REFRESH 11 0 0.66754883717095581 0.37478705281090291 0 8 0 8 0 0 2828 30 409 3987594 55200 224.19865417480469 1.4332 394.4572 20160 12062 0 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10645521884 47356408 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 116 218 0 0 0 3 27 0 0 0 0 0 +1636 1783878319772550300 REFRESH 53 0 0.66581748242169558 0.37478705281090291 0 8 0 8 0 0 4096 16 418 3987626 55200 223.12258911132812 1.4298 394.33019999999999 20160 12005 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10646256468 48090992 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 223 120 0 0 0 3 13 0 0 0 0 0 +1637 1783878320169147000 REFRESH 51 0 0.66487683851698753 0.91396933560476989 3 11 3 11 0 0 567 14 410 3988471 56160 222.55718994140625 1.4408000000000001 347.99000000000001 20160 14850 0 0 0.045038803178812724 0.27494059731149856 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10646982892 48817416 1 0 4 3 2 2 5 983040 737280 491520 491671 1248000 25 25 25 210 125 0 0 0 4 10 0 0 0 0 0 +1638 1783878320630293900 REFRESH 42 0 0.83259229352815545 0 0 4 0 4 0 0 4096 11 426 3987806 55200 223.62339782714844 1.4314 410.53969999999998 20160 13620 0 0 0 0.0064225313725129367 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10647725636 49560160 1 0 4 3 3 3 3 983040 737280 737280 737564 748800 51 25 41 230 79 0 0 0 0 11 0 0 0 0 0 +1639 1783878321064253200 REFRESH 21 0 0.66707217387780915 0.56218057921635434 0 10 0 10 0 0 2821 18 423 3988003 55680 222.91661071777344 1.4312 384.08960000000002 20160 11914 0 0 0.00032870285718717969 1.0244732372210883 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10648465320 50299844 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 26 264 83 0 0 0 1 17 0 0 0 0 0 +1640 1783878321485508300 REFRESH 27 0 0.66557039509278493 0.4608177172061329 1 8 1 8 0 0 4096 34 412 3987614 55200 223.89657592773438 1.4394 370.67399999999998 20160 12035 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10649193784 51028308 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 30 159 173 0 0 0 6 28 0 0 0 0 0 +1641 1783878321919256900 REFRESH 52 0 0.66575169285847835 0.36712095400340705 1 7 1 7 0 0 2539 21 428 3987631 55200 222.89407348632812 1.4319 383.96620000000001 20160 12092 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10649938568 51773092 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 29 215 134 0 0 0 5 16 0 0 0 0 0 +1642 1783878322347585700 REFRESH 26 0 0.66645750013627425 0.55451448040885853 1 9 1 9 0 0 2182 23 420 3987592 55200 225.39161682128906 1.4346000000000001 372.90800000000002 20160 12186 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10650675192 52509716 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 30 195 145 0 0 1 2 20 0 0 0 0 0 +1643 1783878322840597900 REFRESH 31 0 0.68036598217656608 0.26575809199318562 2 5 2 5 0 0 3211 19 424 3987640 55200 223.83103942871094 1.4317 392.87759999999997 20160 12019 0 0 0.042451876527762694 1.3083878931287392 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10651415896 53250420 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 27 202 145 0 0 0 0 19 0 0 0 0 0 +1644 1783878323240443000 REFRESH 0 0 0.66239429038504338 0.8279386712095399 2 11 2 11 0 0 960 5 421 3988473 56160 223.35693359375 1.4447000000000001 351.20190000000002 13440 8739 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10652153540 53988064 1 0 4 2 3 2 5 983040 491520 737280 491671 1248000 26 25 25 191 154 1 0 0 0 4 0 0 0 0 0 +1645 1783878323641425200 REFRESH 34 0 0.66206433541725751 0.8356047700170357 1 12 1 12 1 0 817 10 419 3988015 55680 221.55996704101562 1.4316 345.80549999999999 20160 12130 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10652889144 54723668 1 0 5 3 2 2 4 1228800 737280 491520 491689 998400 25 25 58 143 168 0 0 0 1 9 0 0 0 0 1 +1646 1783878324094293300 REFRESH 56 0 0.68745834686633089 0.17206132879045993 2 4 2 4 0 0 4096 13 424 3987664 55200 224.005126953125 1.4322999999999999 401.24329999999998 20160 12622 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10653629848 55464372 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 51 25 25 245 78 1 0 0 2 10 0 0 0 0 0 +1647 1783878324524480800 REFRESH 44 0 0.66705724012073819 0.36712095400340705 1 7 1 7 0 0 2588 48 425 3987683 55200 224.91958618164062 1.4291 377.72089999999997 20160 12080 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10654371572 56206096 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 26 110 239 0 0 0 5 43 0 0 0 0 0 +1648 1783878324961399800 REFRESH 30 0 0.66777558595509712 0.4608177172061329 1 8 1 8 0 0 3934 23 421 3987588 55200 222.72000122070312 1.4314 387.32119999999998 20160 12470 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10655109216 56943740 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 26 226 119 0 0 0 3 20 0 0 0 0 0 +1649 1783878325361469900 REFRESH 15 0 0.66180722945718151 0.91396933560476989 3 11 3 11 0 0 322 10 414 3988972 56640 222.22746276855469 1.4359 349.90559999999999 13440 9773 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10655839720 57674244 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 25 25 25 44 295 0 0 0 1 9 0 0 0 0 0 +1650 1783878325783750300 REFRESH 33 0 0.66593784677376777 0.36712095400340705 1 7 1 7 0 0 3864 42 410 3987672 55200 223.64057922363281 1.4457 369.13799999999998 20160 12040 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10656566144 58400668 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 30 135 195 0 0 0 8 34 0 0 0 0 0 +1651 1783878326205743100 REFRESH 32 0 0.66784423367464019 0.4608177172061329 1 8 1 8 0 0 3351 29 412 3987604 55200 224.69119262695312 1.4375 368.39170000000001 20160 12302 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10657294608 59129132 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 26 62 274 0 0 0 0 29 0 0 0 0 0 +1652 1783878326626892200 REFRESH 14 0 0.66514200246207544 0.65587734241908002 0 11 0 11 0 0 1880 30 408 3987604 55200 224.16902160644531 1.4343999999999999 365.43099999999998 20160 14812 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10658018992 59853516 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 25 98 235 0 0 0 8 22 0 0 0 0 0 +1653 1783878327072653100 REFRESH 54 0 0.66915156925356545 0.4608177172061329 1 8 1 8 0 0 1291 11 423 3987996 55680 221.98579406738281 1.4738 391.83359999999999 20160 13898 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10658758676 60593200 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 27 186 160 0 0 0 2 9 0 0 0 0 0 +1654 1783878327491063000 REFRESH 10 0 0.66538149781534139 0.64821124361158422 1 10 1 10 0 0 1249 7 427 3988002 55680 222.85516357421875 1.4360999999999999 362.5265 20160 13670 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10659502440 61336964 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 25 214 138 0 0 0 0 7 0 0 0 0 0 +1655 1783878327952267400 REFRESH 55 0 0.6652447322114704 0.64054514480408853 2 9 2 9 0 0 1146 14 406 3987596 55200 223.65184020996094 1.4337 354.20690000000002 20160 14880 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10660224784 62059308 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 120 211 0 0 0 2 12 0 0 0 0 0 +1656 1783878328361235600 REFRESH 47 0 0.66488771493277554 0.8279386712095399 2 11 2 11 0 0 731 20 416 3988001 55680 224.18226623535156 1.4336 358.02460000000002 20160 14838 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 10660957328 62791852 1 0 4 3 3 2 4 983040 737280 737280 491680 998400 25 25 26 186 154 0 0 0 8 12 0 0 0 0 0 +1657 1783878328759127000 REFRESH 7 0 0.66480840693950671 0.8356047700170357 1 12 1 12 0 0 943 9 417 3988449 56160 220.69145202636719 1.4320999999999999 344.58850000000001 13440 7941 0 0 0.00027547702210905622 0.69816806324139213 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10661690892 63525416 1 0 4 2 3 2 5 983040 491520 737280 491644 1248000 25 25 25 265 77 0 0 0 2 7 0 0 0 0 0 +1658 1783878329170483900 REFRESH 8 0 0.66802206225846605 0.26575809199318562 2 5 2 5 0 0 2558 13 411 3987622 55200 225.18374633789062 1.4285000000000001 356.2405 20160 12319 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10662418336 64252860 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 26 120 215 0 0 0 1 12 0 0 0 0 0 +1659 1783878329566424300 REFRESH 43 0 0.66727639524043492 0.8279386712095399 2 11 2 11 0 0 818 8 418 3987438 55200 223.79231262207031 1.4281999999999999 342.70339999999999 33600 24637 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10663152920 64987444 1 0 6 5 1 1 3 1474560 1228800 245760 245836 748800 26 25 78 160 129 0 0 0 1 7 0 0 0 0 0 +1660 1783878329967003700 REFRESH 46 0 0.66585987480852582 0.37478705281090291 0 8 0 8 0 0 2896 7 420 3987618 55200 223.47879028320312 1.4308000000000001 398.82650000000001 20160 11954 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10663889544 65724068 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 25 256 89 0 0 0 2 5 0 0 0 0 0 +1661 1783878330376409200 REFRESH 35 0 0.66443595462794292 0.8279386712095399 2 11 2 11 0 0 1179 24 415 3987987 55680 224.94003295898438 1.4644999999999999 354.78190000000001 20160 14943 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10664621068 66455592 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 25 230 110 0 0 0 14 10 0 0 0 0 0 +1662 1783878331833066000 REFRESH 41 0 0.66720305585630069 0.55451448040885853 1 9 1 9 0 0 2529 29 417 3987600 55200 222.03904724121094 1.4302999999999999 1401.1622 20160 12456 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10665354712 80840 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 37 116 214 0 0 0 0 29 0 0 0 0 0 +1663 1783878332296311000 REFRESH 49 0 0.66751253194418791 0.4454855195911413 3 6 3 6 0 0 1783 24 410 3987610 55200 224.20582580566406 1.4552 356.9486 20160 12021 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10666081136 807264 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 26 119 215 0 0 0 3 21 0 0 0 0 0 +1664 1783878332744648900 REFRESH 39 0 0.66663930498311963 0.55451448040885853 1 9 1 9 0 0 1660 11 414 3988003 55680 221.665283203125 1.4343999999999999 388.24619999999999 20160 14890 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10666811640 1537768 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 25 32 307 0 1 0 1 9 0 0 0 0 0 +1665 1783878333180844500 REFRESH 1 0 0.66665733121334547 0.36712095400340705 1 7 1 7 0 0 3678 37 421 3987665 55200 223.78495788574219 1.4461999999999999 380.40980000000002 20160 12104 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10667549284 2275412 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 29 155 187 0 0 0 1 36 0 0 0 0 0 +1666 1783878333610582600 REFRESH 45 0 0.66793231234474626 0.45315161839863699 2 7 2 7 0 0 2406 31 408 3987608 55200 223.21562194824219 1.4379999999999999 374.20830000000001 20160 11972 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 10668273668 2999796 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 103 230 0 1 0 0 30 0 0 0 0 0 +1667 1783878334017933000 REFRESH 12 0 0.663928895049541 0.54684838160136284 2 8 2 8 0 0 2019 6 428 3987608 55200 222.91763305664062 1.4294 354.45769999999999 20160 11995 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10669018452 3744580 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 49 161 168 0 0 0 0 6 0 0 0 0 0 +1668 1783878334514637500 REFRESH 20 0 0.66791322020864197 0.26575809199318562 2 5 2 5 0 0 2239 4 434 3987610 55200 223.11322021484375 1.4357 391.41390000000001 20160 11999 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 434 320 0 64 0 10669769356 4495484 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 35 196 153 0 0 0 0 4 0 0 0 0 0 +1669 1783878337010906600 DEPTH 42 1 0.83284752741339663 0 0 4 0 4 0 0 4096 18 2584 23678333 81600 1292.5400848388672 8.6183999999999994 2442.1014 120960 66238 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 10674263944 8990072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 282 150 220 1442 490 0 0 0 0 18 0 0 0 0 0 +1670 1783878339409503800 DEPTH 31 1 0.67670979136138165 0.26575809199318562 2 5 2 5 1 0 3228 54 2577 23677562 81600 1290.31884765625 8.6054999999999993 2344.6379999999999 120960 57254 1 0 0.039708575951905418 1.1426425473548194 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 10678751392 13477520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 165 911 1201 0 0 0 1 53 0 0 0 0 1 +1671 1783878341777270400 DEPTH 57 1 0.66854025744808188 0.27342419080068137 1 6 1 6 0 0 4096 64 2551 23677765 81600 1297.3370056152344 8.585799999999999 2366.4463000000001 120960 58349 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 10683212320 17938448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 166 845 1240 0 0 3 1 60 0 0 0 0 0 +1672 1783878344251619600 DEPTH 13 1 0.66799483352950806 0.27342419080068137 1 6 1 6 0 0 4096 62 2568 23677740 81600 1289.2538909912109 8.6664999999999992 2413.7269000000001 120960 58917 1 0 0.022787154352698975 0.15350815743700386 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 10687690588 22416716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 150 150 164 766 1338 0 2 0 0 60 0 0 0 0 0 +1673 1783878346593583500 DEPTH 9 1 0.6674417578791263 0.27342419080068137 1 6 1 6 0 0 3476 49 2590 23677691 81600 1292.2623901367188 8.6231000000000009 2340.7838999999999 120960 58477 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 10692191296 26917424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 152 1636 502 0 0 4 1 44 0 0 0 0 0 +1674 1783878349138827400 DEPTH 17 1 0.66716734977852354 0.28109028960817717 0 7 0 7 0 0 4096 46 2556 23677635 81600 1286.2266845703125 8.6136999999999997 2385.2114999999999 120960 57841 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 10696657324 31383452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 216 471 1569 1 0 0 0 45 0 0 0 0 0 +1675 1783878351560807600 DEPTH 48 1 0.66601127344073929 0.26575809199318562 2 5 2 5 0 0 2782 32 2582 23677754 81600 1291.5046539306641 8.6008999999999993 2320.9432999999999 120960 57565 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 10701149872 35876000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 186 861 1235 0 0 5 0 27 0 0 0 0 0 +1676 1783878354036562100 DEPTH 56 1 0.6854386304319684 0.17206132879045993 2 4 2 4 0 0 4096 42 2577 23677933 81600 1288.8311157226562 8.6007000000000016 2420.1342 120960 60027 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 10705637320 40363448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426526 4492800 297 150 150 1388 592 5 0 0 1 36 0 0 0 0 0 +1677 1783878356471061000 DEPTH 11 1 0.66515272189930075 0.37478705281090291 0 8 0 8 0 0 2847 53 2531 23677381 81600 1284.394775390625 8.6399999999999988 2325.6795999999999 120960 56651 1 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 10710077848 44803976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426411 4492800 150 150 150 637 1444 7 1 0 0 45 0 0 0 0 0 +1678 1783878358823617300 DEPTH 2 1 0.66504804596145117 0.45315161839863699 2 7 2 7 0 0 4096 81 2531 23677349 81600 1289.2342071533203 8.5990000000000002 2295.1685000000002 120960 61162 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 10714518376 49244504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 330 1751 2 0 0 0 79 0 0 0 0 0 +1679 1783878361164316800 DEPTH 32 1 0.66497567957749282 0.4608177172061329 1 8 1 8 0 0 3365 58 2546 23677359 81600 1288.4687957763672 8.6181999999999999 2287.6945999999998 120960 59267 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 10718974204 53700332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426354 4492800 150 150 156 185 1905 0 0 2 0 56 0 0 0 0 0 +1680 1783878363636528900 DEPTH 25 1 0.66495382954854498 0.4608177172061329 1 8 1 8 0 0 2548 33 2566 23677522 81600 1289.3554229736328 8.6366999999999994 2409.1338999999998 120960 57194 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 10723450432 58176560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 162 883 1221 0 0 2 0 31 0 0 0 0 0 +1681 1783878366049021800 DEPTH 30 1 0.66495288333669089 0.4608177172061329 1 8 1 8 0 0 3945 58 2559 23677293 81600 1288.0825958251953 8.5892999999999997 2357.2973999999999 120960 61998 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10727919520 62645648 1 0 4 3 3 3 3 5898240 4423680 4423680 4426369 4492800 150 150 150 994 1115 0 0 0 1 57 0 0 0 0 0 +1682 1783878368154622400 DEPTH 28 1 0.66487024329001088 0.8279386712095399 2 11 2 11 0 0 678 39 2507 23720655 125760 1287.253173828125 8.6279000000000003 2055.5482000000002 80640 38004 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2507 1920 0 384 1 10732335568 67061696 1 0 4 2 3 2 5 5898240 2949120 4423680 2950955 7488000 155 150 150 538 1514 0 1 0 0 38 0 0 0 0 0 +1683 1783878371624136400 DEPTH 44 1 0.66466983658924561 0.36712095400340705 1 7 1 7 0 0 2599 50 2599 23677564 81600 1292.7908020019531 8.6167999999999996 3413.3782999999999 120960 57030 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 10736845536 4463208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426434 4492800 150 150 153 362 1784 3 0 0 0 47 0 0 0 0 0 +1684 1783878374002075100 DEPTH 21 1 0.66416747037344037 0.56218057921635434 0 10 0 10 0 0 2833 39 2572 23683833 88320 1282.3040466308594 8.6106999999999996 2325.2638000000002 120960 56522 1 0 0.00032870285718717969 1.0244732372210883 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 10741327884 8945556 1 0 4 3 3 3 3 5898240 4423680 4423680 3934649 4992000 150 150 156 1294 822 0 1 6 0 32 0 0 0 0 0 +1685 1783878376428459800 DEPTH 42 1 0.74289372433000989 0 0 4 0 4 0 0 4096 14 2587 23678203 81600 1284.4065093994141 8.6636000000000006 2424.6523999999999 120960 55156 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 10745825532 13443204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 258 150 203 1480 496 0 0 0 0 14 0 0 0 0 0 +1686 1783878378808969200 DEPTH 54 1 0.66715033797665313 0.4608177172061329 1 8 1 8 0 0 1299 36 2559 23677375 81600 1277.6424407958984 8.6012999999999984 2328.5047 120960 68547 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10750294620 17912292 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 162 1005 1092 1 2 0 1 32 0 0 0 0 0 +1687 1783878381113387600 DEPTH 8 1 0.66599125356995281 0.26575809199318562 2 5 2 5 0 0 2564 44 2516 23677708 81600 1294.8394012451172 8.6188000000000002 2248.8588 120960 58435 1 0 0.030102415910686922 0.90707545588340854 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 10754719848 22337520 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 156 376 1684 0 0 0 0 44 0 0 0 0 0 +1688 1783878383409695200 DEPTH 16 1 0.66358379584888705 0.3594548551959113 2 6 2 6 0 0 3671 71 2542 23677540 81600 1296.0715637207031 8.6127000000000002 2191.3600000000001 120960 57542 1 0 0.0060390870541172353 0.13567556836191094 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 10759171596 26789268 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 614 1478 0 0 0 3 68 0 0 0 0 0 +1689 1783878385770351100 DEPTH 33 1 0.66347744809803721 0.36712095400340705 1 7 1 7 0 0 3878 61 2538 23677841 81600 1296.0275573730469 8.6289000000000016 2306.7728000000002 120960 57854 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 10763619264 31236936 1 0 4 3 3 3 3 5898240 4423680 4423680 4426534 4492800 150 150 169 322 1747 0 0 1 1 59 0 0 0 0 0 +1690 1783878388206056100 DEPTH 53 1 0.66347766543347086 0.37478705281090291 0 8 0 8 0 0 4096 51 2546 23677567 81600 1286.7879486083984 8.6083999999999996 2382.3444 120960 55899 1 0 0 0.20692837474269371 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 10768075092 35692764 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 150 979 1117 0 0 0 4 47 0 0 0 0 0 +1691 1783878390344184500 DEPTH 22 1 0.66345033103772377 0.91396933560476989 3 11 3 11 0 0 512 39 2554 23720605 125760 1288.0536651611328 8.6268999999999991 2088.4942000000001 80640 38672 1 0 0.0083534486929875175 0.70272977095887668 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 10772539080 40156752 1 0 4 2 3 2 5 5898240 2949120 4423680 2950971 7488000 150 150 150 600 1504 0 0 0 0 39 0 0 0 0 0 +1692 1783878392448419800 DEPTH 29 1 0.66343744770816004 0.82027257240204421 3 10 3 10 0 0 1148 52 2575 23675641 81600 1285.3321990966797 8.6202000000000005 2054.2103000000002 174720 119539 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 10777024488 44642160 1 0 6 4 2 1 3 8110080 6389760 2949120 1721388 4492800 150 150 497 472 1306 0 0 0 1 51 0 0 0 0 0 +1693 1783878394860945900 DEPTH 45 1 0.66505601349077548 0.45315161839863699 2 7 2 7 0 0 2415 59 2553 23677491 81600 1290.3290710449219 8.6121999999999996 2358.4753999999998 120960 56972 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 10781487456 49105128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 150 429 1674 0 0 0 3 56 0 0 0 0 0 +1694 1783878397020429100 DEPTH 49 1 0.66470881490203459 0.4454855195911413 3 6 3 6 0 0 1804 92 2529 23677527 81600 1289.74951171875 8.5975000000000001 2105.9630999999999 120960 57342 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 10785925944 53543616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426537 4492800 150 150 150 353 1726 0 0 0 1 91 0 0 0 0 0 +1695 1783878399376578500 DEPTH 39 1 0.66467664326010345 0.55451448040885853 1 9 1 9 0 0 1671 41 2572 23698554 103680 1281.6843719482422 8.5864000000000011 2305.3865000000001 120960 67968 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 10790408292 58025964 1 0 4 3 3 2 4 5898240 4423680 4423680 2951017 5990400 150 150 150 182 1940 0 0 1 0 40 0 0 0 0 0 +1696 1783878401755901200 DEPTH 41 1 0.66420676846250193 0.55451448040885853 1 9 1 9 0 0 2534 53 2559 23677459 81600 1286.4059906005859 8.6231000000000009 2318.5913999999998 120960 59109 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 10794877380 62495052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 191 413 1655 1 0 0 2 50 0 0 0 0 0 +1697 1783878404158916200 DEPTH 1 1 0.66407943729941676 0.36712095400340705 1 7 1 7 0 0 3700 70 2579 23677462 81600 1298.2468719482422 8.6062000000000012 2348.3188 120960 57283 1 0 0.01758808884266605 1.1144142614160466 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 10799366868 66984540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426310 4492800 150 150 172 831 1276 0 0 5 2 63 0 0 0 0 0 +1698 1783878407596949600 DEPTH 52 1 0.66344402774542877 0.36712095400340705 1 7 1 7 0 0 2552 33 2592 23677611 81600 1286.6865081787109 8.6155000000000008 3387.7226000000001 120960 57191 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 10803869696 4378628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 163 1157 972 1 2 0 2 28 0 0 0 0 0 +1699 1783878409677762900 DEPTH 24 1 0.66335475869772131 1 4 11 4 11 0 0 499 37 2520 23727315 132480 1275.4262237548828 8.6174999999999997 2031.4206999999999 80640 40689 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 10808299004 8807936 1 0 4 2 3 2 5 5898240 2949120 3932160 2950933 7987200 150 150 150 580 1490 0 0 0 0 37 0 0 0 0 0 +1700 1783878412048665500 DEPTH 26 1 0.66325198693906395 0.55451448040885853 1 9 1 9 0 0 2192 68 2576 23677427 81600 1286.3653564453125 8.6845999999999997 2315.7597999999998 120960 57912 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 10812785432 13294364 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 166 746 1364 0 0 9 2 57 0 0 0 0 0 +1701 1783878412489532400 REFRESH 13 0 0.66578851371671455 0.27342419080068137 1 6 1 6 0 0 4096 27 418 3987661 55200 223.68768310546875 1.4363999999999999 387.06380000000001 20160 12505 0 0 0.022787154352698975 0.15350815743700386 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10813520016 14028948 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 28 197 143 0 0 0 5 22 0 0 0 0 0 +1702 1783878412897611700 REFRESH 55 0 0.6622560059681174 0.64054514480408853 2 9 2 9 0 0 1146 16 407 3987592 55200 223.59245300292969 1.4321999999999999 355.48770000000002 20160 14679 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10814243380 14752312 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 151 181 0 0 1 0 15 0 0 0 0 0 +1703 1783878413361581700 REFRESH 56 0 0.68344230949354889 0.17206132879045993 2 4 2 4 0 0 4096 16 424 3987755 55200 224.91545104980469 1.4318 411.54140000000001 20160 12654 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10814984084 15493016 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 51 25 25 243 80 0 0 0 2 14 0 0 0 0 0 +1704 1783878413778756900 REFRESH 32 0 0.66216243414295373 0.4608177172061329 1 8 1 8 0 0 3379 40 409 3987591 55200 222.11993408203125 1.4314 356.37849999999997 20160 12042 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10815709488 16218420 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 26 67 266 0 0 1 5 34 0 0 0 0 0 +1705 1783878414183370200 REFRESH 34 0 0.65954277309973963 0.8356047700170357 1 12 1 12 0 0 819 13 422 3987985 55680 223.11219787597656 1.4287000000000001 352.83139999999997 20160 12083 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10816448152 16957084 1 0 5 3 2 2 4 1228800 737280 491520 491663 998400 25 25 59 152 161 0 0 1 1 11 0 0 0 0 0 +1706 1783878414590597300 REFRESH 47 0 0.66171561449034577 0.8279386712095399 2 11 2 11 0 0 736 18 418 3987999 55680 222.57562255859375 1.4459 353.1687 20160 14594 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10817182736 17691668 1 0 4 3 3 2 4 983040 737280 737280 491678 998400 25 25 27 201 140 0 0 0 2 16 0 0 0 0 0 +1707 1783878415018544000 REFRESH 57 0 0.66632960127439356 0.27342419080068137 1 6 1 6 0 0 4096 23 417 3987678 55200 224.62669372558594 1.4285000000000001 376.0127 20160 12394 0 0 0.00072518623570734639 0.42989973567536088 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10817916300 18425232 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 30 192 145 0 0 0 10 13 0 0 0 0 0 +1708 1783878415449982500 REFRESH 27 0 0.66301882182361416 0.4608177172061329 1 8 1 8 0 0 4096 23 414 3987591 55200 225.31788635253906 1.4466000000000001 379.03899999999999 20160 12034 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10818646804 19155736 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 28 139 197 0 0 0 2 21 0 0 0 0 0 +1709 1783878415851406200 REFRESH 51 0 0.66187789571106781 0.91396933560476989 3 11 3 11 0 0 568 4 413 3988479 56160 221.42156982421875 1.4311 344.79629999999997 20160 14676 0 0 0.045038803178812724 0.27494059731149856 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10819376288 19885220 1 0 4 3 2 2 5 983040 737280 491520 491678 1248000 25 25 25 216 122 0 0 0 0 4 0 0 0 0 0 +1710 1783878416331651400 REFRESH 17 0 0.66509559051975664 0.28109028960817717 0 7 0 7 0 0 4096 10 426 3987676 55200 225.11923217773438 1.4330000000000001 426.3458 20160 12270 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10820119032 20627964 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 50 185 141 1 0 1 0 8 0 0 0 0 0 +1711 1783878416776561400 REFRESH 25 0 0.66219104554298669 0.4608177172061329 1 8 1 8 0 0 2551 21 419 3987601 55200 223.66514587402344 1.4320999999999999 392.48059999999998 20160 12159 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10820854636 21363568 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 27 170 172 0 0 0 3 18 0 0 0 0 0 +1712 1783878417175720800 REFRESH 4 0 0.6578755863427298 0.8356047700170357 1 12 1 12 1 0 294 9 414 3988951 56640 221.07955932617188 1.4289000000000001 345.30610000000001 13440 9044 0 0 0.035532469242004712 0.84948699724715482 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 10821585140 22094072 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 50 289 0 0 0 0 9 0 0 0 0 2 +1713 1783878417543436700 REFRESH 49 0 0.60188393568049925 0.4454855195911413 3 6 3 6 0 0 1813 20 411 3987605 55200 223.41427612304688 1.4350000000000001 366.13740000000001 20160 11965 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10822312584 22821516 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 26 114 221 0 0 0 6 14 0 0 0 0 0 +1714 1783878417944483700 REFRESH 5 0 0.66133815032412357 0.8279386712095399 2 11 2 11 1 0 954 13 426 3988016 55680 222.10456848144531 1.4369000000000001 347.45600000000002 20160 14527 0 0 0.0013470106038939431 0.39161404878493661 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10823055328 23564260 1 0 4 3 3 2 4 983040 737280 737280 491696 998400 25 25 26 195 155 0 0 0 1 12 0 0 0 0 1 +1715 1783878418356651900 REFRESH 12 0 0.65646040593563537 0.54684838160136284 2 8 2 8 0 0 2021 8 427 3987650 55200 225.08236694335938 1.4442999999999999 358.5138 20160 12040 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10823799092 24308024 1 0 4 3 3 3 3 983040 737280 737280 737543 748800 25 25 47 175 155 0 0 0 2 6 0 0 0 0 0 +1716 1783878418766606000 REFRESH 36 0 0.66169799497577941 0.82027257240204421 3 10 3 10 0 0 1351 18 409 3988045 55680 220.79487609863281 1.4266000000000001 353.8073 13440 7985 0 0 0.084465413719790217 0.12897153469017797 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10824524496 25033428 1 0 4 2 3 3 4 983040 491520 737280 737481 998400 26 25 25 108 225 0 0 0 0 18 0 0 0 0 0 +1717 1783878419157372600 REFRESH 39 0 0.63259340230361705 0.55451448040885853 1 9 1 9 0 0 1673 8 425 3988011 55680 222.2530517578125 1.4293 389.27440000000001 20160 14790 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10825266220 25775152 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 25 117 233 0 0 0 1 7 0 0 0 0 0 +1718 1783878419595157700 REFRESH 31 0 0.67522507803316112 0.26575809199318562 2 5 2 5 0 0 3237 18 421 3987615 55200 223.43679809570312 1.4319 382.81720000000001 20160 11998 0 0 0.039708575951905418 1.1426425473548194 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10826003864 26512796 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 28 228 115 0 0 0 0 18 0 0 0 0 0 +1719 1783878420081377000 REFRESH 44 0 0.66233147072116783 0.36712095400340705 1 7 1 7 0 0 2611 32 423 3987596 55200 223.70918273925781 1.4432 420.73149999999998 20160 12355 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10826743548 27252480 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 26 99 248 0 0 1 0 31 0 0 0 0 0 +1720 1783878420554284800 REFRESH 48 0 0.66412054687322408 0.26575809199318562 2 5 2 5 0 0 2783 9 420 3987663 55200 224.184326171875 1.4475 419.03800000000001 20160 12300 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10827480172 27989104 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 31 231 108 0 0 2 0 7 0 0 0 0 0 +1721 1783878420951941100 REFRESH 6 0 0.65594611824478111 0.91396933560476989 3 11 3 11 0 0 389 11 415 3988962 56640 219.95315551757812 1.4370000000000001 345.41759999999999 13440 9474 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10828211696 28720628 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 25 37 302 0 0 1 0 10 0 0 0 0 0 +1722 1783878421381669600 REFRESH 2 0 0.66237755749407323 0.45315161839863699 2 7 2 7 0 0 4096 61 413 3987571 55200 225.78994750976562 1.4326000000000001 372.71019999999999 20160 11872 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10828941180 29450112 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 25 89 249 0 0 0 9 52 0 0 0 0 0 +1723 1783878421821570300 REFRESH 40 0 0.66311202895455823 0.64821124361158422 1 10 1 10 0 0 1907 11 426 3987995 55680 222.15373229980469 1.4303999999999999 387.86959999999999 20160 13181 0 0 0.07950177477394639 0.52031291337843433 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 10829683924 30192856 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 25 25 25 242 109 0 0 0 0 11 0 0 0 0 0 +1724 1783878422279527400 REFRESH 9 0 0.66545012047146646 0.27342419080068137 1 6 1 6 0 0 3478 17 425 3987655 55200 224.83558654785156 1.4308000000000001 403.22160000000002 20160 12168 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 10830425648 30934580 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 26 277 72 0 0 1 4 12 0 0 0 0 0 +1725 1783878422691633100 REFRESH 10 0 0.65983152006361623 0.64821124361158422 1 10 1 10 0 0 1259 34 417 3987592 55200 222.88076782226562 1.4331 358.50639999999999 20160 13646 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10831159212 31668144 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 29 35 303 0 0 0 2 32 0 0 0 0 0 +1726 1783878423106148900 REFRESH 23 0 0.66160924721474546 0.74190800681430991 1 11 1 11 0 0 3593 13 409 3987597 55200 224.62054443359375 1.4454 361.28399999999999 20160 14625 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10831884616 32393548 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 25 38 296 0 0 0 0 13 0 0 0 0 0 +1727 1783878423590392800 REFRESH 11 0 0.6628692805444456 0.37478705281090291 0 8 0 8 0 0 2853 25 420 3987596 55200 222.65548706054688 1.4805999999999999 428.0249 20160 12057 0 0 6.8241361215469509e-05 0.66065784428112584 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10832621240 33130172 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 25 187 158 1 0 0 3 21 0 0 0 0 0 +1728 1783878424014269700 REFRESH 14 0 0.66240443618526457 0.65587734241908002 0 11 0 11 0 0 1887 24 413 3987610 55200 224.04301452636719 1.4387000000000001 368.40859999999998 20160 14567 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 10833350724 33859656 1 0 4 3 3 3 3 983040 737280 737280 737527 748800 25 25 25 95 243 0 0 0 0 24 0 0 0 0 0 +1729 1783878424461330000 REFRESH 20 0 0.66158504084757075 0.26575809199318562 2 5 2 5 0 0 2242 8 433 3987633 55200 225.59027099609375 1.4330000000000001 394.07029999999997 20160 11948 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 433 320 0 64 0 10834100608 34609540 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 35 195 153 0 0 1 0 7 0 0 0 0 0 +1730 1783878424811534400 REFRESH 24 0 0.66022156319474734 1 4 11 4 11 0 0 499 14 407 3988460 56160 220.4375 1.4293 348.86610000000002 13440 7986 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10834823972 35332904 1 0 4 2 3 2 5 983040 491520 737280 491658 1248000 25 25 25 223 109 0 0 0 4 10 0 0 0 0 0 +1731 1783878425208506800 REFRESH 29 0 0.66059633482702229 0.82027257240204421 3 10 3 10 0 0 1149 12 421 3987433 55200 222.23155212402344 1.4313 344.90660000000003 26880 19089 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10835561616 36070548 1 0 6 4 2 1 3 1474560 983040 491520 245833 748800 25 25 98 118 155 0 0 0 0 12 0 0 0 0 0 +1732 1783878425629420900 REFRESH 16 0 0.66121166517693819 0.3594548551959113 2 6 2 6 0 0 3678 28 412 3987635 55200 224.92466735839844 1.4456 367.19279999999998 20160 12026 0 0 0.0060390870541172353 0.13567556836191094 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10836290080 36799012 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 25 130 207 0 0 0 5 23 0 0 0 0 0 +1733 1783878426042021300 REFRESH 28 0 0.66198421078020064 0.8279386712095399 2 11 2 11 0 0 678 14 410 3988118 55680 223.80152893066406 1.4455 352.16000000000003 13440 8163 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 10837016504 37525436 1 0 4 2 3 3 4 983040 491520 737280 737515 998400 26 25 25 50 284 0 0 0 0 14 0 0 0 0 0 +1734 1783878426490473200 REFRESH 21 0 0.66138074169634131 0.56218057921635434 0 10 0 10 0 0 2837 14 419 3987605 55200 223.22904968261719 1.4330000000000001 395.0865 20160 11970 0 0 0.00032870285718717969 1.0244732372210883 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 10837752108 38261040 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 231 111 0 0 1 6 7 0 0 0 0 0 +1735 1783878426890619500 REFRESH 18 0 0.6502735781893072 0.92163543441226559 2 12 2 12 0 0 466 6 417 3988072 55680 221.53829956054688 1.4400999999999999 348.2697 13440 8073 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10838485672 38994604 1 0 4 2 3 3 4 983040 491520 737280 737508 998400 26 25 25 209 132 0 0 0 0 6 0 0 0 0 0 +1736 1783878427340573200 REFRESH 37 0 0.65971573746368939 0.8356047700170357 1 12 1 12 0 0 1067 14 422 3988475 56160 222.83673095703125 1.4301999999999999 344.85939999999999 20160 14317 0 0 0.0038465446887722379 0.3735084283888786 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10839224336 39733268 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 238 109 0 0 0 2 12 0 0 0 0 0 +1737 1783878427803649100 REFRESH 42 0 0.83304201453334592 0 0 4 0 4 0 0 4096 6 427 3987736 55200 223.66514587402344 1.4309000000000001 405.5872 20160 13299 0 0 0 0.0064225313725129367 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10839968100 40477032 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 51 25 42 230 79 0 0 0 0 6 0 0 0 0 0 +1738 1783878428226796400 REFRESH 3 0 0.66249651935573872 0.64054514480408853 2 9 2 9 0 0 1247 23 406 3987589 55200 223.74092102050781 1.4311 369.6157 20160 13530 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10840690444 41199376 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 27 28 301 0 0 0 1 22 0 0 0 0 0 +1739 1783878428634135700 REFRESH 8 0 0.6641585392680478 0.26575809199318562 2 5 2 5 0 0 2564 14 407 3987640 55200 223.56889343261719 1.4312 355.51679999999999 20160 12323 0 0 0.030102415910686922 0.90707545588340854 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10841413808 41922740 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 26 110 221 0 0 0 1 13 0 0 0 0 0 +1740 1783878429041188900 REFRESH 43 0 0.6626697439951128 0.8279386712095399 2 11 2 11 0 0 821 12 423 3987424 55200 223.47059631347656 1.4293 353.90260000000001 33600 24506 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 10842153492 42662424 1 0 6 5 1 1 3 1474560 1228800 245760 245822 748800 26 25 81 165 126 0 0 0 2 10 0 0 0 0 0 +1741 1783878429465086800 REFRESH 41 0 0.6613822996513441 0.55451448040885853 1 9 1 9 0 0 2545 37 417 3987621 55200 223.42962646484375 1.4316 370.78919999999999 20160 12284 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 10842887056 43395988 1 0 4 3 3 3 3 983040 737280 737280 737531 748800 25 25 36 127 204 0 0 0 5 32 0 0 0 0 0 +1742 1783878429838754200 REFRESH 26 0 0.66004301795592213 0.55451448040885853 1 9 1 9 0 0 2197 25 418 3987578 55200 223.12550354003906 1.4333 372.32780000000002 20160 12048 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10843621640 44130572 1 0 4 3 3 3 3 983040 737280 737280 737485 748800 25 25 30 211 127 1 0 0 7 17 0 0 0 0 0 +1743 1783878430268740800 REFRESH 54 0 0.66532065057901946 0.4608177172061329 1 8 1 8 0 0 1307 22 418 3987597 55200 222.54899597167969 1.4462999999999999 376.44119999999998 20160 12705 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 10844356224 44865156 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 132 209 0 0 0 8 14 0 0 0 0 0 +1744 1783878430719934800 REFRESH 46 0 0.66096930958580113 0.37478705281090291 0 8 0 8 0 0 2897 14 420 3987607 55200 222.81727600097656 1.4305000000000001 396.36399999999998 20160 12009 0 0 1.0812982581248225e-06 0.32629220317585528 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10845092848 45601780 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 249 96 0 0 0 0 14 0 0 0 0 0 +1745 1783878431122767500 REFRESH 19 0 0.6572395016748358 0.8279386712095399 2 11 2 11 0 0 924 7 421 3988486 56160 220.74674987792969 1.4311 349.68979999999999 13440 7844 0 0 0.030524037516062641 0.38118919030534321 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10845830492 46339424 1 0 4 2 3 2 5 983040 491520 737280 491680 1248000 25 25 25 193 153 0 0 0 0 7 0 0 0 0 0 +1746 1783878431524722600 REFRESH 58 0 0.65985552913279943 0.92163543441226559 2 12 2 12 0 0 558 8 420 3987992 55680 223.26681518554688 1.4313 352.33629999999999 20160 14641 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 10846567116 47076048 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 25 192 153 0 0 0 1 7 0 0 0 0 0 +1747 1783878432004620400 REFRESH 50 0 0.65289357902344669 0.64054514480408853 2 9 2 9 0 0 1088 9 427 3988451 56160 220.08216857910156 1.4306000000000001 372.96879999999999 13440 7857 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10847310880 47819812 1 0 4 2 3 2 5 983040 491520 737280 491649 1248000 25 25 25 140 212 0 0 0 2 7 0 0 0 0 0 +1748 1783878432439479900 REFRESH 30 0 0.66247373339922255 0.4608177172061329 1 8 1 8 0 0 3948 18 421 3987596 55200 224.18022155761719 1.4320999999999999 381.17110000000002 20160 11854 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 10848048524 48557456 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 25 227 119 0 0 0 6 12 0 0 0 0 0 +1749 1783878432841816500 REFRESH 7 0 0.66100400011728877 0.8356047700170357 1 12 1 12 0 0 945 15 406 3988001 55680 222.05952453613281 1.4313 344.31619999999998 20160 14834 0 0 0.00027547702210905622 0.69816806324139213 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 10848770868 49279800 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 32 299 0 0 0 2 13 0 0 0 0 0 +1750 1783878433235446300 REFRESH 1 0 0.66172928300711309 0.36712095400340705 1 7 1 7 0 0 3712 26 422 3987627 55200 224.14540100097656 1.4454 392.2373 20160 12190 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 10849509532 50018464 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 29 163 180 0 0 1 1 24 0 0 0 0 0 +1751 1783878433640428400 REFRESH 15 0 0.6608110869567303 0.91396933560476989 3 11 3 11 0 0 322 6 412 3988953 56640 220.90663146972656 1.4474 351.34410000000003 13440 9430 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10850237996 50746928 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 25 25 46 291 0 0 0 1 5 0 0 0 0 0 +1752 1783878434050831100 REFRESH 35 0 0.66166182885785441 0.8279386712095399 2 11 2 11 0 0 1179 18 415 3987997 55680 223.08454895019531 1.4377 355.36419999999998 20160 14706 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 10850969520 51478452 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 25 245 95 0 0 0 4 14 0 0 0 0 0 +1753 1783878434502346600 REFRESH 22 0 0.66053307502850855 0.91396933560476989 3 11 3 11 0 0 513 17 409 3988081 55680 223.69792175292969 1.4337 346.37349999999998 13440 8008 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10851694924 52203856 1 0 4 2 3 3 4 983040 491520 737280 737500 998400 26 25 25 42 291 0 0 0 2 15 0 0 0 0 0 +1754 1783878434928184800 REFRESH 38 0 0.66052616666776698 0.55451448040885853 1 9 1 9 0 0 2228 29 409 3987590 55200 222.65855407714844 1.7079 369.5548 20160 11976 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 10852420328 52929260 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 27 37 295 0 0 1 3 25 0 0 0 0 0 +1755 1783878435370214700 REFRESH 45 0 0.66253318394457361 0.45315161839863699 2 7 2 7 0 0 2422 20 427 3987608 55200 222.95143127441406 1.4343999999999999 384.49439999999998 20160 12006 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 10853164092 53673024 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 81 271 0 0 0 3 17 0 0 0 0 0 +1756 1783878435773968600 REFRESH 0 0 0.65554142632298729 0.8279386712095399 2 11 2 11 0 0 960 8 424 3988481 56160 220.10899353027344 1.4475 350.97320000000002 13440 8650 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 10853904796 54413728 1 0 4 2 3 2 5 983040 491520 737280 491678 1248000 26 25 25 168 180 0 0 0 0 8 0 0 0 0 0 +1757 1783878436213350900 REFRESH 33 0 0.66129482246807403 0.36712095400340705 1 7 1 7 0 0 3899 43 411 3987667 55200 224.58367919921875 1.4457 384.03870000000001 20160 12248 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 10854632240 55141172 1 0 4 3 3 3 3 983040 737280 737280 737546 748800 25 25 29 130 202 0 0 0 4 39 0 0 0 0 0 +1758 1783878436658831200 REFRESH 53 0 0.66129545257514377 0.37478705281090291 0 8 0 8 0 0 4096 22 412 3987616 55200 222.919677734375 1.431 393.01429999999999 20160 12082 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 10855360704 55869636 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 227 110 0 0 0 8 14 0 0 0 0 0 +1759 1783878437045390000 REFRESH 52 0 0.66121706629711219 0.36712095400340705 1 7 1 7 0 0 2555 15 428 3987648 55200 223.65388488769531 1.4336 384.88830000000002 20160 12186 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 10856105488 56614420 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 29 218 131 0 0 0 5 10 0 0 0 0 0 +1760 1783878439526966500 DEPTH 42 1 0.80892771040315514 0 0 4 0 4 0 0 4096 13 2593 23678189 81600 1295.0807037353516 8.6091000000000015 2427.9432999999999 120960 65467 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 10860609256 61118188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426376 4492800 272 150 220 1448 503 0 0 0 0 13 0 0 0 0 0 +1761 1783878442001979100 DEPTH 56 1 0.68170187304320073 0.17206132879045993 2 4 2 4 0 0 4096 57 2567 23677854 81600 1289.0436706542969 8.5969999999999995 2421.1194 120960 60781 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 10865086504 65595436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 289 150 150 1405 573 3 0 0 3 51 0 0 0 0 0 +1762 1783878445532058700 DEPTH 31 1 0.67188983380417877 0.26575809199318562 2 5 2 5 1 0 3242 38 2582 23677640 81600 1294.1168518066406 8.5971999999999991 3398.6341000000002 120960 57171 1 1 0.039437761574081708 1.137473311133061 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 10869579132 2979220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426445 4492800 150 150 167 1032 1083 0 0 0 0 37 0 0 0 0 1 +1763 1783878447988706600 DEPTH 57 1 0.66431666872822448 0.27342419080068137 1 6 1 6 0 0 4096 44 2549 23677687 81600 1295.3693542480469 8.6252999999999993 2398.2541000000001 120960 58587 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 10874038020 7438108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 162 796 1291 0 0 0 1 43 0 0 0 0 0 +1764 1783878450486767800 DEPTH 13 1 0.66387581457831635 0.27342419080068137 1 6 1 6 0 0 4096 64 2577 23677670 81600 1290.3303070068359 8.5960999999999999 2382.1226000000001 120960 59110 1 0 0.022787154352698975 0.15350815743700386 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 10878525468 11925556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 163 783 1331 0 0 1 0 63 0 0 0 0 0 +1765 1783878452917742000 DEPTH 9 1 0.66342876220276792 0.27342419080068137 1 6 1 6 0 0 3490 41 2602 23677692 81600 1292.9741058349609 8.5914000000000001 2377.4688000000001 120960 58483 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 10883038416 16438504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426350 4492800 150 150 151 1669 482 0 0 6 1 34 0 0 0 0 0 +1766 1783878455348837100 DEPTH 17 1 0.66320743021984396 0.28109028960817717 0 7 0 7 0 0 4096 53 2563 23677615 81600 1286.6827697753906 8.577 2374.4933000000001 120960 58372 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 10887511584 20911672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 222 568 1473 2 0 1 0 50 0 0 0 0 0 +1767 1783878457793153100 DEPTH 48 1 0.66127194664228606 0.26575809199318562 2 5 2 5 0 0 2795 54 2588 23677860 81600 1290.3670806884766 8.6219000000000001 2386.2910000000002 120960 58257 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 10892010252 25410340 1 0 4 3 3 3 3 5898240 4423680 4423680 4426562 4492800 150 150 186 948 1154 0 1 9 0 44 0 0 0 0 0 +1768 1783878460196834300 DEPTH 54 1 0.66320233254069505 0.4608177172061329 1 8 1 8 0 0 1310 34 2545 23677406 81600 1282.3500823974609 8.6243999999999996 2338.1581999999999 120960 63640 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 10896465060 29865148 1 0 4 3 3 3 3 5898240 4423680 4423680 4426489 4492800 150 150 162 487 1596 0 0 0 0 34 0 0 0 0 0 +1769 1783878462521234300 DEPTH 8 1 0.66219759572224457 0.26575809199318562 2 5 2 5 1 0 2570 45 2512 23677672 81600 1295.5142822265625 8.5832000000000015 2220.7581 120960 58674 1 0 0.030101314216357981 0.86878154946034303 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 10900886208 34286296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 156 412 1644 0 0 0 1 44 0 0 0 0 1 +1770 1783878464887267500 DEPTH 11 1 0.66058141689230299 0.37478705281090291 0 8 0 8 1 0 2859 38 2544 23677564 81600 1282.6529388427734 8.7246000000000006 2312.7928000000002 120960 56642 1 0 6.8269708988463837e-05 0.66030159408254729 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 10905339996 38740084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426552 4492800 150 150 150 910 1184 3 2 0 0 33 0 0 0 0 1 +1771 1783878467309361200 DEPTH 27 1 0.66049142762854052 0.4608177172061329 1 8 1 8 0 0 4096 51 2561 23677661 81600 1295.0202178955078 8.6655000000000015 2367.2896999999998 120960 57514 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 10909811124 43211212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 156 516 1589 0 0 0 4 47 0 0 0 0 0 +1772 1783878469682927300 DEPTH 40 1 0.66038980526310431 0.64821124361158422 1 10 1 10 0 0 1918 34 2584 23687433 92160 1277.4717407226562 8.5973000000000006 2322.252 120960 65850 1 0 0.07950177477394639 0.52031291337843433 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 10914305712 47705800 1 0 4 3 3 3 3 5898240 4423680 4423680 3688682 5241600 150 150 150 1154 980 0 0 6 0 28 0 0 0 0 0 +1773 1783878472105114200 DEPTH 44 1 0.66017411685966954 0.36712095400340705 1 7 1 7 0 0 2631 77 2588 23677642 81600 1292.0586547851562 8.6597000000000008 2361.9205999999999 120960 57810 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 10918804380 52204468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426500 4492800 150 150 155 443 1690 1 3 1 0 72 0 0 0 0 0 +1774 1783878474283508900 DEPTH 43 1 0.65989105408670878 0.8279386712095399 2 11 2 11 0 0 822 45 2557 23675549 81600 1289.0898132324219 8.8482000000000003 2125.0403000000001 188160 123279 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 10923271428 56671516 1 0 6 4 2 1 3 8355840 6881280 2457600 1475527 4492800 150 150 339 728 1190 1 1 0 1 42 0 0 0 0 0 +1775 1783878476752010400 DEPTH 2 1 0.65984494613515121 0.45315161839863699 2 7 2 7 0 0 4096 98 2541 23677499 81600 1290.3619537353516 8.633700000000001 2406.2401 120960 57409 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 10927722156 61122244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 150 351 1740 0 0 0 0 98 0 0 0 0 0 +1776 1783878479300305700 DEPTH 42 1 0.7390923302386635 0 0 4 0 4 0 0 4096 13 2600 23678340 81600 1288.9412384033203 8.7591000000000001 2546.7330999999999 120960 54762 1 0 0 0.0064225313725129367 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 10932233064 65633152 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 252 150 209 1481 508 0 0 0 0 13 0 0 0 0 0 +1777 1783878482810465500 DEPTH 32 1 0.65979489888662313 0.4608177172061329 1 8 1 8 0 0 3396 79 2543 23677501 81600 1287.7803955078125 8.6295000000000002 3450.0237000000002 120960 57523 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 10936685912 2978460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 156 196 1891 0 0 3 0 76 0 0 0 0 0 +1778 1783878485414405600 DEPTH 25 1 0.65977817600690325 0.4608177172061329 1 8 1 8 0 0 2556 32 2556 23677473 81600 1291.0348510742188 8.6545999999999985 2547.9113000000002 120960 57059 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 10941151940 7444488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 161 894 1201 0 0 1 2 29 0 0 0 0 0 +1779 1783878487923801500 DEPTH 30 1 0.65977838490105678 0.4608177172061329 1 8 1 8 0 0 3958 54 2561 23677562 81600 1290.5083465576172 8.6610000000000014 2440.8588 120960 56767 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 10945623068 11915616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426480 4492800 150 150 150 1022 1089 3 0 0 0 51 0 0 0 0 0 +1780 1783878490501217300 DEPTH 20 1 0.65961998991685844 0.26575809199318562 2 5 2 5 0 0 2252 30 2598 23677605 81600 1291.3753814697266 8.6355000000000004 2461.2136 120960 57344 1 0 0.001771835568079596 0.77081764157800148 4096 2048 383 12 96 360 72 24 0 2599 1920 1 383 1 10950132592 16425140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 184 911 1203 0 0 3 1 26 0 0 0 0 0 +1781 1783878492718583300 DEPTH 55 1 0.65960552328606492 0.64054514480408853 2 9 2 9 0 0 1154 87 2517 23677383 81600 1294.8316192626953 8.6160999999999994 2158.8944999999999 120960 70480 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 10954558840 20851388 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 493 1574 0 0 0 4 83 0 0 0 0 0 +1782 1783878495076532500 DEPTH 3 1 0.65955984756591779 0.64054514480408853 2 9 2 9 0 0 1256 68 2504 23677336 81600 1284.1094970703125 8.6311 2296.7991000000002 120960 67604 1 0 0.007660491971153616 0.13236378039086213 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 10958971828 25264376 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 150 150 156 174 1874 0 0 0 3 65 0 0 0 0 0 +1783 1783878497506541400 DEPTH 14 1 0.65955951123180134 0.65587734241908002 0 11 0 11 0 0 1905 114 2498 23677318 81600 1294.5551300048828 8.6674000000000007 2370.1525000000001 120960 70132 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2498 1920 0 384 1 10963378696 29671244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 150 438 1610 0 0 0 2 112 0 0 0 0 0 +1784 1783878500278608300 DEPTH 45 1 0.65982074491788745 0.45315161839863699 2 7 2 7 0 0 2429 39 2568 23677347 81600 1288.3629913330078 8.6356999999999999 2604.8411999999998 120960 57359 1 0 0.37752099914117349 1.3060419274408634 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 10967856964 34149512 1 0 4 3 3 3 3 5898240 4423680 4423680 4426335 4492800 150 150 150 437 1681 0 0 0 1 38 0 0 0 0 0 +1785 1783878503036836800 DEPTH 56 1 0.66976863658971852 0.17206132879045993 2 4 2 4 0 0 4096 62 2570 23677919 81600 1283.6585388183594 8.6473999999999993 2696.6028000000001 120960 49895 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 10972337272 38629820 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 260 150 150 1391 619 2 0 0 7 53 0 0 0 0 0 +1786 1783878505432718900 DEPTH 49 1 0.65954806791745435 0.4454855195911413 3 6 3 6 0 0 1828 56 2530 23677473 81600 1292.9061431884766 8.6422000000000008 2339.3085999999998 120960 56767 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 10976776780 43069328 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 150 150 150 371 1709 0 0 0 0 56 0 0 0 0 0 +1787 1783878508119719400 DEPTH 1 1 0.65932296747149044 0.36712095400340705 1 7 1 7 0 0 3735 83 2568 23677560 81600 1292.8849792480469 8.6481999999999992 2619.4167000000002 120960 57603 1 0 0.01758808884266605 1.1144142614160466 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 10981255048 47547596 1 0 4 3 3 3 3 5898240 4423680 4423680 4426398 4492800 150 150 174 859 1235 0 0 4 1 78 0 0 0 0 0 +1788 1783878510450401400 DEPTH 28 1 0.65918560179454933 0.8279386712095399 2 11 2 11 0 0 682 33 2512 23699508 103680 1286.7953186035156 8.6330000000000009 2275.1822000000002 80640 38798 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 10985676196 51968744 1 0 4 2 3 3 4 5898240 2949120 4423680 4426519 5990400 156 150 150 289 1767 0 0 0 0 33 0 0 0 0 0 +1789 1783878512954725400 DEPTH 42 1 0.70912904375315178 0 0 4 0 4 1 0 4096 24 2591 23678326 81600 1281.0260467529297 8.589599999999999 2503.0369000000001 120960 42291 1 0 0 0.0064591064325931922 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 10990177924 56470472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 232 150 191 1514 504 0 0 0 0 24 0 0 0 0 1 +1790 1783878515398599700 DEPTH 46 1 0.65910823233449456 0.37478705281090291 0 8 0 8 1 0 2905 40 2570 23677576 81600 1289.2551727294922 8.6091000000000015 2384.7523000000001 120960 57154 1 0 4.0190604027982437e-05 0.37214379769463379 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 10994658232 60950780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 150 1146 974 0 0 0 0 40 0 0 0 0 1 +1791 1783878517670824900 DEPTH 16 1 0.65900650544374995 0.3594548551959113 2 6 2 6 1 0 3697 76 2540 23677523 81600 1297.7272644042969 8.5989000000000004 2215.1891000000001 120960 57234 1 0 0.0059466793818145902 0.13500179586655633 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 10999107940 65400488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 150 582 1508 0 0 0 3 73 0 0 0 0 1 +1792 1783878518083470400 REFRESH 24 0 0.65741911752422078 1 4 11 4 11 0 0 500 12 407 3988485 56160 220.56037902832031 1.4300999999999999 358.40210000000002 13440 8005 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 10999831304 66123852 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 25 25 25 234 98 0 0 0 0 12 0 0 0 0 0 +1793 1783878518501996500 REFRESH 43 0 0.59702668422973071 0.8279386712095399 2 11 2 11 0 0 822 13 421 3987514 55200 221.48812866210938 1.4550000000000001 363.10230000000001 26880 19721 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11000568948 66861496 1 0 5 4 2 2 3 1228800 983040 491520 491673 748800 25 26 25 167 178 0 0 0 1 12 0 0 0 0 0 +1794 1783878519950101600 REFRESH 20 0 0.54938715100122781 0.26575809199318562 2 5 2 5 0 0 2254 9 430 3987601 55200 222.47116088867188 1.4329000000000001 1446.8152 20160 12055 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 11001315852 500244 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 33 186 161 0 0 0 0 9 0 0 0 0 0 +1795 1783878520414578500 REFRESH 48 0 0.65942270255145607 0.26575809199318562 2 5 2 5 0 0 2804 22 423 3987657 55200 223.81260681152344 1.4251 405.53739999999999 20160 12320 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11002055536 1239928 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 31 239 103 0 0 3 3 16 0 0 0 0 0 +1796 1783878520951583500 REFRESH 32 0 0.59707990608630102 0.4608177172061329 1 8 1 8 0 0 3412 39 417 3987683 55200 222.89202880859375 1.4473 367.83980000000003 20160 12222 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 11002789100 1973492 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 68 272 0 0 0 4 35 0 0 0 0 0 +1797 1783878521421876800 REFRESH 17 0 0.66118449294198522 0.28109028960817717 0 7 0 7 0 0 4096 13 416 3987636 55200 223.67129516601562 1.4306000000000001 413.9162 20160 12450 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11003521644 2706036 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 50 193 123 1 1 1 2 8 0 0 0 0 0 +1798 1783878521886486600 REFRESH 11 0 0.65823694511320197 0.37478705281090291 0 8 0 8 0 0 2868 22 418 3987621 55200 222.19775390625 1.4233 405.70359999999999 20160 12072 0 0 6.8269708988463837e-05 0.66030159408254729 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11004256228 3440620 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 25 192 151 0 0 1 2 19 0 0 0 0 0 +1799 1783878522314296100 REFRESH 12 0 0.65181659821458471 0.54684838160136284 2 8 2 8 0 0 2022 7 427 3987620 55200 222.95756530761719 1.4512 373.38069999999999 20160 12213 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 11004999992 4184384 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 46 179 152 0 0 0 0 7 0 0 0 0 0 +1800 1783878522671014200 REFRESH 3 0 0.58650080753098055 0.64054514480408853 2 9 2 9 0 0 1259 24 402 3987599 55200 223.21868896484375 1.4337 355.30110000000002 20160 12403 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 11005718256 4902648 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 27 82 243 0 0 0 4 20 0 0 0 0 0 +1801 1783878523086581300 REFRESH 15 0 0.6551909085612827 0.91396933560476989 3 11 3 11 0 0 323 9 413 3988986 56640 221.75538635253906 1.4420999999999999 360.7244 13440 9476 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 11006447740 5632132 1 0 4 2 2 2 6 983040 491520 491520 491706 1497600 25 25 25 47 291 0 0 0 0 9 0 0 0 0 0 +1802 1783878523526969500 REFRESH 41 0 0.65875571978573189 0.55451448040885853 1 9 1 9 0 0 2562 42 418 3987602 55200 222.05644226074219 1.4327000000000001 384.0428 20160 12260 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11007182324 6366716 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 37 130 201 0 0 0 2 40 0 0 0 0 0 +1803 1783878523946934200 REFRESH 47 0 0.65901846193413627 0.8279386712095399 2 11 2 11 0 0 736 10 416 3987999 55680 222.37081909179688 1.4418 365.15660000000003 20160 14575 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11007914868 7099260 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 27 211 128 0 0 0 3 7 0 0 0 0 0 +1804 1783878524396322600 REFRESH 26 0 0.65710700454540882 0.55451448040885853 1 9 1 9 0 0 2201 18 420 3987609 55200 222.71612548828125 1.4327000000000001 392.06569999999999 20160 12159 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11008651492 7835884 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 28 205 137 1 0 0 1 16 0 0 0 0 0 +1805 1783878524816510300 REFRESH 7 0 0.65806318898247107 0.8356047700170357 1 12 1 12 0 0 945 12 407 3987980 55680 222.82138061523438 1.4235 364.88170000000002 20160 14790 0 0 0.00027547702210905622 0.69816806324139213 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 11009374856 8559248 1 0 4 3 3 2 4 983040 737280 737280 491658 998400 25 25 25 36 296 0 0 0 0 12 0 0 0 0 0 +1806 1783878525288320600 REFRESH 37 0 0.65726956754605204 0.8356047700170357 1 12 1 12 1 0 1067 12 424 3988466 56160 222.62579345703125 1.4301999999999999 363.57029999999997 20160 14257 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11010115560 9299952 1 0 4 3 2 2 5 983040 737280 491520 491664 1248000 25 25 25 256 93 0 0 0 2 10 0 0 0 0 1 +1807 1783878525747374300 REFRESH 9 0 0.66145771810621778 0.27342419080068137 1 6 1 6 0 0 3494 11 426 3987665 55200 225.0618896484375 1.431 404.27199999999999 20160 12498 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 11010858304 10042696 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 26 279 71 0 0 0 1 10 0 0 0 0 0 +1808 1783878526131343700 REFRESH 45 0 0.64714433004286076 0.45315161839863699 2 7 2 7 0 0 2452 55 416 3987604 55200 224.48844909667969 1.4295 382.5616 20160 11952 0 0 0.37752099914117349 1.3060419274408634 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11011590848 10775240 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 107 234 0 0 0 3 52 0 0 0 0 0 +1809 1783878526536511300 REFRESH 4 0 0.65603462062147588 0.8356047700170357 1 12 1 12 0 0 294 5 421 3988948 56640 219.86720275878906 1.4315 350.59469999999999 13440 9102 0 0 0.035532469242004712 0.84948699724715482 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11012328492 11512884 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 54 292 0 0 0 0 5 0 0 0 0 0 +1810 1783878526948379900 REFRESH 23 0 0.65890408514634913 0.74190800681430991 1 11 1 11 0 0 3597 21 410 3987594 55200 224.28877258300781 1.4480999999999999 356.9855 20160 14517 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11013054916 12239308 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 40 295 0 0 0 3 18 0 0 0 0 0 +1811 1783878527402896000 REFRESH 57 0 0.66229639441988186 0.27342419080068137 1 6 1 6 0 0 4096 25 416 3987658 55200 224.33590698242188 1.4323999999999999 396.90839999999997 20160 12443 0 0 0.00072518623570734639 0.42989973567536088 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11013787460 12971852 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 29 191 146 0 0 0 8 17 0 0 0 0 0 +1812 1783878527779343800 REFRESH 28 0 0.64618896934741554 0.8279386712095399 2 11 2 11 0 0 685 12 409 3988073 55680 222.08306884765625 1.4642999999999999 374.5849 13440 8148 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11014512864 13697256 1 0 4 2 3 3 4 983040 491520 737280 737510 998400 26 25 25 114 219 0 0 0 1 11 0 0 0 0 0 +1813 1783878528240292500 REFRESH 31 0 0.66879747914095145 0.26575809199318562 2 5 2 5 0 0 3243 15 421 3987632 55200 225.20950317382812 1.4335 405.82389999999998 20160 12095 0 0 0.039437761574081708 1.137473311133061 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11015250508 14434900 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 28 217 126 0 0 0 3 12 0 0 0 0 0 +1814 1783878528696381000 REFRESH 25 0 0.65719117472297772 0.4608177172061329 1 8 1 8 0 0 2560 17 425 3987629 55200 225.48377990722656 1.4335 401.49439999999998 20160 12097 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11015992232 15176624 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 28 179 168 0 0 0 2 15 0 0 0 0 0 +1815 1783878529123829400 REFRESH 6 0 0.65519188363804215 0.91396933560476989 3 11 3 11 0 0 390 8 417 3988972 56640 220.46949768066406 1.4432 374.27339999999998 13440 9554 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 11016725796 15910188 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 25 42 299 1 0 0 0 7 0 0 0 0 0 +1816 1783878529544022300 REFRESH 8 0 0.66040185939699791 0.26575809199318562 2 5 2 5 1 0 2571 17 408 3987650 55200 227.0433349609375 1.4300999999999999 366.15929999999997 20160 12146 0 0 0.030066336304171843 0.8680670632268912 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11017450180 16634572 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 26 118 214 0 0 0 2 15 0 0 0 0 1 +1817 1783878529952171700 REFRESH 46 0 0.65713123217557734 0.37478705281090291 0 8 0 8 0 0 2906 12 425 3987626 55200 223.56684875488281 1.4368000000000001 406.5772 20160 12102 0 0 4.0190604027982437e-05 0.37214379769463379 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11018191904 17376296 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 233 117 0 0 0 0 12 0 0 0 0 0 +1818 1783878530453848800 REFRESH 52 0 0.6590236679675967 0.36712095400340705 1 7 1 7 0 0 2560 21 431 3987652 55200 223.51177978515625 1.4360999999999999 393.76850000000002 20160 12181 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 11018939748 18124140 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 212 140 0 0 0 0 21 0 0 0 0 0 +1819 1783878530856768600 REFRESH 22 0 0.65770742504267365 0.91396933560476989 3 11 3 11 0 0 513 10 411 3988083 55680 222.17727661132812 1.4266000000000001 345.17669999999998 13440 7955 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 11019667192 18851584 1 0 4 2 3 3 4 983040 491520 737280 737517 998400 26 25 25 51 284 0 0 0 1 9 0 0 0 0 0 +1820 1783878531258657200 REFRESH 58 0 0.65515997592470365 0.92163543441226559 2 12 2 12 0 0 558 8 417 3988000 55680 223.204345703125 1.4327000000000001 348.31700000000001 20160 14507 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 11020400756 19585148 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 217 125 0 0 0 0 8 0 0 0 0 0 +1821 1783878531668567900 REFRESH 56 0 0.67795629505059218 0.17206132879045993 2 4 2 4 0 0 4096 12 421 3987669 55200 225.04243469238281 1.4454 408.40539999999999 20160 12911 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11021138400 20322792 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 50 25 25 241 80 1 0 0 2 9 0 0 0 0 0 +1822 1783878532089329500 REFRESH 2 0 0.65733057947551099 0.45315161839863699 2 7 2 7 0 0 4096 59 421 3987617 55200 223.62828063964844 1.4332 368.63119999999998 20160 11927 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11021876044 21060436 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 25 102 244 0 0 0 6 53 0 0 0 0 0 +1823 1783878532496771100 REFRESH 5 0 0.65878786932401889 0.8279386712095399 2 11 2 11 1 0 955 12 424 3988013 55680 221.57414245605469 1.4327000000000001 358.22579999999999 20160 14581 0 0 0.0033144365106768424 0.43858589879148124 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11022616748 21801140 1 0 4 3 3 2 4 983040 737280 737280 491693 998400 25 25 26 195 153 0 0 0 3 9 0 0 0 0 1 +1824 1783878532938339200 REFRESH 30 0 0.65725802752050888 0.4608177172061329 1 8 1 8 0 0 3960 15 423 3987620 55200 223.14906311035156 1.4319999999999999 391.36509999999998 20160 11887 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11023356432 22540824 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 26 246 101 0 0 0 6 9 0 0 0 0 0 +1825 1783878533427665900 REFRESH 21 0 0.65898099148985656 0.56218057921635434 0 10 0 10 0 0 2839 13 421 3987621 55200 222.69850158691406 1.4326000000000001 387.72989999999999 20160 12016 0 0 0.00032870285718717969 1.0244732372210883 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11024094076 23278468 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 27 240 104 0 0 1 2 10 0 0 0 0 0 +1826 1783878533848883300 REFRESH 33 0 0.65916361444042137 0.36712095400340705 1 7 1 7 0 0 3904 21 412 3987674 55200 223.71635437011719 1.4295 366.8673 20160 12497 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 11024822540 24006932 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 29 94 239 0 0 3 3 15 0 0 0 0 0 +1827 1783878534273499600 REFRESH 27 0 0.65797643300927078 0.4608177172061329 1 8 1 8 0 0 4096 21 416 3987647 55200 224.32357788085938 1.4321999999999999 372.74250000000001 20160 11944 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11025555084 24739476 1 0 4 3 3 3 3 983040 737280 737280 737530 748800 25 25 28 152 186 0 0 0 2 19 0 0 0 0 0 +1828 1783878534684524600 REFRESH 29 0 0.65828146438015178 0.82027257240204421 3 10 3 10 0 0 1152 17 421 3987446 55200 223.57913208007812 1.4415 361.19600000000003 26880 18803 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11026292728 25477120 1 0 6 4 2 1 3 1474560 983040 491520 245846 748800 25 25 99 129 143 0 0 0 0 17 0 0 0 0 0 +1829 1783878535137490600 REFRESH 53 0 0.65917873157924567 0.37478705281090291 0 8 0 8 0 0 4096 9 412 3987637 55200 223.51872253417969 1.4316 402.24790000000002 20160 11945 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 11027021192 26205584 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 25 228 109 0 0 0 1 8 0 0 0 0 0 +1830 1783878535570380500 REFRESH 42 0 0.82921715379815719 0 0 4 0 4 0 0 4096 7 426 3987745 55200 225.08749389648438 1.4702999999999999 431.64490000000001 20160 13456 0 0 0 0.0064591064325931922 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 11027763936 26948328 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 52 25 42 233 74 0 0 0 0 7 0 0 0 0 0 +1831 1783878535994849800 REFRESH 54 0 0.66137013205150885 0.4608177172061329 1 8 1 8 0 0 1314 16 416 3987578 55200 221.94393920898438 1.4336 374.3802 20160 11921 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11028496480 27680872 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 27 147 192 0 0 0 5 11 0 0 0 0 0 +1832 1783878536382384700 REFRESH 1 0 0.65703645508784247 0.36712095400340705 1 7 1 7 0 0 3743 33 424 3987641 55200 223.29548645019531 1.4283999999999999 386.1352 20160 12091 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11029237184 28421576 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 29 187 158 0 0 1 4 28 0 0 0 0 0 +1833 1783878536823530200 REFRESH 13 0 0.66204103711395579 0.27342419080068137 1 6 1 6 0 0 4096 24 419 3987647 55200 224.16793823242188 1.4316 387.22800000000001 20160 12416 0 0 0.022787154352698975 0.15350815743700386 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11029972788 29157180 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 28 175 166 0 0 0 1 23 0 0 0 0 0 +1834 1783878537239417800 REFRESH 55 0 0.6568123718215273 0.64054514480408853 2 9 2 9 0 0 1156 14 406 3987563 55200 224.2713623046875 1.4331 362.7011 20160 13864 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 11030695132 29879524 1 0 4 3 3 3 3 983040 737280 737280 737478 748800 25 25 25 167 164 0 0 0 1 13 0 0 0 0 0 +1835 1783878537655507100 REFRESH 34 0 0.6575944896476047 0.8356047700170357 1 12 1 12 0 0 820 9 418 3987967 55680 222.60940551757812 1.4340999999999999 353.7475 20160 14790 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11031429716 30614108 1 0 4 3 3 2 4 983040 737280 737280 491642 998400 25 25 60 145 163 0 0 0 0 9 0 0 0 0 0 +1836 1783878538171312100 REFRESH 14 0 0.6567719551879061 0.65587734241908002 0 11 0 11 0 0 1916 27 406 3987589 55200 223.68255615234375 1.4477 396.8476 20160 13719 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 11032152060 31336452 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 25 99 232 0 0 0 6 21 0 0 0 0 0 +1837 1783878538575131700 REFRESH 18 0 0.64399208536257535 0.92163543441226559 2 12 2 12 0 0 467 15 418 3988050 55680 222.54591369628906 1.4461999999999999 351.86000000000001 13440 7965 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11032886644 32071036 1 0 4 2 3 3 4 983040 491520 737280 737488 998400 26 25 25 190 152 0 0 0 1 14 0 0 0 0 0 +1838 1783878538978761300 REFRESH 36 0 0.65920725438119754 0.82027257240204421 3 10 3 10 1 0 1354 17 409 3988076 55680 220.85017395019531 1.4313 349.68810000000002 13440 8004 0 0 0.084139793891525164 0.12232062003672553 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11033612048 32796440 1 0 4 2 3 3 4 983040 491520 737280 737512 998400 26 25 25 138 195 0 0 0 0 17 0 0 0 0 1 +1839 1783878539413877300 REFRESH 10 0 0.65795846902316302 0.64821124361158422 1 10 1 10 0 0 1263 15 418 3987588 55200 223.3365478515625 1.4663999999999999 377.9862 20160 13423 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11034346632 33531024 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 28 33 307 0 0 0 3 12 0 0 0 0 0 +1840 1783878539828279300 REFRESH 38 0 0.65890854474731442 0.55451448040885853 1 9 1 9 0 0 2234 22 403 3987590 55200 223.85971069335938 1.4477 358.41680000000002 20160 12111 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 11035065916 34250308 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 30 42 281 0 0 1 0 21 0 0 0 0 0 +1841 1783878540284084600 REFRESH 44 0 0.65815468591791215 0.36712095400340705 1 7 1 7 0 0 2639 20 422 3987631 55200 224.64921569824219 1.4307000000000001 398.9332 20160 12103 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11035804580 34988972 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 26 106 240 0 0 0 0 20 0 0 0 0 0 +1842 1783878540740459800 REFRESH 19 0 0.6522652427451292 0.8279386712095399 2 11 2 11 1 0 924 12 421 3988479 56160 222.43840026855469 1.4394 347.97730000000001 13440 7951 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11036542224 35726616 1 0 4 2 3 2 5 983040 491520 737280 491672 1248000 25 25 25 188 158 0 0 1 2 9 0 0 0 0 1 +1843 1783878541169618400 REFRESH 50 0 0.65136415930303948 0.64054514480408853 2 9 2 9 0 0 1089 7 427 3988456 56160 219.69612121582031 1.4488000000000001 374.86790000000002 13440 7904 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 11037285988 36470380 1 0 4 2 3 2 5 983040 491520 737280 491655 1248000 25 25 25 145 207 0 0 0 0 7 0 0 0 0 0 +1844 1783878541618816000 REFRESH 39 0 0.65933902530963517 0.55451448040885853 1 9 1 9 0 0 1674 8 425 3987987 55680 221.76153564453125 1.4312 397.10309999999998 20160 14607 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11038027712 37212104 1 0 4 3 3 2 4 983040 737280 737280 491667 998400 25 25 25 126 224 0 0 0 0 8 0 0 0 0 0 +1845 1783878542026994700 REFRESH 0 0 0.65194299638989395 0.8279386712095399 2 11 2 11 0 0 961 4 423 3988478 56160 220.81639099121094 1.4320999999999999 353.64400000000001 13440 8476 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11038767396 37951788 1 0 4 2 3 2 5 983040 491520 737280 491678 1248000 26 25 25 227 120 0 0 0 0 4 0 0 0 0 0 +1846 1783878542439920800 REFRESH 35 0 0.65896227721426803 0.8279386712095399 2 11 2 11 0 0 1182 20 415 3988007 55680 222.48243713378906 1.4539 361.62520000000001 20160 14552 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11039498920 38683312 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 223 117 0 0 0 8 12 0 0 0 0 0 +1847 1783878542850488700 REFRESH 51 0 0.65348908797443572 0.91396933560476989 3 11 3 11 1 0 570 7 416 3988487 56160 222.36160278320312 1.4393 350.8596 20160 14580 0 0 0.045222782790085903 0.27289009279492676 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11040231464 39415856 1 0 4 3 2 2 5 983040 737280 491520 491686 1248000 25 25 25 233 108 0 0 0 1 6 0 0 0 0 1 +1848 1783878543314030200 REFRESH 40 0 0.65793157805449487 0.64821124361158422 1 10 1 10 1 0 1923 21 414 3987598 55200 222.89817810058594 1.4281999999999999 401.42200000000003 20160 12188 0 0 0.079501752389619845 0.46139863319818186 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11040961968 40146360 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 29 120 215 0 0 0 0 21 0 0 0 0 1 +1849 1783878543758446700 REFRESH 49 0 0.65718530403079622 0.4454855195911413 3 6 3 6 0 0 1836 23 410 3987595 55200 224.66458129882812 1.4495 380.35500000000002 20160 12153 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11041688392 40872784 1 0 4 3 3 3 3 983040 737280 737280 737480 748800 25 25 26 132 202 0 0 0 8 15 0 0 0 0 0 +1850 1783878544147891800 REFRESH 16 0 0.6568584223773799 0.3594548551959113 2 6 2 6 0 0 3705 25 411 3987645 55200 225.95890808105469 1.4300999999999999 388.16250000000002 20160 11993 0 0 0.0059466793818145902 0.13500179586655633 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 11042415836 41600228 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 154 182 0 0 0 5 20 0 0 0 0 0 +1851 1783878546622620800 DEPTH 42 1 0.78610827066235633 0 0 4 0 4 0 0 4096 21 2591 23678299 81600 1291.8180236816406 8.6217000000000006 2424.0596 120960 65612 1 0 0 0.0064591064325931922 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 11046917564 46101956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 272 150 224 1447 498 0 0 0 0 21 0 0 0 0 0 +1852 1783878549118581100 DEPTH 56 1 0.67615092036962732 0.17206132879045993 2 4 2 4 0 0 4096 49 2579 23677907 81600 1292.0279083251953 8.6028000000000002 2440.3815 120960 61669 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 11051407052 50591444 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 278 150 150 1377 624 3 0 0 4 42 0 0 0 0 0 +1853 1783878551552450900 DEPTH 31 1 0.6657854128949332 0.26575809199318562 2 5 2 5 0 0 3253 42 2572 23677660 81600 1295.4797973632812 8.6210999999999984 2375.0376999999999 120960 57550 1 0 0.039437761574081708 1.137473311133061 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 11055889400 55073792 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 167 1050 1055 0 0 0 0 42 0 0 0 0 0 +1854 1783878553961249800 DEPTH 57 1 0.66029213860187341 0.27342419080068137 1 6 1 6 0 0 4096 50 2548 23677671 81600 1295.4181365966797 8.6049000000000007 2407.4769000000001 120960 58974 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 11060347268 59531660 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 163 865 1220 0 0 0 3 47 0 0 0 0 0 +1855 1783878556400270100 DEPTH 9 1 0.65956818981795862 0.27342419080068137 1 6 1 6 0 0 3506 39 2602 23677764 81600 1295.229248046875 8.6157000000000004 2382.3386 120960 59270 1 0 0.00036661161297996402 0.2128696752457655 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 11064860216 64044608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 151 1649 502 0 0 5 2 32 0 0 0 0 0 +1856 1783878560071013700 DEPTH 17 1 0.65938981306221156 0.28109028960817717 0 7 0 7 0 0 4096 47 2560 23677761 81600 1287.2060241699219 8.6052 3494.6689000000001 120960 58690 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11069330404 1405992 1 0 4 3 3 3 3 5898240 4423680 4423680 4426504 4492800 150 150 223 546 1491 1 2 0 0 44 0 0 0 0 0 +1857 1783878562361952700 DEPTH 8 1 0.65857824967189849 0.26575809199318562 2 5 2 5 1 0 2572 40 2505 23677714 81600 1294.3397827148438 8.6268999999999991 2233.7791000000002 120960 57822 1 0 0.030196859702453817 0.8316121720910814 4096 2048 384 12 96 360 72 24 0 2505 1920 0 384 1 11073744412 5820000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426453 4492800 150 150 156 407 1642 0 0 0 4 36 0 0 0 0 1 +1858 1783878564857286700 DEPTH 20 1 0.65833835178192601 0.26575809199318562 2 5 2 5 0 0 2262 25 2592 23677650 81600 1292.8910064697266 8.6320999999999994 2381.3182999999999 120960 57385 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11078247160 10322748 1 0 4 3 3 3 3 5898240 4423680 4423680 4426536 4492800 150 150 179 949 1164 0 0 0 0 25 0 0 0 0 0 +1859 1783878567320203900 DEPTH 13 1 0.65996210352069151 0.27342419080068137 1 6 1 6 1 0 4096 50 2579 23677681 81600 1289.9256286621094 8.6306000000000012 2400.1844999999998 120960 59335 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 11082736648 14812236 1 0 4 3 3 3 3 5898240 4423680 4423680 4426377 4492800 150 150 164 799 1316 0 0 3 0 47 0 0 0 0 1 +1860 1783878569795850900 DEPTH 54 1 0.65926291222743538 0.4608177172061329 1 8 1 8 0 0 1317 29 2554 23677513 81600 1286.5482482910156 8.611699999999999 2420.4764 120960 58213 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11087200636 19276224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 162 525 1567 0 0 1 0 28 0 0 0 0 0 +1861 1783878572269303700 DEPTH 48 1 0.65784910633717542 0.26575809199318562 2 5 2 5 0 0 2813 38 2576 23677751 81600 1293.6519927978516 8.6522000000000006 2417.4176000000002 120960 58544 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11091687064 23762652 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 186 1005 1085 0 0 2 0 36 0 0 0 0 0 +1862 1783878574656061500 DEPTH 33 1 0.65685031996368215 0.36712095400340705 1 7 1 7 0 0 3913 69 2532 23677674 81600 1294.1566009521484 8.6003000000000007 2326.2564000000002 120960 58819 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 11096128612 28204200 1 0 4 3 3 3 3 5898240 4423680 4423680 4426522 4492800 150 150 175 369 1688 0 0 1 2 66 0 0 0 0 0 +1863 1783878577040974600 DEPTH 52 1 0.65678224935187179 0.36712095400340705 1 7 1 7 0 0 2577 41 2599 23677605 81600 1286.2496643066406 8.5884 2328.7970999999998 120960 57329 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 11100638500 32714088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 156 1169 974 2 0 0 1 38 0 0 0 0 0 +1864 1783878579470072500 DEPTH 21 1 0.65624336782248771 0.56218057921635434 0 10 0 10 1 0 2846 47 2565 23677497 81600 1286.6538391113281 8.6022999999999996 2369.8442 120960 56635 1 0 0.0003727367041393018 1.0094446117570586 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 11105113708 37189296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426457 4492800 150 150 158 964 1143 3 0 4 3 37 0 0 0 0 1 +1865 1783878581902152400 DEPTH 11 1 0.65621628872683835 0.37478705281090291 0 8 0 8 1 0 2879 48 2534 23677512 81600 1282.5344085693359 8.6060000000000016 2370.8452000000002 120960 57059 1 0 9.5220901249636335e-05 0.65800223945699332 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 11109557296 41632884 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 973 1111 4 0 0 2 42 0 0 0 0 2 +1866 1783878584321114300 DEPTH 41 1 0.6562137973753629 0.55451448040885853 1 9 1 9 0 0 2571 41 2566 23677468 81600 1282.3244781494141 8.6043000000000003 2360.7964999999999 120960 58223 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 11114033524 46109112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 191 486 1589 0 0 0 0 41 0 0 0 0 0 +1867 1783878586808444300 DEPTH 42 1 0.73619570912760857 0 0 4 0 4 0 0 4096 12 2587 23678212 81600 1284.9315490722656 8.6024999999999991 2430.0322999999999 120960 54689 1 0 0 0.0064591064325931922 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11118531172 50606760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 254 150 202 1480 501 0 0 0 0 12 0 0 0 0 0 +1868 1783878589034093900 DEPTH 38 1 0.6567984433284193 0.55451448040885853 1 9 1 9 0 0 2245 74 2509 23677416 81600 1284.3565521240234 8.6494 2168.3946000000001 120960 56874 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11122949260 55024848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 162 233 1814 0 0 1 0 73 0 0 0 0 0 +1869 1783878591184378300 DEPTH 47 1 0.65613009515666498 0.8279386712095399 2 11 2 11 0 0 739 18 2555 23694818 99840 1284.5012054443359 8.6471 2099.2907 120960 70426 1 0 0.0072853174080265868 0.99678840260751533 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11127414268 59489856 1 0 4 3 3 3 3 5898240 4423680 4423680 3196875 5740800 150 150 150 655 1450 0 0 0 0 18 0 0 0 0 0 +1870 1783878593334145700 DEPTH 23 1 0.65607154016607938 0.74190800681430991 1 11 1 11 0 0 3611 76 2513 23677330 81600 1294.8582458496094 8.6372 2097.5713999999998 120960 70425 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 11131836436 63912024 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 230 1833 0 0 0 10 66 0 0 0 0 0 +1871 1783878596573754500 DEPTH 36 1 0.65607203877755926 0.82027257240204421 3 10 3 10 1 0 1357 26 2535 23699455 103680 1282.0281372070312 8.6458000000000013 3185.7908000000002 80640 38133 1 0 0.088252248440386649 0.12238213187432942 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 11136281124 1248472 1 0 4 2 3 3 4 5898240 2949120 4423680 4426462 5990400 156 150 150 547 1532 0 0 0 0 26 0 0 0 0 1 +1872 1783878599073940500 DEPTH 44 1 0.65591577258222378 0.36712095400340705 1 7 1 7 0 0 2654 64 2620 23677531 81600 1292.6391754150391 8.6169000000000011 2444.4803999999999 120960 57843 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2620 1920 0 384 1 11140812432 5779780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 150 150 155 449 1716 3 0 0 0 61 0 0 0 0 0 +1873 1783878601523884600 DEPTH 53 1 0.65592030786464539 0.37478705281090291 0 8 0 8 0 0 4096 50 2533 23677509 81600 1285.3904266357422 8.6384000000000007 2394.3042999999998 120960 55783 1 0 0 0.20692837474269371 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 11145255000 10222348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426400 4492800 150 150 150 1002 1081 0 0 0 2 48 0 0 0 0 0 +1874 1783878603753463600 DEPTH 5 1 0.65582722556864259 0.8279386712095399 2 11 2 11 1 0 957 44 2581 23698438 103680 1280.1896514892578 8.6158999999999999 2172.5351999999998 120960 70452 1 0 0.0036262209849747063 0.39251624139758484 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 11149746528 14713876 1 0 4 3 3 2 4 5898240 4423680 4423680 2950902 5990400 150 150 150 876 1255 0 0 1 1 42 0 0 0 0 3 +1875 1783878606228579100 DEPTH 42 1 0.65614441313778638 0 0 4 0 4 0 0 4096 19 2587 23678274 81600 1282.5610198974609 8.6859000000000002 2473.3733999999999 120960 43869 1 0 0 0.0064591064325931922 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11154244176 19211524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 241 150 191 1511 494 0 0 0 0 19 0 0 0 0 0 +1876 1783878608401155400 DEPTH 35 1 0.65582233067668416 0.8279386712095399 2 11 2 11 0 0 1186 68 2529 23691077 96000 1285.3357391357422 8.6917000000000009 2116.6828999999998 120960 70379 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 11158682664 23650012 1 0 4 3 3 3 3 5898240 4423680 4423680 3442743 5491200 150 150 150 1073 1006 0 0 0 11 57 0 0 0 0 0 +1877 1783878610585227800 DEPTH 29 1 0.65559728046296206 0.82027257240204421 3 10 3 10 0 0 1202 125 2549 23675811 81600 1285.3473510742188 8.6358999999999995 2127.4488000000001 168000 104285 1 0 0.26278519260479372 0.96843308429688912 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11163141552 28108900 1 0 5 4 2 2 3 8110080 6144000 2949120 1967313 4492800 150 150 362 277 1610 0 0 0 0 125 0 0 0 0 0 +1878 1783878613066532400 DEPTH 27 1 0.6554915589294279 0.4608177172061329 1 8 1 8 0 0 4096 62 2558 23677485 81600 1294.5569152832031 8.6001999999999992 2420.5753 120960 57219 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11167609620 32576968 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 156 557 1545 0 0 0 2 60 0 0 0 0 0 +1879 1783878615289726000 DEPTH 10 1 0.65549889006181727 0.64821124361158422 1 10 1 10 0 0 1272 40 2537 23677409 81600 1286.5250854492188 8.6455000000000002 2168.6448999999998 120960 67547 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11172056268 37023616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 151 197 1889 0 0 0 5 35 0 0 0 0 0 +1880 1783878617768583600 DEPTH 39 1 0.65549243737027352 0.55451448040885853 1 9 1 9 0 0 1685 42 2569 23691061 96000 1278.4732360839844 8.5823999999999998 2368.2577000000001 120960 70240 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 11176535556 41502904 1 0 4 3 3 3 3 5898240 4423680 4423680 3442711 5491200 150 150 150 378 1741 0 0 0 0 42 0 0 0 0 0 +1881 1783878620263699500 DEPTH 46 1 0.65540704186921461 0.37478705281090291 0 8 0 8 0 0 2913 32 2562 23677558 81600 1291.6879425048828 8.6020000000000003 2440.7815999999998 120960 57576 1 0 4.0190604027982437e-05 0.37214379769463379 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 11181007704 45975052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1221 891 0 0 0 0 32 0 0 0 0 0 +1882 1783878622463840800 DEPTH 7 1 0.65535647673232666 0.8356047700170357 1 12 1 12 1 0 950 49 2511 23698532 103680 1285.1410522460938 8.597999999999999 2135.7597000000001 120960 68543 1 0 0.00026819310007664712 0.68460147353777145 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 11185427832 50395180 1 0 4 3 3 2 4 5898240 4423680 4423680 2950987 5990400 150 150 150 219 1842 0 0 0 6 43 0 0 0 0 2 +1883 1783878622869099500 REFRESH 46 0 0.42326751200544649 0.37478705281090291 0 8 0 8 0 0 2915 8 421 3987643 55200 223.84230041503906 1.4293 403.4896 20160 12219 0 0 4.0190604027982437e-05 0.37214379769463379 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11186165476 51132824 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 261 85 0 0 0 0 8 0 0 0 0 0 +1884 1783878623306130400 REFRESH 45 0 0.65491076619289057 0.45315161839863699 2 7 2 7 1 0 2471 35 414 3987617 55200 223.76345825195312 1.4794 381.53039999999999 20160 11976 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11186895980 51863328 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 106 233 0 0 0 1 34 0 0 0 0 1 +1885 1783878623710386200 REFRESH 4 0 0.6498510158281714 0.8356047700170357 1 12 1 12 0 0 295 6 420 3988938 56640 221.52294921875 1.4298999999999999 350.94889999999998 13440 8956 0 0 0.035532469242004712 0.84948699724715482 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11187632604 52599952 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 56 289 0 0 0 0 6 0 0 0 0 0 +1886 1783878624167807700 REFRESH 13 0 0.65802047519962747 0.27342419080068137 1 6 1 6 0 0 4096 37 420 3987699 55200 223.84844970703125 1.4462999999999999 402.52050000000003 20160 12460 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11188369228 53336576 1 0 4 3 3 3 3 983040 737280 737280 737536 748800 25 25 29 190 151 0 0 0 6 31 0 0 0 0 0 +1887 1783878624605630100 REFRESH 30 0 0.65492825088488393 0.4608177172061329 1 8 1 8 0 0 3965 17 429 3987659 55200 223.39993286132812 1.4314 381.5659 20160 11946 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 11189115032 54082380 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 25 25 26 234 119 0 0 0 2 15 0 0 0 0 0 +1888 1783878625014702200 REFRESH 37 0 0.65496163922115147 0.8356047700170357 1 12 1 12 0 0 1067 5 421 3988443 56160 221.93562316894531 1.4390000000000001 354.39819999999997 20160 14122 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11189852676 54820024 1 0 4 3 2 2 5 983040 737280 491520 491642 1248000 25 25 25 244 102 0 0 0 0 5 0 0 0 0 0 +1889 1783878625463506400 REFRESH 21 0 0.65350482996958159 0.56218057921635434 0 10 0 10 0 0 2848 22 425 3987605 55200 223.23814392089844 1.4326000000000001 393.57870000000003 20160 11869 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11190594400 55561748 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 27 250 98 1 0 0 10 11 0 0 0 0 0 +1890 1783878625907744700 REFRESH 2 0 0.65502785210636061 0.45315161839863699 2 7 2 7 0 0 4096 49 416 3987588 55200 223.00877380371094 1.4252 383.89620000000002 20160 11988 0 0 0.27093137249484278 1.4362862634815152 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11191326944 56294292 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 25 106 235 0 0 0 3 46 0 0 0 0 0 +1891 1783878626316427500 REFRESH 15 0 0.65321708127665001 0.91396933560476989 3 11 3 11 0 0 323 9 411 3988979 56640 221.87213134765625 1.4351 354.89819999999997 13440 9434 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 11192054388 57021736 1 0 4 2 2 2 6 983040 491520 491520 491698 1497600 25 25 25 47 289 0 0 0 0 9 0 0 0 0 0 +1892 1783878626737355000 REFRESH 18 0 0.64178013298383652 0.92163543441226559 2 12 2 12 0 0 467 6 409 3987605 55200 225.9814453125 1.4319999999999999 365.97800000000001 20160 14798 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11192779792 57747140 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 35 299 0 0 0 0 6 0 0 0 0 0 +1893 1783878627106605900 REFRESH 35 0 0.57267263073126551 0.8279386712095399 2 11 2 11 0 0 1189 21 406 3987570 55200 224.15974426269531 1.4327000000000001 367.53359999999998 20160 13592 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 11193502136 58469484 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 162 169 0 0 0 7 14 0 0 0 0 0 +1894 1783878627566262000 REFRESH 48 0 0.65607789298316421 0.26575809199318562 2 5 2 5 0 0 2814 9 425 3987655 55200 223.40505981445312 1.4336 406.18889999999999 20160 12410 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11194243860 59211208 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 31 221 123 0 0 1 1 7 0 0 0 0 0 +1895 1783878627985297400 REFRESH 51 0 0.64801566913038255 0.91396933560476989 3 11 3 11 0 0 571 8 407 3988476 56160 221.72569274902344 1.4629000000000001 359.19290000000001 20160 14539 0 0 0.045222782790085903 0.27289009279492676 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 11194967224 59934572 1 0 4 3 2 2 5 983040 737280 491520 491675 1248000 25 25 25 237 95 0 0 0 2 6 0 0 0 0 0 +1896 1783878628392582700 REFRESH 6 0 0.65214756221131043 0.91396933560476989 3 11 3 11 0 0 391 4 418 3988949 56640 220.14976501464844 1.4348000000000001 353.61689999999999 13440 9491 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11195701808 60669156 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 25 44 298 0 0 0 0 4 0 0 0 0 0 +1897 1783878628819378300 REFRESH 16 0 0.65466993061903334 0.3594548551959113 2 6 2 6 0 0 3713 21 414 3987625 55200 226.42185974121094 1.4318 370.21699999999998 20160 12144 0 0 0.0059466793818145902 0.13500179586655633 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11196432312 61399660 1 0 4 3 3 3 3 983040 737280 737280 737474 748800 25 25 25 159 180 0 0 0 2 19 0 0 0 0 0 +1898 1783878629254143600 REFRESH 49 0 0.65477601188830659 0.4454855195911413 3 6 3 6 0 0 1839 17 414 3987647 55200 223.92115783691406 1.4278999999999999 378.6739 20160 12161 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11197162816 62130164 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 26 129 209 0 0 0 2 15 0 0 0 0 0 +1899 1783878629627328200 REFRESH 27 0 0.61286603522027661 0.4608177172061329 1 8 1 8 0 0 4096 29 417 3987625 55200 224.31452941894531 1.4266000000000001 371.76560000000001 20160 12031 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 11197896380 62863728 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 29 160 178 0 0 1 2 26 0 0 0 0 0 +1900 1783878630067652400 REFRESH 41 0 0.65351725373255976 0.55451448040885853 1 9 1 9 0 0 2573 17 421 3987620 55200 223.64262390136719 1.4295 385.55160000000001 20160 12015 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11198634024 63601372 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 37 140 194 0 0 0 1 16 0 0 0 0 0 +1901 1783878630481281100 REFRESH 39 0 0.61369411698475906 0.55451448040885853 1 9 1 9 0 0 1686 10 426 3987588 55200 222.04722595214844 1.4590000000000001 411.93939999999998 20160 13421 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 11199376768 64344116 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 177 174 0 0 0 0 10 0 0 0 0 0 +1902 1783878630942956300 REFRESH 31 0 0.66298547222212956 0.26575809199318562 2 5 2 5 0 0 3260 19 421 3987634 55200 225.17964172363281 1.448 398.9547 20160 12069 0 0 0.039437761574081708 1.137473311133061 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11200114412 65081760 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 28 211 132 0 0 0 0 19 0 0 0 0 0 +1903 1783878631300010900 REFRESH 29 0 0.65278097986610462 0.82027257240204421 3 10 3 10 1 0 1219 36 424 3987508 55200 221.991943359375 1.4401999999999999 355.54950000000002 26880 19901 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11200855116 65822464 1 0 5 4 2 2 3 1228800 983040 491520 491667 748800 25 25 31 128 215 0 1 1 3 31 0 0 0 1 0 +1904 1783878631716591000 REFRESH 47 0 0.65308170708945046 0.8279386712095399 2 11 2 11 0 0 741 14 410 3987601 55200 223.4019775390625 1.4300999999999999 356.20280000000002 20160 13496 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11201581540 66548888 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 27 64 269 0 0 0 1 13 0 0 0 0 0 +1905 1783878633207865200 REFRESH 40 0 0.65546627272703795 0.64821124361158422 1 10 1 10 0 0 1928 20 409 3987994 55680 222.38310241699219 1.4481999999999999 1428.6233999999999 20160 12066 0 0 0.079501752389619845 0.46139863319818186 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11202307024 165684 1 0 4 3 3 2 4 983040 737280 737280 491672 998400 25 25 30 27 302 0 0 0 1 19 0 0 0 0 0 +1906 1783878633617592200 REFRESH 19 0 0.65031219788749162 0.8279386712095399 2 11 2 11 0 0 924 10 422 3988465 56160 220.81330871582031 1.4374 355.14510000000001 13440 7968 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11203045688 904348 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 25 25 25 206 141 0 0 0 1 9 0 0 0 0 0 +1907 1783878634042623000 REFRESH 42 0 0.82612767905790663 0 0 4 0 4 0 0 4096 7 428 3987754 55200 223.71635437011719 1.4397 423.55619999999999 20160 13261 0 0 0 0.0064591064325931922 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 11203790472 1649132 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 51 25 40 233 79 0 0 0 0 7 0 0 0 0 0 +1908 1783878634457127800 REFRESH 8 0 0.65688294872094988 0.26575809199318562 2 5 2 5 1 0 2574 16 408 3987670 55200 224.572509765625 1.4421999999999999 360.23329999999999 20160 12229 0 0 0.01752489470554091 0.4602522868790504 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11204514856 2373516 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 26 116 216 0 0 0 2 14 0 0 0 0 1 +1909 1783878634910516800 REFRESH 57 0 0.65841299641269124 0.27342419080068137 1 6 1 6 0 0 4096 34 417 3987634 55200 224.75570678710938 1.4273 395.2133 20160 12508 0 0 0.00072518623570734639 0.42989973567536088 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 11205248420 3107080 1 0 4 3 3 3 3 983040 737280 737280 737492 748800 25 25 29 171 167 0 0 0 5 29 0 0 0 0 0 +1910 1783878635274301300 REFRESH 7 0 0.65236089660360241 0.8356047700170357 1 12 1 12 0 0 954 16 408 3988002 55680 222.24589538574219 1.4422999999999999 362.49540000000002 20160 14659 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11205972804 3831464 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 136 197 0 0 0 2 14 0 0 0 0 0 +1911 1783878635692687900 REFRESH 55 0 0.65426782140459172 0.64054514480408853 2 9 2 9 0 0 1158 11 408 3987607 55200 224.66458129882812 1.4285000000000001 364.55380000000002 20160 13785 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11206697188 4555848 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 176 157 0 0 0 1 10 0 0 0 0 0 +1912 1783878636109456000 REFRESH 5 0 0.65290107344594284 0.8279386712095399 2 11 2 11 0 0 959 11 425 3987988 55680 222.57151794433594 1.4459 364.23739999999998 20160 13523 0 0 0.0036262209849747063 0.39251624139758484 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11207438912 5297572 1 0 4 3 3 2 4 983040 737280 737280 491666 998400 25 25 25 223 127 0 0 0 4 7 0 0 0 0 0 +1913 1783878636532600600 REFRESH 3 0 0.65423899305658972 0.64054514480408853 2 9 2 9 0 0 1261 20 405 3987574 55200 221.67141723632812 1.4349000000000001 369.66340000000002 20160 12454 0 0 0.007660491971153616 0.13236378039086213 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 11208160236 6018896 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 27 89 239 0 0 0 1 19 0 0 0 0 0 +1914 1783878636947500000 REFRESH 43 0 0.65501537855737313 0.8279386712095399 2 11 2 11 0 0 823 15 423 3987514 55200 223.00877380371094 1.4320999999999999 359.98820000000001 26880 19418 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11208899920 6758580 1 0 5 4 2 2 3 1228800 983040 491520 491674 748800 25 26 25 175 172 0 0 0 0 15 0 0 0 0 0 +1915 1783878637404156800 REFRESH 20 0 0.65816623828847731 0.26575809199318562 2 5 2 5 0 0 2263 8 433 3987626 55200 223.61820983886719 1.4338 401.56880000000001 20160 12075 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 433 320 0 64 0 11209649804 7508464 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 33 207 143 0 0 1 0 7 0 0 0 0 0 +1916 1783878637821477800 REFRESH 22 0 0.65517792290869403 0.91396933560476989 3 11 3 11 0 0 514 11 412 3988067 55680 222.71897888183594 1.4346000000000001 362.70350000000002 13440 8001 0 0 0.0083534486929875175 0.70272977095887668 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 11210378268 8236928 1 0 4 2 3 3 4 983040 491520 737280 737501 998400 26 25 25 57 279 0 0 0 0 11 0 0 0 0 0 +1917 1783878638240057200 REFRESH 24 0 0.65516417340505295 1 4 11 4 11 0 0 501 9 412 3988470 56160 221.67141723632812 1.4393 364.58150000000001 13440 7950 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 11211106732 8965392 1 0 4 2 3 2 5 983040 491520 737280 491668 1248000 25 25 25 254 83 0 0 0 0 9 0 0 0 0 0 +1918 1783878638725841600 REFRESH 1 0 0.65508258984026191 0.36712095400340705 1 7 1 7 0 0 3753 28 426 3987647 55200 224.45362854003906 1.4314 379.68810000000002 20160 12170 0 0 0.01758808884266605 1.1144142614160466 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 11211849476 9708136 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 29 183 164 0 0 1 3 24 0 0 0 0 0 +1919 1783878639197931800 REFRESH 56 0 0.67460462659365594 0.17206132879045993 2 4 2 4 0 0 4096 10 425 3987703 55200 225.17042541503906 1.4454 416.89659999999998 20160 12900 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11212591200 10449860 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 52 25 25 243 80 1 0 0 0 9 0 0 0 0 0 +1920 1783878639653185100 REFRESH 52 0 0.65467390870269826 0.36712095400340705 1 7 1 7 0 0 2580 14 428 3987646 55200 224.03482055664062 1.4353 400.75349999999997 20160 12192 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 11213335984 11194644 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 28 201 149 0 0 0 2 12 0 0 0 0 0 +1921 1783878640071464700 REFRESH 12 0 0.64672009829452781 0.54684838160136284 2 8 2 8 0 0 2026 10 427 3987613 55200 225.01478576660156 1.4288000000000001 364.77730000000003 20160 12130 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 11214079748 11938408 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 25 25 46 171 160 0 0 0 0 10 0 0 0 0 0 +1922 1783878640542325800 REFRESH 17 0 0.65767110235480386 0.28109028960817717 0 7 0 7 0 0 4096 15 420 3987656 55200 222.86029052734375 1.4350000000000001 411.0917 20160 12456 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11214816372 12675032 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 50 196 124 0 0 1 1 13 0 0 0 0 0 +1923 1783878641060726500 REFRESH 44 0 0.65385838005899821 0.36712095400340705 1 7 1 7 0 0 2661 26 422 3987648 55200 224.63591003417969 1.4355 403.84059999999999 20160 12154 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11215555036 13413696 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 25 25 26 133 213 0 0 0 7 19 0 0 0 0 0 +1924 1783878641479574300 REFRESH 58 0 0.6509395120913849 0.92163543441226559 2 12 2 12 0 0 558 12 425 3988007 55680 222.49165344238281 1.4340999999999999 364.63470000000001 20160 14326 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11216296760 14155420 1 0 4 3 3 2 4 983040 737280 737280 491687 998400 25 25 25 231 119 0 0 0 1 11 0 0 0 0 0 +1925 1783878641901302900 REFRESH 38 0 0.65489392782219724 0.55451448040885853 1 9 1 9 0 0 2252 31 409 3987600 55200 222.46502685546875 1.4342999999999999 359.2099 20160 12184 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11217022164 14880824 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 28 99 232 0 0 0 3 28 0 0 0 0 0 +1926 1783878642347466400 REFRESH 54 0 0.6574247735035097 0.4608177172061329 1 8 1 8 0 0 1320 14 420 3987682 55200 223.72364807128906 1.4314 391.38319999999999 20160 12003 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11217758788 15617448 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 27 147 196 0 0 0 3 11 0 0 0 0 0 +1927 1783878642809633400 REFRESH 9 0 0.65786893566947269 0.27342419080068137 1 6 1 6 0 0 3510 14 427 3987636 55200 224.57548522949219 1.4319 407.02100000000002 20160 12558 0 0 0.00036661161297996402 0.2128696752457655 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 11218502552 16361212 1 0 4 3 3 3 3 983040 737280 737280 737488 748800 25 25 26 278 73 0 0 2 3 9 0 0 0 0 0 +1928 1783878643292408100 REFRESH 14 0 0.65434159998627561 0.65587734241908002 0 11 0 11 0 0 1920 15 411 3987608 55200 224.49151611328125 1.4472 374.73140000000001 20160 13691 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 11219229996 17088656 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 25 110 226 0 0 0 2 13 0 0 0 0 0 +1929 1783878643723538500 REFRESH 32 0 0.65524676139707894 0.4608177172061329 1 8 1 8 0 0 3424 40 416 3987703 55200 224.89088439941406 1.4474 375.63080000000002 20160 12406 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11219962540 17821200 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 70 269 0 0 0 1 39 0 0 0 0 0 +1930 1783878644157478200 REFRESH 33 0 0.65480748106679565 0.36712095400340705 1 7 1 7 0 0 3925 26 410 3987634 55200 225.02093505859375 1.4352 380.77170000000001 20160 12348 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11220688964 18547624 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 31 130 199 0 0 0 3 23 0 0 0 0 0 +1931 1783878644576856900 REFRESH 50 0 0.64769195281433345 0.64054514480408853 2 9 2 9 0 0 1089 9 429 3988488 56160 219.73196411132812 1.4330000000000001 365.09050000000002 13440 7919 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 11221434768 19293428 1 0 4 2 3 2 5 983040 491520 737280 491687 1248000 25 25 25 182 172 0 0 0 0 9 0 0 0 0 0 +1932 1783878645041628900 REFRESH 25 0 0.65524777962645975 0.4608177172061329 1 8 1 8 0 0 2560 7 420 3987631 55200 224.24575805664062 1.429 410.01769999999999 20160 12020 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11222171392 20030052 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 28 176 166 0 0 0 0 7 0 0 0 0 0 +1933 1783878645455065200 REFRESH 36 0 0.65324366381575105 0.82027257240204421 3 10 3 10 0 0 1361 9 424 3988013 55680 222.17727661132812 1.4331 359.92700000000002 20160 15020 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11222912096 20770756 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 229 120 0 0 1 3 5 0 0 0 0 0 +1934 1783878645918741900 REFRESH 11 0 0.65424684676796718 0.37478705281090291 0 8 0 8 0 0 2884 13 418 3987649 55200 222.70463562011719 1.4476 405.04700000000003 20160 12134 0 0 9.5220901249636335e-05 0.65800223945699332 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11223646680 21505340 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 25 215 128 1 0 0 1 11 0 0 0 0 0 +1935 1783878646325806000 REFRESH 34 0 0.65437758350321462 0.8356047700170357 1 12 1 12 0 0 820 9 425 3987992 55680 222.43533325195312 1.4314 353.25599999999997 20160 14719 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11224388404 22247064 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 61 152 162 0 0 0 0 9 0 0 0 0 0 +1936 1783878646727757100 REFRESH 0 0 0.64448699099461082 0.8279386712095399 2 11 2 11 0 0 962 5 426 3988469 56160 221.10310363769531 1.4330000000000001 346.79930000000002 13440 8384 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 11225131148 22989808 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 26 25 25 240 110 0 0 0 0 5 0 0 0 0 0 +1937 1783878647157070800 REFRESH 10 0 0.65320112644925121 0.64821124361158422 1 10 1 10 0 0 1293 45 415 3987598 55200 223.63136291503906 1.4431 373.44099999999997 20160 12315 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11225862672 23721332 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 29 60 276 0 0 0 6 39 0 0 0 0 0 +1938 1783878647590674300 REFRESH 26 0 0.65478441084487682 0.55451448040885853 1 9 1 9 0 0 2206 19 425 3987591 55200 222.71897888183594 1.4322999999999999 381.1694 20160 11963 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11226604396 24463056 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 29 212 134 0 0 0 1 18 0 0 0 0 0 +1939 1783878648123658900 REFRESH 23 0 0.653376433441756 0.74190800681430991 1 11 1 11 0 0 3614 13 409 3987614 55200 224.35224914550781 1.4298 367.7072 20160 13692 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 11227329800 25188460 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 26 65 268 0 0 0 1 12 0 0 0 0 0 +1940 1783878648585785300 REFRESH 53 0 0.65396838391466461 0.37478705281090291 0 8 0 8 0 0 4096 22 415 3987624 55200 223.27194213867188 1.4328000000000001 406.18459999999999 20160 12028 0 0 0 0.20692837474269371 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11228061324 25919984 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 25 235 105 0 0 0 4 18 0 0 0 0 0 +1941 1783878649002789100 REFRESH 28 0 0.6540685418887251 0.8279386712095399 2 11 2 11 0 0 687 15 405 3988067 55680 221.94586181640625 1.4467000000000001 365.65719999999999 13440 8137 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 11228782648 26641308 1 0 4 2 3 3 4 983040 491520 737280 737502 998400 26 25 25 121 208 0 0 0 1 14 0 0 0 0 0 +1942 1783878651519932400 DEPTH 42 1 0.82304615392160829 0 0 4 0 4 0 0 4096 19 2593 23678273 81600 1293.2989501953125 8.5867000000000004 2463.5140999999999 120960 65307 1 0 0 0.0064591064325931922 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11233286416 31145076 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 272 150 221 1440 510 0 0 0 0 19 0 0 0 0 0 +1943 1783878653955630300 DEPTH 31 1 0.66027733253280907 0.26575809199318562 2 5 2 5 0 0 3266 39 2593 23677707 81600 1292.8636474609375 8.5996000000000006 2380.7583 120960 57501 1 0 0.039437761574081708 1.137473311133061 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11237790184 35648844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 167 1011 1115 0 0 0 0 39 0 0 0 0 0 +1944 1783878656394246200 DEPTH 57 1 0.65645361801058943 0.27342419080068137 1 6 1 6 0 0 4096 32 2531 23677787 81600 1295.9835815429688 8.5964000000000009 2437.2379999999998 120960 59458 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 11242230712 40089372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 165 807 1259 0 0 0 0 32 0 0 0 0 0 +1945 1783878658920037800 DEPTH 13 1 0.65623810838852026 0.27342419080068137 1 6 1 6 0 0 4096 62 2581 23677877 81600 1291.9972991943359 8.616299999999999 2462.1143999999999 120960 60133 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 11246722240 44580900 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 162 850 1269 0 0 1 2 59 0 0 0 0 0 +1946 1783878661447978200 DEPTH 20 1 0.65566078328649002 0.26575809199318562 2 5 2 5 0 0 2268 26 2611 23677672 81600 1298.159423828125 8.6156000000000006 2470.9378000000002 120960 57947 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 11251244368 49103028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426510 4492800 150 150 184 1028 1099 0 0 1 0 25 0 0 0 0 0 +1947 1783878663799330500 DEPTH 8 1 0.65518537477294969 0.26575809199318562 2 5 2 5 0 0 2584 46 2531 23677799 81600 1298.481201171875 8.6090999999999998 2350.1711 120960 59067 1 0 0.01752489470554091 0.4602522868790504 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 11255684896 53543556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 156 373 1702 0 0 0 1 45 0 0 0 0 0 +1948 1783878666379905900 DEPTH 48 1 0.65346233863314263 0.26575809199318562 2 5 2 5 0 0 2824 36 2582 23677781 81600 1294.9954528808594 8.587299999999999 2407.2305000000001 120960 59346 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 11260177444 58036104 1 0 4 3 3 3 3 5898240 4423680 4423680 4426388 4492800 150 150 186 916 1180 0 0 3 1 32 0 0 0 0 0 +1949 1783878668890813600 DEPTH 56 1 0.67286542491175283 0.17206132879045993 2 4 2 4 0 0 4096 47 2577 23678004 81600 1293.2834167480469 8.593399999999999 2455.0309999999999 120960 61939 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 11264664892 62523552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 270 150 150 1384 623 0 0 0 3 44 0 0 0 0 0 +1950 1783878671495411200 DEPTH 17 1 0.6557490836093911 0.28109028960817717 0 7 0 7 0 0 4096 52 2561 23677774 81600 1293.3189086914062 8.6016999999999992 2475.4650000000001 120960 59506 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11269136020 66994680 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 150 150 223 555 1483 2 0 4 0 46 0 0 0 0 0 +1951 1783878675080847200 DEPTH 42 1 0.6630686408163361 0 0 4 0 4 1 0 4096 14 2587 23678358 81600 1293.6532135009766 8.6265000000000001 3583.8971000000001 120960 54183 1 0 0 0.006531807994204975 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11273633748 4383768 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 247 150 187 1496 507 0 0 0 0 14 0 0 0 0 1 +1952 1783878677563729400 DEPTH 40 1 0.6528707185083098 0.64821124361158422 1 10 1 10 0 0 1937 44 2553 23677381 81600 1293.0182800292969 8.6038999999999994 2421.0138000000002 120960 59814 1 0 0.079501752389619845 0.46139863319818186 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 11278096716 8846736 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 158 543 1552 0 0 0 0 44 0 0 0 0 0 +1953 1783878680138982900 DEPTH 1 1 0.65283760412418768 0.36712095400340705 1 7 1 7 0 0 3758 56 2584 23677654 81600 1304.8129272460938 8.6053999999999995 2459.4223000000002 120960 57873 1 0 0.01758808884266605 1.1144142614160466 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11282591304 13341324 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 174 954 1156 0 0 3 1 52 0 0 0 0 0 +1954 1783878682448272000 DEPTH 38 1 0.65277239608431459 0.55451448040885853 1 9 1 9 0 0 2261 63 2519 23677379 81600 1302.9417114257812 8.6503999999999994 2250.9126999999999 120960 56978 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 11287019592 17769612 1 0 4 3 3 3 3 5898240 4423680 4423680 4426448 4492800 150 150 162 308 1749 0 0 1 0 62 0 0 0 0 0 +1955 1783878684933263000 DEPTH 2 1 0.65275523471121355 0.45315161839863699 2 7 2 7 0 0 4096 114 2534 23677546 81600 1310.1466827392578 8.6524999999999999 2415.0828000000001 120960 56500 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 11291463180 22213200 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 150 150 150 428 1656 0 0 0 1 113 0 0 0 0 0 +1956 1783878687503945100 DEPTH 45 1 0.65272149168803884 0.45315161839863699 2 7 2 7 0 0 2481 37 2580 23677546 81600 1332.7964935302734 8.6297999999999995 2507.2051999999999 120960 56304 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11295953688 26703708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 150 480 1650 0 0 0 1 36 0 0 0 0 0 +1957 1783878690044681500 DEPTH 30 1 0.65269807641703292 0.4608177172061329 1 8 1 8 0 0 3971 36 2578 23677473 81600 1319.3734436035156 8.6094000000000008 2474.5994000000001 120960 56596 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 11300442156 31192176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 155 1041 1082 0 0 0 2 34 0 0 0 0 0 +1958 1783878692520314600 DEPTH 9 1 0.65594798809978672 0.27342419080068137 1 6 1 6 1 0 3515 49 2598 23677731 81600 1303.6216430664062 8.6646000000000001 2415.5338000000002 120960 60036 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11304951024 35701044 1 0 4 3 3 3 3 5898240 4423680 4423680 4426370 4492800 150 150 150 1660 488 0 0 3 5 41 0 0 0 0 2 +1959 1783878695043216900 DEPTH 54 1 0.65534610534771787 0.4608177172061329 1 8 1 8 0 0 1325 39 2550 23677484 81600 1313.7415618896484 8.6072999999999986 2457.0972000000002 120960 56818 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11309410932 40160952 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 162 540 1548 0 0 0 0 39 0 0 0 0 0 +1960 1783878697485258600 DEPTH 32 1 0.6527413892266607 0.4608177172061329 1 8 1 8 0 0 3436 64 2564 23677580 81600 1306.6035308837891 8.6408999999999985 2386.5612999999998 120960 58253 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 11313885120 44635140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 156 217 1891 0 0 0 3 61 0 0 0 0 0 +1961 1783878699766715600 DEPTH 16 1 0.65264375529955321 0.3594548551959113 2 6 2 6 1 0 3731 80 2548 23677610 81600 1306.4202270507812 8.5754999999999999 2226.8042999999998 120960 57357 1 0 0.0058944587434052705 0.1348365305912006 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 11318342988 49093008 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 644 1454 0 0 0 4 76 0 0 0 0 1 +1962 1783878702183135400 DEPTH 33 1 0.652576598859405 0.36712095400340705 1 7 1 7 0 0 3928 41 2534 23677612 81600 1297.0024566650391 8.5786999999999995 2357.1538999999998 120960 58699 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 11322786576 53536596 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 175 340 1719 0 0 0 1 40 0 0 0 0 0 +1963 1783878704364249300 DEPTH 49 1 0.65253195848102497 0.4454855195911413 3 6 3 6 0 0 1849 54 2539 23677509 81600 1292.4193420410156 8.5803000000000011 2129.192 120960 57320 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 11327235264 57985284 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 150 150 150 422 1667 0 0 0 0 54 0 0 0 0 0 +1964 1783878706751344100 DEPTH 52 1 0.6525287579568495 0.36712095400340705 1 7 1 7 0 0 2594 38 2595 23677676 81600 1288.4869384765625 8.6045999999999996 2334.7336 120960 57908 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11331741072 62491092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 157 1262 876 0 0 0 1 37 0 0 0 0 0 +1965 1783878708880520200 DEPTH 43 1 0.65246589165567492 0.8279386712095399 2 11 2 11 0 0 828 47 2563 23676255 81600 1290.0852508544922 8.5910000000000011 2078.9740999999999 168000 101336 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11336214240 66964260 1 0 5 4 2 2 3 7372800 6144000 2949120 2705041 4492800 150 150 150 751 1362 0 0 0 2 45 0 0 0 0 0 +1966 1783878712406706900 DEPTH 42 1 0.72304231622673421 0 0 4 0 4 1 0 4096 20 2592 23678330 81600 1281.1949768066406 8.5926999999999989 3472.6956 120960 43795 1 0 0 0.0059670821115201129 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11340717068 4358148 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 215 150 182 1548 497 0 0 0 0 20 0 0 0 0 1 +1967 1783878713863347300 DEPTH 22 1 0.65234043838029887 0.91396933560476989 3 11 3 11 1 0 519 37 1696 15803478 72960 866.91676330566406 5.7191999999999998 1406.2483 53760 27016 0 0 0.0084140362538463482 0.71098786331502006 4096 2048 256 8 64 240 48 16 0 1696 1280 0 256 0 11343679884 7320964 1 0 4 2 3 3 4 3932160 1966080 2949120 2950979 3993600 100 100 100 225 1171 0 0 0 5 32 0 0 0 0 1 diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/run.tsv b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/run.tsv new file mode 100644 index 00000000..a77b822c --- /dev/null +++ b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/run.tsv @@ -0,0 +1,58 @@ +format szilassi-global-search-v5 +run_id 90000b96-af3c-4d90-8233-0ba9c155673b +node_id LOOKICH +seed 1160878469 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +transformer_enabled 1 +transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83 +transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker +transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64 +transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 7175636440 +training_neural_model_reserve_bytes 265316868 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000001_eb8d9819.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000001_eb8d9819.szar new file mode 100644 index 00000000..d6e27965 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000001_eb8d9819.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000002_df010199.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000002_df010199.szar new file mode 100644 index 00000000..c3e9cad9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000002_df010199.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000003_4399a501.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000003_4399a501.szar new file mode 100644 index 00000000..e5b02768 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000003_4399a501.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000004_be141b87.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000004_be141b87.szar new file mode 100644 index 00000000..90169e8e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000004_be141b87.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000005_fbd7d08c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000005_fbd7d08c.szar new file mode 100644 index 00000000..452af4a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000005_fbd7d08c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000006_233ee93b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000006_233ee93b.szar new file mode 100644 index 00000000..60224fa9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000006_233ee93b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000007_d16d03dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000007_d16d03dd.szar new file mode 100644 index 00000000..ec8db2d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000007_d16d03dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000008_971dc7ac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000008_971dc7ac.szar new file mode 100644 index 00000000..7e87af8a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000008_971dc7ac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000009_fed65d5c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000009_fed65d5c.szar new file mode 100644 index 00000000..4c8c762e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000009_fed65d5c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000010_de747f22.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000010_de747f22.szar new file mode 100644 index 00000000..e9fc6df8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000010_de747f22.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000011_f77511e3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000011_f77511e3.szar new file mode 100644 index 00000000..c48902cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000011_f77511e3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000012_40ffa2bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000012_40ffa2bc.szar new file mode 100644 index 00000000..1827b6f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000012_40ffa2bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000013_549c0d6d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000013_549c0d6d.szar new file mode 100644 index 00000000..29f064de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000013_549c0d6d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000014_8aeb1a94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000014_8aeb1a94.szar new file mode 100644 index 00000000..8386a0e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000014_8aeb1a94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000015_30175cf9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000015_30175cf9.szar new file mode 100644 index 00000000..77c401a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000015_30175cf9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000016_77a674d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000016_77a674d8.szar new file mode 100644 index 00000000..4e16054f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000016_77a674d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000017_f17d69aa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000017_f17d69aa.szar new file mode 100644 index 00000000..c4c290b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000017_f17d69aa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000018_0b38e694.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000018_0b38e694.szar new file mode 100644 index 00000000..6909c10e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000018_0b38e694.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000019_07868fdd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000019_07868fdd.szar new file mode 100644 index 00000000..977d92c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000019_07868fdd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000020_9cb8546d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000020_9cb8546d.szar new file mode 100644 index 00000000..f648b531 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000020_9cb8546d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000021_b5698281.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000021_b5698281.szar new file mode 100644 index 00000000..91467b2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000021_b5698281.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000022_49f0de27.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000022_49f0de27.szar new file mode 100644 index 00000000..cb8dab83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000022_49f0de27.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000023_7f011bad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000023_7f011bad.szar new file mode 100644 index 00000000..a205fb87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000023_7f011bad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000024_390250cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000024_390250cc.szar new file mode 100644 index 00000000..3cef0bc1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000024_390250cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000025_5ac54c94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000025_5ac54c94.szar new file mode 100644 index 00000000..889eac80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/archive/delta_00000000000000000025_5ac54c94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000001_c662d3c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000001_c662d3c6.szcp new file mode 100644 index 00000000..b46f3811 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000001_c662d3c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000002_c3e35343.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000002_c3e35343.szcp new file mode 100644 index 00000000..358ba605 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000002_c3e35343.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000003_7ed2b8b2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000003_7ed2b8b2.szcp new file mode 100644 index 00000000..7caca963 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000003_7ed2b8b2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000004_74ca9122.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000004_74ca9122.szcp new file mode 100644 index 00000000..67dd2852 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000004_74ca9122.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000005_4fc104e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000005_4fc104e8.szcp new file mode 100644 index 00000000..d6a32f73 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000005_4fc104e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000006_515b707a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000006_515b707a.szcp new file mode 100644 index 00000000..464dfaba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000006_515b707a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000007_314ad67e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000007_314ad67e.szcp new file mode 100644 index 00000000..9422e47d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000007_314ad67e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000008_07544adf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000008_07544adf.szcp new file mode 100644 index 00000000..cd625611 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000008_07544adf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000009_7b9befdf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000009_7b9befdf.szcp new file mode 100644 index 00000000..619a49da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000009_7b9befdf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000010_50dcf6c9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000010_50dcf6c9.szcp new file mode 100644 index 00000000..572d4592 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000010_50dcf6c9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000011_a3cfa698.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000011_a3cfa698.szcp new file mode 100644 index 00000000..60e251e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000011_a3cfa698.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000012_bf1fae41.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000012_bf1fae41.szcp new file mode 100644 index 00000000..62db52c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000012_bf1fae41.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000013_3a81300c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000013_3a81300c.szcp new file mode 100644 index 00000000..638d9484 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000013_3a81300c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000014_31d58f9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000014_31d58f9f.szcp new file mode 100644 index 00000000..de5860ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000014_31d58f9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000015_351e036c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000015_351e036c.szcp new file mode 100644 index 00000000..c196bb61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000015_351e036c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000016_d2dae0c5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000016_d2dae0c5.szcp new file mode 100644 index 00000000..518a2cbf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000016_d2dae0c5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000017_d478f0ea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000017_d478f0ea.szcp new file mode 100644 index 00000000..932b5387 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000017_d478f0ea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000018_d08e0b78.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000018_d08e0b78.szcp new file mode 100644 index 00000000..014b2d42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000018_d08e0b78.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000019_64f7ff99.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000019_64f7ff99.szcp new file mode 100644 index 00000000..024ef9a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000019_64f7ff99.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000020_0608a290.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000020_0608a290.szcp new file mode 100644 index 00000000..200f821e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000020_0608a290.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000021_a9ab278e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000021_a9ab278e.szcp new file mode 100644 index 00000000..01b3b26a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000021_a9ab278e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000022_3b1b8b19.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000022_3b1b8b19.szcp new file mode 100644 index 00000000..5c3e94cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000022_3b1b8b19.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000023_ace142ce.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000023_ace142ce.szcp new file mode 100644 index 00000000..77d245dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000023_ace142ce.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000024_bfc0f8a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000024_bfc0f8a0.szcp new file mode 100644 index 00000000..44921e8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000024_bfc0f8a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000025_6868ae3a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000025_6868ae3a.szcp new file mode 100644 index 00000000..41ae0898 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_000/checkpoints/checkpoint_00000000000000000025_6868ae3a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000001_202af053.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000001_202af053.szar new file mode 100644 index 00000000..681676f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000001_202af053.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000002_3cb274bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000002_3cb274bc.szar new file mode 100644 index 00000000..8af17d19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000002_3cb274bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000003_1d6adbf9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000003_1d6adbf9.szar new file mode 100644 index 00000000..f0320d4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000003_1d6adbf9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000004_260bb18a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000004_260bb18a.szar new file mode 100644 index 00000000..b5e5dc4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000004_260bb18a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000005_1f32eadb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000005_1f32eadb.szar new file mode 100644 index 00000000..dc2e4e02 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000005_1f32eadb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000006_302916ad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000006_302916ad.szar new file mode 100644 index 00000000..37a396c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000006_302916ad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000007_c4f9f658.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000007_c4f9f658.szar new file mode 100644 index 00000000..1fa9d395 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000007_c4f9f658.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000008_b1884d29.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000008_b1884d29.szar new file mode 100644 index 00000000..078f2d4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000008_b1884d29.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000009_96a8da16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000009_96a8da16.szar new file mode 100644 index 00000000..d627acf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000009_96a8da16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000010_64ccec6a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000010_64ccec6a.szar new file mode 100644 index 00000000..b59018a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000010_64ccec6a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000011_39c60e44.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000011_39c60e44.szar new file mode 100644 index 00000000..71dd65a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000011_39c60e44.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000012_c74e74ea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000012_c74e74ea.szar new file mode 100644 index 00000000..6ea156f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000012_c74e74ea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000013_022d8920.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000013_022d8920.szar new file mode 100644 index 00000000..3b41aac2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000013_022d8920.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000014_d7ce4e8e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000014_d7ce4e8e.szar new file mode 100644 index 00000000..1fe9af1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000014_d7ce4e8e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000015_60e9cc18.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000015_60e9cc18.szar new file mode 100644 index 00000000..2890a1f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000015_60e9cc18.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000016_bd3d4a42.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000016_bd3d4a42.szar new file mode 100644 index 00000000..b18ae81e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000016_bd3d4a42.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000017_ee509c37.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000017_ee509c37.szar new file mode 100644 index 00000000..10f1aa39 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000017_ee509c37.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000018_462eaa13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000018_462eaa13.szar new file mode 100644 index 00000000..945a858f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000018_462eaa13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000019_ccca668a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000019_ccca668a.szar new file mode 100644 index 00000000..b8f6c082 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000019_ccca668a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000020_a1870037.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000020_a1870037.szar new file mode 100644 index 00000000..ae1c4390 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000020_a1870037.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000021_9c6e6244.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000021_9c6e6244.szar new file mode 100644 index 00000000..e1150d08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000021_9c6e6244.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000022_094a6ab7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000022_094a6ab7.szar new file mode 100644 index 00000000..fd19a2c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000022_094a6ab7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000023_8d92e3c8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000023_8d92e3c8.szar new file mode 100644 index 00000000..3ec17a7e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000023_8d92e3c8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000024_b3a68541.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000024_b3a68541.szar new file mode 100644 index 00000000..b79792c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000024_b3a68541.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000025_8dcfca9d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000025_8dcfca9d.szar new file mode 100644 index 00000000..38a96fa3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000025_8dcfca9d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000026_869ca4b7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000026_869ca4b7.szar new file mode 100644 index 00000000..a1855341 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000026_869ca4b7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000027_50216a18.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000027_50216a18.szar new file mode 100644 index 00000000..e730efda Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000027_50216a18.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000028_cef48ef3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000028_cef48ef3.szar new file mode 100644 index 00000000..872dba21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000028_cef48ef3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000029_e3d40880.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000029_e3d40880.szar new file mode 100644 index 00000000..3bf297be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000029_e3d40880.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000030_985151d0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000030_985151d0.szar new file mode 100644 index 00000000..4f57b4b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000030_985151d0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000031_d6550b24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000031_d6550b24.szar new file mode 100644 index 00000000..a5782015 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000031_d6550b24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000032_ce1eb02f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000032_ce1eb02f.szar new file mode 100644 index 00000000..4e3a8268 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000032_ce1eb02f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000033_c698ec96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000033_c698ec96.szar new file mode 100644 index 00000000..39f0039b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000033_c698ec96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000034_dba1144a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000034_dba1144a.szar new file mode 100644 index 00000000..b4275003 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000034_dba1144a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000035_addeb2d9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000035_addeb2d9.szar new file mode 100644 index 00000000..f3cd46bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000035_addeb2d9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000036_1f05b130.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000036_1f05b130.szar new file mode 100644 index 00000000..d165212d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000036_1f05b130.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000037_fd09c25d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000037_fd09c25d.szar new file mode 100644 index 00000000..f189d1da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000037_fd09c25d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000038_e415224e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000038_e415224e.szar new file mode 100644 index 00000000..f6cd2773 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000038_e415224e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000039_e53b44f9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000039_e53b44f9.szar new file mode 100644 index 00000000..721ac222 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/archive/delta_00000000000000000039_e53b44f9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000001_e685a918.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000001_e685a918.szcp new file mode 100644 index 00000000..9d3a4edc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000001_e685a918.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000002_5001fa3b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000002_5001fa3b.szcp new file mode 100644 index 00000000..768575e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000002_5001fa3b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000003_c9e97041.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000003_c9e97041.szcp new file mode 100644 index 00000000..0df7c188 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000003_c9e97041.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000004_20dc8e69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000004_20dc8e69.szcp new file mode 100644 index 00000000..156076e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000004_20dc8e69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000005_fc49ddd2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000005_fc49ddd2.szcp new file mode 100644 index 00000000..e27f39a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000005_fc49ddd2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000006_8e90707e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000006_8e90707e.szcp new file mode 100644 index 00000000..418b81df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000006_8e90707e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000007_8a2500ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000007_8a2500ad.szcp new file mode 100644 index 00000000..e9df77eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000007_8a2500ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000008_7afce662.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000008_7afce662.szcp new file mode 100644 index 00000000..6e8f6fb5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000008_7afce662.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000009_fa2ad959.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000009_fa2ad959.szcp new file mode 100644 index 00000000..671c6423 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000009_fa2ad959.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000010_ef5f00e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000010_ef5f00e5.szcp new file mode 100644 index 00000000..56593f52 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000010_ef5f00e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000011_2665b8f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000011_2665b8f0.szcp new file mode 100644 index 00000000..1ebedce2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000011_2665b8f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000012_fdec089a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000012_fdec089a.szcp new file mode 100644 index 00000000..f299d8ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000012_fdec089a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000013_e91af49d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000013_e91af49d.szcp new file mode 100644 index 00000000..442c0000 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000013_e91af49d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000014_6f10007e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000014_6f10007e.szcp new file mode 100644 index 00000000..694ba122 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000014_6f10007e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000015_32b0a747.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000015_32b0a747.szcp new file mode 100644 index 00000000..106e71ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000015_32b0a747.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000016_bda213ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000016_bda213ef.szcp new file mode 100644 index 00000000..47bded8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000016_bda213ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000017_ffcc60e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000017_ffcc60e8.szcp new file mode 100644 index 00000000..e4bb59db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000017_ffcc60e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000018_2a4343f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000018_2a4343f4.szcp new file mode 100644 index 00000000..5109cc6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000018_2a4343f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000019_f521c9fb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000019_f521c9fb.szcp new file mode 100644 index 00000000..6c5ed3c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000019_f521c9fb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000020_4072e6fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000020_4072e6fe.szcp new file mode 100644 index 00000000..aa68b848 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000020_4072e6fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000021_736d3bc5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000021_736d3bc5.szcp new file mode 100644 index 00000000..7ae5a97e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000021_736d3bc5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000022_b13ab274.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000022_b13ab274.szcp new file mode 100644 index 00000000..35574a90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000022_b13ab274.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000023_961c4496.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000023_961c4496.szcp new file mode 100644 index 00000000..d7981648 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000023_961c4496.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000024_2972e32e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000024_2972e32e.szcp new file mode 100644 index 00000000..66f58fea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000024_2972e32e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000025_67c1bb7e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000025_67c1bb7e.szcp new file mode 100644 index 00000000..5b05a9ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000025_67c1bb7e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000026_16f04199.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000026_16f04199.szcp new file mode 100644 index 00000000..c6fedaa2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000026_16f04199.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000027_d69cc2f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000027_d69cc2f0.szcp new file mode 100644 index 00000000..15c1fdc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000027_d69cc2f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000028_7e047842.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000028_7e047842.szcp new file mode 100644 index 00000000..3abe34b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000028_7e047842.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000029_4a803f2f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000029_4a803f2f.szcp new file mode 100644 index 00000000..1de38a48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000029_4a803f2f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000030_f0334b21.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000030_f0334b21.szcp new file mode 100644 index 00000000..af732913 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000030_f0334b21.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000031_e620fe6d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000031_e620fe6d.szcp new file mode 100644 index 00000000..5ca3311e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000031_e620fe6d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000032_2e453f46.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000032_2e453f46.szcp new file mode 100644 index 00000000..92d3b4e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000032_2e453f46.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000033_12ccb176.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000033_12ccb176.szcp new file mode 100644 index 00000000..fddd9731 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000033_12ccb176.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000034_96b7a5f6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000034_96b7a5f6.szcp new file mode 100644 index 00000000..d6684225 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000034_96b7a5f6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000035_95c6dd21.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000035_95c6dd21.szcp new file mode 100644 index 00000000..18c17bff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000035_95c6dd21.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000036_7f114c87.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000036_7f114c87.szcp new file mode 100644 index 00000000..cb8ab75c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000036_7f114c87.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000037_5afa9099.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000037_5afa9099.szcp new file mode 100644 index 00000000..acacdb39 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000037_5afa9099.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000038_7629e80e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000038_7629e80e.szcp new file mode 100644 index 00000000..aabb5e7b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000038_7629e80e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000039_eeaf0413.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000039_eeaf0413.szcp new file mode 100644 index 00000000..5360261a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_001/checkpoints/checkpoint_00000000000000000039_eeaf0413.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000001_9ff1c9f3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000001_9ff1c9f3.szar new file mode 100644 index 00000000..673fdc8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000001_9ff1c9f3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000002_2df8a089.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000002_2df8a089.szar new file mode 100644 index 00000000..f51c0280 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000002_2df8a089.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000003_d47bad51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000003_d47bad51.szar new file mode 100644 index 00000000..fa7aca2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000003_d47bad51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000004_26b67391.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000004_26b67391.szar new file mode 100644 index 00000000..c6f1f6b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000004_26b67391.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000005_09c2b73f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000005_09c2b73f.szar new file mode 100644 index 00000000..61e628aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000005_09c2b73f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000006_1cf785bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000006_1cf785bd.szar new file mode 100644 index 00000000..af9a94a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000006_1cf785bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000007_c347dcbc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000007_c347dcbc.szar new file mode 100644 index 00000000..55787e7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000007_c347dcbc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000008_aac61433.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000008_aac61433.szar new file mode 100644 index 00000000..eb15227d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000008_aac61433.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000009_8c7fad27.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000009_8c7fad27.szar new file mode 100644 index 00000000..61685e0f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000009_8c7fad27.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000010_627ef704.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000010_627ef704.szar new file mode 100644 index 00000000..3558529e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000010_627ef704.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000011_e9483c97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000011_e9483c97.szar new file mode 100644 index 00000000..559e7823 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000011_e9483c97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000012_537f4c5e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000012_537f4c5e.szar new file mode 100644 index 00000000..e805fa7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000012_537f4c5e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000013_b2d9fc04.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000013_b2d9fc04.szar new file mode 100644 index 00000000..c83b8182 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000013_b2d9fc04.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000014_8057fea7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000014_8057fea7.szar new file mode 100644 index 00000000..f29b9e81 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000014_8057fea7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000015_55f44679.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000015_55f44679.szar new file mode 100644 index 00000000..df958647 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000015_55f44679.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000016_3d4ddffd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000016_3d4ddffd.szar new file mode 100644 index 00000000..d4d734b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000016_3d4ddffd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000017_3257ad80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000017_3257ad80.szar new file mode 100644 index 00000000..9d41b4f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000017_3257ad80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000018_aea91cf2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000018_aea91cf2.szar new file mode 100644 index 00000000..92b55052 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000018_aea91cf2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000019_cdc4edf4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000019_cdc4edf4.szar new file mode 100644 index 00000000..23125683 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000019_cdc4edf4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000020_e0042397.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000020_e0042397.szar new file mode 100644 index 00000000..95c4f0d5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000020_e0042397.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000021_f984b7a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000021_f984b7a6.szar new file mode 100644 index 00000000..66f01c41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000021_f984b7a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000022_f98ac5a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000022_f98ac5a0.szar new file mode 100644 index 00000000..c746a1e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000022_f98ac5a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000023_2a896880.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000023_2a896880.szar new file mode 100644 index 00000000..c6ff5783 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000023_2a896880.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000024_48362547.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000024_48362547.szar new file mode 100644 index 00000000..746dfdb9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000024_48362547.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000025_2aee393c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000025_2aee393c.szar new file mode 100644 index 00000000..96d5b727 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000025_2aee393c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000026_ccf6c6d2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000026_ccf6c6d2.szar new file mode 100644 index 00000000..988706f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000026_ccf6c6d2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000027_f4504f0e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000027_f4504f0e.szar new file mode 100644 index 00000000..8fda50ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000027_f4504f0e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000028_c523298f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000028_c523298f.szar new file mode 100644 index 00000000..329e5e38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000028_c523298f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000029_10233ce0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000029_10233ce0.szar new file mode 100644 index 00000000..eb58db2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000029_10233ce0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000030_a37449e4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000030_a37449e4.szar new file mode 100644 index 00000000..03b3e71c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000030_a37449e4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000031_3e1d34ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000031_3e1d34ce.szar new file mode 100644 index 00000000..c4c4c675 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000031_3e1d34ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000032_95e0496e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000032_95e0496e.szar new file mode 100644 index 00000000..6f62453c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000032_95e0496e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000033_89f0815f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000033_89f0815f.szar new file mode 100644 index 00000000..caf6c8ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000033_89f0815f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000034_d43a75b3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000034_d43a75b3.szar new file mode 100644 index 00000000..d04bb454 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000034_d43a75b3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000035_927f92fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000035_927f92fb.szar new file mode 100644 index 00000000..779f1fde Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/archive/delta_00000000000000000035_927f92fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000001_3d24d717.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000001_3d24d717.szcp new file mode 100644 index 00000000..82636c64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000001_3d24d717.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000002_4b99a888.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000002_4b99a888.szcp new file mode 100644 index 00000000..315f1b27 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000002_4b99a888.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000003_69aa5770.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000003_69aa5770.szcp new file mode 100644 index 00000000..35b40986 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000003_69aa5770.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000004_6bf0c691.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000004_6bf0c691.szcp new file mode 100644 index 00000000..86f05629 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000004_6bf0c691.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000005_69c1404f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000005_69c1404f.szcp new file mode 100644 index 00000000..4aa41c41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000005_69c1404f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000006_d3f8c05d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000006_d3f8c05d.szcp new file mode 100644 index 00000000..3f4673e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000006_d3f8c05d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000007_53ab538c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000007_53ab538c.szcp new file mode 100644 index 00000000..d9bb2189 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000007_53ab538c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000008_89eb1a19.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000008_89eb1a19.szcp new file mode 100644 index 00000000..dbbc808b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000008_89eb1a19.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000009_bc29b72f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000009_bc29b72f.szcp new file mode 100644 index 00000000..de4349d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000009_bc29b72f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000010_c86f2637.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000010_c86f2637.szcp new file mode 100644 index 00000000..47000ebb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000010_c86f2637.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000011_331370b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000011_331370b8.szcp new file mode 100644 index 00000000..7e65f8fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000011_331370b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000012_d7e794d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000012_d7e794d1.szcp new file mode 100644 index 00000000..61eb57cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000012_d7e794d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000013_04b8cdf3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000013_04b8cdf3.szcp new file mode 100644 index 00000000..6c696c43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000013_04b8cdf3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000014_e816c8eb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000014_e816c8eb.szcp new file mode 100644 index 00000000..5faeb3f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000014_e816c8eb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000015_dda21d3a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000015_dda21d3a.szcp new file mode 100644 index 00000000..bacaabb0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000015_dda21d3a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000016_c58c0a3f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000016_c58c0a3f.szcp new file mode 100644 index 00000000..70dd62c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000016_c58c0a3f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000017_2753b079.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000017_2753b079.szcp new file mode 100644 index 00000000..bdfbdddf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000017_2753b079.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000018_80742d42.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000018_80742d42.szcp new file mode 100644 index 00000000..33cab278 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000018_80742d42.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000019_30c7e44c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000019_30c7e44c.szcp new file mode 100644 index 00000000..45722500 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000019_30c7e44c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000020_be006617.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000020_be006617.szcp new file mode 100644 index 00000000..043603b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000020_be006617.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000021_23c1e36f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000021_23c1e36f.szcp new file mode 100644 index 00000000..f68d7149 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000021_23c1e36f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000022_7b5e50e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000022_7b5e50e9.szcp new file mode 100644 index 00000000..89d1f18a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000022_7b5e50e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000023_a8cd02b2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000023_a8cd02b2.szcp new file mode 100644 index 00000000..7668019f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000023_a8cd02b2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000024_804eb7a2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000024_804eb7a2.szcp new file mode 100644 index 00000000..b8844c01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000024_804eb7a2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000025_e98b180c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000025_e98b180c.szcp new file mode 100644 index 00000000..c9314608 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000025_e98b180c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000026_e604f731.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000026_e604f731.szcp new file mode 100644 index 00000000..b8c1aef2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000026_e604f731.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000027_3918dce2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000027_3918dce2.szcp new file mode 100644 index 00000000..b138a317 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000027_3918dce2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000028_e6ca5278.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000028_e6ca5278.szcp new file mode 100644 index 00000000..d7c9a115 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000028_e6ca5278.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000029_888f8d3c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000029_888f8d3c.szcp new file mode 100644 index 00000000..a3cf0049 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000029_888f8d3c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000030_4c9f40ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000030_4c9f40ee.szcp new file mode 100644 index 00000000..6e0ad5af Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000030_4c9f40ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000031_09d81de6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000031_09d81de6.szcp new file mode 100644 index 00000000..cfb56966 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000031_09d81de6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000032_8b47bcc1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000032_8b47bcc1.szcp new file mode 100644 index 00000000..60fd25d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000032_8b47bcc1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000033_5fa5cec6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000033_5fa5cec6.szcp new file mode 100644 index 00000000..d8a50faa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000033_5fa5cec6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000034_3a3f3d6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000034_3a3f3d6e.szcp new file mode 100644 index 00000000..47dcdac9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000034_3a3f3d6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000035_4267ebcd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000035_4267ebcd.szcp new file mode 100644 index 00000000..ab692813 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_002/checkpoints/checkpoint_00000000000000000035_4267ebcd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000001_3a595259.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000001_3a595259.szar new file mode 100644 index 00000000..e469b238 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000001_3a595259.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000002_c7cd2507.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000002_c7cd2507.szar new file mode 100644 index 00000000..92ed0a72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000002_c7cd2507.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000003_83ea8742.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000003_83ea8742.szar new file mode 100644 index 00000000..c7e252ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000003_83ea8742.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000004_a2c1a37b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000004_a2c1a37b.szar new file mode 100644 index 00000000..ba6a8f84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000004_a2c1a37b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000005_7dfee3cf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000005_7dfee3cf.szar new file mode 100644 index 00000000..cab82f6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000005_7dfee3cf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000006_26239030.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000006_26239030.szar new file mode 100644 index 00000000..ebcc3927 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000006_26239030.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000007_dcef8632.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000007_dcef8632.szar new file mode 100644 index 00000000..d5bcde2f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000007_dcef8632.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000008_b352be93.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000008_b352be93.szar new file mode 100644 index 00000000..7dd97ddf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000008_b352be93.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000009_a6e201bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000009_a6e201bd.szar new file mode 100644 index 00000000..4fadfce8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000009_a6e201bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000010_e190604e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000010_e190604e.szar new file mode 100644 index 00000000..ea821f3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000010_e190604e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000011_c92088e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000011_c92088e0.szar new file mode 100644 index 00000000..b62e922a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000011_c92088e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000012_50ea108a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000012_50ea108a.szar new file mode 100644 index 00000000..7f0e4f6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000012_50ea108a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000013_d79e13ba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000013_d79e13ba.szar new file mode 100644 index 00000000..a6f71d0a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000013_d79e13ba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000014_3be6c94e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000014_3be6c94e.szar new file mode 100644 index 00000000..2542f136 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000014_3be6c94e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000015_ba0e9f1c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000015_ba0e9f1c.szar new file mode 100644 index 00000000..81e75223 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000015_ba0e9f1c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000016_91020db4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000016_91020db4.szar new file mode 100644 index 00000000..c8c771c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000016_91020db4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000017_ebf796d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000017_ebf796d6.szar new file mode 100644 index 00000000..9816344b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000017_ebf796d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000018_3eb5a728.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000018_3eb5a728.szar new file mode 100644 index 00000000..fd63fdf3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000018_3eb5a728.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000019_1e33dee5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000019_1e33dee5.szar new file mode 100644 index 00000000..d009110e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000019_1e33dee5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000020_594ebdce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000020_594ebdce.szar new file mode 100644 index 00000000..e6233a69 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000020_594ebdce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000021_954126cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000021_954126cd.szar new file mode 100644 index 00000000..5e44ee24 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000021_954126cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000022_dc57f4af.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000022_dc57f4af.szar new file mode 100644 index 00000000..57491586 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000022_dc57f4af.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000023_e8602445.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000023_e8602445.szar new file mode 100644 index 00000000..405b8ee4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000023_e8602445.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000024_9afeeef2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000024_9afeeef2.szar new file mode 100644 index 00000000..f11c79aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000024_9afeeef2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000025_c3893f52.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000025_c3893f52.szar new file mode 100644 index 00000000..46f42404 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000025_c3893f52.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000026_2b8b43d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000026_2b8b43d6.szar new file mode 100644 index 00000000..2d529291 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000026_2b8b43d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000027_f54f71ed.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000027_f54f71ed.szar new file mode 100644 index 00000000..6b041bea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000027_f54f71ed.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000028_2fa7577b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000028_2fa7577b.szar new file mode 100644 index 00000000..53284f18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000028_2fa7577b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000029_a73aa2a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000029_a73aa2a0.szar new file mode 100644 index 00000000..63d9db8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000029_a73aa2a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000030_3b231066.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000030_3b231066.szar new file mode 100644 index 00000000..a313cb4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/archive/delta_00000000000000000030_3b231066.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000001_8e92dca9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000001_8e92dca9.szcp new file mode 100644 index 00000000..5429977f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000001_8e92dca9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000002_b9ab370d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000002_b9ab370d.szcp new file mode 100644 index 00000000..cec77b04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000002_b9ab370d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000003_1d971a40.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000003_1d971a40.szcp new file mode 100644 index 00000000..20527155 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000003_1d971a40.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000004_da8a4cd3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000004_da8a4cd3.szcp new file mode 100644 index 00000000..ba95809a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000004_da8a4cd3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000005_866213b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000005_866213b8.szcp new file mode 100644 index 00000000..2e7d28fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000005_866213b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000006_37de9a45.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000006_37de9a45.szcp new file mode 100644 index 00000000..7ddf39f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000006_37de9a45.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000007_a82ce177.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000007_a82ce177.szcp new file mode 100644 index 00000000..c685f00b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000007_a82ce177.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000008_9f097c5f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000008_9f097c5f.szcp new file mode 100644 index 00000000..70465202 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000008_9f097c5f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000009_38a67f86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000009_38a67f86.szcp new file mode 100644 index 00000000..715d8f52 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000009_38a67f86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000010_7ab50621.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000010_7ab50621.szcp new file mode 100644 index 00000000..bf1eb512 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000010_7ab50621.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000011_40c43faf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000011_40c43faf.szcp new file mode 100644 index 00000000..3ede1400 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000011_40c43faf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000012_fc9c52cd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000012_fc9c52cd.szcp new file mode 100644 index 00000000..42c7a37e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000012_fc9c52cd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000013_6a4ca6d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000013_6a4ca6d0.szcp new file mode 100644 index 00000000..dc72e9e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000013_6a4ca6d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000014_39842183.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000014_39842183.szcp new file mode 100644 index 00000000..4e920f3e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000014_39842183.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000015_f2394cbe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000015_f2394cbe.szcp new file mode 100644 index 00000000..b8620c4b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000015_f2394cbe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000016_d746d6a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000016_d746d6a0.szcp new file mode 100644 index 00000000..8216188e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000016_d746d6a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000017_57334dc0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000017_57334dc0.szcp new file mode 100644 index 00000000..ac0ce67d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000017_57334dc0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000018_41cfd102.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000018_41cfd102.szcp new file mode 100644 index 00000000..36685b58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000018_41cfd102.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000019_d25f6628.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000019_d25f6628.szcp new file mode 100644 index 00000000..8bbb7632 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000019_d25f6628.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000020_29ad7c9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000020_29ad7c9f.szcp new file mode 100644 index 00000000..21eaeb9e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000020_29ad7c9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000021_d59e3480.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000021_d59e3480.szcp new file mode 100644 index 00000000..50adc5d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000021_d59e3480.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000022_26346f39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000022_26346f39.szcp new file mode 100644 index 00000000..57d22fb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000022_26346f39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000023_f51d8c32.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000023_f51d8c32.szcp new file mode 100644 index 00000000..c42456e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000023_f51d8c32.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000024_6a58833a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000024_6a58833a.szcp new file mode 100644 index 00000000..980f707c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000024_6a58833a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000025_6a4aef8d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000025_6a4aef8d.szcp new file mode 100644 index 00000000..69720b19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000025_6a4aef8d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000026_204e22fa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000026_204e22fa.szcp new file mode 100644 index 00000000..10a7fb71 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000026_204e22fa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000027_9441554e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000027_9441554e.szcp new file mode 100644 index 00000000..ffb1e877 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000027_9441554e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000028_9561855c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000028_9561855c.szcp new file mode 100644 index 00000000..106f4251 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000028_9561855c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000029_96720327.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000029_96720327.szcp new file mode 100644 index 00000000..33536f5b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000029_96720327.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000030_6b05b5ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000030_6b05b5ef.szcp new file mode 100644 index 00000000..7200c7fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_003/checkpoints/checkpoint_00000000000000000030_6b05b5ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000001_f628626c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000001_f628626c.szar new file mode 100644 index 00000000..9cce0dd7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000001_f628626c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000002_967f1978.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000002_967f1978.szar new file mode 100644 index 00000000..1ccbe1bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000002_967f1978.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000003_e146b0a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000003_e146b0a3.szar new file mode 100644 index 00000000..143a8895 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000003_e146b0a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000004_4628b123.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000004_4628b123.szar new file mode 100644 index 00000000..750a31f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000004_4628b123.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000005_40d5b69b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000005_40d5b69b.szar new file mode 100644 index 00000000..1d9203bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000005_40d5b69b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000006_b5e46e2b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000006_b5e46e2b.szar new file mode 100644 index 00000000..92fd136d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000006_b5e46e2b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000007_130e6b79.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000007_130e6b79.szar new file mode 100644 index 00000000..9c61b8c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000007_130e6b79.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000008_f471e15e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000008_f471e15e.szar new file mode 100644 index 00000000..84a3243b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000008_f471e15e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000009_988ac4a1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000009_988ac4a1.szar new file mode 100644 index 00000000..291c1d0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000009_988ac4a1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000010_eea66eb8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000010_eea66eb8.szar new file mode 100644 index 00000000..b4b01a63 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000010_eea66eb8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000011_a2f97fea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000011_a2f97fea.szar new file mode 100644 index 00000000..6a2bb0f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000011_a2f97fea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000012_78b56ca0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000012_78b56ca0.szar new file mode 100644 index 00000000..b578b833 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000012_78b56ca0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000013_48257035.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000013_48257035.szar new file mode 100644 index 00000000..dc31d1eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000013_48257035.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000014_11a6b831.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000014_11a6b831.szar new file mode 100644 index 00000000..e082b23b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000014_11a6b831.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000015_86f05611.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000015_86f05611.szar new file mode 100644 index 00000000..6e8165d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000015_86f05611.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000016_f9e8d2f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000016_f9e8d2f4.szar new file mode 100644 index 00000000..163d87a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000016_f9e8d2f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000017_dba5099b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000017_dba5099b.szar new file mode 100644 index 00000000..0169642b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000017_dba5099b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000018_9f1a5b74.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000018_9f1a5b74.szar new file mode 100644 index 00000000..71a776c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000018_9f1a5b74.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000019_dd7d331e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000019_dd7d331e.szar new file mode 100644 index 00000000..4530e453 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000019_dd7d331e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000020_b238fd58.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000020_b238fd58.szar new file mode 100644 index 00000000..cfb88df8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000020_b238fd58.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000021_80bbd197.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000021_80bbd197.szar new file mode 100644 index 00000000..429a7ef6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000021_80bbd197.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000022_b0e928c6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000022_b0e928c6.szar new file mode 100644 index 00000000..c08797f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/archive/delta_00000000000000000022_b0e928c6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000001_7196e7c3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000001_7196e7c3.szcp new file mode 100644 index 00000000..04c38da7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000001_7196e7c3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000002_ad8f9f2b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000002_ad8f9f2b.szcp new file mode 100644 index 00000000..2771a0b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000002_ad8f9f2b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000003_c5b20369.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000003_c5b20369.szcp new file mode 100644 index 00000000..2d126104 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000003_c5b20369.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000004_8abb09a9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000004_8abb09a9.szcp new file mode 100644 index 00000000..51dbc87c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000004_8abb09a9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000005_5e22ecda.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000005_5e22ecda.szcp new file mode 100644 index 00000000..151213f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000005_5e22ecda.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000006_3ec55cad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000006_3ec55cad.szcp new file mode 100644 index 00000000..d6e02f88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000006_3ec55cad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000007_f5557d9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000007_f5557d9a.szcp new file mode 100644 index 00000000..35f9c2e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000007_f5557d9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000008_833e658e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000008_833e658e.szcp new file mode 100644 index 00000000..c295d423 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000008_833e658e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000009_c15702a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000009_c15702a6.szcp new file mode 100644 index 00000000..dc1b6ad1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000009_c15702a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000010_5d36bba2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000010_5d36bba2.szcp new file mode 100644 index 00000000..886c397e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000010_5d36bba2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000011_f527cbb8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000011_f527cbb8.szcp new file mode 100644 index 00000000..265da610 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000011_f527cbb8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000012_c67c4d4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000012_c67c4d4d.szcp new file mode 100644 index 00000000..82a511cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000012_c67c4d4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000013_7dc01f96.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000013_7dc01f96.szcp new file mode 100644 index 00000000..1185abfa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000013_7dc01f96.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000014_bcc7a7e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000014_bcc7a7e7.szcp new file mode 100644 index 00000000..1385b896 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000014_bcc7a7e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000015_454be2e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000015_454be2e9.szcp new file mode 100644 index 00000000..bd65dd44 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000015_454be2e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000016_e0552fd2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000016_e0552fd2.szcp new file mode 100644 index 00000000..6881d305 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000016_e0552fd2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000017_b3ad66b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000017_b3ad66b8.szcp new file mode 100644 index 00000000..c3824d0d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000017_b3ad66b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000018_87bba53a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000018_87bba53a.szcp new file mode 100644 index 00000000..b7a1041b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000018_87bba53a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000019_03cc97c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000019_03cc97c6.szcp new file mode 100644 index 00000000..f8837520 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000019_03cc97c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000020_a66e21bf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000020_a66e21bf.szcp new file mode 100644 index 00000000..f6b9e5d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000020_a66e21bf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000021_badbc353.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000021_badbc353.szcp new file mode 100644 index 00000000..5586c742 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000021_badbc353.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000022_678155c3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000022_678155c3.szcp new file mode 100644 index 00000000..5b49c838 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_004/checkpoints/checkpoint_00000000000000000022_678155c3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000001_f99a9598.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000001_f99a9598.szar new file mode 100644 index 00000000..babc7ed9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000001_f99a9598.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000002_cd847852.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000002_cd847852.szar new file mode 100644 index 00000000..6aaae76f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000002_cd847852.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000003_051f438b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000003_051f438b.szar new file mode 100644 index 00000000..0bd02016 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000003_051f438b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000004_94642ed2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000004_94642ed2.szar new file mode 100644 index 00000000..58f69e88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000004_94642ed2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000005_4a5f1c67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000005_4a5f1c67.szar new file mode 100644 index 00000000..74bf858f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000005_4a5f1c67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000006_63629c1c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000006_63629c1c.szar new file mode 100644 index 00000000..551e25b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000006_63629c1c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000007_719db7e5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000007_719db7e5.szar new file mode 100644 index 00000000..3cb91120 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000007_719db7e5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000008_6a913cff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000008_6a913cff.szar new file mode 100644 index 00000000..fd41de69 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000008_6a913cff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000009_a4db54ab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000009_a4db54ab.szar new file mode 100644 index 00000000..7c612f61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000009_a4db54ab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000010_5dba2d3c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000010_5dba2d3c.szar new file mode 100644 index 00000000..018cfb2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000010_5dba2d3c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000011_cd83f8a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000011_cd83f8a0.szar new file mode 100644 index 00000000..7bd0b986 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000011_cd83f8a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000012_2f44bd03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000012_2f44bd03.szar new file mode 100644 index 00000000..163da6d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000012_2f44bd03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000013_e3930b0c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000013_e3930b0c.szar new file mode 100644 index 00000000..ec531218 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000013_e3930b0c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000014_43453ff4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000014_43453ff4.szar new file mode 100644 index 00000000..675daf2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000014_43453ff4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000015_55a46c83.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000015_55a46c83.szar new file mode 100644 index 00000000..1cab9e08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000015_55a46c83.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000016_307e429d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000016_307e429d.szar new file mode 100644 index 00000000..cbf0b58c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000016_307e429d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000017_8ed793d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000017_8ed793d8.szar new file mode 100644 index 00000000..f4131862 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000017_8ed793d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000018_a601d931.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000018_a601d931.szar new file mode 100644 index 00000000..6bf091ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000018_a601d931.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000019_8ca8a40d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000019_8ca8a40d.szar new file mode 100644 index 00000000..3434fa64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000019_8ca8a40d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000020_e8dda5c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000020_e8dda5c4.szar new file mode 100644 index 00000000..1ae5f034 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000020_e8dda5c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000021_5bcac976.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000021_5bcac976.szar new file mode 100644 index 00000000..f33b8330 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000021_5bcac976.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000022_c8ada48a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000022_c8ada48a.szar new file mode 100644 index 00000000..64029ee8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000022_c8ada48a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000023_139e4897.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000023_139e4897.szar new file mode 100644 index 00000000..83af33ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000023_139e4897.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000024_eaa49f1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000024_eaa49f1b.szar new file mode 100644 index 00000000..6d98d98e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000024_eaa49f1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000025_43b742a9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000025_43b742a9.szar new file mode 100644 index 00000000..e33fc57d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000025_43b742a9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000026_75e87aa6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000026_75e87aa6.szar new file mode 100644 index 00000000..0df2d5f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000026_75e87aa6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000027_2ffde4a8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000027_2ffde4a8.szar new file mode 100644 index 00000000..1cf4e811 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000027_2ffde4a8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000028_6ffc2367.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000028_6ffc2367.szar new file mode 100644 index 00000000..853cc381 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/archive/delta_00000000000000000028_6ffc2367.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000001_1ac3da6b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000001_1ac3da6b.szcp new file mode 100644 index 00000000..b385b779 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000001_1ac3da6b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000002_48ab4ba6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000002_48ab4ba6.szcp new file mode 100644 index 00000000..e10c6f51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000002_48ab4ba6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000003_0a332812.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000003_0a332812.szcp new file mode 100644 index 00000000..d592d4e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000003_0a332812.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000004_182c30d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000004_182c30d6.szcp new file mode 100644 index 00000000..3ea690e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000004_182c30d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000005_73bca238.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000005_73bca238.szcp new file mode 100644 index 00000000..13c03949 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000005_73bca238.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000006_a63a2ffc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000006_a63a2ffc.szcp new file mode 100644 index 00000000..cc446dd0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000006_a63a2ffc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000007_556448c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000007_556448c1.szcp new file mode 100644 index 00000000..c673933b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000007_556448c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000008_1e7b10ac.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000008_1e7b10ac.szcp new file mode 100644 index 00000000..ef527b5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000008_1e7b10ac.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000009_0c9c61ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000009_0c9c61ab.szcp new file mode 100644 index 00000000..ade944a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000009_0c9c61ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000010_d6c948a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000010_d6c948a6.szcp new file mode 100644 index 00000000..fc16d740 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000010_d6c948a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000011_52c9d6d8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000011_52c9d6d8.szcp new file mode 100644 index 00000000..c31ba905 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000011_52c9d6d8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000012_9a7e1f54.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000012_9a7e1f54.szcp new file mode 100644 index 00000000..fa3fae92 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000012_9a7e1f54.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000013_7b44465b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000013_7b44465b.szcp new file mode 100644 index 00000000..41df448b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000013_7b44465b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000014_b2cd94f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000014_b2cd94f4.szcp new file mode 100644 index 00000000..c5306129 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000014_b2cd94f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000015_67dccd99.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000015_67dccd99.szcp new file mode 100644 index 00000000..e0f7ecdb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000015_67dccd99.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000016_8cd3416c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000016_8cd3416c.szcp new file mode 100644 index 00000000..748a20b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000016_8cd3416c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000017_b6b939ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000017_b6b939ab.szcp new file mode 100644 index 00000000..855afcbf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000017_b6b939ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000018_67ca3a9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000018_67ca3a9a.szcp new file mode 100644 index 00000000..ea29f075 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000018_67ca3a9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000019_c21ca222.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000019_c21ca222.szcp new file mode 100644 index 00000000..0ba72983 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000019_c21ca222.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000020_2b4eb3ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000020_2b4eb3ee.szcp new file mode 100644 index 00000000..52f2240e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000020_2b4eb3ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000021_08956368.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000021_08956368.szcp new file mode 100644 index 00000000..7099ec62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000021_08956368.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000022_dff782c3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000022_dff782c3.szcp new file mode 100644 index 00000000..ab0e600d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000022_dff782c3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000023_19c9d7ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000023_19c9d7ab.szcp new file mode 100644 index 00000000..8e6d0014 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000023_19c9d7ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000024_ec9ff87e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000024_ec9ff87e.szcp new file mode 100644 index 00000000..be34f856 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000024_ec9ff87e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000025_7185ad57.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000025_7185ad57.szcp new file mode 100644 index 00000000..79bbe475 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000025_7185ad57.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000026_7c37c95d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000026_7c37c95d.szcp new file mode 100644 index 00000000..eee43c34 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000026_7c37c95d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000027_dd5b1bdd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000027_dd5b1bdd.szcp new file mode 100644 index 00000000..1355bc14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000027_dd5b1bdd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000028_c9d0ff1d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000028_c9d0ff1d.szcp new file mode 100644 index 00000000..34477ad2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_005/checkpoints/checkpoint_00000000000000000028_c9d0ff1d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000001_38ea2cd6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000001_38ea2cd6.szar new file mode 100644 index 00000000..359c96ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000001_38ea2cd6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000002_375ed376.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000002_375ed376.szar new file mode 100644 index 00000000..7015a0df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000002_375ed376.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000003_5d78655f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000003_5d78655f.szar new file mode 100644 index 00000000..960c04fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000003_5d78655f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000004_a229776e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000004_a229776e.szar new file mode 100644 index 00000000..223dc62b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000004_a229776e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000005_604e1370.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000005_604e1370.szar new file mode 100644 index 00000000..c92af3f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000005_604e1370.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000006_058ee526.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000006_058ee526.szar new file mode 100644 index 00000000..17641829 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000006_058ee526.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000007_986af878.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000007_986af878.szar new file mode 100644 index 00000000..ad72f0a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000007_986af878.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000008_5f0acefe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000008_5f0acefe.szar new file mode 100644 index 00000000..07884996 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000008_5f0acefe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000009_03d53739.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000009_03d53739.szar new file mode 100644 index 00000000..50d473b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000009_03d53739.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000010_567c2a96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000010_567c2a96.szar new file mode 100644 index 00000000..988d8d32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000010_567c2a96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000011_f8ac9d6d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000011_f8ac9d6d.szar new file mode 100644 index 00000000..2f79dac3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000011_f8ac9d6d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000012_e357e006.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000012_e357e006.szar new file mode 100644 index 00000000..78117d21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000012_e357e006.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000013_5c57c374.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000013_5c57c374.szar new file mode 100644 index 00000000..f467890f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000013_5c57c374.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000014_0b50335f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000014_0b50335f.szar new file mode 100644 index 00000000..93e9b250 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000014_0b50335f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000015_887bc522.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000015_887bc522.szar new file mode 100644 index 00000000..f98aa2b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000015_887bc522.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000016_80bb3154.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000016_80bb3154.szar new file mode 100644 index 00000000..0e8d8f8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000016_80bb3154.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000017_5c487e1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000017_5c487e1b.szar new file mode 100644 index 00000000..af261729 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000017_5c487e1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000018_9d78618a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000018_9d78618a.szar new file mode 100644 index 00000000..37f148e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000018_9d78618a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000019_d7529767.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000019_d7529767.szar new file mode 100644 index 00000000..c3efdec7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000019_d7529767.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000020_ff6ecf2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000020_ff6ecf2d.szar new file mode 100644 index 00000000..7fc94f58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000020_ff6ecf2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000021_76e42e3d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000021_76e42e3d.szar new file mode 100644 index 00000000..8f8a9d96 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/archive/delta_00000000000000000021_76e42e3d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000001_b21767ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000001_b21767ad.szcp new file mode 100644 index 00000000..4348e21f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000001_b21767ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000002_d4c4afb4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000002_d4c4afb4.szcp new file mode 100644 index 00000000..20500ad3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000002_d4c4afb4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000003_028de384.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000003_028de384.szcp new file mode 100644 index 00000000..1bd94160 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000003_028de384.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000004_4cdfdb77.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000004_4cdfdb77.szcp new file mode 100644 index 00000000..4cc22707 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000004_4cdfdb77.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000005_1c0a83e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000005_1c0a83e3.szcp new file mode 100644 index 00000000..2442dfe9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000005_1c0a83e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000006_a38bcdd3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000006_a38bcdd3.szcp new file mode 100644 index 00000000..1dc10550 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000006_a38bcdd3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000007_76cd949e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000007_76cd949e.szcp new file mode 100644 index 00000000..15289e72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000007_76cd949e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000008_147301d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000008_147301d1.szcp new file mode 100644 index 00000000..fa20bf9d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000008_147301d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000009_2a3c0e36.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000009_2a3c0e36.szcp new file mode 100644 index 00000000..5c1fedb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000009_2a3c0e36.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000010_7da3617a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000010_7da3617a.szcp new file mode 100644 index 00000000..84448fe7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000010_7da3617a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000011_13175757.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000011_13175757.szcp new file mode 100644 index 00000000..08779230 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000011_13175757.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000012_af428155.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000012_af428155.szcp new file mode 100644 index 00000000..e2dbf552 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000012_af428155.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000013_34d2c64e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000013_34d2c64e.szcp new file mode 100644 index 00000000..1f8f81ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000013_34d2c64e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000014_8f392cf2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000014_8f392cf2.szcp new file mode 100644 index 00000000..29b0645e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000014_8f392cf2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000015_1f3e90b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000015_1f3e90b0.szcp new file mode 100644 index 00000000..80d450ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000015_1f3e90b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000016_78ac645b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000016_78ac645b.szcp new file mode 100644 index 00000000..887ec46a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000016_78ac645b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000017_ae42d60e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000017_ae42d60e.szcp new file mode 100644 index 00000000..19425637 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000017_ae42d60e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000018_c8ba471a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000018_c8ba471a.szcp new file mode 100644 index 00000000..1930ba63 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000018_c8ba471a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000019_8bd7b7b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000019_8bd7b7b3.szcp new file mode 100644 index 00000000..2303cfc3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000019_8bd7b7b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000020_72151f15.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000020_72151f15.szcp new file mode 100644 index 00000000..75bef3d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000020_72151f15.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000021_f9520a50.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000021_f9520a50.szcp new file mode 100644 index 00000000..2fb4a698 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_006/checkpoints/checkpoint_00000000000000000021_f9520a50.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000001_f6ecf717.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000001_f6ecf717.szar new file mode 100644 index 00000000..1fa92ae8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000001_f6ecf717.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000002_703a0c7f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000002_703a0c7f.szar new file mode 100644 index 00000000..0ccdd47f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000002_703a0c7f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000003_35b84916.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000003_35b84916.szar new file mode 100644 index 00000000..68def7f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000003_35b84916.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000004_8c354cf4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000004_8c354cf4.szar new file mode 100644 index 00000000..c98f0540 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000004_8c354cf4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000005_3979a54e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000005_3979a54e.szar new file mode 100644 index 00000000..5c25582e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000005_3979a54e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000006_731527c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000006_731527c4.szar new file mode 100644 index 00000000..b69ed7d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000006_731527c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000007_7e1251dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000007_7e1251dd.szar new file mode 100644 index 00000000..e803ab04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000007_7e1251dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000008_04037f60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000008_04037f60.szar new file mode 100644 index 00000000..f0b5ae49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000008_04037f60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000009_898c01a9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000009_898c01a9.szar new file mode 100644 index 00000000..96efe6e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000009_898c01a9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000010_fe4f1ef9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000010_fe4f1ef9.szar new file mode 100644 index 00000000..e8671f5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000010_fe4f1ef9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000011_0ce3eb27.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000011_0ce3eb27.szar new file mode 100644 index 00000000..cc0db151 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000011_0ce3eb27.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000012_1662889d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000012_1662889d.szar new file mode 100644 index 00000000..0b93390f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000012_1662889d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000013_934a5c9d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000013_934a5c9d.szar new file mode 100644 index 00000000..661b6404 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000013_934a5c9d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000014_7dbde927.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000014_7dbde927.szar new file mode 100644 index 00000000..48598438 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000014_7dbde927.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000015_745578e2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000015_745578e2.szar new file mode 100644 index 00000000..2a5f9eee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000015_745578e2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000016_8257f173.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000016_8257f173.szar new file mode 100644 index 00000000..28792bfc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000016_8257f173.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000017_9c92083e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000017_9c92083e.szar new file mode 100644 index 00000000..2867c76a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000017_9c92083e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000018_b36c3be4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000018_b36c3be4.szar new file mode 100644 index 00000000..c483913b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000018_b36c3be4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000019_978e3d15.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000019_978e3d15.szar new file mode 100644 index 00000000..a3bc85b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000019_978e3d15.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000020_6cb1826d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000020_6cb1826d.szar new file mode 100644 index 00000000..07fc9492 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000020_6cb1826d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000021_6894bcc1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000021_6894bcc1.szar new file mode 100644 index 00000000..b8b490cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000021_6894bcc1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000022_38f60cbf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000022_38f60cbf.szar new file mode 100644 index 00000000..cafe2ea9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000022_38f60cbf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000023_c5a02809.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000023_c5a02809.szar new file mode 100644 index 00000000..9cdc0b12 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000023_c5a02809.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000024_a686b29d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000024_a686b29d.szar new file mode 100644 index 00000000..f5a32035 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000024_a686b29d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000025_a1512528.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000025_a1512528.szar new file mode 100644 index 00000000..5959360a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000025_a1512528.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000026_497b6c24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000026_497b6c24.szar new file mode 100644 index 00000000..70ac4db6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000026_497b6c24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000027_4e4e2d2c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000027_4e4e2d2c.szar new file mode 100644 index 00000000..bae527d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000027_4e4e2d2c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000028_60ec173f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000028_60ec173f.szar new file mode 100644 index 00000000..db171e2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/archive/delta_00000000000000000028_60ec173f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000001_f29e34a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000001_f29e34a3.szcp new file mode 100644 index 00000000..d52b9a4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000001_f29e34a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000002_f7a0a609.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000002_f7a0a609.szcp new file mode 100644 index 00000000..b072d2d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000002_f7a0a609.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000003_6e395e99.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000003_6e395e99.szcp new file mode 100644 index 00000000..d588a91b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000003_6e395e99.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000004_cd64b591.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000004_cd64b591.szcp new file mode 100644 index 00000000..8eeeb80f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000004_cd64b591.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000005_470ac5ea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000005_470ac5ea.szcp new file mode 100644 index 00000000..3ff59ddb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000005_470ac5ea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000006_dbab6d3c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000006_dbab6d3c.szcp new file mode 100644 index 00000000..e0bb6d8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000006_dbab6d3c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000007_31adb035.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000007_31adb035.szcp new file mode 100644 index 00000000..091abca5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000007_31adb035.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000008_db5d2ac9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000008_db5d2ac9.szcp new file mode 100644 index 00000000..5156935b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000008_db5d2ac9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000009_5998c21d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000009_5998c21d.szcp new file mode 100644 index 00000000..4869cd44 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000009_5998c21d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000010_11a63793.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000010_11a63793.szcp new file mode 100644 index 00000000..6a465fc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000010_11a63793.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000011_0db3314c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000011_0db3314c.szcp new file mode 100644 index 00000000..5dc44e2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000011_0db3314c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000012_38b8d362.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000012_38b8d362.szcp new file mode 100644 index 00000000..2b1a5843 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000012_38b8d362.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000013_ccdc51ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000013_ccdc51ed.szcp new file mode 100644 index 00000000..b193ad6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000013_ccdc51ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000014_9b61853b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000014_9b61853b.szcp new file mode 100644 index 00000000..ee798e88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000014_9b61853b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000015_57852727.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000015_57852727.szcp new file mode 100644 index 00000000..29383293 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000015_57852727.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000016_182cc580.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000016_182cc580.szcp new file mode 100644 index 00000000..1739d33c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000016_182cc580.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000017_1cfd2380.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000017_1cfd2380.szcp new file mode 100644 index 00000000..006c7902 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000017_1cfd2380.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000018_015bc9af.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000018_015bc9af.szcp new file mode 100644 index 00000000..6a2f7682 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000018_015bc9af.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000019_8be1db13.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000019_8be1db13.szcp new file mode 100644 index 00000000..6b6822ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000019_8be1db13.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000020_e77b4484.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000020_e77b4484.szcp new file mode 100644 index 00000000..4600ddb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000020_e77b4484.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000021_9caa05da.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000021_9caa05da.szcp new file mode 100644 index 00000000..0af033c2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000021_9caa05da.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000022_0cec4c0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000022_0cec4c0d.szcp new file mode 100644 index 00000000..cb1a72cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000022_0cec4c0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000023_40e51ee1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000023_40e51ee1.szcp new file mode 100644 index 00000000..ef25b1d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000023_40e51ee1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000024_e38bde20.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000024_e38bde20.szcp new file mode 100644 index 00000000..0eb64078 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000024_e38bde20.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000025_66c7ce3a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000025_66c7ce3a.szcp new file mode 100644 index 00000000..383db360 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000025_66c7ce3a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000026_36955f5f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000026_36955f5f.szcp new file mode 100644 index 00000000..4d875aa5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000026_36955f5f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000027_29c24907.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000027_29c24907.szcp new file mode 100644 index 00000000..d91cb5b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000027_29c24907.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000028_110b3e84.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000028_110b3e84.szcp new file mode 100644 index 00000000..804c9eb4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_007/checkpoints/checkpoint_00000000000000000028_110b3e84.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000001_b404966f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000001_b404966f.szar new file mode 100644 index 00000000..ec651f25 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000001_b404966f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000002_be23d895.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000002_be23d895.szar new file mode 100644 index 00000000..46397c9e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000002_be23d895.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000003_34c1ea46.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000003_34c1ea46.szar new file mode 100644 index 00000000..757b7ad0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000003_34c1ea46.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000004_583545d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000004_583545d6.szar new file mode 100644 index 00000000..3118b65d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000004_583545d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000005_823c2c41.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000005_823c2c41.szar new file mode 100644 index 00000000..4a8e0a35 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000005_823c2c41.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000006_4cb1c438.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000006_4cb1c438.szar new file mode 100644 index 00000000..6a8f1082 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000006_4cb1c438.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000007_56b42c57.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000007_56b42c57.szar new file mode 100644 index 00000000..34d6bf6c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000007_56b42c57.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000008_13dafe48.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000008_13dafe48.szar new file mode 100644 index 00000000..84a79486 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000008_13dafe48.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000009_ae3196b3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000009_ae3196b3.szar new file mode 100644 index 00000000..eb1ac391 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000009_ae3196b3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000010_9e15f185.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000010_9e15f185.szar new file mode 100644 index 00000000..92f5bde4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000010_9e15f185.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000011_842c5029.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000011_842c5029.szar new file mode 100644 index 00000000..419df211 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000011_842c5029.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000012_5a725d42.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000012_5a725d42.szar new file mode 100644 index 00000000..9837d5c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000012_5a725d42.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000013_c9001085.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000013_c9001085.szar new file mode 100644 index 00000000..9b1a8a1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000013_c9001085.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000014_b69b2f41.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000014_b69b2f41.szar new file mode 100644 index 00000000..2d4af612 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000014_b69b2f41.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000015_996fa252.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000015_996fa252.szar new file mode 100644 index 00000000..609ec886 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000015_996fa252.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000016_d7c95c53.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000016_d7c95c53.szar new file mode 100644 index 00000000..c7225be6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000016_d7c95c53.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000017_3bac6a7d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000017_3bac6a7d.szar new file mode 100644 index 00000000..e40bec56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000017_3bac6a7d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000018_a19d4e6e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000018_a19d4e6e.szar new file mode 100644 index 00000000..538ec450 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000018_a19d4e6e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000019_20f1c474.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000019_20f1c474.szar new file mode 100644 index 00000000..06d91331 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000019_20f1c474.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000020_48ffd4e9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000020_48ffd4e9.szar new file mode 100644 index 00000000..f7b6edfc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000020_48ffd4e9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000021_6804e01d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000021_6804e01d.szar new file mode 100644 index 00000000..4978fda0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000021_6804e01d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000022_7c7d789b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000022_7c7d789b.szar new file mode 100644 index 00000000..11a0671d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000022_7c7d789b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000023_ad9fbf53.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000023_ad9fbf53.szar new file mode 100644 index 00000000..e5586f0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000023_ad9fbf53.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000024_490c6b98.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000024_490c6b98.szar new file mode 100644 index 00000000..067759bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000024_490c6b98.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000025_c2667c5f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000025_c2667c5f.szar new file mode 100644 index 00000000..bd3b8f6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000025_c2667c5f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000026_9db401ab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000026_9db401ab.szar new file mode 100644 index 00000000..861f08e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000026_9db401ab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000027_df6abde5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000027_df6abde5.szar new file mode 100644 index 00000000..5de7690e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000027_df6abde5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000028_367d8bbc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000028_367d8bbc.szar new file mode 100644 index 00000000..1e280205 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000028_367d8bbc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000029_2f1bcde0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000029_2f1bcde0.szar new file mode 100644 index 00000000..169b9c0f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000029_2f1bcde0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000030_ef5e5182.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000030_ef5e5182.szar new file mode 100644 index 00000000..2405b23a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000030_ef5e5182.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000031_26a0145a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000031_26a0145a.szar new file mode 100644 index 00000000..bd209a05 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000031_26a0145a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000032_b393be35.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000032_b393be35.szar new file mode 100644 index 00000000..7a5c99aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000032_b393be35.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000033_85aa813c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000033_85aa813c.szar new file mode 100644 index 00000000..ac4ab2a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000033_85aa813c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000034_d416fc4c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000034_d416fc4c.szar new file mode 100644 index 00000000..7f30bf5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000034_d416fc4c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000035_26f8c4c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000035_26f8c4c1.szar new file mode 100644 index 00000000..70343471 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000035_26f8c4c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000036_552d99ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000036_552d99ae.szar new file mode 100644 index 00000000..30ddcd77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000036_552d99ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000037_b7d93349.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000037_b7d93349.szar new file mode 100644 index 00000000..d59e736e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000037_b7d93349.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000038_bf23d362.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000038_bf23d362.szar new file mode 100644 index 00000000..db5dc46a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000038_bf23d362.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000039_7d1e3f3b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000039_7d1e3f3b.szar new file mode 100644 index 00000000..1e5e3de3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000039_7d1e3f3b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000040_60fe29f6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000040_60fe29f6.szar new file mode 100644 index 00000000..3bc238a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000040_60fe29f6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000041_be09949f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000041_be09949f.szar new file mode 100644 index 00000000..9f16413c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000041_be09949f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000042_8803e3b1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000042_8803e3b1.szar new file mode 100644 index 00000000..02691f95 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000042_8803e3b1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000043_c5a4598f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000043_c5a4598f.szar new file mode 100644 index 00000000..87d04bd8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000043_c5a4598f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000044_58fed099.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000044_58fed099.szar new file mode 100644 index 00000000..422fe05f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/archive/delta_00000000000000000044_58fed099.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000001_7e7e4971.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000001_7e7e4971.szcp new file mode 100644 index 00000000..5aec150a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000001_7e7e4971.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000002_6843d8df.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000002_6843d8df.szcp new file mode 100644 index 00000000..34a6a367 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000002_6843d8df.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000003_2db2ae7a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000003_2db2ae7a.szcp new file mode 100644 index 00000000..b59a6b18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000003_2db2ae7a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000004_fadc56b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000004_fadc56b8.szcp new file mode 100644 index 00000000..292137b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000004_fadc56b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000005_690ea426.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000005_690ea426.szcp new file mode 100644 index 00000000..15506137 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000005_690ea426.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000006_99046ca2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000006_99046ca2.szcp new file mode 100644 index 00000000..3412a64b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000006_99046ca2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000007_33566809.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000007_33566809.szcp new file mode 100644 index 00000000..182acd9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000007_33566809.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000008_d5d7b34e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000008_d5d7b34e.szcp new file mode 100644 index 00000000..9984734b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000008_d5d7b34e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000009_08b5515e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000009_08b5515e.szcp new file mode 100644 index 00000000..c5df8d24 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000009_08b5515e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000010_07c264d9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000010_07c264d9.szcp new file mode 100644 index 00000000..42eda25b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000010_07c264d9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000011_2e249a93.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000011_2e249a93.szcp new file mode 100644 index 00000000..f32e8d21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000011_2e249a93.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000012_cd74d0d8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000012_cd74d0d8.szcp new file mode 100644 index 00000000..9375db5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000012_cd74d0d8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000013_7fe8c8b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000013_7fe8c8b3.szcp new file mode 100644 index 00000000..1cf2a95c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000013_7fe8c8b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000014_4e9d9ced.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000014_4e9d9ced.szcp new file mode 100644 index 00000000..10438f9f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000014_4e9d9ced.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000015_a3f427fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000015_a3f427fc.szcp new file mode 100644 index 00000000..d5f95e0d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000015_a3f427fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000016_15df2881.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000016_15df2881.szcp new file mode 100644 index 00000000..f04e00ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000016_15df2881.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000017_b00baa24.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000017_b00baa24.szcp new file mode 100644 index 00000000..8c84eaf7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000017_b00baa24.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000018_464e8cb1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000018_464e8cb1.szcp new file mode 100644 index 00000000..394eb9ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000018_464e8cb1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000019_f6c02c54.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000019_f6c02c54.szcp new file mode 100644 index 00000000..e26d1785 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000019_f6c02c54.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000020_ba023bd8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000020_ba023bd8.szcp new file mode 100644 index 00000000..9a1092e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000020_ba023bd8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000021_a9ac60c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000021_a9ac60c8.szcp new file mode 100644 index 00000000..dea17c6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000021_a9ac60c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000022_9a76ad80.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000022_9a76ad80.szcp new file mode 100644 index 00000000..f3f9d368 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000022_9a76ad80.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000023_7b3b2068.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000023_7b3b2068.szcp new file mode 100644 index 00000000..9bef9dcf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000023_7b3b2068.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000024_1df478db.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000024_1df478db.szcp new file mode 100644 index 00000000..8de3f9b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000024_1df478db.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000025_9ae92260.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000025_9ae92260.szcp new file mode 100644 index 00000000..22705876 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000025_9ae92260.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000026_47ca19fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000026_47ca19fc.szcp new file mode 100644 index 00000000..c49581ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000026_47ca19fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000027_edd3cdfe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000027_edd3cdfe.szcp new file mode 100644 index 00000000..0ec3eb00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000027_edd3cdfe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000028_6f02bc83.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000028_6f02bc83.szcp new file mode 100644 index 00000000..83ddf717 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000028_6f02bc83.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000029_44de744a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000029_44de744a.szcp new file mode 100644 index 00000000..5a7d7f08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000029_44de744a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000030_0df6ae1f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000030_0df6ae1f.szcp new file mode 100644 index 00000000..f82db62b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000030_0df6ae1f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000031_fd0b650f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000031_fd0b650f.szcp new file mode 100644 index 00000000..ffbacaec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000031_fd0b650f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000032_faafbfed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000032_faafbfed.szcp new file mode 100644 index 00000000..c34b275b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000032_faafbfed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000033_f1cb0ed2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000033_f1cb0ed2.szcp new file mode 100644 index 00000000..d894952f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000033_f1cb0ed2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000034_073371bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000034_073371bd.szcp new file mode 100644 index 00000000..83f677f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000034_073371bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000035_716f0b52.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000035_716f0b52.szcp new file mode 100644 index 00000000..7476841d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000035_716f0b52.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000036_7283ade6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000036_7283ade6.szcp new file mode 100644 index 00000000..1c63d371 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000036_7283ade6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000037_fea626c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000037_fea626c8.szcp new file mode 100644 index 00000000..5891a9e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000037_fea626c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000038_4e289fe8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000038_4e289fe8.szcp new file mode 100644 index 00000000..b81f20c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000038_4e289fe8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000039_31cad141.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000039_31cad141.szcp new file mode 100644 index 00000000..595c0985 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000039_31cad141.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000040_43a1ada6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000040_43a1ada6.szcp new file mode 100644 index 00000000..46eeb25d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000040_43a1ada6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000041_517345e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000041_517345e9.szcp new file mode 100644 index 00000000..0db37fd1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000041_517345e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000042_7088e86f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000042_7088e86f.szcp new file mode 100644 index 00000000..af5f5045 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000042_7088e86f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000043_5b4708bc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000043_5b4708bc.szcp new file mode 100644 index 00000000..a99b9f83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000043_5b4708bc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000044_97ae25f2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000044_97ae25f2.szcp new file mode 100644 index 00000000..9b794ef3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_008/checkpoints/checkpoint_00000000000000000044_97ae25f2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000001_c3ae9116.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000001_c3ae9116.szar new file mode 100644 index 00000000..3f3e877a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000001_c3ae9116.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000002_7821e79e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000002_7821e79e.szar new file mode 100644 index 00000000..c4b4ad4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000002_7821e79e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000003_58281d02.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000003_58281d02.szar new file mode 100644 index 00000000..a3fe6c5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000003_58281d02.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000004_29e8de24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000004_29e8de24.szar new file mode 100644 index 00000000..8fd41e99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000004_29e8de24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000005_cdb2e75e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000005_cdb2e75e.szar new file mode 100644 index 00000000..24e59bc6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000005_cdb2e75e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000006_1a6b3d36.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000006_1a6b3d36.szar new file mode 100644 index 00000000..4dcfa6c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000006_1a6b3d36.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000007_3c1988c9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000007_3c1988c9.szar new file mode 100644 index 00000000..908f8556 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000007_3c1988c9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000008_486fe761.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000008_486fe761.szar new file mode 100644 index 00000000..bde9fb9a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000008_486fe761.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000009_67563dfd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000009_67563dfd.szar new file mode 100644 index 00000000..fbccd74c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000009_67563dfd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000010_a391d3f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000010_a391d3f4.szar new file mode 100644 index 00000000..27a21cb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000010_a391d3f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000011_a64116a9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000011_a64116a9.szar new file mode 100644 index 00000000..785a5f6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000011_a64116a9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000012_c364a31f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000012_c364a31f.szar new file mode 100644 index 00000000..492beee4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000012_c364a31f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000013_f063b962.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000013_f063b962.szar new file mode 100644 index 00000000..798f6ba8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000013_f063b962.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000014_a84375b9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000014_a84375b9.szar new file mode 100644 index 00000000..35c3ce44 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000014_a84375b9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000015_ec18f116.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000015_ec18f116.szar new file mode 100644 index 00000000..4151e0e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000015_ec18f116.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000016_54ab9d9f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000016_54ab9d9f.szar new file mode 100644 index 00000000..94da538a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000016_54ab9d9f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000017_90d8b35e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000017_90d8b35e.szar new file mode 100644 index 00000000..50792483 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000017_90d8b35e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000018_ac80a8b8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000018_ac80a8b8.szar new file mode 100644 index 00000000..d264ed57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000018_ac80a8b8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000019_173befe2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000019_173befe2.szar new file mode 100644 index 00000000..3ffdf65f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000019_173befe2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000020_c9d78c13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000020_c9d78c13.szar new file mode 100644 index 00000000..5bde2f91 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000020_c9d78c13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000021_2dc08830.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000021_2dc08830.szar new file mode 100644 index 00000000..0095f781 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000021_2dc08830.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000022_6a4a4846.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000022_6a4a4846.szar new file mode 100644 index 00000000..e94c2fea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000022_6a4a4846.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000023_e6b7c25b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000023_e6b7c25b.szar new file mode 100644 index 00000000..0a6f5c01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000023_e6b7c25b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000024_299dd42c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000024_299dd42c.szar new file mode 100644 index 00000000..734fd3ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000024_299dd42c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000025_dd229d28.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000025_dd229d28.szar new file mode 100644 index 00000000..e58ae2f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000025_dd229d28.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000026_0788238d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000026_0788238d.szar new file mode 100644 index 00000000..6156ef19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000026_0788238d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000027_eb24325d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000027_eb24325d.szar new file mode 100644 index 00000000..c7f0b3e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000027_eb24325d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000028_273e3a14.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000028_273e3a14.szar new file mode 100644 index 00000000..c55b6886 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000028_273e3a14.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000029_3ed3c26d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000029_3ed3c26d.szar new file mode 100644 index 00000000..40eb51a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000029_3ed3c26d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000030_b2963133.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000030_b2963133.szar new file mode 100644 index 00000000..0fdd10a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000030_b2963133.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000031_bae66f0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000031_bae66f0a.szar new file mode 100644 index 00000000..ff159a4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000031_bae66f0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000032_2334adce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000032_2334adce.szar new file mode 100644 index 00000000..e3934045 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000032_2334adce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000033_67d74919.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000033_67d74919.szar new file mode 100644 index 00000000..57d12d72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000033_67d74919.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000034_3dfd8fa1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000034_3dfd8fa1.szar new file mode 100644 index 00000000..011bf895 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000034_3dfd8fa1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000035_d3b97ee9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000035_d3b97ee9.szar new file mode 100644 index 00000000..2b4bf007 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000035_d3b97ee9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000036_b9f8e2df.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000036_b9f8e2df.szar new file mode 100644 index 00000000..9e9ca168 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000036_b9f8e2df.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000037_38c84f84.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000037_38c84f84.szar new file mode 100644 index 00000000..9e4bae7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000037_38c84f84.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000038_23499188.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000038_23499188.szar new file mode 100644 index 00000000..802eea26 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000038_23499188.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000039_77048fb8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000039_77048fb8.szar new file mode 100644 index 00000000..bf71f297 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000039_77048fb8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000040_b21794c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000040_b21794c3.szar new file mode 100644 index 00000000..a1f92b5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000040_b21794c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000041_2f91bb0b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000041_2f91bb0b.szar new file mode 100644 index 00000000..fe1af771 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000041_2f91bb0b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000042_559b650c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000042_559b650c.szar new file mode 100644 index 00000000..1bd56624 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000042_559b650c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000043_ec674247.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000043_ec674247.szar new file mode 100644 index 00000000..1dc92d19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000043_ec674247.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000044_4f1a3be7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000044_4f1a3be7.szar new file mode 100644 index 00000000..2af5ad58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/archive/delta_00000000000000000044_4f1a3be7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000001_6ae2dc4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000001_6ae2dc4d.szcp new file mode 100644 index 00000000..8d6a8436 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000001_6ae2dc4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000002_9a58ba4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000002_9a58ba4d.szcp new file mode 100644 index 00000000..799f6494 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000002_9a58ba4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000003_89706b37.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000003_89706b37.szcp new file mode 100644 index 00000000..64c54dfc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000003_89706b37.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000004_46da8d96.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000004_46da8d96.szcp new file mode 100644 index 00000000..a6edcc37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000004_46da8d96.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000005_c854a905.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000005_c854a905.szcp new file mode 100644 index 00000000..ff58dcf9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000005_c854a905.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000006_0135bf52.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000006_0135bf52.szcp new file mode 100644 index 00000000..ec68bd3a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000006_0135bf52.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000007_63a3b850.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000007_63a3b850.szcp new file mode 100644 index 00000000..4ef9f971 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000007_63a3b850.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000008_4ad9d71a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000008_4ad9d71a.szcp new file mode 100644 index 00000000..79ee0fab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000008_4ad9d71a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000009_9ff5c2ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000009_9ff5c2ba.szcp new file mode 100644 index 00000000..9d78a38c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000009_9ff5c2ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000010_f5e04a9e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000010_f5e04a9e.szcp new file mode 100644 index 00000000..25156810 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000010_f5e04a9e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000011_b1dbb059.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000011_b1dbb059.szcp new file mode 100644 index 00000000..15f6d31d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000011_b1dbb059.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000012_81abb659.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000012_81abb659.szcp new file mode 100644 index 00000000..610b16fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000012_81abb659.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000013_aa303dcd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000013_aa303dcd.szcp new file mode 100644 index 00000000..01796f66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000013_aa303dcd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000014_150998ff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000014_150998ff.szcp new file mode 100644 index 00000000..a8cf7461 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000014_150998ff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000015_29b13d2d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000015_29b13d2d.szcp new file mode 100644 index 00000000..0d7ba164 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000015_29b13d2d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000016_aea9ea28.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000016_aea9ea28.szcp new file mode 100644 index 00000000..6c6b5ce7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000016_aea9ea28.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000017_f1f6742c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000017_f1f6742c.szcp new file mode 100644 index 00000000..6b1974f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000017_f1f6742c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000018_824119d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000018_824119d6.szcp new file mode 100644 index 00000000..ab4f7cb5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000018_824119d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000019_acfb85d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000019_acfb85d1.szcp new file mode 100644 index 00000000..f46d2f00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000019_acfb85d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000020_45791455.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000020_45791455.szcp new file mode 100644 index 00000000..8b2b0a14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000020_45791455.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000021_5efa59ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000021_5efa59ab.szcp new file mode 100644 index 00000000..58dc861b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000021_5efa59ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000022_a094105a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000022_a094105a.szcp new file mode 100644 index 00000000..f3509346 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000022_a094105a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000023_c6e361a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000023_c6e361a6.szcp new file mode 100644 index 00000000..23ad96d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000023_c6e361a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000024_c970251e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000024_c970251e.szcp new file mode 100644 index 00000000..4d450b80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000024_c970251e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000025_522fc882.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000025_522fc882.szcp new file mode 100644 index 00000000..0b2b601b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000025_522fc882.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000026_dc872338.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000026_dc872338.szcp new file mode 100644 index 00000000..61704c38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000026_dc872338.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000027_7cd45cef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000027_7cd45cef.szcp new file mode 100644 index 00000000..dd415387 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000027_7cd45cef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000028_0630301f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000028_0630301f.szcp new file mode 100644 index 00000000..8031a7ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000028_0630301f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000029_6ec72b61.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000029_6ec72b61.szcp new file mode 100644 index 00000000..5c19545f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000029_6ec72b61.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000030_9758162d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000030_9758162d.szcp new file mode 100644 index 00000000..a3194341 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000030_9758162d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000031_1b843340.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000031_1b843340.szcp new file mode 100644 index 00000000..158dd41b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000031_1b843340.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000032_2280eeb8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000032_2280eeb8.szcp new file mode 100644 index 00000000..993654e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000032_2280eeb8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000033_c3b2b86c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000033_c3b2b86c.szcp new file mode 100644 index 00000000..3564037a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000033_c3b2b86c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000034_97d52d4c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000034_97d52d4c.szcp new file mode 100644 index 00000000..7037e2bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000034_97d52d4c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000035_ba7b24aa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000035_ba7b24aa.szcp new file mode 100644 index 00000000..92024d1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000035_ba7b24aa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000036_bfa96446.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000036_bfa96446.szcp new file mode 100644 index 00000000..81d142b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000036_bfa96446.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000037_ddcd809f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000037_ddcd809f.szcp new file mode 100644 index 00000000..227c1852 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000037_ddcd809f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000038_90b53f5c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000038_90b53f5c.szcp new file mode 100644 index 00000000..8a3bb1b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000038_90b53f5c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000039_2ace8e88.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000039_2ace8e88.szcp new file mode 100644 index 00000000..c62b6169 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000039_2ace8e88.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000040_dd8c303d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000040_dd8c303d.szcp new file mode 100644 index 00000000..0f8bd035 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000040_dd8c303d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000041_e6c39a40.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000041_e6c39a40.szcp new file mode 100644 index 00000000..e7d03ba7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000041_e6c39a40.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000042_abbac34c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000042_abbac34c.szcp new file mode 100644 index 00000000..b3c65304 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000042_abbac34c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000043_4971ac70.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000043_4971ac70.szcp new file mode 100644 index 00000000..640c398a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000043_4971ac70.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000044_4ed116e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000044_4ed116e3.szcp new file mode 100644 index 00000000..fc065ffd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_009/checkpoints/checkpoint_00000000000000000044_4ed116e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000001_71811626.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000001_71811626.szar new file mode 100644 index 00000000..c26e8dce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000001_71811626.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000002_b835c428.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000002_b835c428.szar new file mode 100644 index 00000000..7d6157a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000002_b835c428.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000003_1f4b1e26.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000003_1f4b1e26.szar new file mode 100644 index 00000000..37a47d45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000003_1f4b1e26.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000004_f41db475.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000004_f41db475.szar new file mode 100644 index 00000000..cd7a6912 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000004_f41db475.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000005_8e325e2b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000005_8e325e2b.szar new file mode 100644 index 00000000..649aec3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000005_8e325e2b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000006_4d75eb47.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000006_4d75eb47.szar new file mode 100644 index 00000000..3066242d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000006_4d75eb47.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000007_50b84b9f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000007_50b84b9f.szar new file mode 100644 index 00000000..f761aaee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000007_50b84b9f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000008_26d8e138.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000008_26d8e138.szar new file mode 100644 index 00000000..0bc41762 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000008_26d8e138.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000009_3e394776.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000009_3e394776.szar new file mode 100644 index 00000000..5b1d1a3a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000009_3e394776.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000010_4b4507db.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000010_4b4507db.szar new file mode 100644 index 00000000..eb0e0a62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000010_4b4507db.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000011_047a681a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000011_047a681a.szar new file mode 100644 index 00000000..b5a71f84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000011_047a681a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000012_3b20e403.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000012_3b20e403.szar new file mode 100644 index 00000000..73878e4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000012_3b20e403.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000013_0b5bc9a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000013_0b5bc9a6.szar new file mode 100644 index 00000000..2094862e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000013_0b5bc9a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000014_6ff78e3d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000014_6ff78e3d.szar new file mode 100644 index 00000000..b39d2d21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000014_6ff78e3d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000015_f4528eda.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000015_f4528eda.szar new file mode 100644 index 00000000..4a16ee8f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000015_f4528eda.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000016_0e3c42f3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000016_0e3c42f3.szar new file mode 100644 index 00000000..1b2ebe5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000016_0e3c42f3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000017_81f4a9b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000017_81f4a9b0.szar new file mode 100644 index 00000000..24cd5e82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000017_81f4a9b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000018_b8f938c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000018_b8f938c1.szar new file mode 100644 index 00000000..bcf31239 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000018_b8f938c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000019_c53603f7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000019_c53603f7.szar new file mode 100644 index 00000000..05ae2c09 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000019_c53603f7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000020_ebdc0755.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000020_ebdc0755.szar new file mode 100644 index 00000000..c96fadda Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000020_ebdc0755.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000021_866a9d80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000021_866a9d80.szar new file mode 100644 index 00000000..aa07d5c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000021_866a9d80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000022_17c02e17.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000022_17c02e17.szar new file mode 100644 index 00000000..0d6a3e12 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000022_17c02e17.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000023_719237b5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000023_719237b5.szar new file mode 100644 index 00000000..00287fab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000023_719237b5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000024_c8d68137.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000024_c8d68137.szar new file mode 100644 index 00000000..69e149fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000024_c8d68137.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000025_e18d15a8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000025_e18d15a8.szar new file mode 100644 index 00000000..1a1d9eee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000025_e18d15a8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000026_2d052567.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000026_2d052567.szar new file mode 100644 index 00000000..f85fb81d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000026_2d052567.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000027_fb07023e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000027_fb07023e.szar new file mode 100644 index 00000000..d0782a72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000027_fb07023e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000028_c85acaaf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000028_c85acaaf.szar new file mode 100644 index 00000000..5b793548 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000028_c85acaaf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000029_0f167c3f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000029_0f167c3f.szar new file mode 100644 index 00000000..43581fdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/archive/delta_00000000000000000029_0f167c3f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000001_c9e63905.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000001_c9e63905.szcp new file mode 100644 index 00000000..638e42d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000001_c9e63905.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000002_44e1abf9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000002_44e1abf9.szcp new file mode 100644 index 00000000..306234ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000002_44e1abf9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000003_6ef3ba7f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000003_6ef3ba7f.szcp new file mode 100644 index 00000000..65fef1fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000003_6ef3ba7f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000004_5cda377a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000004_5cda377a.szcp new file mode 100644 index 00000000..bfa827fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000004_5cda377a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000005_d9083cf7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000005_d9083cf7.szcp new file mode 100644 index 00000000..0ef36190 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000005_d9083cf7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000006_fec28b44.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000006_fec28b44.szcp new file mode 100644 index 00000000..e5fb3e86 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000006_fec28b44.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000007_0d15fca5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000007_0d15fca5.szcp new file mode 100644 index 00000000..32cae4a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000007_0d15fca5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000008_6625a6cd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000008_6625a6cd.szcp new file mode 100644 index 00000000..99ffc09e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000008_6625a6cd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000009_7f08c8f6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000009_7f08c8f6.szcp new file mode 100644 index 00000000..cfbb79d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000009_7f08c8f6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000010_d70d849a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000010_d70d849a.szcp new file mode 100644 index 00000000..dbab5b8f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000010_d70d849a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000011_dacd2e74.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000011_dacd2e74.szcp new file mode 100644 index 00000000..11193ae6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000011_dacd2e74.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000012_af1e9386.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000012_af1e9386.szcp new file mode 100644 index 00000000..26bcd93b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000012_af1e9386.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000013_ccd79e37.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000013_ccd79e37.szcp new file mode 100644 index 00000000..e8404a17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000013_ccd79e37.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000014_80879c5b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000014_80879c5b.szcp new file mode 100644 index 00000000..2013ddb4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000014_80879c5b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000015_d6fdd09d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000015_d6fdd09d.szcp new file mode 100644 index 00000000..f23598d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000015_d6fdd09d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000016_57452768.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000016_57452768.szcp new file mode 100644 index 00000000..73fbf5a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000016_57452768.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000017_b45b8dac.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000017_b45b8dac.szcp new file mode 100644 index 00000000..0e73280a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000017_b45b8dac.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000018_2b37d0a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000018_2b37d0a3.szcp new file mode 100644 index 00000000..22807340 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000018_2b37d0a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000019_27afcd00.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000019_27afcd00.szcp new file mode 100644 index 00000000..c5b9d249 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000019_27afcd00.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000020_8b831fb0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000020_8b831fb0.szcp new file mode 100644 index 00000000..0e2c045d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000020_8b831fb0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000021_f9941d8d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000021_f9941d8d.szcp new file mode 100644 index 00000000..ae500bdc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000021_f9941d8d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000022_5f11aeda.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000022_5f11aeda.szcp new file mode 100644 index 00000000..4aecc8c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000022_5f11aeda.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000023_ee12890b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000023_ee12890b.szcp new file mode 100644 index 00000000..232bd0f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000023_ee12890b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000024_a8f0176a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000024_a8f0176a.szcp new file mode 100644 index 00000000..108f2f91 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000024_a8f0176a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000025_50f1b5bb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000025_50f1b5bb.szcp new file mode 100644 index 00000000..c6dedb74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000025_50f1b5bb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000026_8e3b106d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000026_8e3b106d.szcp new file mode 100644 index 00000000..bea16495 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000026_8e3b106d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000027_7ff8dfe5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000027_7ff8dfe5.szcp new file mode 100644 index 00000000..de7241f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000027_7ff8dfe5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000028_39733dc3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000028_39733dc3.szcp new file mode 100644 index 00000000..6a9d230b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000028_39733dc3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000029_6ef82374.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000029_6ef82374.szcp new file mode 100644 index 00000000..78bf6e53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_010/checkpoints/checkpoint_00000000000000000029_6ef82374.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000001_900009ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000001_900009ae.szar new file mode 100644 index 00000000..aaf6a353 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000001_900009ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000002_124ec479.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000002_124ec479.szar new file mode 100644 index 00000000..af758598 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000002_124ec479.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000003_560ae53f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000003_560ae53f.szar new file mode 100644 index 00000000..952cd39d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000003_560ae53f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000004_1173018f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000004_1173018f.szar new file mode 100644 index 00000000..8db22a12 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000004_1173018f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000005_d633f8ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000005_d633f8ef.szar new file mode 100644 index 00000000..6e6c316b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000005_d633f8ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000006_966d1807.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000006_966d1807.szar new file mode 100644 index 00000000..e4affeed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000006_966d1807.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000007_a1ac86d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000007_a1ac86d6.szar new file mode 100644 index 00000000..077e55bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000007_a1ac86d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000008_c158ce72.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000008_c158ce72.szar new file mode 100644 index 00000000..77f7d6e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000008_c158ce72.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000009_058fbfeb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000009_058fbfeb.szar new file mode 100644 index 00000000..5f04c465 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000009_058fbfeb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000010_dc1dfff9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000010_dc1dfff9.szar new file mode 100644 index 00000000..23dba0f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000010_dc1dfff9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000011_add40cf9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000011_add40cf9.szar new file mode 100644 index 00000000..1ee40cf4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000011_add40cf9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000012_a0a3ae40.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000012_a0a3ae40.szar new file mode 100644 index 00000000..fee1dee0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000012_a0a3ae40.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000013_4831b41f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000013_4831b41f.szar new file mode 100644 index 00000000..255973e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000013_4831b41f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000014_342a4bca.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000014_342a4bca.szar new file mode 100644 index 00000000..30123bf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000014_342a4bca.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000015_4684e918.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000015_4684e918.szar new file mode 100644 index 00000000..c1511b79 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000015_4684e918.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000016_d6c2107f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000016_d6c2107f.szar new file mode 100644 index 00000000..ee9962cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000016_d6c2107f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000017_15f11fd2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000017_15f11fd2.szar new file mode 100644 index 00000000..56664329 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000017_15f11fd2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000018_87d3d693.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000018_87d3d693.szar new file mode 100644 index 00000000..c4e68981 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000018_87d3d693.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000019_fbd064e7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000019_fbd064e7.szar new file mode 100644 index 00000000..3ab243a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000019_fbd064e7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000020_a0c46bf2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000020_a0c46bf2.szar new file mode 100644 index 00000000..c9f34145 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000020_a0c46bf2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000021_7dd834fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000021_7dd834fc.szar new file mode 100644 index 00000000..b57ece75 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000021_7dd834fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000022_c956303f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000022_c956303f.szar new file mode 100644 index 00000000..86731268 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000022_c956303f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000023_e1bd8bc7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000023_e1bd8bc7.szar new file mode 100644 index 00000000..a4c62ed1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000023_e1bd8bc7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000024_58801a03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000024_58801a03.szar new file mode 100644 index 00000000..668d6f26 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000024_58801a03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000025_c7688ed8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000025_c7688ed8.szar new file mode 100644 index 00000000..335cfbab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000025_c7688ed8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000026_ba084ad4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000026_ba084ad4.szar new file mode 100644 index 00000000..59ca70a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000026_ba084ad4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000027_6bb493af.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000027_6bb493af.szar new file mode 100644 index 00000000..1e9fe3e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000027_6bb493af.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000028_befa876d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000028_befa876d.szar new file mode 100644 index 00000000..782e24c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000028_befa876d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000029_6622a156.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000029_6622a156.szar new file mode 100644 index 00000000..bba71a95 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000029_6622a156.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000030_6742e78a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000030_6742e78a.szar new file mode 100644 index 00000000..c94741a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000030_6742e78a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000031_b6b266e1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000031_b6b266e1.szar new file mode 100644 index 00000000..e0811bea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000031_b6b266e1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000032_f7d2b94f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000032_f7d2b94f.szar new file mode 100644 index 00000000..b21f3ccc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000032_f7d2b94f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000033_30f7eace.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000033_30f7eace.szar new file mode 100644 index 00000000..3c4fc66a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000033_30f7eace.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000034_012e246e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000034_012e246e.szar new file mode 100644 index 00000000..53ffd090 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000034_012e246e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000035_7900e4c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000035_7900e4c1.szar new file mode 100644 index 00000000..204c97e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000035_7900e4c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000036_26b2f5a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000036_26b2f5a6.szar new file mode 100644 index 00000000..99b58a4b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000036_26b2f5a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000037_bff6124f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000037_bff6124f.szar new file mode 100644 index 00000000..9c58504a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000037_bff6124f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000038_8741f5f5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000038_8741f5f5.szar new file mode 100644 index 00000000..ed18cdc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/archive/delta_00000000000000000038_8741f5f5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000001_a0a37440.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000001_a0a37440.szcp new file mode 100644 index 00000000..2da3a799 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000001_a0a37440.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000002_48e82476.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000002_48e82476.szcp new file mode 100644 index 00000000..b0039f3e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000002_48e82476.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000003_d28d270c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000003_d28d270c.szcp new file mode 100644 index 00000000..2b5c3f2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000003_d28d270c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000004_f51c0ea2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000004_f51c0ea2.szcp new file mode 100644 index 00000000..73b5937d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000004_f51c0ea2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000005_2f84727b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000005_2f84727b.szcp new file mode 100644 index 00000000..c63fafe9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000005_2f84727b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000006_f0491fed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000006_f0491fed.szcp new file mode 100644 index 00000000..0bf0db90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000006_f0491fed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000007_fa8284be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000007_fa8284be.szcp new file mode 100644 index 00000000..112aafdb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000007_fa8284be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000008_f919e7de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000008_f919e7de.szcp new file mode 100644 index 00000000..37799a5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000008_f919e7de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000009_009e3575.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000009_009e3575.szcp new file mode 100644 index 00000000..b74632ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000009_009e3575.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000010_ac1818e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000010_ac1818e3.szcp new file mode 100644 index 00000000..2f635766 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000010_ac1818e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000011_ccc93210.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000011_ccc93210.szcp new file mode 100644 index 00000000..1a9a05b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000011_ccc93210.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000012_c7646925.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000012_c7646925.szcp new file mode 100644 index 00000000..329d2701 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000012_c7646925.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000013_f0f7b0e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000013_f0f7b0e8.szcp new file mode 100644 index 00000000..8ef5338c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000013_f0f7b0e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000014_b782d95b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000014_b782d95b.szcp new file mode 100644 index 00000000..e8c5b296 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000014_b782d95b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000015_260d27bb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000015_260d27bb.szcp new file mode 100644 index 00000000..d050b5b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000015_260d27bb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000016_6318e2a5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000016_6318e2a5.szcp new file mode 100644 index 00000000..4cf370a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000016_6318e2a5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000017_7dfc6eda.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000017_7dfc6eda.szcp new file mode 100644 index 00000000..60a8a8a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000017_7dfc6eda.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000018_b832b996.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000018_b832b996.szcp new file mode 100644 index 00000000..376a2d8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000018_b832b996.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000019_8a2f095d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000019_8a2f095d.szcp new file mode 100644 index 00000000..23547cb0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000019_8a2f095d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000020_9a3b8f54.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000020_9a3b8f54.szcp new file mode 100644 index 00000000..e4505cb5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000020_9a3b8f54.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000021_c866ea2c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000021_c866ea2c.szcp new file mode 100644 index 00000000..d742b010 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000021_c866ea2c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000022_2f648eec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000022_2f648eec.szcp new file mode 100644 index 00000000..0a17711f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000022_2f648eec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000023_ccb6636c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000023_ccb6636c.szcp new file mode 100644 index 00000000..a0a911d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000023_ccb6636c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000024_63e64124.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000024_63e64124.szcp new file mode 100644 index 00000000..30b6b040 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000024_63e64124.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000025_6ddec166.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000025_6ddec166.szcp new file mode 100644 index 00000000..95d64e67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000025_6ddec166.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000026_17ff2c10.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000026_17ff2c10.szcp new file mode 100644 index 00000000..2f006256 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000026_17ff2c10.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000027_1ab69a77.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000027_1ab69a77.szcp new file mode 100644 index 00000000..42ad25eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000027_1ab69a77.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000028_71127a88.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000028_71127a88.szcp new file mode 100644 index 00000000..b76b1d3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000028_71127a88.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000029_74e838e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000029_74e838e5.szcp new file mode 100644 index 00000000..b9fa20fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000029_74e838e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000030_deb962fa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000030_deb962fa.szcp new file mode 100644 index 00000000..512be6f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000030_deb962fa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000031_dbdd1401.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000031_dbdd1401.szcp new file mode 100644 index 00000000..09460204 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000031_dbdd1401.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000032_c2f0d07f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000032_c2f0d07f.szcp new file mode 100644 index 00000000..eb94045d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000032_c2f0d07f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000033_66fdf3e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000033_66fdf3e8.szcp new file mode 100644 index 00000000..384a20e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000033_66fdf3e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000034_a95a089e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000034_a95a089e.szcp new file mode 100644 index 00000000..15a166c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000034_a95a089e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000035_e22f85cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000035_e22f85cc.szcp new file mode 100644 index 00000000..cadc22d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000035_e22f85cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000036_241f426d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000036_241f426d.szcp new file mode 100644 index 00000000..0236f42a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000036_241f426d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000037_7ef4655c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000037_7ef4655c.szcp new file mode 100644 index 00000000..367895e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000037_7ef4655c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000038_8de786ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000038_8de786ad.szcp new file mode 100644 index 00000000..eb1cd20c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_011/checkpoints/checkpoint_00000000000000000038_8de786ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000001_1b6ed0a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000001_1b6ed0a3.szar new file mode 100644 index 00000000..d21bdaa0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000001_1b6ed0a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000002_1096c06f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000002_1096c06f.szar new file mode 100644 index 00000000..6ad5fcbc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000002_1096c06f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000003_7d607b09.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000003_7d607b09.szar new file mode 100644 index 00000000..06c94bf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000003_7d607b09.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000004_a9dbc1b3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000004_a9dbc1b3.szar new file mode 100644 index 00000000..5c99d7ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000004_a9dbc1b3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000005_84bf8f1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000005_84bf8f1b.szar new file mode 100644 index 00000000..9044a018 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000005_84bf8f1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000006_27e684a8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000006_27e684a8.szar new file mode 100644 index 00000000..8ad1ccac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000006_27e684a8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000007_96a3ccc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000007_96a3ccc0.szar new file mode 100644 index 00000000..6652ae08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000007_96a3ccc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000008_645dece2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000008_645dece2.szar new file mode 100644 index 00000000..bf0092c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000008_645dece2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000009_fa1b52bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000009_fa1b52bc.szar new file mode 100644 index 00000000..9b739743 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000009_fa1b52bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000010_4fb1ae9d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000010_4fb1ae9d.szar new file mode 100644 index 00000000..b75d5fc2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000010_4fb1ae9d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000011_21a54a78.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000011_21a54a78.szar new file mode 100644 index 00000000..4f44bb47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000011_21a54a78.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000012_2dcd937d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000012_2dcd937d.szar new file mode 100644 index 00000000..d8c05a77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000012_2dcd937d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000013_3dbba6a8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000013_3dbba6a8.szar new file mode 100644 index 00000000..c95152ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000013_3dbba6a8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000014_b1400bb9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000014_b1400bb9.szar new file mode 100644 index 00000000..38a830a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000014_b1400bb9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000015_ec0efd74.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000015_ec0efd74.szar new file mode 100644 index 00000000..fb5d1be8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000015_ec0efd74.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000016_5b241952.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000016_5b241952.szar new file mode 100644 index 00000000..bb01c145 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000016_5b241952.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000017_31af25bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000017_31af25bd.szar new file mode 100644 index 00000000..6690e125 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000017_31af25bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000018_44dcecc2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000018_44dcecc2.szar new file mode 100644 index 00000000..65ae53a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000018_44dcecc2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000019_7837c616.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000019_7837c616.szar new file mode 100644 index 00000000..06b51258 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000019_7837c616.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000020_aae5a304.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000020_aae5a304.szar new file mode 100644 index 00000000..df7ee63d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000020_aae5a304.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000021_028e3dc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000021_028e3dc0.szar new file mode 100644 index 00000000..63ae494e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000021_028e3dc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000022_395cff3c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000022_395cff3c.szar new file mode 100644 index 00000000..7e50359f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000022_395cff3c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000023_ef04a5e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000023_ef04a5e0.szar new file mode 100644 index 00000000..ed828f68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000023_ef04a5e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000024_9ad5b151.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000024_9ad5b151.szar new file mode 100644 index 00000000..837937b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000024_9ad5b151.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000025_98bda3a1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000025_98bda3a1.szar new file mode 100644 index 00000000..f1a1f0ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000025_98bda3a1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000026_7d06b168.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000026_7d06b168.szar new file mode 100644 index 00000000..95ef3b4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000026_7d06b168.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000027_9015f870.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000027_9015f870.szar new file mode 100644 index 00000000..6f425205 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000027_9015f870.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000028_4055b634.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000028_4055b634.szar new file mode 100644 index 00000000..00122d2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000028_4055b634.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000029_5378dc1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000029_5378dc1b.szar new file mode 100644 index 00000000..e83e41f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000029_5378dc1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000030_8c21b828.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000030_8c21b828.szar new file mode 100644 index 00000000..fb4b6b27 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000030_8c21b828.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000031_b0ea45a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000031_b0ea45a3.szar new file mode 100644 index 00000000..6374debc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000031_b0ea45a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000032_7c4b6db8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000032_7c4b6db8.szar new file mode 100644 index 00000000..f7f996d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000032_7c4b6db8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000033_a9c0a051.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000033_a9c0a051.szar new file mode 100644 index 00000000..7d64d4a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000033_a9c0a051.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000034_6d6f7bba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000034_6d6f7bba.szar new file mode 100644 index 00000000..ac47d179 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/archive/delta_00000000000000000034_6d6f7bba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000001_5cfb63e1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000001_5cfb63e1.szcp new file mode 100644 index 00000000..4b53154a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000001_5cfb63e1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000002_b7522c81.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000002_b7522c81.szcp new file mode 100644 index 00000000..e4afe61a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000002_b7522c81.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000003_c196721f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000003_c196721f.szcp new file mode 100644 index 00000000..6f030c73 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000003_c196721f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000004_8f440687.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000004_8f440687.szcp new file mode 100644 index 00000000..e81d50b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000004_8f440687.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000005_fd6dc658.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000005_fd6dc658.szcp new file mode 100644 index 00000000..70dd7960 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000005_fd6dc658.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000006_4db8775b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000006_4db8775b.szcp new file mode 100644 index 00000000..f5d61173 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000006_4db8775b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000007_809cc747.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000007_809cc747.szcp new file mode 100644 index 00000000..abec17f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000007_809cc747.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000008_8d46192b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000008_8d46192b.szcp new file mode 100644 index 00000000..ae444a89 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000008_8d46192b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000009_eda8e294.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000009_eda8e294.szcp new file mode 100644 index 00000000..cd207f9d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000009_eda8e294.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000010_de104ee9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000010_de104ee9.szcp new file mode 100644 index 00000000..9686d81b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000010_de104ee9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000011_4c4996e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000011_4c4996e7.szcp new file mode 100644 index 00000000..3aa80c4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000011_4c4996e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000012_3d26db29.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000012_3d26db29.szcp new file mode 100644 index 00000000..85401fc4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000012_3d26db29.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000013_79f45112.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000013_79f45112.szcp new file mode 100644 index 00000000..9411398a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000013_79f45112.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000014_9c8deabd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000014_9c8deabd.szcp new file mode 100644 index 00000000..49318091 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000014_9c8deabd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000015_445a11d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000015_445a11d6.szcp new file mode 100644 index 00000000..f5f3bca6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000015_445a11d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000016_1058044b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000016_1058044b.szcp new file mode 100644 index 00000000..e31bc0d5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000016_1058044b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000017_038154e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000017_038154e0.szcp new file mode 100644 index 00000000..d8f55e5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000017_038154e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000018_92e072cd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000018_92e072cd.szcp new file mode 100644 index 00000000..e8ede2e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000018_92e072cd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000019_aac978b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000019_aac978b1.szcp new file mode 100644 index 00000000..cdb87298 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000019_aac978b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000020_0c37931f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000020_0c37931f.szcp new file mode 100644 index 00000000..132b2341 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000020_0c37931f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000021_771e744a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000021_771e744a.szcp new file mode 100644 index 00000000..9ee59f88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000021_771e744a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000022_86b533d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000022_86b533d7.szcp new file mode 100644 index 00000000..1e069653 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000022_86b533d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000023_b273104c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000023_b273104c.szcp new file mode 100644 index 00000000..d93b26c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000023_b273104c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000024_bed665b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000024_bed665b1.szcp new file mode 100644 index 00000000..86135372 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000024_bed665b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000025_39be74ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000025_39be74ed.szcp new file mode 100644 index 00000000..61346d23 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000025_39be74ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000026_7bbb5d87.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000026_7bbb5d87.szcp new file mode 100644 index 00000000..00f90f74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000026_7bbb5d87.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000027_710162af.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000027_710162af.szcp new file mode 100644 index 00000000..ca4c757b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000027_710162af.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000028_f4a6271a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000028_f4a6271a.szcp new file mode 100644 index 00000000..d54725e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000028_f4a6271a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000029_9a06ba78.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000029_9a06ba78.szcp new file mode 100644 index 00000000..931dde6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000029_9a06ba78.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000030_c184b404.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000030_c184b404.szcp new file mode 100644 index 00000000..8f643fd6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000030_c184b404.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000031_d33b954c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000031_d33b954c.szcp new file mode 100644 index 00000000..2fa77b04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000031_d33b954c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000032_a8dec655.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000032_a8dec655.szcp new file mode 100644 index 00000000..e4bdeef0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000032_a8dec655.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000033_52ddc354.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000033_52ddc354.szcp new file mode 100644 index 00000000..44ed845a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000033_52ddc354.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000034_1fda3a4e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000034_1fda3a4e.szcp new file mode 100644 index 00000000..d66466af Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_012/checkpoints/checkpoint_00000000000000000034_1fda3a4e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000001_67447efe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000001_67447efe.szar new file mode 100644 index 00000000..c0014506 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000001_67447efe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000002_53735fe1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000002_53735fe1.szar new file mode 100644 index 00000000..ea6e2374 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000002_53735fe1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000003_c19221c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000003_c19221c4.szar new file mode 100644 index 00000000..584a68b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000003_c19221c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000004_c9b7d186.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000004_c9b7d186.szar new file mode 100644 index 00000000..37125817 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000004_c9b7d186.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000005_bf1d1a84.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000005_bf1d1a84.szar new file mode 100644 index 00000000..a0c0edc1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000005_bf1d1a84.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000006_edb9b1ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000006_edb9b1ce.szar new file mode 100644 index 00000000..4a2fe877 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000006_edb9b1ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000007_a16d0672.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000007_a16d0672.szar new file mode 100644 index 00000000..f87bf911 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000007_a16d0672.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000008_a06334e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000008_a06334e0.szar new file mode 100644 index 00000000..1d2d741f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000008_a06334e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000009_d54aef47.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000009_d54aef47.szar new file mode 100644 index 00000000..1ce2ef94 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000009_d54aef47.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000010_16851b56.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000010_16851b56.szar new file mode 100644 index 00000000..d68049e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000010_16851b56.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000011_1df67ace.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000011_1df67ace.szar new file mode 100644 index 00000000..f9cd54cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000011_1df67ace.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000012_12085e15.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000012_12085e15.szar new file mode 100644 index 00000000..5f0175b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000012_12085e15.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000013_0b1d9c16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000013_0b1d9c16.szar new file mode 100644 index 00000000..e4f249ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000013_0b1d9c16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000014_2aaa1a1c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000014_2aaa1a1c.szar new file mode 100644 index 00000000..480df097 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000014_2aaa1a1c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000015_0b552904.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000015_0b552904.szar new file mode 100644 index 00000000..6d356909 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000015_0b552904.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000016_74b082af.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000016_74b082af.szar new file mode 100644 index 00000000..fc0af4b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000016_74b082af.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000017_82d5c3f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000017_82d5c3f2.szar new file mode 100644 index 00000000..f8291f1d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000017_82d5c3f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000018_e4edccc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000018_e4edccc0.szar new file mode 100644 index 00000000..4add9b0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000018_e4edccc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000019_863e8dfa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000019_863e8dfa.szar new file mode 100644 index 00000000..1a387ab4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000019_863e8dfa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000020_5d6a559c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000020_5d6a559c.szar new file mode 100644 index 00000000..382a60ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000020_5d6a559c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000021_d5bdb61b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000021_d5bdb61b.szar new file mode 100644 index 00000000..32796c5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000021_d5bdb61b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000022_4fd5c42b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000022_4fd5c42b.szar new file mode 100644 index 00000000..4a8ae145 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000022_4fd5c42b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000023_69cbca86.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000023_69cbca86.szar new file mode 100644 index 00000000..a35c0c7b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000023_69cbca86.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000024_a61aae04.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000024_a61aae04.szar new file mode 100644 index 00000000..a78d0720 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000024_a61aae04.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000025_2cc9330e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000025_2cc9330e.szar new file mode 100644 index 00000000..f76874bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000025_2cc9330e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000026_4e4a8868.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000026_4e4a8868.szar new file mode 100644 index 00000000..6495bf6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000026_4e4a8868.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000027_95a881fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000027_95a881fb.szar new file mode 100644 index 00000000..12d3a4fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000027_95a881fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000028_3a8686c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000028_3a8686c3.szar new file mode 100644 index 00000000..c5036348 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000028_3a8686c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000029_efae0d28.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000029_efae0d28.szar new file mode 100644 index 00000000..e7eb4487 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000029_efae0d28.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000030_80f9d28c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000030_80f9d28c.szar new file mode 100644 index 00000000..20619edd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000030_80f9d28c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000031_99e8711d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000031_99e8711d.szar new file mode 100644 index 00000000..62cb125c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000031_99e8711d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000032_1ce697fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000032_1ce697fc.szar new file mode 100644 index 00000000..13c8cafd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000032_1ce697fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000033_27cd2f28.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000033_27cd2f28.szar new file mode 100644 index 00000000..c40da8ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000033_27cd2f28.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000034_0c366a94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000034_0c366a94.szar new file mode 100644 index 00000000..0269decf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000034_0c366a94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000035_88c492a4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000035_88c492a4.szar new file mode 100644 index 00000000..447aed4c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000035_88c492a4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000036_7bf9c6f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000036_7bf9c6f4.szar new file mode 100644 index 00000000..6a08d243 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000036_7bf9c6f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000037_332ce1ea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000037_332ce1ea.szar new file mode 100644 index 00000000..3e70ac8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000037_332ce1ea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000038_28238f6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000038_28238f6c.szar new file mode 100644 index 00000000..57eb1149 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000038_28238f6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000039_355d999b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000039_355d999b.szar new file mode 100644 index 00000000..86ff528d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000039_355d999b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000040_689eff9a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000040_689eff9a.szar new file mode 100644 index 00000000..35c03b48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000040_689eff9a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000041_692b5a67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000041_692b5a67.szar new file mode 100644 index 00000000..23c2d442 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000041_692b5a67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000042_c17dbcc5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000042_c17dbcc5.szar new file mode 100644 index 00000000..d0358ec2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000042_c17dbcc5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000043_72322a80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000043_72322a80.szar new file mode 100644 index 00000000..bd0daf20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000043_72322a80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000044_ff2b0cb0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000044_ff2b0cb0.szar new file mode 100644 index 00000000..2907a435 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/archive/delta_00000000000000000044_ff2b0cb0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000001_b7e13a1c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000001_b7e13a1c.szcp new file mode 100644 index 00000000..4122ab00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000001_b7e13a1c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000002_7c24610b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000002_7c24610b.szcp new file mode 100644 index 00000000..ae55d2f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000002_7c24610b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000003_8ef1e946.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000003_8ef1e946.szcp new file mode 100644 index 00000000..de002ea4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000003_8ef1e946.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000004_9251cce2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000004_9251cce2.szcp new file mode 100644 index 00000000..1d3da45c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000004_9251cce2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000005_d86a869a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000005_d86a869a.szcp new file mode 100644 index 00000000..8ac02d15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000005_d86a869a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000006_a222c552.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000006_a222c552.szcp new file mode 100644 index 00000000..513b5986 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000006_a222c552.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000007_e67b33ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000007_e67b33ba.szcp new file mode 100644 index 00000000..be8eab3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000007_e67b33ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000008_c81c52b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000008_c81c52b1.szcp new file mode 100644 index 00000000..37118c66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000008_c81c52b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000009_5d8fc96a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000009_5d8fc96a.szcp new file mode 100644 index 00000000..44ab3ee8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000009_5d8fc96a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000010_767bb877.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000010_767bb877.szcp new file mode 100644 index 00000000..2d2744fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000010_767bb877.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000011_70a77045.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000011_70a77045.szcp new file mode 100644 index 00000000..c0dc7640 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000011_70a77045.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000012_c1e48fbe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000012_c1e48fbe.szcp new file mode 100644 index 00000000..b98441a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000012_c1e48fbe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000013_d4146363.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000013_d4146363.szcp new file mode 100644 index 00000000..5d5205c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000013_d4146363.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000014_23882f88.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000014_23882f88.szcp new file mode 100644 index 00000000..b5415477 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000014_23882f88.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000015_11f2a548.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000015_11f2a548.szcp new file mode 100644 index 00000000..cf953e80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000015_11f2a548.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000016_25c659b7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000016_25c659b7.szcp new file mode 100644 index 00000000..29c2dded Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000016_25c659b7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000017_b5c92f13.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000017_b5c92f13.szcp new file mode 100644 index 00000000..73ebfa2f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000017_b5c92f13.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000018_076db178.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000018_076db178.szcp new file mode 100644 index 00000000..783ebcf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000018_076db178.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000019_e7190b2a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000019_e7190b2a.szcp new file mode 100644 index 00000000..ebf80805 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000019_e7190b2a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000020_0b61bc4e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000020_0b61bc4e.szcp new file mode 100644 index 00000000..3bdce859 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000020_0b61bc4e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000021_e9aa452f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000021_e9aa452f.szcp new file mode 100644 index 00000000..53233be0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000021_e9aa452f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000022_353f2999.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000022_353f2999.szcp new file mode 100644 index 00000000..ff00cf67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000022_353f2999.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000023_3fab84e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000023_3fab84e0.szcp new file mode 100644 index 00000000..934b3699 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000023_3fab84e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000024_c0d564e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000024_c0d564e5.szcp new file mode 100644 index 00000000..721ff86d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000024_c0d564e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000025_8a7647dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000025_8a7647dd.szcp new file mode 100644 index 00000000..87383648 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000025_8a7647dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000026_c16bb88c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000026_c16bb88c.szcp new file mode 100644 index 00000000..6f42b1be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000026_c16bb88c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000027_8704ddc2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000027_8704ddc2.szcp new file mode 100644 index 00000000..96006ed9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000027_8704ddc2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000028_5d7f5ef3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000028_5d7f5ef3.szcp new file mode 100644 index 00000000..967f6bf5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000028_5d7f5ef3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000029_6fb4481a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000029_6fb4481a.szcp new file mode 100644 index 00000000..5131deee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000029_6fb4481a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000030_1287568f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000030_1287568f.szcp new file mode 100644 index 00000000..91385c05 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000030_1287568f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000031_39e23613.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000031_39e23613.szcp new file mode 100644 index 00000000..851a6eb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000031_39e23613.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000032_0ba7930a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000032_0ba7930a.szcp new file mode 100644 index 00000000..46bab4a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000032_0ba7930a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000033_abc25f3e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000033_abc25f3e.szcp new file mode 100644 index 00000000..967ed521 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000033_abc25f3e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000034_690cac14.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000034_690cac14.szcp new file mode 100644 index 00000000..ef8f7fdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000034_690cac14.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000035_ee81d8ae.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000035_ee81d8ae.szcp new file mode 100644 index 00000000..b0dce17c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000035_ee81d8ae.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000036_3f7d1df8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000036_3f7d1df8.szcp new file mode 100644 index 00000000..2264acd5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000036_3f7d1df8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000037_da7d2a67.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000037_da7d2a67.szcp new file mode 100644 index 00000000..9d5b7661 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000037_da7d2a67.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000038_2d067f09.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000038_2d067f09.szcp new file mode 100644 index 00000000..40325fe5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000038_2d067f09.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000039_c2d48b37.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000039_c2d48b37.szcp new file mode 100644 index 00000000..f00d6092 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000039_c2d48b37.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000040_6fdc3026.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000040_6fdc3026.szcp new file mode 100644 index 00000000..ccf812ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000040_6fdc3026.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000041_bca39905.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000041_bca39905.szcp new file mode 100644 index 00000000..c74e5564 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000041_bca39905.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000042_9e071423.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000042_9e071423.szcp new file mode 100644 index 00000000..f939285e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000042_9e071423.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000043_86b99c7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000043_86b99c7d.szcp new file mode 100644 index 00000000..0619ae93 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000043_86b99c7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000044_2841af17.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000044_2841af17.szcp new file mode 100644 index 00000000..891627c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_013/checkpoints/checkpoint_00000000000000000044_2841af17.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000001_a763ac34.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000001_a763ac34.szar new file mode 100644 index 00000000..61d9067a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000001_a763ac34.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000002_b7233a0c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000002_b7233a0c.szar new file mode 100644 index 00000000..719e7938 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000002_b7233a0c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000003_f0cafd30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000003_f0cafd30.szar new file mode 100644 index 00000000..f5d6c236 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000003_f0cafd30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000004_6a188da7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000004_6a188da7.szar new file mode 100644 index 00000000..91067267 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000004_6a188da7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000005_15e29277.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000005_15e29277.szar new file mode 100644 index 00000000..a405869b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000005_15e29277.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000006_11f008da.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000006_11f008da.szar new file mode 100644 index 00000000..f9a41ea2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000006_11f008da.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000007_ff94695f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000007_ff94695f.szar new file mode 100644 index 00000000..b38dca32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000007_ff94695f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000008_76f5cba3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000008_76f5cba3.szar new file mode 100644 index 00000000..d74c3364 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000008_76f5cba3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000009_f27c3058.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000009_f27c3058.szar new file mode 100644 index 00000000..ca6a2a6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000009_f27c3058.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000010_1f400209.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000010_1f400209.szar new file mode 100644 index 00000000..ca2357fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000010_1f400209.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000011_79105698.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000011_79105698.szar new file mode 100644 index 00000000..6ba904b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000011_79105698.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000012_8c24eca6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000012_8c24eca6.szar new file mode 100644 index 00000000..7d6c3e3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000012_8c24eca6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000013_82ac647f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000013_82ac647f.szar new file mode 100644 index 00000000..9363a6d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000013_82ac647f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000014_4b4c25de.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000014_4b4c25de.szar new file mode 100644 index 00000000..34e2bdd2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000014_4b4c25de.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000015_58bda154.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000015_58bda154.szar new file mode 100644 index 00000000..b3f33657 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000015_58bda154.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000016_e3ffe7d7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000016_e3ffe7d7.szar new file mode 100644 index 00000000..efe38b11 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000016_e3ffe7d7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000017_dab4f0c6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000017_dab4f0c6.szar new file mode 100644 index 00000000..14784d7a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000017_dab4f0c6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000018_57ae9281.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000018_57ae9281.szar new file mode 100644 index 00000000..d8c9ed8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000018_57ae9281.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000019_0c86a64e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000019_0c86a64e.szar new file mode 100644 index 00000000..5ad4a27e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000019_0c86a64e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000020_1c4bbcb5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000020_1c4bbcb5.szar new file mode 100644 index 00000000..6e317243 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000020_1c4bbcb5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000021_0b8485c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000021_0b8485c3.szar new file mode 100644 index 00000000..c0d5fdd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000021_0b8485c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000022_9407dc0c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000022_9407dc0c.szar new file mode 100644 index 00000000..5d00ace9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000022_9407dc0c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000023_3f2605a5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000023_3f2605a5.szar new file mode 100644 index 00000000..9ca2ed82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000023_3f2605a5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000024_f29723b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000024_f29723b0.szar new file mode 100644 index 00000000..15910dcf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000024_f29723b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000025_107a1fa2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000025_107a1fa2.szar new file mode 100644 index 00000000..28492c26 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000025_107a1fa2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000026_23374c60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000026_23374c60.szar new file mode 100644 index 00000000..5516e366 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000026_23374c60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000027_1e3300b1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000027_1e3300b1.szar new file mode 100644 index 00000000..0c63d514 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000027_1e3300b1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000028_414cf329.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000028_414cf329.szar new file mode 100644 index 00000000..37c65cfe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000028_414cf329.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000029_62925806.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000029_62925806.szar new file mode 100644 index 00000000..791f4f5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000029_62925806.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000030_b07d0a80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000030_b07d0a80.szar new file mode 100644 index 00000000..98ab76d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/archive/delta_00000000000000000030_b07d0a80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000001_a2ce9563.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000001_a2ce9563.szcp new file mode 100644 index 00000000..a8036414 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000001_a2ce9563.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000002_cdb12d15.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000002_cdb12d15.szcp new file mode 100644 index 00000000..7f84b577 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000002_cdb12d15.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000003_85ae38e2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000003_85ae38e2.szcp new file mode 100644 index 00000000..298b90bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000003_85ae38e2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000004_b4410573.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000004_b4410573.szcp new file mode 100644 index 00000000..10fd2b8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000004_b4410573.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000005_ee77d1d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000005_ee77d1d0.szcp new file mode 100644 index 00000000..afbb29b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000005_ee77d1d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000006_5d269088.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000006_5d269088.szcp new file mode 100644 index 00000000..49021117 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000006_5d269088.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000007_b0afe3f5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000007_b0afe3f5.szcp new file mode 100644 index 00000000..1d2b7d1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000007_b0afe3f5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000008_1d96d8fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000008_1d96d8fe.szcp new file mode 100644 index 00000000..0ab9473d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000008_1d96d8fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000009_86e02d92.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000009_86e02d92.szcp new file mode 100644 index 00000000..61ed12d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000009_86e02d92.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000010_ff2152fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000010_ff2152fc.szcp new file mode 100644 index 00000000..6bb51f3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000010_ff2152fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000011_dda053b5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000011_dda053b5.szcp new file mode 100644 index 00000000..208f121f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000011_dda053b5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000012_1316445b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000012_1316445b.szcp new file mode 100644 index 00000000..dbcb4666 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000012_1316445b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000013_b19c30b7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000013_b19c30b7.szcp new file mode 100644 index 00000000..183c279d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000013_b19c30b7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000014_e932863d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000014_e932863d.szcp new file mode 100644 index 00000000..0c52c2a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000014_e932863d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000015_661aed01.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000015_661aed01.szcp new file mode 100644 index 00000000..470b1a9e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000015_661aed01.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000016_8f827027.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000016_8f827027.szcp new file mode 100644 index 00000000..497084c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000016_8f827027.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000017_9833d9f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000017_9833d9f8.szcp new file mode 100644 index 00000000..07d74011 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000017_9833d9f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000018_dccb90a7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000018_dccb90a7.szcp new file mode 100644 index 00000000..e5974287 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000018_dccb90a7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000019_6b516e31.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000019_6b516e31.szcp new file mode 100644 index 00000000..72a58f8a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000019_6b516e31.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000020_58993dbb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000020_58993dbb.szcp new file mode 100644 index 00000000..83ec836a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000020_58993dbb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000021_afe9640f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000021_afe9640f.szcp new file mode 100644 index 00000000..53cc41e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000021_afe9640f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000022_0967b692.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000022_0967b692.szcp new file mode 100644 index 00000000..2ac939ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000022_0967b692.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000023_16e600cd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000023_16e600cd.szcp new file mode 100644 index 00000000..4f78b7a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000023_16e600cd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000024_9f387dcb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000024_9f387dcb.szcp new file mode 100644 index 00000000..ca23d985 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000024_9f387dcb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000025_f08fe7bc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000025_f08fe7bc.szcp new file mode 100644 index 00000000..a2d640ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000025_f08fe7bc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000026_6be102d8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000026_6be102d8.szcp new file mode 100644 index 00000000..fcd35117 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000026_6be102d8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000027_9353fe14.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000027_9353fe14.szcp new file mode 100644 index 00000000..cfa5b1c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000027_9353fe14.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000028_76fe4ba0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000028_76fe4ba0.szcp new file mode 100644 index 00000000..6cad8e6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000028_76fe4ba0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000029_44c5e829.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000029_44c5e829.szcp new file mode 100644 index 00000000..d75fd8d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000029_44c5e829.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000030_ea98c5d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000030_ea98c5d7.szcp new file mode 100644 index 00000000..d7d22395 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_014/checkpoints/checkpoint_00000000000000000030_ea98c5d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000001_71627a75.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000001_71627a75.szar new file mode 100644 index 00000000..379afc57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000001_71627a75.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000002_a648ea67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000002_a648ea67.szar new file mode 100644 index 00000000..d2d5334c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000002_a648ea67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000003_646a156b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000003_646a156b.szar new file mode 100644 index 00000000..4eae2b9b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000003_646a156b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000004_f7013d7e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000004_f7013d7e.szar new file mode 100644 index 00000000..910fda42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000004_f7013d7e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000005_7f0d47f7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000005_7f0d47f7.szar new file mode 100644 index 00000000..90453b17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000005_7f0d47f7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000006_47008e0f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000006_47008e0f.szar new file mode 100644 index 00000000..08ee3cdb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000006_47008e0f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000007_2efd9874.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000007_2efd9874.szar new file mode 100644 index 00000000..edc0ab8f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000007_2efd9874.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000008_110bfe59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000008_110bfe59.szar new file mode 100644 index 00000000..1b20a19b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000008_110bfe59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000009_85e9731a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000009_85e9731a.szar new file mode 100644 index 00000000..d3254141 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000009_85e9731a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000010_60a98632.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000010_60a98632.szar new file mode 100644 index 00000000..7efb04e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000010_60a98632.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000011_060a7f37.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000011_060a7f37.szar new file mode 100644 index 00000000..db0b4edc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000011_060a7f37.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000012_6de03f1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000012_6de03f1b.szar new file mode 100644 index 00000000..abc4579e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000012_6de03f1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000013_a6e88fb1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000013_a6e88fb1.szar new file mode 100644 index 00000000..e5a2e821 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000013_a6e88fb1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000014_4d6bc8b1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000014_4d6bc8b1.szar new file mode 100644 index 00000000..767665a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000014_4d6bc8b1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000015_9cd4a677.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000015_9cd4a677.szar new file mode 100644 index 00000000..27ea5e96 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000015_9cd4a677.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000016_cbb304ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000016_cbb304ce.szar new file mode 100644 index 00000000..1c072cbb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000016_cbb304ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000017_72e9e335.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000017_72e9e335.szar new file mode 100644 index 00000000..6ad802c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000017_72e9e335.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000018_ea36b042.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000018_ea36b042.szar new file mode 100644 index 00000000..b78eae19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000018_ea36b042.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000019_20814c4d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000019_20814c4d.szar new file mode 100644 index 00000000..01a7a5a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000019_20814c4d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000020_a1311d88.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000020_a1311d88.szar new file mode 100644 index 00000000..31d61337 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000020_a1311d88.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000021_8f988f70.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000021_8f988f70.szar new file mode 100644 index 00000000..b1563761 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/archive/delta_00000000000000000021_8f988f70.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000001_96fca210.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000001_96fca210.szcp new file mode 100644 index 00000000..da35f6af Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000001_96fca210.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000002_a1104512.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000002_a1104512.szcp new file mode 100644 index 00000000..6671257a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000002_a1104512.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000003_b2b7d9ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000003_b2b7d9ba.szcp new file mode 100644 index 00000000..ae45a5eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000003_b2b7d9ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000004_26f0fbb7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000004_26f0fbb7.szcp new file mode 100644 index 00000000..6ebf9dcd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000004_26f0fbb7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000005_979ca245.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000005_979ca245.szcp new file mode 100644 index 00000000..9795810f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000005_979ca245.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000006_7c988576.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000006_7c988576.szcp new file mode 100644 index 00000000..a09bf521 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000006_7c988576.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000007_e1afc27b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000007_e1afc27b.szcp new file mode 100644 index 00000000..5a613a64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000007_e1afc27b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000008_6790c948.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000008_6790c948.szcp new file mode 100644 index 00000000..303f4ea0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000008_6790c948.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000009_19d2d418.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000009_19d2d418.szcp new file mode 100644 index 00000000..b4988484 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000009_19d2d418.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000010_36ac6df4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000010_36ac6df4.szcp new file mode 100644 index 00000000..c92b3c2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000010_36ac6df4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000011_c5c87dec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000011_c5c87dec.szcp new file mode 100644 index 00000000..9b35872e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000011_c5c87dec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000012_bc95c8fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000012_bc95c8fe.szcp new file mode 100644 index 00000000..c5fda08e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000012_bc95c8fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000013_77021773.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000013_77021773.szcp new file mode 100644 index 00000000..f88d712b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000013_77021773.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000014_ea14a18e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000014_ea14a18e.szcp new file mode 100644 index 00000000..0a487f4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000014_ea14a18e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000015_6cca5717.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000015_6cca5717.szcp new file mode 100644 index 00000000..b037a75f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000015_6cca5717.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000016_cc84fd38.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000016_cc84fd38.szcp new file mode 100644 index 00000000..7402da68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000016_cc84fd38.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000017_2b4ec305.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000017_2b4ec305.szcp new file mode 100644 index 00000000..606a3de3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000017_2b4ec305.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000018_313f0bd2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000018_313f0bd2.szcp new file mode 100644 index 00000000..000bf71f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000018_313f0bd2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000019_df91b592.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000019_df91b592.szcp new file mode 100644 index 00000000..5f388b32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000019_df91b592.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000020_f083a251.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000020_f083a251.szcp new file mode 100644 index 00000000..71ba794d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000020_f083a251.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000021_9b85e23d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000021_9b85e23d.szcp new file mode 100644 index 00000000..6ef26229 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_015/checkpoints/checkpoint_00000000000000000021_9b85e23d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000001_a7f25bbe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000001_a7f25bbe.szar new file mode 100644 index 00000000..5ff36c8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000001_a7f25bbe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000002_838678bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000002_838678bb.szar new file mode 100644 index 00000000..8caf6f0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000002_838678bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000003_2cb2b845.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000003_2cb2b845.szar new file mode 100644 index 00000000..1766f985 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000003_2cb2b845.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000004_761a7723.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000004_761a7723.szar new file mode 100644 index 00000000..4363411d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000004_761a7723.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000005_2cf43e08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000005_2cf43e08.szar new file mode 100644 index 00000000..a2dd3567 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000005_2cf43e08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000006_4a302dd2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000006_4a302dd2.szar new file mode 100644 index 00000000..2939bc1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000006_4a302dd2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000007_795f672a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000007_795f672a.szar new file mode 100644 index 00000000..d9b04c0e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000007_795f672a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000008_4d792893.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000008_4d792893.szar new file mode 100644 index 00000000..df09f699 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000008_4d792893.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000009_ccffb449.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000009_ccffb449.szar new file mode 100644 index 00000000..3eaa3246 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000009_ccffb449.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000010_821b0b38.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000010_821b0b38.szar new file mode 100644 index 00000000..27e0b967 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000010_821b0b38.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000011_db676af4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000011_db676af4.szar new file mode 100644 index 00000000..171107bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000011_db676af4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000012_4d113852.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000012_4d113852.szar new file mode 100644 index 00000000..3d93d0da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000012_4d113852.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000013_66aeed41.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000013_66aeed41.szar new file mode 100644 index 00000000..47fcd2e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000013_66aeed41.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000014_c59c51c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000014_c59c51c1.szar new file mode 100644 index 00000000..c168de28 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000014_c59c51c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000015_31ec8054.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000015_31ec8054.szar new file mode 100644 index 00000000..501de2a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000015_31ec8054.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000016_ddbf0cad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000016_ddbf0cad.szar new file mode 100644 index 00000000..cdc86324 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000016_ddbf0cad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000017_f1b46b0c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000017_f1b46b0c.szar new file mode 100644 index 00000000..dc0e6aa5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000017_f1b46b0c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000018_7b94a673.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000018_7b94a673.szar new file mode 100644 index 00000000..d23605fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000018_7b94a673.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000019_b2fa6197.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000019_b2fa6197.szar new file mode 100644 index 00000000..ea55c8d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000019_b2fa6197.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000020_1489da97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000020_1489da97.szar new file mode 100644 index 00000000..f13fe712 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000020_1489da97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000021_0e603da3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000021_0e603da3.szar new file mode 100644 index 00000000..49994dd3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000021_0e603da3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000022_d2daca6e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000022_d2daca6e.szar new file mode 100644 index 00000000..19f7b8bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000022_d2daca6e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000023_2862b0b8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000023_2862b0b8.szar new file mode 100644 index 00000000..09545568 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000023_2862b0b8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000024_460bcce4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000024_460bcce4.szar new file mode 100644 index 00000000..7539e6c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000024_460bcce4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000025_3a5242e1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000025_3a5242e1.szar new file mode 100644 index 00000000..591276e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000025_3a5242e1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000026_b120a660.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000026_b120a660.szar new file mode 100644 index 00000000..f7c46918 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000026_b120a660.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000027_4d3dffaa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000027_4d3dffaa.szar new file mode 100644 index 00000000..97f29f29 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000027_4d3dffaa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000028_6713d29b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000028_6713d29b.szar new file mode 100644 index 00000000..cf809418 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000028_6713d29b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000029_29b7c8bf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000029_29b7c8bf.szar new file mode 100644 index 00000000..7269f4cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000029_29b7c8bf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000030_fc866852.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000030_fc866852.szar new file mode 100644 index 00000000..7c32d7d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000030_fc866852.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000031_b6e4481b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000031_b6e4481b.szar new file mode 100644 index 00000000..eae8b3eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000031_b6e4481b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000032_53a6da53.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000032_53a6da53.szar new file mode 100644 index 00000000..fbad7990 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000032_53a6da53.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000033_8f9cf6ff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000033_8f9cf6ff.szar new file mode 100644 index 00000000..06ee9c36 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000033_8f9cf6ff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000034_5240d2c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000034_5240d2c1.szar new file mode 100644 index 00000000..55937892 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000034_5240d2c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000035_ba1c199f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000035_ba1c199f.szar new file mode 100644 index 00000000..5620a6b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000035_ba1c199f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000036_7942a6cb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000036_7942a6cb.szar new file mode 100644 index 00000000..f6dd4a0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000036_7942a6cb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000037_9dcfa8bf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000037_9dcfa8bf.szar new file mode 100644 index 00000000..1222ad12 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000037_9dcfa8bf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000038_2989a805.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000038_2989a805.szar new file mode 100644 index 00000000..5501c8b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000038_2989a805.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000039_8f4286d7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000039_8f4286d7.szar new file mode 100644 index 00000000..3245e403 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/archive/delta_00000000000000000039_8f4286d7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000001_8bef5a10.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000001_8bef5a10.szcp new file mode 100644 index 00000000..a8092a2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000001_8bef5a10.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000002_b0b3fc94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000002_b0b3fc94.szcp new file mode 100644 index 00000000..92b9642d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000002_b0b3fc94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000003_b2ef09df.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000003_b2ef09df.szcp new file mode 100644 index 00000000..6964792f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000003_b2ef09df.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000004_aafb12e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000004_aafb12e9.szcp new file mode 100644 index 00000000..01f36494 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000004_aafb12e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000005_7f99bdb2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000005_7f99bdb2.szcp new file mode 100644 index 00000000..7a4f6e11 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000005_7f99bdb2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000006_1a13977d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000006_1a13977d.szcp new file mode 100644 index 00000000..83cbff62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000006_1a13977d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000007_4f59c735.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000007_4f59c735.szcp new file mode 100644 index 00000000..a3309315 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000007_4f59c735.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000008_a0f3fdc4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000008_a0f3fdc4.szcp new file mode 100644 index 00000000..e29dfbe5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000008_a0f3fdc4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000009_fe90788e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000009_fe90788e.szcp new file mode 100644 index 00000000..5e605ded Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000009_fe90788e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000010_2ed0044b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000010_2ed0044b.szcp new file mode 100644 index 00000000..c2729e90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000010_2ed0044b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000011_1c64aec1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000011_1c64aec1.szcp new file mode 100644 index 00000000..0484b148 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000011_1c64aec1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000012_7ab4b16a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000012_7ab4b16a.szcp new file mode 100644 index 00000000..57988580 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000012_7ab4b16a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000013_d0c12f9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000013_d0c12f9a.szcp new file mode 100644 index 00000000..3ebad3d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000013_d0c12f9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000014_4dd730b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000014_4dd730b0.szcp new file mode 100644 index 00000000..418231b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000014_4dd730b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000015_1e897e90.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000015_1e897e90.szcp new file mode 100644 index 00000000..56386d07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000015_1e897e90.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000016_d8e807d5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000016_d8e807d5.szcp new file mode 100644 index 00000000..288afae0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000016_d8e807d5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000017_af78ec43.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000017_af78ec43.szcp new file mode 100644 index 00000000..2b26785c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000017_af78ec43.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000018_0861a6ea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000018_0861a6ea.szcp new file mode 100644 index 00000000..d2be4288 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000018_0861a6ea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000019_b49334fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000019_b49334fe.szcp new file mode 100644 index 00000000..e0cc5a70 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000019_b49334fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000020_f05f4a6c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000020_f05f4a6c.szcp new file mode 100644 index 00000000..bd42875e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000020_f05f4a6c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000021_21884c7b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000021_21884c7b.szcp new file mode 100644 index 00000000..a5d2f749 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000021_21884c7b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000022_bffcff6b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000022_bffcff6b.szcp new file mode 100644 index 00000000..b2632077 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000022_bffcff6b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000023_1c8c780f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000023_1c8c780f.szcp new file mode 100644 index 00000000..c4b70cf4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000023_1c8c780f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000024_947a9d7b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000024_947a9d7b.szcp new file mode 100644 index 00000000..b6b8cbf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000024_947a9d7b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000025_a2d521cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000025_a2d521cc.szcp new file mode 100644 index 00000000..8b8fd2f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000025_a2d521cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000026_153c212f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000026_153c212f.szcp new file mode 100644 index 00000000..5cc56626 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000026_153c212f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000027_74a27dfa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000027_74a27dfa.szcp new file mode 100644 index 00000000..987e2357 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000027_74a27dfa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000028_fee0f058.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000028_fee0f058.szcp new file mode 100644 index 00000000..8bcc14b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000028_fee0f058.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000029_fe96f907.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000029_fe96f907.szcp new file mode 100644 index 00000000..9c8367a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000029_fe96f907.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000030_f599d48e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000030_f599d48e.szcp new file mode 100644 index 00000000..a189a0fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000030_f599d48e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000031_9c70bf39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000031_9c70bf39.szcp new file mode 100644 index 00000000..bb9a8642 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000031_9c70bf39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000032_b242a948.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000032_b242a948.szcp new file mode 100644 index 00000000..15952fba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000032_b242a948.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000033_796ec091.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000033_796ec091.szcp new file mode 100644 index 00000000..8e582e6c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000033_796ec091.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000034_531f47c2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000034_531f47c2.szcp new file mode 100644 index 00000000..f3bfd024 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000034_531f47c2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000035_4b2feeeb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000035_4b2feeeb.szcp new file mode 100644 index 00000000..54486137 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000035_4b2feeeb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000036_2e587b7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000036_2e587b7d.szcp new file mode 100644 index 00000000..3ca1b92d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000036_2e587b7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000037_c098ae6f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000037_c098ae6f.szcp new file mode 100644 index 00000000..114b7e42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000037_c098ae6f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000038_564deb53.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000038_564deb53.szcp new file mode 100644 index 00000000..c47e11cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000038_564deb53.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000039_85147ced.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000039_85147ced.szcp new file mode 100644 index 00000000..9d2284c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_016/checkpoints/checkpoint_00000000000000000039_85147ced.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000001_bd433ff3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000001_bd433ff3.szar new file mode 100644 index 00000000..107b7ac7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000001_bd433ff3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000002_49476f7e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000002_49476f7e.szar new file mode 100644 index 00000000..13ef48a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000002_49476f7e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000003_ba721c16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000003_ba721c16.szar new file mode 100644 index 00000000..fdcdbd54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000003_ba721c16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000004_d020a8ed.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000004_d020a8ed.szar new file mode 100644 index 00000000..5e7de1a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000004_d020a8ed.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000005_c092748b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000005_c092748b.szar new file mode 100644 index 00000000..37e3171f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000005_c092748b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000006_26d56e2e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000006_26d56e2e.szar new file mode 100644 index 00000000..4ee4c8e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000006_26d56e2e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000007_fb58364f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000007_fb58364f.szar new file mode 100644 index 00000000..896e2774 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000007_fb58364f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000008_37cb070d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000008_37cb070d.szar new file mode 100644 index 00000000..943e3cb6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000008_37cb070d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000009_4b53e6db.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000009_4b53e6db.szar new file mode 100644 index 00000000..384c225b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000009_4b53e6db.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000010_5cb20ec5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000010_5cb20ec5.szar new file mode 100644 index 00000000..14e440b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000010_5cb20ec5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000011_c43e3343.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000011_c43e3343.szar new file mode 100644 index 00000000..f4262ced Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000011_c43e3343.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000012_f0fad31f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000012_f0fad31f.szar new file mode 100644 index 00000000..588806a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000012_f0fad31f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000013_30d58ea6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000013_30d58ea6.szar new file mode 100644 index 00000000..93ff14d5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000013_30d58ea6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000014_bc962ceb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000014_bc962ceb.szar new file mode 100644 index 00000000..4f8e291f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000014_bc962ceb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000015_131447bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000015_131447bd.szar new file mode 100644 index 00000000..d9dc4de5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000015_131447bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000016_6bb927fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000016_6bb927fc.szar new file mode 100644 index 00000000..536a36db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000016_6bb927fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000017_5ec41028.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000017_5ec41028.szar new file mode 100644 index 00000000..248894d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000017_5ec41028.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000018_59f652bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000018_59f652bd.szar new file mode 100644 index 00000000..4b987cf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000018_59f652bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000019_75223083.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000019_75223083.szar new file mode 100644 index 00000000..c59df37e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000019_75223083.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000020_1194ad96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000020_1194ad96.szar new file mode 100644 index 00000000..e4256184 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000020_1194ad96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000021_db9c995e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000021_db9c995e.szar new file mode 100644 index 00000000..d019889a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000021_db9c995e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000022_8cf3f214.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000022_8cf3f214.szar new file mode 100644 index 00000000..d5c452f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000022_8cf3f214.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000023_4e836e51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000023_4e836e51.szar new file mode 100644 index 00000000..41d2c2a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000023_4e836e51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000024_c36d3f7b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000024_c36d3f7b.szar new file mode 100644 index 00000000..331a1724 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000024_c36d3f7b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000025_2cf55f16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000025_2cf55f16.szar new file mode 100644 index 00000000..5931ede1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000025_2cf55f16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000026_ef6de706.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000026_ef6de706.szar new file mode 100644 index 00000000..b04672b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000026_ef6de706.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000027_3891c444.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000027_3891c444.szar new file mode 100644 index 00000000..46827e5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000027_3891c444.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000028_9d19afec.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000028_9d19afec.szar new file mode 100644 index 00000000..004ad98b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000028_9d19afec.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000029_ee1989a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000029_ee1989a6.szar new file mode 100644 index 00000000..ecd7e34a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000029_ee1989a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000030_66fdaf0b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000030_66fdaf0b.szar new file mode 100644 index 00000000..c5d74dd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000030_66fdaf0b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000031_132c513e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000031_132c513e.szar new file mode 100644 index 00000000..69bab261 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000031_132c513e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000032_1af150d9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000032_1af150d9.szar new file mode 100644 index 00000000..ef33137f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000032_1af150d9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000033_0026cf79.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000033_0026cf79.szar new file mode 100644 index 00000000..0bfc7e51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000033_0026cf79.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000034_dc6ed54f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000034_dc6ed54f.szar new file mode 100644 index 00000000..fc4cf79b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000034_dc6ed54f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000035_5d506dd9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000035_5d506dd9.szar new file mode 100644 index 00000000..03f2e51e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000035_5d506dd9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000036_413732cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000036_413732cc.szar new file mode 100644 index 00000000..796086ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000036_413732cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000037_1008af87.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000037_1008af87.szar new file mode 100644 index 00000000..df025a6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000037_1008af87.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000038_2313dc31.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000038_2313dc31.szar new file mode 100644 index 00000000..b02d4476 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000038_2313dc31.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000039_0b90cfee.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000039_0b90cfee.szar new file mode 100644 index 00000000..9bac2a52 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000039_0b90cfee.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000040_d5699a42.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000040_d5699a42.szar new file mode 100644 index 00000000..cf3ff8f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000040_d5699a42.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000041_d6129fa0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000041_d6129fa0.szar new file mode 100644 index 00000000..90ea09d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000041_d6129fa0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000042_29300e6b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000042_29300e6b.szar new file mode 100644 index 00000000..8926cfd5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000042_29300e6b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000043_670c5014.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000043_670c5014.szar new file mode 100644 index 00000000..9b58ce61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000043_670c5014.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000044_5fa44ee7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000044_5fa44ee7.szar new file mode 100644 index 00000000..65a43545 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/archive/delta_00000000000000000044_5fa44ee7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000001_d95c79bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000001_d95c79bd.szcp new file mode 100644 index 00000000..15967e6c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000001_d95c79bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000002_91ef6bb6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000002_91ef6bb6.szcp new file mode 100644 index 00000000..4e1bd320 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000002_91ef6bb6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000003_14b572d9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000003_14b572d9.szcp new file mode 100644 index 00000000..11aad6f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000003_14b572d9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000004_c7e7f9c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000004_c7e7f9c0.szcp new file mode 100644 index 00000000..4d8ff71d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000004_c7e7f9c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000005_7f656efc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000005_7f656efc.szcp new file mode 100644 index 00000000..f973b59b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000005_7f656efc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000006_4f855b9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000006_4f855b9f.szcp new file mode 100644 index 00000000..0bb22536 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000006_4f855b9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000007_7c15bacc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000007_7c15bacc.szcp new file mode 100644 index 00000000..ae9f0b66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000007_7c15bacc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000008_685505a4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000008_685505a4.szcp new file mode 100644 index 00000000..2d2dc85e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000008_685505a4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000009_09a04aac.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000009_09a04aac.szcp new file mode 100644 index 00000000..21f74a62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000009_09a04aac.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000010_5fe1eec7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000010_5fe1eec7.szcp new file mode 100644 index 00000000..8c240915 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000010_5fe1eec7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000011_c1d2be56.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000011_c1d2be56.szcp new file mode 100644 index 00000000..d6c97509 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000011_c1d2be56.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000012_7dfe9aa3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000012_7dfe9aa3.szcp new file mode 100644 index 00000000..c8145830 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000012_7dfe9aa3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000013_aed650f5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000013_aed650f5.szcp new file mode 100644 index 00000000..bb644734 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000013_aed650f5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000014_1369eec8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000014_1369eec8.szcp new file mode 100644 index 00000000..129ec545 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000014_1369eec8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000015_49579f22.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000015_49579f22.szcp new file mode 100644 index 00000000..30e9fd31 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000015_49579f22.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000016_130899a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000016_130899a3.szcp new file mode 100644 index 00000000..cb84844e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000016_130899a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000017_e81c3ea4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000017_e81c3ea4.szcp new file mode 100644 index 00000000..15778af1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000017_e81c3ea4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000018_0400aa9d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000018_0400aa9d.szcp new file mode 100644 index 00000000..9005fb21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000018_0400aa9d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000019_5c6619e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000019_5c6619e0.szcp new file mode 100644 index 00000000..7cf538e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000019_5c6619e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000020_6f7cc804.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000020_6f7cc804.szcp new file mode 100644 index 00000000..ef53ca34 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000020_6f7cc804.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000021_266060f6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000021_266060f6.szcp new file mode 100644 index 00000000..5e3b3e6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000021_266060f6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000022_2622fc4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000022_2622fc4a.szcp new file mode 100644 index 00000000..340476c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000022_2622fc4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000023_989e191a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000023_989e191a.szcp new file mode 100644 index 00000000..1def9b78 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000023_989e191a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000024_e85a9579.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000024_e85a9579.szcp new file mode 100644 index 00000000..18ed7a64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000024_e85a9579.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000025_1e2052d8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000025_1e2052d8.szcp new file mode 100644 index 00000000..918a2fc2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000025_1e2052d8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000026_9501371d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000026_9501371d.szcp new file mode 100644 index 00000000..e86c2eb6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000026_9501371d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000027_cea04dc4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000027_cea04dc4.szcp new file mode 100644 index 00000000..8ce1764f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000027_cea04dc4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000028_a9041477.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000028_a9041477.szcp new file mode 100644 index 00000000..ba30abd4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000028_a9041477.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000029_2c763272.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000029_2c763272.szcp new file mode 100644 index 00000000..272f0e41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000029_2c763272.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000030_5ef9ed14.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000030_5ef9ed14.szcp new file mode 100644 index 00000000..c5a8db1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000030_5ef9ed14.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000031_12a86784.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000031_12a86784.szcp new file mode 100644 index 00000000..ce8f0368 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000031_12a86784.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000032_cec7d29b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000032_cec7d29b.szcp new file mode 100644 index 00000000..f1e27113 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000032_cec7d29b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000033_ce514df3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000033_ce514df3.szcp new file mode 100644 index 00000000..c297aeed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000033_ce514df3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000034_34773032.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000034_34773032.szcp new file mode 100644 index 00000000..7347be07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000034_34773032.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000035_52a0eeff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000035_52a0eeff.szcp new file mode 100644 index 00000000..6faa33ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000035_52a0eeff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000036_129c6fed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000036_129c6fed.szcp new file mode 100644 index 00000000..8fc1e17d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000036_129c6fed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000037_ed46c11f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000037_ed46c11f.szcp new file mode 100644 index 00000000..a5a19626 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000037_ed46c11f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000038_6268fa4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000038_6268fa4d.szcp new file mode 100644 index 00000000..abacb07c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000038_6268fa4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000039_d41515b7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000039_d41515b7.szcp new file mode 100644 index 00000000..fb34bba7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000039_d41515b7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000040_a575d9cf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000040_a575d9cf.szcp new file mode 100644 index 00000000..507cdefa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000040_a575d9cf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000041_49ddc609.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000041_49ddc609.szcp new file mode 100644 index 00000000..2072a9e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000041_49ddc609.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000042_2d7a8c84.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000042_2d7a8c84.szcp new file mode 100644 index 00000000..8bd23066 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000042_2d7a8c84.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000043_1a2cffaa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000043_1a2cffaa.szcp new file mode 100644 index 00000000..48609091 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000043_1a2cffaa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000044_982dd7e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000044_982dd7e0.szcp new file mode 100644 index 00000000..af4a8dbe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_017/checkpoints/checkpoint_00000000000000000044_982dd7e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000001_3f18028f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000001_3f18028f.szar new file mode 100644 index 00000000..7e2f11df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000001_3f18028f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000002_0a57bd13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000002_0a57bd13.szar new file mode 100644 index 00000000..ff8f8a82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000002_0a57bd13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000003_5c244a8f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000003_5c244a8f.szar new file mode 100644 index 00000000..6f13ec20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000003_5c244a8f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000004_54a4a92e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000004_54a4a92e.szar new file mode 100644 index 00000000..b94821aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000004_54a4a92e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000005_85227186.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000005_85227186.szar new file mode 100644 index 00000000..84b104fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000005_85227186.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000006_0c810845.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000006_0c810845.szar new file mode 100644 index 00000000..2ece0a5f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000006_0c810845.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000007_8a901659.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000007_8a901659.szar new file mode 100644 index 00000000..db00d8a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000007_8a901659.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000008_a6963897.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000008_a6963897.szar new file mode 100644 index 00000000..a848f959 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000008_a6963897.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000009_fc792ace.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000009_fc792ace.szar new file mode 100644 index 00000000..d0d24fff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000009_fc792ace.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000010_fef2119c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000010_fef2119c.szar new file mode 100644 index 00000000..f4178cce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000010_fef2119c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000011_38fa7682.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000011_38fa7682.szar new file mode 100644 index 00000000..e9d4822a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000011_38fa7682.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000012_ed978592.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000012_ed978592.szar new file mode 100644 index 00000000..a0685517 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000012_ed978592.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000013_83b48c06.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000013_83b48c06.szar new file mode 100644 index 00000000..9155debd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000013_83b48c06.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000014_44847b97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000014_44847b97.szar new file mode 100644 index 00000000..1b736cb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000014_44847b97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000015_d5c9f8b7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000015_d5c9f8b7.szar new file mode 100644 index 00000000..fb0dca6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000015_d5c9f8b7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000016_8a43b968.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000016_8a43b968.szar new file mode 100644 index 00000000..51b8aef9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000016_8a43b968.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000017_d90769f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000017_d90769f8.szar new file mode 100644 index 00000000..f22867a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000017_d90769f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000018_0d25964c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000018_0d25964c.szar new file mode 100644 index 00000000..7407b7de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000018_0d25964c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000019_a5057539.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000019_a5057539.szar new file mode 100644 index 00000000..ca4079f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000019_a5057539.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000020_6a0191e1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000020_6a0191e1.szar new file mode 100644 index 00000000..54dac731 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000020_6a0191e1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000021_4eb843d3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000021_4eb843d3.szar new file mode 100644 index 00000000..681eb28f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000021_4eb843d3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000022_55f649aa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000022_55f649aa.szar new file mode 100644 index 00000000..4b073119 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000022_55f649aa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000023_6f34243c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000023_6f34243c.szar new file mode 100644 index 00000000..bb6fb399 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000023_6f34243c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000024_0d5470f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000024_0d5470f4.szar new file mode 100644 index 00000000..5183fcdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000024_0d5470f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000025_b7370531.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000025_b7370531.szar new file mode 100644 index 00000000..c43ea27a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000025_b7370531.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000026_5771c9a8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000026_5771c9a8.szar new file mode 100644 index 00000000..0c92a755 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000026_5771c9a8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000027_826df5fe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000027_826df5fe.szar new file mode 100644 index 00000000..fc08a176 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000027_826df5fe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000028_0faaf27c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000028_0faaf27c.szar new file mode 100644 index 00000000..b51cb4ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000028_0faaf27c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000029_2df70664.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000029_2df70664.szar new file mode 100644 index 00000000..681e030c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/archive/delta_00000000000000000029_2df70664.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000001_5a8fcba9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000001_5a8fcba9.szcp new file mode 100644 index 00000000..ca7c65c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000001_5a8fcba9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000002_237dd04e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000002_237dd04e.szcp new file mode 100644 index 00000000..9d14018d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000002_237dd04e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000003_6a018353.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000003_6a018353.szcp new file mode 100644 index 00000000..38508c4c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000003_6a018353.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000004_099d35b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000004_099d35b0.szcp new file mode 100644 index 00000000..9a4444fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000004_099d35b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000005_21937414.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000005_21937414.szcp new file mode 100644 index 00000000..5c9e5b9b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000005_21937414.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000006_8b58f3b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000006_8b58f3b0.szcp new file mode 100644 index 00000000..068d7993 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000006_8b58f3b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000007_734c72ce.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000007_734c72ce.szcp new file mode 100644 index 00000000..fd15b88c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000007_734c72ce.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000008_75875f51.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000008_75875f51.szcp new file mode 100644 index 00000000..6c9708bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000008_75875f51.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000009_21a3e488.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000009_21a3e488.szcp new file mode 100644 index 00000000..0b3a8ff9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000009_21a3e488.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000010_cb565448.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000010_cb565448.szcp new file mode 100644 index 00000000..ec0fb4c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000010_cb565448.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000011_db17fb68.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000011_db17fb68.szcp new file mode 100644 index 00000000..cab18896 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000011_db17fb68.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000012_5e3a04b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000012_5e3a04b0.szcp new file mode 100644 index 00000000..d70e654b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000012_5e3a04b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000013_0afbf281.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000013_0afbf281.szcp new file mode 100644 index 00000000..0a39de1d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000013_0afbf281.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000014_09a35369.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000014_09a35369.szcp new file mode 100644 index 00000000..f61e55da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000014_09a35369.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000015_e7f1bd7f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000015_e7f1bd7f.szcp new file mode 100644 index 00000000..dea4979c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000015_e7f1bd7f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000016_3a15c2ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000016_3a15c2ab.szcp new file mode 100644 index 00000000..3728f2b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000016_3a15c2ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000017_618f1cfe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000017_618f1cfe.szcp new file mode 100644 index 00000000..4295e6ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000017_618f1cfe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000018_c1e20862.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000018_c1e20862.szcp new file mode 100644 index 00000000..37d8af62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000018_c1e20862.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000019_8f34dd4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000019_8f34dd4a.szcp new file mode 100644 index 00000000..7218eb5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000019_8f34dd4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000020_b78e4158.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000020_b78e4158.szcp new file mode 100644 index 00000000..f56a7887 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000020_b78e4158.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000021_5dbfa789.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000021_5dbfa789.szcp new file mode 100644 index 00000000..e3822d99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000021_5dbfa789.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000022_ca3fc284.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000022_ca3fc284.szcp new file mode 100644 index 00000000..b2fe3f4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000022_ca3fc284.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000023_18935127.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000023_18935127.szcp new file mode 100644 index 00000000..59cbd71a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000023_18935127.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000024_1ac57c5a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000024_1ac57c5a.szcp new file mode 100644 index 00000000..18bca3f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000024_1ac57c5a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000025_af0fab39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000025_af0fab39.szcp new file mode 100644 index 00000000..e28897b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000025_af0fab39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000026_3a3acfbf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000026_3a3acfbf.szcp new file mode 100644 index 00000000..d324633d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000026_3a3acfbf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000027_80dbac83.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000027_80dbac83.szcp new file mode 100644 index 00000000..2de2b0b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000027_80dbac83.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000028_ec24d1d8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000028_ec24d1d8.szcp new file mode 100644 index 00000000..e1cb50a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000028_ec24d1d8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000029_26f1f517.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000029_26f1f517.szcp new file mode 100644 index 00000000..8c3199b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_018/checkpoints/checkpoint_00000000000000000029_26f1f517.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000001_1b5f5ac3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000001_1b5f5ac3.szar new file mode 100644 index 00000000..3adb849f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000001_1b5f5ac3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000002_bbbd37dc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000002_bbbd37dc.szar new file mode 100644 index 00000000..d296862e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000002_bbbd37dc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000003_7f86783a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000003_7f86783a.szar new file mode 100644 index 00000000..379ac150 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000003_7f86783a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000004_746fec21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000004_746fec21.szar new file mode 100644 index 00000000..1387fb3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000004_746fec21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000005_b9b1d1af.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000005_b9b1d1af.szar new file mode 100644 index 00000000..0eed6358 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000005_b9b1d1af.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000006_9ba16684.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000006_9ba16684.szar new file mode 100644 index 00000000..a2cb5b42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000006_9ba16684.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000007_406e73d4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000007_406e73d4.szar new file mode 100644 index 00000000..626aea39 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000007_406e73d4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000008_9af64a65.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000008_9af64a65.szar new file mode 100644 index 00000000..76a1fb31 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000008_9af64a65.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000009_136f6ca1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000009_136f6ca1.szar new file mode 100644 index 00000000..61a581e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000009_136f6ca1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000010_2f325646.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000010_2f325646.szar new file mode 100644 index 00000000..bf2e0ddc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000010_2f325646.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000011_dcc25e81.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000011_dcc25e81.szar new file mode 100644 index 00000000..bddc234b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000011_dcc25e81.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000012_a9255469.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000012_a9255469.szar new file mode 100644 index 00000000..952f5f7a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000012_a9255469.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000013_00ce71f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000013_00ce71f0.szar new file mode 100644 index 00000000..db01a2d5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000013_00ce71f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000014_783deab6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000014_783deab6.szar new file mode 100644 index 00000000..1ef365e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000014_783deab6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000015_590467c9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000015_590467c9.szar new file mode 100644 index 00000000..b1d0a221 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000015_590467c9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000016_126e4248.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000016_126e4248.szar new file mode 100644 index 00000000..1deecb6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000016_126e4248.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000017_c04df59a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000017_c04df59a.szar new file mode 100644 index 00000000..11531964 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000017_c04df59a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000018_1883840e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000018_1883840e.szar new file mode 100644 index 00000000..37c9a841 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000018_1883840e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000019_57ce6c54.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000019_57ce6c54.szar new file mode 100644 index 00000000..97ec8ccf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000019_57ce6c54.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000020_48d34a00.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000020_48d34a00.szar new file mode 100644 index 00000000..fcc84987 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000020_48d34a00.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000021_44bb9a3a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000021_44bb9a3a.szar new file mode 100644 index 00000000..16015923 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000021_44bb9a3a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000022_de9679ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000022_de9679ef.szar new file mode 100644 index 00000000..1a5009c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000022_de9679ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000023_7f7615b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000023_7f7615b0.szar new file mode 100644 index 00000000..19b0cd1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000023_7f7615b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000024_7ad22d62.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000024_7ad22d62.szar new file mode 100644 index 00000000..d5b99895 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000024_7ad22d62.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000025_e47f8d4c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000025_e47f8d4c.szar new file mode 100644 index 00000000..f06a43e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000025_e47f8d4c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000026_0b366e89.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000026_0b366e89.szar new file mode 100644 index 00000000..3dba06c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/archive/delta_00000000000000000026_0b366e89.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000001_f6e51429.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000001_f6e51429.szcp new file mode 100644 index 00000000..5952761d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000001_f6e51429.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000002_fe6fa9c7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000002_fe6fa9c7.szcp new file mode 100644 index 00000000..1785fac5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000002_fe6fa9c7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000003_f0793747.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000003_f0793747.szcp new file mode 100644 index 00000000..3f654d1d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000003_f0793747.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000004_fd1648d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000004_fd1648d1.szcp new file mode 100644 index 00000000..7377d73e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000004_fd1648d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000005_61261422.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000005_61261422.szcp new file mode 100644 index 00000000..c0b3fa95 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000005_61261422.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000006_3eb91f92.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000006_3eb91f92.szcp new file mode 100644 index 00000000..b5870cae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000006_3eb91f92.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000007_b73a64d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000007_b73a64d0.szcp new file mode 100644 index 00000000..acea762b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000007_b73a64d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000008_f4cf096f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000008_f4cf096f.szcp new file mode 100644 index 00000000..eabad090 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000008_f4cf096f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000009_3c21436c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000009_3c21436c.szcp new file mode 100644 index 00000000..aca5b3c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000009_3c21436c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000010_af0f6900.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000010_af0f6900.szcp new file mode 100644 index 00000000..2e45d917 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000010_af0f6900.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000011_3fca172e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000011_3fca172e.szcp new file mode 100644 index 00000000..44b02b2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000011_3fca172e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000012_a17bdf55.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000012_a17bdf55.szcp new file mode 100644 index 00000000..af1eb6b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000012_a17bdf55.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000013_42df8406.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000013_42df8406.szcp new file mode 100644 index 00000000..d3e1a087 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000013_42df8406.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000014_7469fad9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000014_7469fad9.szcp new file mode 100644 index 00000000..08655fe4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000014_7469fad9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000015_5f935b9d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000015_5f935b9d.szcp new file mode 100644 index 00000000..68cb3428 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000015_5f935b9d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000016_2c974c3b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000016_2c974c3b.szcp new file mode 100644 index 00000000..a8765af5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000016_2c974c3b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000017_06e07a75.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000017_06e07a75.szcp new file mode 100644 index 00000000..f830869c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000017_06e07a75.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000018_5a7da603.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000018_5a7da603.szcp new file mode 100644 index 00000000..7c4650dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000018_5a7da603.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000019_02e6e33e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000019_02e6e33e.szcp new file mode 100644 index 00000000..2cdf1e29 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000019_02e6e33e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000020_4784ebc1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000020_4784ebc1.szcp new file mode 100644 index 00000000..86b0f9d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000020_4784ebc1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000021_6d85a00a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000021_6d85a00a.szcp new file mode 100644 index 00000000..fc2bcabb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000021_6d85a00a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000022_42987a16.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000022_42987a16.szcp new file mode 100644 index 00000000..ef7c1934 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000022_42987a16.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000023_2fddfb9b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000023_2fddfb9b.szcp new file mode 100644 index 00000000..367b92ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000023_2fddfb9b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000024_d7514d91.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000024_d7514d91.szcp new file mode 100644 index 00000000..7c96a9ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000024_d7514d91.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000025_37f19293.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000025_37f19293.szcp new file mode 100644 index 00000000..1ba8217f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000025_37f19293.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000026_357126bf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000026_357126bf.szcp new file mode 100644 index 00000000..87762c2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_019/checkpoints/checkpoint_00000000000000000026_357126bf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000001_921f9b91.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000001_921f9b91.szar new file mode 100644 index 00000000..94f6bd80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000001_921f9b91.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000002_c5923cee.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000002_c5923cee.szar new file mode 100644 index 00000000..82fe4bd2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000002_c5923cee.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000003_5e6f848f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000003_5e6f848f.szar new file mode 100644 index 00000000..04b7a314 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000003_5e6f848f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000004_9c54cbf7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000004_9c54cbf7.szar new file mode 100644 index 00000000..9aceda28 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000004_9c54cbf7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000005_09105cd3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000005_09105cd3.szar new file mode 100644 index 00000000..fde9aea4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000005_09105cd3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000006_dfc2fc2f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000006_dfc2fc2f.szar new file mode 100644 index 00000000..c6949b32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000006_dfc2fc2f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000007_b1f8c323.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000007_b1f8c323.szar new file mode 100644 index 00000000..5ae811fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000007_b1f8c323.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000008_64a80cd8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000008_64a80cd8.szar new file mode 100644 index 00000000..6a20cc75 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000008_64a80cd8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000009_91e95206.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000009_91e95206.szar new file mode 100644 index 00000000..67437c36 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000009_91e95206.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000010_baa2d4df.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000010_baa2d4df.szar new file mode 100644 index 00000000..da52264b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000010_baa2d4df.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000011_3bdf5976.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000011_3bdf5976.szar new file mode 100644 index 00000000..b38e6df7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000011_3bdf5976.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000012_d6dac3e8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000012_d6dac3e8.szar new file mode 100644 index 00000000..cb6fb97e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000012_d6dac3e8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000013_1d196018.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000013_1d196018.szar new file mode 100644 index 00000000..065405b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000013_1d196018.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000014_79048cfb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000014_79048cfb.szar new file mode 100644 index 00000000..e90310ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000014_79048cfb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000015_e58a00a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000015_e58a00a3.szar new file mode 100644 index 00000000..b54a9458 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000015_e58a00a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000016_6f6365a1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000016_6f6365a1.szar new file mode 100644 index 00000000..d89869b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000016_6f6365a1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000017_eb6d0858.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000017_eb6d0858.szar new file mode 100644 index 00000000..44fdec6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000017_eb6d0858.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000018_316e72a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000018_316e72a6.szar new file mode 100644 index 00000000..400e8ca3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000018_316e72a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000019_e89f887d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000019_e89f887d.szar new file mode 100644 index 00000000..b94feabf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000019_e89f887d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000020_6073e1eb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000020_6073e1eb.szar new file mode 100644 index 00000000..ddddde07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000020_6073e1eb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000021_b4169a29.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000021_b4169a29.szar new file mode 100644 index 00000000..5ef9b1c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000021_b4169a29.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000022_4cb57f10.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000022_4cb57f10.szar new file mode 100644 index 00000000..6e323d3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000022_4cb57f10.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000023_24a0fe41.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000023_24a0fe41.szar new file mode 100644 index 00000000..ead1b877 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000023_24a0fe41.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000024_b30fa36b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000024_b30fa36b.szar new file mode 100644 index 00000000..0eb9591b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000024_b30fa36b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000025_2217aac3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000025_2217aac3.szar new file mode 100644 index 00000000..dacd3d87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000025_2217aac3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000026_8ae11b90.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000026_8ae11b90.szar new file mode 100644 index 00000000..6a81db9a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000026_8ae11b90.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000027_91cbc3c7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000027_91cbc3c7.szar new file mode 100644 index 00000000..a8437b3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000027_91cbc3c7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000028_b0915568.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000028_b0915568.szar new file mode 100644 index 00000000..d9d9c579 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000028_b0915568.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000029_57b2bf45.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000029_57b2bf45.szar new file mode 100644 index 00000000..6ba6f323 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000029_57b2bf45.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000030_bca8586a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000030_bca8586a.szar new file mode 100644 index 00000000..729cd228 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000030_bca8586a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000031_bdaa9cd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000031_bdaa9cd5.szar new file mode 100644 index 00000000..d5e8a32f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000031_bdaa9cd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000032_bf2308e1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000032_bf2308e1.szar new file mode 100644 index 00000000..b113baa2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000032_bf2308e1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000033_99bc3e90.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000033_99bc3e90.szar new file mode 100644 index 00000000..163f3e14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000033_99bc3e90.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000034_65da021c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000034_65da021c.szar new file mode 100644 index 00000000..d3031f91 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000034_65da021c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000035_38e66914.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000035_38e66914.szar new file mode 100644 index 00000000..876db024 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000035_38e66914.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000036_2d6f689f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000036_2d6f689f.szar new file mode 100644 index 00000000..b9a50980 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/archive/delta_00000000000000000036_2d6f689f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000001_f5b774b9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000001_f5b774b9.szcp new file mode 100644 index 00000000..b7743287 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000001_f5b774b9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000002_87282a91.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000002_87282a91.szcp new file mode 100644 index 00000000..ad82637b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000002_87282a91.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000003_b4615297.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000003_b4615297.szcp new file mode 100644 index 00000000..7cb81756 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000003_b4615297.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000004_535444c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000004_535444c0.szcp new file mode 100644 index 00000000..e52fdf9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000004_535444c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000005_8dd52453.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000005_8dd52453.szcp new file mode 100644 index 00000000..e1ad97f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000005_8dd52453.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000006_1af38fa9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000006_1af38fa9.szcp new file mode 100644 index 00000000..3f38c9cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000006_1af38fa9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000007_8f70adb9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000007_8f70adb9.szcp new file mode 100644 index 00000000..06cf9ffd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000007_8f70adb9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000008_a975a58b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000008_a975a58b.szcp new file mode 100644 index 00000000..34145a2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000008_a975a58b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000009_ddceaa7f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000009_ddceaa7f.szcp new file mode 100644 index 00000000..ee60df9a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000009_ddceaa7f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000010_4bf78c7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000010_4bf78c7d.szcp new file mode 100644 index 00000000..9a9004e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000010_4bf78c7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000011_2dbab18a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000011_2dbab18a.szcp new file mode 100644 index 00000000..fab089bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000011_2dbab18a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000012_71fd4fe3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000012_71fd4fe3.szcp new file mode 100644 index 00000000..f48044b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000012_71fd4fe3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000013_6636bebc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000013_6636bebc.szcp new file mode 100644 index 00000000..558e26a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000013_6636bebc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000014_5b86e1fd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000014_5b86e1fd.szcp new file mode 100644 index 00000000..d3f7038b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000014_5b86e1fd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000015_87edc029.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000015_87edc029.szcp new file mode 100644 index 00000000..d1426265 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000015_87edc029.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000016_5bcb0a2e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000016_5bcb0a2e.szcp new file mode 100644 index 00000000..75e995d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000016_5bcb0a2e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000017_d2b0c17d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000017_d2b0c17d.szcp new file mode 100644 index 00000000..f0bb5974 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000017_d2b0c17d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000018_b4d137a9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000018_b4d137a9.szcp new file mode 100644 index 00000000..62a4fb97 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000018_b4d137a9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000019_796479c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000019_796479c6.szcp new file mode 100644 index 00000000..1839be49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000019_796479c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000020_23c12a03.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000020_23c12a03.szcp new file mode 100644 index 00000000..ed37fcce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000020_23c12a03.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000021_6c25c78a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000021_6c25c78a.szcp new file mode 100644 index 00000000..0ff17892 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000021_6c25c78a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000022_566281ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000022_566281ca.szcp new file mode 100644 index 00000000..10131550 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000022_566281ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000023_19db4b94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000023_19db4b94.szcp new file mode 100644 index 00000000..9c04e837 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000023_19db4b94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000024_78fbc9be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000024_78fbc9be.szcp new file mode 100644 index 00000000..c229a2bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000024_78fbc9be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000025_926018cd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000025_926018cd.szcp new file mode 100644 index 00000000..5a5fc87b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000025_926018cd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000026_cc5c52c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000026_cc5c52c8.szcp new file mode 100644 index 00000000..e530ca07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000026_cc5c52c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000027_2c1f3090.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000027_2c1f3090.szcp new file mode 100644 index 00000000..23f2447c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000027_2c1f3090.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000028_f8a68913.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000028_f8a68913.szcp new file mode 100644 index 00000000..9c32c8f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000028_f8a68913.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000029_8f238ba4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000029_8f238ba4.szcp new file mode 100644 index 00000000..9c5648d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000029_8f238ba4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000030_c519e53a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000030_c519e53a.szcp new file mode 100644 index 00000000..0a70c95d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000030_c519e53a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000031_afa3a1d9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000031_afa3a1d9.szcp new file mode 100644 index 00000000..c57f3733 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000031_afa3a1d9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000032_650be151.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000032_650be151.szcp new file mode 100644 index 00000000..a59f28b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000032_650be151.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000033_4cbc2983.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000033_4cbc2983.szcp new file mode 100644 index 00000000..cdd18508 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000033_4cbc2983.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000034_33a12a29.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000034_33a12a29.szcp new file mode 100644 index 00000000..e8e4af24 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000034_33a12a29.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000035_37145c1a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000035_37145c1a.szcp new file mode 100644 index 00000000..d114a14b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000035_37145c1a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000036_ee69c1a4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000036_ee69c1a4.szcp new file mode 100644 index 00000000..21766c46 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_020/checkpoints/checkpoint_00000000000000000036_ee69c1a4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000001_aa177966.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000001_aa177966.szar new file mode 100644 index 00000000..62733f9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000001_aa177966.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000002_448e2de2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000002_448e2de2.szar new file mode 100644 index 00000000..07806823 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000002_448e2de2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000003_76f769a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000003_76f769a3.szar new file mode 100644 index 00000000..a87ab572 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000003_76f769a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000004_f8ad3c7e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000004_f8ad3c7e.szar new file mode 100644 index 00000000..3fd0fd75 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000004_f8ad3c7e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000005_892ee4b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000005_892ee4b4.szar new file mode 100644 index 00000000..671172b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000005_892ee4b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000006_4fd44aa9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000006_4fd44aa9.szar new file mode 100644 index 00000000..09547653 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000006_4fd44aa9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000007_8ee7ee11.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000007_8ee7ee11.szar new file mode 100644 index 00000000..a32124d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000007_8ee7ee11.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000008_ba253294.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000008_ba253294.szar new file mode 100644 index 00000000..83f2f7eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000008_ba253294.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000009_aebc88c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000009_aebc88c3.szar new file mode 100644 index 00000000..93f93476 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000009_aebc88c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000010_6fc256ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000010_6fc256ef.szar new file mode 100644 index 00000000..b95e053b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000010_6fc256ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000011_dcb69a22.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000011_dcb69a22.szar new file mode 100644 index 00000000..4d5f71c2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000011_dcb69a22.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000012_6498f3b9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000012_6498f3b9.szar new file mode 100644 index 00000000..296e0522 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000012_6498f3b9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000013_985c59d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000013_985c59d8.szar new file mode 100644 index 00000000..05a2d33c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000013_985c59d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000014_7cefd637.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000014_7cefd637.szar new file mode 100644 index 00000000..70595a3a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000014_7cefd637.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000015_664e722d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000015_664e722d.szar new file mode 100644 index 00000000..ea3ef2cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000015_664e722d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000016_95794968.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000016_95794968.szar new file mode 100644 index 00000000..b7d8d2e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000016_95794968.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000017_82f2af11.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000017_82f2af11.szar new file mode 100644 index 00000000..ab49da5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000017_82f2af11.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000018_65439b5f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000018_65439b5f.szar new file mode 100644 index 00000000..6f8a5252 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000018_65439b5f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000019_829e845e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000019_829e845e.szar new file mode 100644 index 00000000..e0770135 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000019_829e845e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000020_c8e7bdb5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000020_c8e7bdb5.szar new file mode 100644 index 00000000..b8dbb128 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000020_c8e7bdb5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000021_b44f6f59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000021_b44f6f59.szar new file mode 100644 index 00000000..d7e6972a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000021_b44f6f59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000022_f3365ec9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000022_f3365ec9.szar new file mode 100644 index 00000000..ea833b4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000022_f3365ec9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000023_323319cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000023_323319cd.szar new file mode 100644 index 00000000..03b74556 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000023_323319cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000024_13e6fcd8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000024_13e6fcd8.szar new file mode 100644 index 00000000..0a88a9c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000024_13e6fcd8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000025_1a9ea9f1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000025_1a9ea9f1.szar new file mode 100644 index 00000000..befca3a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000025_1a9ea9f1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000026_8410237b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000026_8410237b.szar new file mode 100644 index 00000000..33217111 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000026_8410237b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000027_e5058689.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000027_e5058689.szar new file mode 100644 index 00000000..aa793b65 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000027_e5058689.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000028_95924ea6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000028_95924ea6.szar new file mode 100644 index 00000000..fe007eb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000028_95924ea6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000029_5b279e11.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000029_5b279e11.szar new file mode 100644 index 00000000..11e75fad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000029_5b279e11.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000030_cf2bf8c0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000030_cf2bf8c0.szar new file mode 100644 index 00000000..57faeb42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000030_cf2bf8c0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000031_96139b5e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000031_96139b5e.szar new file mode 100644 index 00000000..cdf2d4c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000031_96139b5e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000032_a719e58e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000032_a719e58e.szar new file mode 100644 index 00000000..f0896865 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/archive/delta_00000000000000000032_a719e58e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000001_ad001b52.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000001_ad001b52.szcp new file mode 100644 index 00000000..54beea84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000001_ad001b52.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000002_2d7c70a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000002_2d7c70a0.szcp new file mode 100644 index 00000000..c53303fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000002_2d7c70a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000003_a8818acd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000003_a8818acd.szcp new file mode 100644 index 00000000..33246bcf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000003_a8818acd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000004_a276c99e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000004_a276c99e.szcp new file mode 100644 index 00000000..f41dedc1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000004_a276c99e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000005_69ee7784.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000005_69ee7784.szcp new file mode 100644 index 00000000..7427223a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000005_69ee7784.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000006_22af7330.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000006_22af7330.szcp new file mode 100644 index 00000000..a5325c60 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000006_22af7330.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000007_0b4e2b27.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000007_0b4e2b27.szcp new file mode 100644 index 00000000..063cdab2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000007_0b4e2b27.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000008_ec2e7923.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000008_ec2e7923.szcp new file mode 100644 index 00000000..ae422e61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000008_ec2e7923.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000009_d3a356cb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000009_d3a356cb.szcp new file mode 100644 index 00000000..ac512c92 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000009_d3a356cb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000010_368f7e4b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000010_368f7e4b.szcp new file mode 100644 index 00000000..27f561cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000010_368f7e4b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000011_d960b0d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000011_d960b0d0.szcp new file mode 100644 index 00000000..4cdede51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000011_d960b0d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000012_19d0c1a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000012_19d0c1a1.szcp new file mode 100644 index 00000000..168f0c18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000012_19d0c1a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000013_ff2b06c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000013_ff2b06c0.szcp new file mode 100644 index 00000000..40b668c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000013_ff2b06c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000014_58659f6c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000014_58659f6c.szcp new file mode 100644 index 00000000..96e8f4a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000014_58659f6c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000015_11a42fab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000015_11a42fab.szcp new file mode 100644 index 00000000..0383c0ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000015_11a42fab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000016_6d95db9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000016_6d95db9f.szcp new file mode 100644 index 00000000..cc90a248 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000016_6d95db9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000017_953269d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000017_953269d7.szcp new file mode 100644 index 00000000..dad319c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000017_953269d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000018_df1cfe5c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000018_df1cfe5c.szcp new file mode 100644 index 00000000..a9fad2eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000018_df1cfe5c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000019_dc8f8636.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000019_dc8f8636.szcp new file mode 100644 index 00000000..3f9d56fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000019_dc8f8636.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000020_726bec80.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000020_726bec80.szcp new file mode 100644 index 00000000..9e3cf62a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000020_726bec80.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000021_63ac29d5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000021_63ac29d5.szcp new file mode 100644 index 00000000..0a993cae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000021_63ac29d5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000022_644320e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000022_644320e3.szcp new file mode 100644 index 00000000..c29347cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000022_644320e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000023_ca357987.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000023_ca357987.szcp new file mode 100644 index 00000000..1847b1ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000023_ca357987.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000024_e9ba5bca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000024_e9ba5bca.szcp new file mode 100644 index 00000000..46c3fafa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000024_e9ba5bca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000025_961786f2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000025_961786f2.szcp new file mode 100644 index 00000000..946114b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000025_961786f2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000026_bdb2a3dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000026_bdb2a3dd.szcp new file mode 100644 index 00000000..d2f4a236 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000026_bdb2a3dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000027_5ac7f792.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000027_5ac7f792.szcp new file mode 100644 index 00000000..65775d6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000027_5ac7f792.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000028_0acf3b29.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000028_0acf3b29.szcp new file mode 100644 index 00000000..b2d21f6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000028_0acf3b29.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000029_3c01870b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000029_3c01870b.szcp new file mode 100644 index 00000000..e09cd529 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000029_3c01870b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000030_7917cdcc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000030_7917cdcc.szcp new file mode 100644 index 00000000..7ce7163c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000030_7917cdcc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000031_04eb790a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000031_04eb790a.szcp new file mode 100644 index 00000000..a29f6037 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000031_04eb790a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000032_b9b3bc65.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000032_b9b3bc65.szcp new file mode 100644 index 00000000..a54f6323 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_021/checkpoints/checkpoint_00000000000000000032_b9b3bc65.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000001_cdb1d299.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000001_cdb1d299.szar new file mode 100644 index 00000000..dc7df84a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000001_cdb1d299.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000002_f73e7f3d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000002_f73e7f3d.szar new file mode 100644 index 00000000..43efdff0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000002_f73e7f3d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000003_aa983f80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000003_aa983f80.szar new file mode 100644 index 00000000..81400be3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000003_aa983f80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000004_2a68b747.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000004_2a68b747.szar new file mode 100644 index 00000000..70366290 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000004_2a68b747.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000005_1efbbe0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000005_1efbbe0a.szar new file mode 100644 index 00000000..7aea653c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000005_1efbbe0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000006_4493b30e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000006_4493b30e.szar new file mode 100644 index 00000000..97d41e41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000006_4493b30e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000007_d8883f26.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000007_d8883f26.szar new file mode 100644 index 00000000..2b054662 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000007_d8883f26.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000008_77363213.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000008_77363213.szar new file mode 100644 index 00000000..d6371f98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000008_77363213.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000009_b6b62d4a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000009_b6b62d4a.szar new file mode 100644 index 00000000..af398d67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000009_b6b62d4a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000010_591fc517.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000010_591fc517.szar new file mode 100644 index 00000000..215f9562 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000010_591fc517.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000011_75c04ce3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000011_75c04ce3.szar new file mode 100644 index 00000000..b3aa865b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000011_75c04ce3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000012_5c8a3a3a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000012_5c8a3a3a.szar new file mode 100644 index 00000000..cb45d081 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000012_5c8a3a3a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000013_9c12a4f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000013_9c12a4f8.szar new file mode 100644 index 00000000..d79b18d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000013_9c12a4f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000014_41be1c48.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000014_41be1c48.szar new file mode 100644 index 00000000..4f03a68f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000014_41be1c48.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000015_0892f2c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000015_0892f2c4.szar new file mode 100644 index 00000000..3a4e1b45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000015_0892f2c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000016_8d7ac26e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000016_8d7ac26e.szar new file mode 100644 index 00000000..8b5f8478 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000016_8d7ac26e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000017_e4e52302.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000017_e4e52302.szar new file mode 100644 index 00000000..d40ef7ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000017_e4e52302.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000018_ad82b7ee.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000018_ad82b7ee.szar new file mode 100644 index 00000000..289d2d9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000018_ad82b7ee.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000019_68c2db51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000019_68c2db51.szar new file mode 100644 index 00000000..69fdb211 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000019_68c2db51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000020_a7b81977.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000020_a7b81977.szar new file mode 100644 index 00000000..bce892a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000020_a7b81977.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000021_29cc863c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000021_29cc863c.szar new file mode 100644 index 00000000..0a10ba77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000021_29cc863c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000022_86147bc3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000022_86147bc3.szar new file mode 100644 index 00000000..c866fa1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000022_86147bc3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000023_7ea6e8f3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000023_7ea6e8f3.szar new file mode 100644 index 00000000..fc04c21e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000023_7ea6e8f3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000024_821232c5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000024_821232c5.szar new file mode 100644 index 00000000..bbd3f675 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000024_821232c5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000025_7bb649bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000025_7bb649bb.szar new file mode 100644 index 00000000..71b8cf87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000025_7bb649bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000026_9853a4ca.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000026_9853a4ca.szar new file mode 100644 index 00000000..479dd5ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000026_9853a4ca.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000027_7039f830.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000027_7039f830.szar new file mode 100644 index 00000000..1dd72752 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/archive/delta_00000000000000000027_7039f830.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000001_ead8fb91.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000001_ead8fb91.szcp new file mode 100644 index 00000000..8b7ed52e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000001_ead8fb91.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000002_e90f295b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000002_e90f295b.szcp new file mode 100644 index 00000000..8479eea3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000002_e90f295b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000003_6135f8d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000003_6135f8d6.szcp new file mode 100644 index 00000000..51ec795f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000003_6135f8d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000004_e75e2a53.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000004_e75e2a53.szcp new file mode 100644 index 00000000..cc7674a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000004_e75e2a53.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000005_56f1e674.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000005_56f1e674.szcp new file mode 100644 index 00000000..f030d5b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000005_56f1e674.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000006_9267d84a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000006_9267d84a.szcp new file mode 100644 index 00000000..b9150f7a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000006_9267d84a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000007_81c640c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000007_81c640c6.szcp new file mode 100644 index 00000000..9782bed5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000007_81c640c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000008_717170db.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000008_717170db.szcp new file mode 100644 index 00000000..8caed5f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000008_717170db.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000009_ae98d15f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000009_ae98d15f.szcp new file mode 100644 index 00000000..5b27fe72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000009_ae98d15f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000010_c589d9e4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000010_c589d9e4.szcp new file mode 100644 index 00000000..8f9513f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000010_c589d9e4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000011_aeca4c44.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000011_aeca4c44.szcp new file mode 100644 index 00000000..a7691049 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000011_aeca4c44.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000012_84d6d2fd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000012_84d6d2fd.szcp new file mode 100644 index 00000000..eba4db92 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000012_84d6d2fd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000013_0ad23374.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000013_0ad23374.szcp new file mode 100644 index 00000000..1f9063ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000013_0ad23374.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000014_e8775c4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000014_e8775c4a.szcp new file mode 100644 index 00000000..84e2f7c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000014_e8775c4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000015_a80efbc0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000015_a80efbc0.szcp new file mode 100644 index 00000000..bbfe5ba6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000015_a80efbc0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000016_c738dee9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000016_c738dee9.szcp new file mode 100644 index 00000000..03a96590 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000016_c738dee9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000017_9e99f676.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000017_9e99f676.szcp new file mode 100644 index 00000000..8863cc31 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000017_9e99f676.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000018_1c5e3b4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000018_1c5e3b4d.szcp new file mode 100644 index 00000000..c64b8a1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000018_1c5e3b4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000019_b97ff106.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000019_b97ff106.szcp new file mode 100644 index 00000000..6d634c00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000019_b97ff106.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000020_cdcb80b9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000020_cdcb80b9.szcp new file mode 100644 index 00000000..54912db6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000020_cdcb80b9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000021_e389464e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000021_e389464e.szcp new file mode 100644 index 00000000..56a4221e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000021_e389464e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000022_3eea7256.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000022_3eea7256.szcp new file mode 100644 index 00000000..ef8a3481 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000022_3eea7256.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000023_24d75b04.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000023_24d75b04.szcp new file mode 100644 index 00000000..6fb637c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000023_24d75b04.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000024_bd7a4631.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000024_bd7a4631.szcp new file mode 100644 index 00000000..943f471c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000024_bd7a4631.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000025_91b76d6c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000025_91b76d6c.szcp new file mode 100644 index 00000000..3aac0bdd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000025_91b76d6c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000026_8443b48c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000026_8443b48c.szcp new file mode 100644 index 00000000..2fdf8aa2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000026_8443b48c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000027_47835fa4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000027_47835fa4.szcp new file mode 100644 index 00000000..005afc19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_022/checkpoints/checkpoint_00000000000000000027_47835fa4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000001_a4c7ffc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000001_a4c7ffc0.szar new file mode 100644 index 00000000..cbae017e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000001_a4c7ffc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000002_6cb57cd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000002_6cb57cd5.szar new file mode 100644 index 00000000..77dad2fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000002_6cb57cd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000003_9a10237d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000003_9a10237d.szar new file mode 100644 index 00000000..b1aa3da7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000003_9a10237d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000004_455c82ba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000004_455c82ba.szar new file mode 100644 index 00000000..9129846e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000004_455c82ba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000005_187c7a0f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000005_187c7a0f.szar new file mode 100644 index 00000000..30ca981c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000005_187c7a0f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000006_3acddbe2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000006_3acddbe2.szar new file mode 100644 index 00000000..6ff9d0a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000006_3acddbe2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000007_90d3f97c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000007_90d3f97c.szar new file mode 100644 index 00000000..367a4749 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000007_90d3f97c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000008_9fb93618.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000008_9fb93618.szar new file mode 100644 index 00000000..c65a4ea1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000008_9fb93618.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000009_99f5fde7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000009_99f5fde7.szar new file mode 100644 index 00000000..b884fdc2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000009_99f5fde7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000010_f98cb054.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000010_f98cb054.szar new file mode 100644 index 00000000..06b1ee2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000010_f98cb054.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000011_8eab04c6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000011_8eab04c6.szar new file mode 100644 index 00000000..05968d59 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000011_8eab04c6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000012_1c5e15b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000012_1c5e15b4.szar new file mode 100644 index 00000000..ce3dd59c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000012_1c5e15b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000013_eec391bd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000013_eec391bd.szar new file mode 100644 index 00000000..40bb6e9f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000013_eec391bd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000014_39e57fc9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000014_39e57fc9.szar new file mode 100644 index 00000000..78359b96 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000014_39e57fc9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000015_c9f46ae0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000015_c9f46ae0.szar new file mode 100644 index 00000000..2c35885a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000015_c9f46ae0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000016_be08e946.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000016_be08e946.szar new file mode 100644 index 00000000..4e23436d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000016_be08e946.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000017_d14a2e4a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000017_d14a2e4a.szar new file mode 100644 index 00000000..1559625b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000017_d14a2e4a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000018_4ff217c9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000018_4ff217c9.szar new file mode 100644 index 00000000..c8914395 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000018_4ff217c9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000019_5675d17c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000019_5675d17c.szar new file mode 100644 index 00000000..d67fda80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000019_5675d17c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000020_3766df08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000020_3766df08.szar new file mode 100644 index 00000000..346b706a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000020_3766df08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000021_fd73ac3b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000021_fd73ac3b.szar new file mode 100644 index 00000000..8d9ce5f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000021_fd73ac3b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000022_2fe66a32.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000022_2fe66a32.szar new file mode 100644 index 00000000..e639c792 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000022_2fe66a32.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000023_e6125a2e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000023_e6125a2e.szar new file mode 100644 index 00000000..bade0b39 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000023_e6125a2e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000024_0befaf63.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000024_0befaf63.szar new file mode 100644 index 00000000..4ed9ae3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000024_0befaf63.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000025_cf2a89d1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000025_cf2a89d1.szar new file mode 100644 index 00000000..3b840711 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000025_cf2a89d1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000026_29aad8e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000026_29aad8e0.szar new file mode 100644 index 00000000..798b6a88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000026_29aad8e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000027_d08f7fd0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000027_d08f7fd0.szar new file mode 100644 index 00000000..fc3f1641 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000027_d08f7fd0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000028_a343dd21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000028_a343dd21.szar new file mode 100644 index 00000000..5c78bec4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000028_a343dd21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000029_fe049086.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000029_fe049086.szar new file mode 100644 index 00000000..0ff8adaa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/archive/delta_00000000000000000029_fe049086.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000001_757c2f01.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000001_757c2f01.szcp new file mode 100644 index 00000000..cbc17098 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000001_757c2f01.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000002_b057ecfa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000002_b057ecfa.szcp new file mode 100644 index 00000000..9a6f0b79 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000002_b057ecfa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000003_41cabf1c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000003_41cabf1c.szcp new file mode 100644 index 00000000..50da20b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000003_41cabf1c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000004_fbc432c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000004_fbc432c0.szcp new file mode 100644 index 00000000..4a30fb70 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000004_fbc432c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000005_0e139a2d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000005_0e139a2d.szcp new file mode 100644 index 00000000..afaa4c5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000005_0e139a2d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000006_859372c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000006_859372c8.szcp new file mode 100644 index 00000000..bf99d033 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000006_859372c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000007_04a06d6a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000007_04a06d6a.szcp new file mode 100644 index 00000000..97a1007d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000007_04a06d6a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000008_d7249f18.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000008_d7249f18.szcp new file mode 100644 index 00000000..9d6cd0be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000008_d7249f18.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000009_3fcfb25e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000009_3fcfb25e.szcp new file mode 100644 index 00000000..adcbc502 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000009_3fcfb25e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000010_9b4fd171.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000010_9b4fd171.szcp new file mode 100644 index 00000000..1b4cf6c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000010_9b4fd171.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000011_6e20f486.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000011_6e20f486.szcp new file mode 100644 index 00000000..996074bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000011_6e20f486.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000012_c54b9a08.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000012_c54b9a08.szcp new file mode 100644 index 00000000..725d058c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000012_c54b9a08.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000013_72eaa21a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000013_72eaa21a.szcp new file mode 100644 index 00000000..e3be8122 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000013_72eaa21a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000014_c671fbab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000014_c671fbab.szcp new file mode 100644 index 00000000..c9e7dd83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000014_c671fbab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000015_124a80df.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000015_124a80df.szcp new file mode 100644 index 00000000..60cce92c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000015_124a80df.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000016_e8cfad1c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000016_e8cfad1c.szcp new file mode 100644 index 00000000..ba9f893a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000016_e8cfad1c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000017_44916fa7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000017_44916fa7.szcp new file mode 100644 index 00000000..432ead6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000017_44916fa7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000018_6c40f041.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000018_6c40f041.szcp new file mode 100644 index 00000000..a2e38d82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000018_6c40f041.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000019_b8e01e64.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000019_b8e01e64.szcp new file mode 100644 index 00000000..b83662ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000019_b8e01e64.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000020_75d4761b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000020_75d4761b.szcp new file mode 100644 index 00000000..ebd3ac71 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000020_75d4761b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000021_60cf0bbf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000021_60cf0bbf.szcp new file mode 100644 index 00000000..68b0026a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000021_60cf0bbf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000022_6ec60ed6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000022_6ec60ed6.szcp new file mode 100644 index 00000000..7b375c11 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000022_6ec60ed6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000023_7bab3407.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000023_7bab3407.szcp new file mode 100644 index 00000000..aa8c2584 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000023_7bab3407.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000024_d28e680d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000024_d28e680d.szcp new file mode 100644 index 00000000..82470975 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000024_d28e680d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000025_020f8f2d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000025_020f8f2d.szcp new file mode 100644 index 00000000..1c125ee8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000025_020f8f2d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000026_6a184fa0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000026_6a184fa0.szcp new file mode 100644 index 00000000..08be78ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000026_6a184fa0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000027_99bdb366.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000027_99bdb366.szcp new file mode 100644 index 00000000..2dd832ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000027_99bdb366.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000028_53d95e0b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000028_53d95e0b.szcp new file mode 100644 index 00000000..823867df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000028_53d95e0b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000029_df84601c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000029_df84601c.szcp new file mode 100644 index 00000000..d526a753 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_023/checkpoints/checkpoint_00000000000000000029_df84601c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000001_6d8728f6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000001_6d8728f6.szar new file mode 100644 index 00000000..5b927570 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000001_6d8728f6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000002_5d68878d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000002_5d68878d.szar new file mode 100644 index 00000000..89622913 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000002_5d68878d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000003_862d1939.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000003_862d1939.szar new file mode 100644 index 00000000..28cf7032 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000003_862d1939.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000004_a75203ee.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000004_a75203ee.szar new file mode 100644 index 00000000..81ac5560 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000004_a75203ee.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000005_0e6bd622.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000005_0e6bd622.szar new file mode 100644 index 00000000..fb430367 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000005_0e6bd622.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000006_c61806cb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000006_c61806cb.szar new file mode 100644 index 00000000..24c687e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000006_c61806cb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000007_c7ab29a1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000007_c7ab29a1.szar new file mode 100644 index 00000000..e0173cd7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000007_c7ab29a1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000008_5da41ff3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000008_5da41ff3.szar new file mode 100644 index 00000000..75f87ba9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000008_5da41ff3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000009_add5a1c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000009_add5a1c2.szar new file mode 100644 index 00000000..2afe2a20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000009_add5a1c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000010_34140526.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000010_34140526.szar new file mode 100644 index 00000000..5424255a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000010_34140526.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000011_9150ac99.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000011_9150ac99.szar new file mode 100644 index 00000000..e13d0097 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000011_9150ac99.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000012_e352f962.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000012_e352f962.szar new file mode 100644 index 00000000..1066db22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000012_e352f962.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000013_14c65c94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000013_14c65c94.szar new file mode 100644 index 00000000..9c61e696 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000013_14c65c94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000014_dfc588b6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000014_dfc588b6.szar new file mode 100644 index 00000000..68231c82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000014_dfc588b6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000015_b4cac154.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000015_b4cac154.szar new file mode 100644 index 00000000..fd6e82c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000015_b4cac154.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000016_e5a8b916.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000016_e5a8b916.szar new file mode 100644 index 00000000..7b63f815 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000016_e5a8b916.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000017_012f720e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000017_012f720e.szar new file mode 100644 index 00000000..79b11e15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000017_012f720e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000018_cb8b670e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000018_cb8b670e.szar new file mode 100644 index 00000000..2402b8fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000018_cb8b670e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000019_b1e4ac24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000019_b1e4ac24.szar new file mode 100644 index 00000000..ebad96fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000019_b1e4ac24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000020_7adef23c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000020_7adef23c.szar new file mode 100644 index 00000000..faf4321b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000020_7adef23c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000021_7d6d16a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000021_7d6d16a0.szar new file mode 100644 index 00000000..4494b803 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000021_7d6d16a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000022_f4554fd2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000022_f4554fd2.szar new file mode 100644 index 00000000..6ff679c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000022_f4554fd2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000023_de712f16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000023_de712f16.szar new file mode 100644 index 00000000..b18a6272 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000023_de712f16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000024_74913cf8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000024_74913cf8.szar new file mode 100644 index 00000000..52a4079b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000024_74913cf8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000025_48af3671.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000025_48af3671.szar new file mode 100644 index 00000000..2e76d150 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/archive/delta_00000000000000000025_48af3671.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000001_d9affa93.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000001_d9affa93.szcp new file mode 100644 index 00000000..c272c570 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000001_d9affa93.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000002_d13cb45a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000002_d13cb45a.szcp new file mode 100644 index 00000000..8991c13d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000002_d13cb45a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000003_49009a55.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000003_49009a55.szcp new file mode 100644 index 00000000..18a5e78f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000003_49009a55.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000004_05f40528.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000004_05f40528.szcp new file mode 100644 index 00000000..f092757b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000004_05f40528.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000005_12be5f17.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000005_12be5f17.szcp new file mode 100644 index 00000000..f7ad8aad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000005_12be5f17.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000006_153f183c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000006_153f183c.szcp new file mode 100644 index 00000000..2b60d0fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000006_153f183c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000007_d27ead89.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000007_d27ead89.szcp new file mode 100644 index 00000000..305df22b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000007_d27ead89.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000008_f0de65ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000008_f0de65ed.szcp new file mode 100644 index 00000000..0678b9bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000008_f0de65ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000009_363e01b9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000009_363e01b9.szcp new file mode 100644 index 00000000..0e56cb15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000009_363e01b9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000010_3c049651.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000010_3c049651.szcp new file mode 100644 index 00000000..96b6f9b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000010_3c049651.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000011_b141f674.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000011_b141f674.szcp new file mode 100644 index 00000000..9ca466d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000011_b141f674.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000012_a54f225b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000012_a54f225b.szcp new file mode 100644 index 00000000..83cf572f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000012_a54f225b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000013_87f3de39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000013_87f3de39.szcp new file mode 100644 index 00000000..240a0c53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000013_87f3de39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000014_b23cd036.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000014_b23cd036.szcp new file mode 100644 index 00000000..701d2f68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000014_b23cd036.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000015_14ab6b9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000015_14ab6b9a.szcp new file mode 100644 index 00000000..613058ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000015_14ab6b9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000016_a5b2c270.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000016_a5b2c270.szcp new file mode 100644 index 00000000..40313620 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000016_a5b2c270.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000017_7548a282.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000017_7548a282.szcp new file mode 100644 index 00000000..e9a38254 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000017_7548a282.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000018_4032b46d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000018_4032b46d.szcp new file mode 100644 index 00000000..a4fa84bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000018_4032b46d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000019_0873e2f7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000019_0873e2f7.szcp new file mode 100644 index 00000000..884d6a5c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000019_0873e2f7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000020_03d916de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000020_03d916de.szcp new file mode 100644 index 00000000..f3498420 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000020_03d916de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000021_db3530ae.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000021_db3530ae.szcp new file mode 100644 index 00000000..70a0bf4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000021_db3530ae.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000022_0e5f8849.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000022_0e5f8849.szcp new file mode 100644 index 00000000..dd33a2c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000022_0e5f8849.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000023_a419aa9c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000023_a419aa9c.szcp new file mode 100644 index 00000000..d8cae47c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000023_a419aa9c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000024_acd891cf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000024_acd891cf.szcp new file mode 100644 index 00000000..2f247c5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000024_acd891cf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000025_f1bf3ffc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000025_f1bf3ffc.szcp new file mode 100644 index 00000000..6a389e7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_024/checkpoints/checkpoint_00000000000000000025_f1bf3ffc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000001_f56bb571.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000001_f56bb571.szar new file mode 100644 index 00000000..a83195d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000001_f56bb571.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000002_1f145a2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000002_1f145a2d.szar new file mode 100644 index 00000000..0d4e365f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000002_1f145a2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000003_da863416.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000003_da863416.szar new file mode 100644 index 00000000..c1c177b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000003_da863416.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000004_5be66b4f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000004_5be66b4f.szar new file mode 100644 index 00000000..0c75e9ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000004_5be66b4f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000005_d184f30b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000005_d184f30b.szar new file mode 100644 index 00000000..21343a47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000005_d184f30b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000006_c626af95.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000006_c626af95.szar new file mode 100644 index 00000000..9187abb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000006_c626af95.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000007_a0837792.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000007_a0837792.szar new file mode 100644 index 00000000..54dcba98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000007_a0837792.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000008_1e7e6900.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000008_1e7e6900.szar new file mode 100644 index 00000000..3b75c304 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000008_1e7e6900.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000009_f6972f67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000009_f6972f67.szar new file mode 100644 index 00000000..1dfc9d06 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000009_f6972f67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000010_2bce1903.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000010_2bce1903.szar new file mode 100644 index 00000000..31a9cb04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000010_2bce1903.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000011_697922ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000011_697922ae.szar new file mode 100644 index 00000000..6e446e33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000011_697922ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000012_102191b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000012_102191b4.szar new file mode 100644 index 00000000..b1b0c1e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000012_102191b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000013_fa8c1ebd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000013_fa8c1ebd.szar new file mode 100644 index 00000000..92cc4642 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000013_fa8c1ebd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000014_68edab43.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000014_68edab43.szar new file mode 100644 index 00000000..5c8d3ea7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000014_68edab43.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000015_02c78fb8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000015_02c78fb8.szar new file mode 100644 index 00000000..556a6079 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000015_02c78fb8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000016_43d38ab0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000016_43d38ab0.szar new file mode 100644 index 00000000..e122774d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000016_43d38ab0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000017_e7e6df99.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000017_e7e6df99.szar new file mode 100644 index 00000000..b1339852 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000017_e7e6df99.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000018_cbe1a513.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000018_cbe1a513.szar new file mode 100644 index 00000000..b1cc7fb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000018_cbe1a513.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000019_fbd213ca.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000019_fbd213ca.szar new file mode 100644 index 00000000..4f2cd6c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000019_fbd213ca.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000020_9b920c97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000020_9b920c97.szar new file mode 100644 index 00000000..cbbb2885 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000020_9b920c97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000021_201f7700.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000021_201f7700.szar new file mode 100644 index 00000000..f01a068b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000021_201f7700.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000022_9adf0218.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000022_9adf0218.szar new file mode 100644 index 00000000..6a8464f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000022_9adf0218.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000023_0b7c7dea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000023_0b7c7dea.szar new file mode 100644 index 00000000..3e1b8a17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000023_0b7c7dea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000024_d3ef5826.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000024_d3ef5826.szar new file mode 100644 index 00000000..9a6f4b32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000024_d3ef5826.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000025_51cd60c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000025_51cd60c3.szar new file mode 100644 index 00000000..4928e7e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000025_51cd60c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000026_6e6bab05.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000026_6e6bab05.szar new file mode 100644 index 00000000..3e4c3aab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000026_6e6bab05.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000027_60fa9d2e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000027_60fa9d2e.szar new file mode 100644 index 00000000..1544044e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000027_60fa9d2e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000028_9c4efad1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000028_9c4efad1.szar new file mode 100644 index 00000000..8974aec2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000028_9c4efad1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000029_0a9c7c60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000029_0a9c7c60.szar new file mode 100644 index 00000000..3f9e33bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000029_0a9c7c60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000030_b9a88813.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000030_b9a88813.szar new file mode 100644 index 00000000..5399772f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000030_b9a88813.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000031_ecdbe313.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000031_ecdbe313.szar new file mode 100644 index 00000000..a2ef19b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000031_ecdbe313.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000032_ee78ca5a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000032_ee78ca5a.szar new file mode 100644 index 00000000..c22ebf38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000032_ee78ca5a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000033_386492ab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000033_386492ab.szar new file mode 100644 index 00000000..70a262c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000033_386492ab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000034_9f75e10d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000034_9f75e10d.szar new file mode 100644 index 00000000..eb1c41d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/archive/delta_00000000000000000034_9f75e10d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000001_641f50d5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000001_641f50d5.szcp new file mode 100644 index 00000000..30556951 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000001_641f50d5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000002_a7bff5fa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000002_a7bff5fa.szcp new file mode 100644 index 00000000..2fcbc67a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000002_a7bff5fa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000003_8051e077.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000003_8051e077.szcp new file mode 100644 index 00000000..029c853c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000003_8051e077.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000004_0d54fcf6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000004_0d54fcf6.szcp new file mode 100644 index 00000000..caaf61ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000004_0d54fcf6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000005_340b5b9b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000005_340b5b9b.szcp new file mode 100644 index 00000000..6ce5883c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000005_340b5b9b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000006_a9f1c373.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000006_a9f1c373.szcp new file mode 100644 index 00000000..6c53fe5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000006_a9f1c373.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000007_109552c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000007_109552c6.szcp new file mode 100644 index 00000000..4429d314 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000007_109552c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000008_2ba6fd4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000008_2ba6fd4a.szcp new file mode 100644 index 00000000..84703163 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000008_2ba6fd4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000009_53be3124.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000009_53be3124.szcp new file mode 100644 index 00000000..2119ba3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000009_53be3124.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000010_5c856b23.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000010_5c856b23.szcp new file mode 100644 index 00000000..9fc0774c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000010_5c856b23.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000011_550a557b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000011_550a557b.szcp new file mode 100644 index 00000000..d520db49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000011_550a557b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000012_a46ecc6a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000012_a46ecc6a.szcp new file mode 100644 index 00000000..be5e63e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000012_a46ecc6a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000013_d5ccc3c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000013_d5ccc3c0.szcp new file mode 100644 index 00000000..89ead29f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000013_d5ccc3c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000014_a8801a87.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000014_a8801a87.szcp new file mode 100644 index 00000000..69dd5d50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000014_a8801a87.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000015_744cb2a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000015_744cb2a1.szcp new file mode 100644 index 00000000..870705c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000015_744cb2a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000016_5f4ebf49.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000016_5f4ebf49.szcp new file mode 100644 index 00000000..1bc8171a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000016_5f4ebf49.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000017_dcb99f7a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000017_dcb99f7a.szcp new file mode 100644 index 00000000..f0e47538 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000017_dcb99f7a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000018_e2262216.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000018_e2262216.szcp new file mode 100644 index 00000000..321d9549 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000018_e2262216.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000019_8ebbb8be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000019_8ebbb8be.szcp new file mode 100644 index 00000000..091403ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000019_8ebbb8be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000020_9ba2f2e2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000020_9ba2f2e2.szcp new file mode 100644 index 00000000..6f33269b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000020_9ba2f2e2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000021_807eaa39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000021_807eaa39.szcp new file mode 100644 index 00000000..060f6837 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000021_807eaa39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000022_4ac427ea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000022_4ac427ea.szcp new file mode 100644 index 00000000..51b0e22c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000022_4ac427ea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000023_c91fed42.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000023_c91fed42.szcp new file mode 100644 index 00000000..6b8d9d19 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000023_c91fed42.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000024_bcc434c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000024_bcc434c8.szcp new file mode 100644 index 00000000..ceef6a1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000024_bcc434c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000025_32514490.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000025_32514490.szcp new file mode 100644 index 00000000..5f83c9b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000025_32514490.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000026_ccf6b443.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000026_ccf6b443.szcp new file mode 100644 index 00000000..f5dd8060 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000026_ccf6b443.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000027_1002383a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000027_1002383a.szcp new file mode 100644 index 00000000..2f3a40f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000027_1002383a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000028_624edd21.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000028_624edd21.szcp new file mode 100644 index 00000000..6d75ecaa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000028_624edd21.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000029_b0417f17.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000029_b0417f17.szcp new file mode 100644 index 00000000..67556fbf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000029_b0417f17.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000030_b75e4fbd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000030_b75e4fbd.szcp new file mode 100644 index 00000000..5aa8ab4c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000030_b75e4fbd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000031_e20e834d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000031_e20e834d.szcp new file mode 100644 index 00000000..c662c6a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000031_e20e834d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000032_ef38faaf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000032_ef38faaf.szcp new file mode 100644 index 00000000..b2aaa0ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000032_ef38faaf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000033_239e6350.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000033_239e6350.szcp new file mode 100644 index 00000000..3c3da5d8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000033_239e6350.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000034_a8715eec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000034_a8715eec.szcp new file mode 100644 index 00000000..1166122f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_025/checkpoints/checkpoint_00000000000000000034_a8715eec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000001_81789f2e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000001_81789f2e.szar new file mode 100644 index 00000000..9c7a42f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000001_81789f2e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000002_32541128.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000002_32541128.szar new file mode 100644 index 00000000..620c8f2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000002_32541128.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000003_c0bbc520.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000003_c0bbc520.szar new file mode 100644 index 00000000..aa3df773 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000003_c0bbc520.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000004_3625ff11.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000004_3625ff11.szar new file mode 100644 index 00000000..02624043 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000004_3625ff11.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000005_b22ea327.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000005_b22ea327.szar new file mode 100644 index 00000000..558006fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000005_b22ea327.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000006_b59ae0ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000006_b59ae0ef.szar new file mode 100644 index 00000000..f89f01e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000006_b59ae0ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000007_3e95632e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000007_3e95632e.szar new file mode 100644 index 00000000..f13b695e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000007_3e95632e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000008_861987d0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000008_861987d0.szar new file mode 100644 index 00000000..24172e1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000008_861987d0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000009_eb1f641a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000009_eb1f641a.szar new file mode 100644 index 00000000..6523c9fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000009_eb1f641a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000010_5616c65e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000010_5616c65e.szar new file mode 100644 index 00000000..c8d6b3f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000010_5616c65e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000011_fa2983aa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000011_fa2983aa.szar new file mode 100644 index 00000000..8f23076e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000011_fa2983aa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000012_6333e8b7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000012_6333e8b7.szar new file mode 100644 index 00000000..24743fb5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000012_6333e8b7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000013_e01d2371.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000013_e01d2371.szar new file mode 100644 index 00000000..137883b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000013_e01d2371.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000014_6cbf507d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000014_6cbf507d.szar new file mode 100644 index 00000000..49f5ffea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000014_6cbf507d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000015_f68c6806.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000015_f68c6806.szar new file mode 100644 index 00000000..2bb974cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000015_f68c6806.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000016_cc04cb08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000016_cc04cb08.szar new file mode 100644 index 00000000..ff940725 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000016_cc04cb08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000017_17f1e3f6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000017_17f1e3f6.szar new file mode 100644 index 00000000..79344703 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000017_17f1e3f6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000018_24877622.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000018_24877622.szar new file mode 100644 index 00000000..94995748 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000018_24877622.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000019_02056458.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000019_02056458.szar new file mode 100644 index 00000000..3fcab91d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000019_02056458.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000020_55bc4974.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000020_55bc4974.szar new file mode 100644 index 00000000..35481385 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000020_55bc4974.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000021_8c97bcfc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000021_8c97bcfc.szar new file mode 100644 index 00000000..57eb04b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000021_8c97bcfc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000022_fe3562f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000022_fe3562f0.szar new file mode 100644 index 00000000..172506ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000022_fe3562f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000023_6759af35.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000023_6759af35.szar new file mode 100644 index 00000000..6b1c0c30 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000023_6759af35.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000024_d27186be.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000024_d27186be.szar new file mode 100644 index 00000000..d7d01607 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000024_d27186be.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000025_b995a34d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000025_b995a34d.szar new file mode 100644 index 00000000..41da3076 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000025_b995a34d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000026_5879a7e3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000026_5879a7e3.szar new file mode 100644 index 00000000..fda8990f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000026_5879a7e3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000027_fdac8ff6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000027_fdac8ff6.szar new file mode 100644 index 00000000..fd063c72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000027_fdac8ff6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000028_62d8b05b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000028_62d8b05b.szar new file mode 100644 index 00000000..a9b8a9a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000028_62d8b05b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000029_95cd11db.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000029_95cd11db.szar new file mode 100644 index 00000000..4ecfb686 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000029_95cd11db.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000030_6b56bc78.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000030_6b56bc78.szar new file mode 100644 index 00000000..f378f9a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000030_6b56bc78.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000031_cfb043e6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000031_cfb043e6.szar new file mode 100644 index 00000000..eb37d7fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000031_cfb043e6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000032_f7b6dfd9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000032_f7b6dfd9.szar new file mode 100644 index 00000000..b4f96f33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000032_f7b6dfd9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000033_60193402.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000033_60193402.szar new file mode 100644 index 00000000..14212a89 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/archive/delta_00000000000000000033_60193402.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000001_b31dd38e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000001_b31dd38e.szcp new file mode 100644 index 00000000..acc31ee4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000001_b31dd38e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000002_b78a5e73.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000002_b78a5e73.szcp new file mode 100644 index 00000000..83c9a056 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000002_b78a5e73.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000003_f00a4d93.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000003_f00a4d93.szcp new file mode 100644 index 00000000..7bd3efa0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000003_f00a4d93.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000004_c2ee3dd0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000004_c2ee3dd0.szcp new file mode 100644 index 00000000..8dc167b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000004_c2ee3dd0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000005_fb4e9e71.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000005_fb4e9e71.szcp new file mode 100644 index 00000000..b5c649d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000005_fb4e9e71.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000006_2da9aa69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000006_2da9aa69.szcp new file mode 100644 index 00000000..8a08c692 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000006_2da9aa69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000007_ee455f19.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000007_ee455f19.szcp new file mode 100644 index 00000000..e9f5f054 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000007_ee455f19.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000008_64d70ae2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000008_64d70ae2.szcp new file mode 100644 index 00000000..33f65ecd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000008_64d70ae2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000009_3d33c3a5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000009_3d33c3a5.szcp new file mode 100644 index 00000000..9273bc4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000009_3d33c3a5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000010_5a3df1d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000010_5a3df1d7.szcp new file mode 100644 index 00000000..c44f86e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000010_5a3df1d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000011_d4f10cd3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000011_d4f10cd3.szcp new file mode 100644 index 00000000..1c70e275 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000011_d4f10cd3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000012_92e95375.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000012_92e95375.szcp new file mode 100644 index 00000000..0aa1b1c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000012_92e95375.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000013_3a9da8ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000013_3a9da8ee.szcp new file mode 100644 index 00000000..90e09458 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000013_3a9da8ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000014_30d6fce6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000014_30d6fce6.szcp new file mode 100644 index 00000000..9d4cb8ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000014_30d6fce6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000015_5089cc0c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000015_5089cc0c.szcp new file mode 100644 index 00000000..8950b3e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000015_5089cc0c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000016_e219d059.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000016_e219d059.szcp new file mode 100644 index 00000000..c917884c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000016_e219d059.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000017_cd9f33cb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000017_cd9f33cb.szcp new file mode 100644 index 00000000..ed206299 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000017_cd9f33cb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000018_751418ff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000018_751418ff.szcp new file mode 100644 index 00000000..f8c29863 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000018_751418ff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000019_9a1681b6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000019_9a1681b6.szcp new file mode 100644 index 00000000..45b34c70 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000019_9a1681b6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000020_558afda6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000020_558afda6.szcp new file mode 100644 index 00000000..1948ae68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000020_558afda6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000021_038f8d4b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000021_038f8d4b.szcp new file mode 100644 index 00000000..ad7d1917 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000021_038f8d4b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000022_4177ba80.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000022_4177ba80.szcp new file mode 100644 index 00000000..acc790dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000022_4177ba80.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000023_390aa93a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000023_390aa93a.szcp new file mode 100644 index 00000000..5e36ea3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000023_390aa93a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000024_c3dfa437.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000024_c3dfa437.szcp new file mode 100644 index 00000000..681ac106 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000024_c3dfa437.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000025_af0a0215.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000025_af0a0215.szcp new file mode 100644 index 00000000..121a68e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000025_af0a0215.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000026_3ad7428f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000026_3ad7428f.szcp new file mode 100644 index 00000000..d67dd6bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000026_3ad7428f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000027_7daddfcf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000027_7daddfcf.szcp new file mode 100644 index 00000000..6ed16d2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000027_7daddfcf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000028_f57d2e5a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000028_f57d2e5a.szcp new file mode 100644 index 00000000..996dc035 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000028_f57d2e5a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000029_63ea20c7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000029_63ea20c7.szcp new file mode 100644 index 00000000..a7267571 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000029_63ea20c7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000030_7c834142.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000030_7c834142.szcp new file mode 100644 index 00000000..ad731ae1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000030_7c834142.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000031_712a6b03.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000031_712a6b03.szcp new file mode 100644 index 00000000..966885c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000031_712a6b03.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000032_5b40d4bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000032_5b40d4bd.szcp new file mode 100644 index 00000000..669abda9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000032_5b40d4bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000033_eebf8cbb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000033_eebf8cbb.szcp new file mode 100644 index 00000000..f58eaad5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_026/checkpoints/checkpoint_00000000000000000033_eebf8cbb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000001_8e9ad1ee.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000001_8e9ad1ee.szar new file mode 100644 index 00000000..e46e6a8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000001_8e9ad1ee.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000002_67750c5d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000002_67750c5d.szar new file mode 100644 index 00000000..bbe44802 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000002_67750c5d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000003_abbc5eac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000003_abbc5eac.szar new file mode 100644 index 00000000..9b0daf25 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000003_abbc5eac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000004_bce3b880.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000004_bce3b880.szar new file mode 100644 index 00000000..0a220acc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000004_bce3b880.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000005_f4d9a58a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000005_f4d9a58a.szar new file mode 100644 index 00000000..8840f942 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000005_f4d9a58a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000006_625df592.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000006_625df592.szar new file mode 100644 index 00000000..df9a3560 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000006_625df592.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000007_f512e75b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000007_f512e75b.szar new file mode 100644 index 00000000..594aaa3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000007_f512e75b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000008_d58fdb55.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000008_d58fdb55.szar new file mode 100644 index 00000000..6c74c288 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000008_d58fdb55.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000009_7f8dc24d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000009_7f8dc24d.szar new file mode 100644 index 00000000..73a24375 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000009_7f8dc24d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000010_cfaa19ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000010_cfaa19ae.szar new file mode 100644 index 00000000..db6652e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000010_cfaa19ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000011_f0cad70c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000011_f0cad70c.szar new file mode 100644 index 00000000..4d49ed07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000011_f0cad70c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000012_071f7470.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000012_071f7470.szar new file mode 100644 index 00000000..d735a48b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000012_071f7470.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000013_ecb8a5fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000013_ecb8a5fc.szar new file mode 100644 index 00000000..67c9735f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000013_ecb8a5fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000014_f0ffcc93.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000014_f0ffcc93.szar new file mode 100644 index 00000000..4744c508 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000014_f0ffcc93.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000015_4290b3e8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000015_4290b3e8.szar new file mode 100644 index 00000000..4d44f357 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000015_4290b3e8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000016_6bd00b47.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000016_6bd00b47.szar new file mode 100644 index 00000000..6ad4e41e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000016_6bd00b47.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000017_1116c70d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000017_1116c70d.szar new file mode 100644 index 00000000..e99a531a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000017_1116c70d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000018_ab898f10.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000018_ab898f10.szar new file mode 100644 index 00000000..c8fd2a37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000018_ab898f10.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000019_1eaab650.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000019_1eaab650.szar new file mode 100644 index 00000000..1d9637ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000019_1eaab650.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000020_f635004f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000020_f635004f.szar new file mode 100644 index 00000000..4f97b92a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000020_f635004f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000021_087700a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000021_087700a6.szar new file mode 100644 index 00000000..cfeb6600 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000021_087700a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000022_070cf0a9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000022_070cf0a9.szar new file mode 100644 index 00000000..b21836b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000022_070cf0a9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000023_b7f3da15.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000023_b7f3da15.szar new file mode 100644 index 00000000..175af4c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000023_b7f3da15.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000024_a62998d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000024_a62998d6.szar new file mode 100644 index 00000000..41b71f45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000024_a62998d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000025_d3e831f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000025_d3e831f0.szar new file mode 100644 index 00000000..e0b28bc4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000025_d3e831f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000026_a5604c94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000026_a5604c94.szar new file mode 100644 index 00000000..974272dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000026_a5604c94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000027_bcccaaf2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000027_bcccaaf2.szar new file mode 100644 index 00000000..06ffebca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000027_bcccaaf2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000028_692f6733.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000028_692f6733.szar new file mode 100644 index 00000000..0a314ca1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000028_692f6733.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000029_2b322f67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000029_2b322f67.szar new file mode 100644 index 00000000..bda832c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000029_2b322f67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000030_1b4d939e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000030_1b4d939e.szar new file mode 100644 index 00000000..a671a0a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000030_1b4d939e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000031_9fd6fd5c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000031_9fd6fd5c.szar new file mode 100644 index 00000000..57c250fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000031_9fd6fd5c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000032_ece2b3bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000032_ece2b3bb.szar new file mode 100644 index 00000000..bcc1fc68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000032_ece2b3bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000033_b5ef0696.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000033_b5ef0696.szar new file mode 100644 index 00000000..59b7a123 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000033_b5ef0696.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000034_6798a5cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000034_6798a5cc.szar new file mode 100644 index 00000000..60912a1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000034_6798a5cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000035_450ad5f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000035_450ad5f0.szar new file mode 100644 index 00000000..dc5a3d22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/archive/delta_00000000000000000035_450ad5f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000001_5dcce562.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000001_5dcce562.szcp new file mode 100644 index 00000000..d855ef7b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000001_5dcce562.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000002_f57dad0c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000002_f57dad0c.szcp new file mode 100644 index 00000000..0f09109e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000002_f57dad0c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000003_2528db61.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000003_2528db61.szcp new file mode 100644 index 00000000..5e949962 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000003_2528db61.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000004_c8625c9c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000004_c8625c9c.szcp new file mode 100644 index 00000000..954908d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000004_c8625c9c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000005_f7b0c3b5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000005_f7b0c3b5.szcp new file mode 100644 index 00000000..f6c0422c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000005_f7b0c3b5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000006_f82e4855.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000006_f82e4855.szcp new file mode 100644 index 00000000..44bf6876 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000006_f82e4855.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000007_5c8f4a0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000007_5c8f4a0d.szcp new file mode 100644 index 00000000..724e4071 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000007_5c8f4a0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000008_67a5af4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000008_67a5af4a.szcp new file mode 100644 index 00000000..52c0a586 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000008_67a5af4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000009_4f8677c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000009_4f8677c6.szcp new file mode 100644 index 00000000..e41b9ebe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000009_4f8677c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000010_0a78f951.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000010_0a78f951.szcp new file mode 100644 index 00000000..b40e6ec6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000010_0a78f951.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000011_c42410d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000011_c42410d7.szcp new file mode 100644 index 00000000..ee82cd22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000011_c42410d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000012_0dbdaa0b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000012_0dbdaa0b.szcp new file mode 100644 index 00000000..bbc90455 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000012_0dbdaa0b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000013_de50bdae.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000013_de50bdae.szcp new file mode 100644 index 00000000..dbb9dd56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000013_de50bdae.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000014_88d43148.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000014_88d43148.szcp new file mode 100644 index 00000000..60b2730a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000014_88d43148.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000015_39e0dd53.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000015_39e0dd53.szcp new file mode 100644 index 00000000..1b3c408b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000015_39e0dd53.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000016_1ae7175f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000016_1ae7175f.szcp new file mode 100644 index 00000000..5d355762 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000016_1ae7175f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000017_0e5a7730.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000017_0e5a7730.szcp new file mode 100644 index 00000000..5ee706c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000017_0e5a7730.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000018_38f60241.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000018_38f60241.szcp new file mode 100644 index 00000000..1b7b8425 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000018_38f60241.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000019_2fb718f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000019_2fb718f8.szcp new file mode 100644 index 00000000..5f66805c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000019_2fb718f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000020_e9edbfb6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000020_e9edbfb6.szcp new file mode 100644 index 00000000..63aa4353 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000020_e9edbfb6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000021_c353b220.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000021_c353b220.szcp new file mode 100644 index 00000000..c3b56949 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000021_c353b220.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000022_f5f63278.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000022_f5f63278.szcp new file mode 100644 index 00000000..13a48d0f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000022_f5f63278.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000023_e00628b6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000023_e00628b6.szcp new file mode 100644 index 00000000..61875c56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000023_e00628b6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000024_76faed2b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000024_76faed2b.szcp new file mode 100644 index 00000000..6b58b191 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000024_76faed2b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000025_911e5d18.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000025_911e5d18.szcp new file mode 100644 index 00000000..50d92429 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000025_911e5d18.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000026_787240c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000026_787240c8.szcp new file mode 100644 index 00000000..6f5798a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000026_787240c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000027_8d9f0244.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000027_8d9f0244.szcp new file mode 100644 index 00000000..ab37af41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000027_8d9f0244.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000028_b73a8eb0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000028_b73a8eb0.szcp new file mode 100644 index 00000000..728f5e4b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000028_b73a8eb0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000029_1a13408c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000029_1a13408c.szcp new file mode 100644 index 00000000..7f22e164 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000029_1a13408c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000030_0cb4a4bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000030_0cb4a4bd.szcp new file mode 100644 index 00000000..49eec06f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000030_0cb4a4bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000031_477c46b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000031_477c46b1.szcp new file mode 100644 index 00000000..f6c2b16b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000031_477c46b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000032_229f4ac5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000032_229f4ac5.szcp new file mode 100644 index 00000000..9812688d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000032_229f4ac5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000033_c15d3559.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000033_c15d3559.szcp new file mode 100644 index 00000000..64bac8f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000033_c15d3559.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000034_a15a51b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000034_a15a51b1.szcp new file mode 100644 index 00000000..e6430d14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000034_a15a51b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000035_0d63442a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000035_0d63442a.szcp new file mode 100644 index 00000000..ceba9d33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_027/checkpoints/checkpoint_00000000000000000035_0d63442a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000001_81da4fcf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000001_81da4fcf.szar new file mode 100644 index 00000000..f3f50122 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000001_81da4fcf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000002_fce422c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000002_fce422c2.szar new file mode 100644 index 00000000..2e50b6e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000002_fce422c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000003_7032bd39.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000003_7032bd39.szar new file mode 100644 index 00000000..c180cff6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000003_7032bd39.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000004_b5547b49.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000004_b5547b49.szar new file mode 100644 index 00000000..1fd14eb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000004_b5547b49.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000005_b6ba5cdd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000005_b6ba5cdd.szar new file mode 100644 index 00000000..0f39d0da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000005_b6ba5cdd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000006_11461bb0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000006_11461bb0.szar new file mode 100644 index 00000000..a4916ac4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000006_11461bb0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000007_eecfccc3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000007_eecfccc3.szar new file mode 100644 index 00000000..4350f68b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000007_eecfccc3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000008_5c21ad51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000008_5c21ad51.szar new file mode 100644 index 00000000..e4b61c24 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000008_5c21ad51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000009_79d17add.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000009_79d17add.szar new file mode 100644 index 00000000..51da38d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000009_79d17add.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000010_8ab1a397.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000010_8ab1a397.szar new file mode 100644 index 00000000..32aa3071 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000010_8ab1a397.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000011_73dddc0b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000011_73dddc0b.szar new file mode 100644 index 00000000..e26b537c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000011_73dddc0b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000012_e1460256.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000012_e1460256.szar new file mode 100644 index 00000000..e0db8965 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000012_e1460256.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000013_dec6d112.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000013_dec6d112.szar new file mode 100644 index 00000000..66667beb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000013_dec6d112.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000014_af8b06f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000014_af8b06f0.szar new file mode 100644 index 00000000..3a4436c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000014_af8b06f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000015_85a71b21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000015_85a71b21.szar new file mode 100644 index 00000000..a403bd01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000015_85a71b21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000016_060f5b4c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000016_060f5b4c.szar new file mode 100644 index 00000000..58ff2789 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000016_060f5b4c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000017_c8cc271d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000017_c8cc271d.szar new file mode 100644 index 00000000..537020bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000017_c8cc271d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000018_c3ec66f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000018_c3ec66f0.szar new file mode 100644 index 00000000..1260001e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000018_c3ec66f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000019_4c4d42f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000019_4c4d42f0.szar new file mode 100644 index 00000000..f8fd07f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000019_4c4d42f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000020_5af7aa90.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000020_5af7aa90.szar new file mode 100644 index 00000000..12da6e47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000020_5af7aa90.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000021_db4c5cd6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000021_db4c5cd6.szar new file mode 100644 index 00000000..f0c91d6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000021_db4c5cd6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000022_86d01145.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000022_86d01145.szar new file mode 100644 index 00000000..c9f4657f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000022_86d01145.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000023_62339e0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000023_62339e0a.szar new file mode 100644 index 00000000..e2e59265 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000023_62339e0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000024_a0140e7c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000024_a0140e7c.szar new file mode 100644 index 00000000..036a1222 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000024_a0140e7c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000025_f903d24d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000025_f903d24d.szar new file mode 100644 index 00000000..e90a399e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000025_f903d24d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000026_0e2d15cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000026_0e2d15cc.szar new file mode 100644 index 00000000..0a1b6628 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000026_0e2d15cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000027_5a539b80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000027_5a539b80.szar new file mode 100644 index 00000000..aae9074a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/archive/delta_00000000000000000027_5a539b80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000001_b35b62e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000001_b35b62e7.szcp new file mode 100644 index 00000000..b237c4db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000001_b35b62e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000002_fab28ea0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000002_fab28ea0.szcp new file mode 100644 index 00000000..3b738bda Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000002_fab28ea0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000003_f48fdf86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000003_f48fdf86.szcp new file mode 100644 index 00000000..93939f6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000003_f48fdf86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000004_642de6dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000004_642de6dd.szcp new file mode 100644 index 00000000..06e6c1c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000004_642de6dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000005_8ef434e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000005_8ef434e3.szcp new file mode 100644 index 00000000..b3d2f50e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000005_8ef434e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000006_08e6156c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000006_08e6156c.szcp new file mode 100644 index 00000000..058b0f3a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000006_08e6156c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000007_2e168736.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000007_2e168736.szcp new file mode 100644 index 00000000..05accaf1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000007_2e168736.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000008_c51ea387.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000008_c51ea387.szcp new file mode 100644 index 00000000..9718b876 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000008_c51ea387.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000009_59163067.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000009_59163067.szcp new file mode 100644 index 00000000..88165398 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000009_59163067.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000010_c6d7eee3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000010_c6d7eee3.szcp new file mode 100644 index 00000000..462e3fee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000010_c6d7eee3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000011_361cb04f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000011_361cb04f.szcp new file mode 100644 index 00000000..fb2902ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000011_361cb04f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000012_75a2eb69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000012_75a2eb69.szcp new file mode 100644 index 00000000..d9d01f60 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000012_75a2eb69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000013_f61a8d42.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000013_f61a8d42.szcp new file mode 100644 index 00000000..2180c7ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000013_f61a8d42.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000014_0e203ed4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000014_0e203ed4.szcp new file mode 100644 index 00000000..3afa58d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000014_0e203ed4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000015_ae088f0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000015_ae088f0d.szcp new file mode 100644 index 00000000..4653fab8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000015_ae088f0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000016_a79b64e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000016_a79b64e8.szcp new file mode 100644 index 00000000..3654e5f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000016_a79b64e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000017_cd7e98f7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000017_cd7e98f7.szcp new file mode 100644 index 00000000..6f009352 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000017_cd7e98f7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000018_253b2dfd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000018_253b2dfd.szcp new file mode 100644 index 00000000..d3be1d6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000018_253b2dfd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000019_defcf07e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000019_defcf07e.szcp new file mode 100644 index 00000000..a6cdcc4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000019_defcf07e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000020_d67b6bf5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000020_d67b6bf5.szcp new file mode 100644 index 00000000..7734319f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000020_d67b6bf5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000021_98388739.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000021_98388739.szcp new file mode 100644 index 00000000..bb4f9bbb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000021_98388739.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000022_a273267e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000022_a273267e.szcp new file mode 100644 index 00000000..aa9155b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000022_a273267e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000023_71a32bdb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000023_71a32bdb.szcp new file mode 100644 index 00000000..389a30de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000023_71a32bdb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000024_6a5dd1ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000024_6a5dd1ba.szcp new file mode 100644 index 00000000..af45f470 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000024_6a5dd1ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000025_dea3ff8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000025_dea3ff8c.szcp new file mode 100644 index 00000000..953426a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000025_dea3ff8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000026_6c2d7440.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000026_6c2d7440.szcp new file mode 100644 index 00000000..b2d6bb94 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000026_6c2d7440.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000027_e98f2e94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000027_e98f2e94.szcp new file mode 100644 index 00000000..be0f3ea0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_028/checkpoints/checkpoint_00000000000000000027_e98f2e94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000001_55f00565.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000001_55f00565.szar new file mode 100644 index 00000000..7c4ca242 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000001_55f00565.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000002_a3a6b6a2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000002_a3a6b6a2.szar new file mode 100644 index 00000000..fea52722 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000002_a3a6b6a2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000003_e0782dd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000003_e0782dd5.szar new file mode 100644 index 00000000..8cd10197 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000003_e0782dd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000004_5f02f8ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000004_5f02f8ef.szar new file mode 100644 index 00000000..948af4d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000004_5f02f8ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000005_f0c1fc24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000005_f0c1fc24.szar new file mode 100644 index 00000000..d6c7bf0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000005_f0c1fc24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000006_e578ea23.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000006_e578ea23.szar new file mode 100644 index 00000000..583551f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000006_e578ea23.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000007_1da87d5b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000007_1da87d5b.szar new file mode 100644 index 00000000..c7aa01c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000007_1da87d5b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000008_f58e9cf6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000008_f58e9cf6.szar new file mode 100644 index 00000000..892229f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000008_f58e9cf6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000009_2529d83a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000009_2529d83a.szar new file mode 100644 index 00000000..adfc3196 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000009_2529d83a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000010_5904c5ec.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000010_5904c5ec.szar new file mode 100644 index 00000000..4d90827e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000010_5904c5ec.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000011_085cb868.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000011_085cb868.szar new file mode 100644 index 00000000..ed767635 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000011_085cb868.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000012_48da77a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000012_48da77a0.szar new file mode 100644 index 00000000..42130548 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000012_48da77a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000013_f756c583.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000013_f756c583.szar new file mode 100644 index 00000000..bcf38a14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000013_f756c583.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000014_bf407719.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000014_bf407719.szar new file mode 100644 index 00000000..0a47715b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000014_bf407719.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000015_0d762162.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000015_0d762162.szar new file mode 100644 index 00000000..39990bb0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000015_0d762162.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000016_3a71d82c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000016_3a71d82c.szar new file mode 100644 index 00000000..2d4ce077 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000016_3a71d82c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000017_34ad7801.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000017_34ad7801.szar new file mode 100644 index 00000000..a79122df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000017_34ad7801.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000018_9c5f3841.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000018_9c5f3841.szar new file mode 100644 index 00000000..a63996eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000018_9c5f3841.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000019_3a476538.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000019_3a476538.szar new file mode 100644 index 00000000..5953c56e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000019_3a476538.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000020_3a9c799a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000020_3a9c799a.szar new file mode 100644 index 00000000..55ec9777 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000020_3a9c799a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000021_fed4c201.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000021_fed4c201.szar new file mode 100644 index 00000000..c356f3fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000021_fed4c201.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000022_e0f99841.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000022_e0f99841.szar new file mode 100644 index 00000000..0d8ad671 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000022_e0f99841.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000023_416f584a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000023_416f584a.szar new file mode 100644 index 00000000..e7725cdb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000023_416f584a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000024_93b4656b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000024_93b4656b.szar new file mode 100644 index 00000000..01c7fe58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000024_93b4656b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000025_f36abfa7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000025_f36abfa7.szar new file mode 100644 index 00000000..c7782365 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000025_f36abfa7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000026_eb2e2719.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000026_eb2e2719.szar new file mode 100644 index 00000000..c09b004b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000026_eb2e2719.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000027_8f0a0461.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000027_8f0a0461.szar new file mode 100644 index 00000000..4075d78f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/archive/delta_00000000000000000027_8f0a0461.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000001_87d517c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000001_87d517c1.szcp new file mode 100644 index 00000000..5b94831d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000001_87d517c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000002_a3d9e82a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000002_a3d9e82a.szcp new file mode 100644 index 00000000..b6d80740 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000002_a3d9e82a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000003_ca898551.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000003_ca898551.szcp new file mode 100644 index 00000000..42a2174d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000003_ca898551.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000004_fd216dd7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000004_fd216dd7.szcp new file mode 100644 index 00000000..c94562ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000004_fd216dd7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000005_145ae74c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000005_145ae74c.szcp new file mode 100644 index 00000000..618d9461 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000005_145ae74c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000006_22303bb8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000006_22303bb8.szcp new file mode 100644 index 00000000..8b199f2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000006_22303bb8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000007_9e533c57.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000007_9e533c57.szcp new file mode 100644 index 00000000..4a823d5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000007_9e533c57.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000008_b5acc003.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000008_b5acc003.szcp new file mode 100644 index 00000000..be2ea685 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000008_b5acc003.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000009_eb1aab43.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000009_eb1aab43.szcp new file mode 100644 index 00000000..357444d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000009_eb1aab43.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000010_127083b2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000010_127083b2.szcp new file mode 100644 index 00000000..85d09f0d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000010_127083b2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000011_f5ede705.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000011_f5ede705.szcp new file mode 100644 index 00000000..3523c7ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000011_f5ede705.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000012_08c14424.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000012_08c14424.szcp new file mode 100644 index 00000000..790b2417 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000012_08c14424.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000013_27579615.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000013_27579615.szcp new file mode 100644 index 00000000..4c1aa557 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000013_27579615.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000014_071c60b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000014_071c60b3.szcp new file mode 100644 index 00000000..aca9cfca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000014_071c60b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000015_55627ded.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000015_55627ded.szcp new file mode 100644 index 00000000..0e7c5ef3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000015_55627ded.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000016_5290d0d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000016_5290d0d0.szcp new file mode 100644 index 00000000..e033aed5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000016_5290d0d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000017_52cacdae.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000017_52cacdae.szcp new file mode 100644 index 00000000..a0599af1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000017_52cacdae.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000018_8332d945.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000018_8332d945.szcp new file mode 100644 index 00000000..eee6be6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000018_8332d945.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000019_f0d161bf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000019_f0d161bf.szcp new file mode 100644 index 00000000..cf372050 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000019_f0d161bf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000020_a9c1cded.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000020_a9c1cded.szcp new file mode 100644 index 00000000..2b36a054 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000020_a9c1cded.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000021_96a732a4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000021_96a732a4.szcp new file mode 100644 index 00000000..aedbdd00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000021_96a732a4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000022_45a2f063.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000022_45a2f063.szcp new file mode 100644 index 00000000..8c018022 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000022_45a2f063.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000023_4cd529ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000023_4cd529ed.szcp new file mode 100644 index 00000000..7aaa119b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000023_4cd529ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000024_318e6ec6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000024_318e6ec6.szcp new file mode 100644 index 00000000..656c0348 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000024_318e6ec6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000025_3f7381c6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000025_3f7381c6.szcp new file mode 100644 index 00000000..6a918f37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000025_3f7381c6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000026_27235c3b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000026_27235c3b.szcp new file mode 100644 index 00000000..f982feca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000026_27235c3b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000027_3befebd7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000027_3befebd7.szcp new file mode 100644 index 00000000..313aa13f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_029/checkpoints/checkpoint_00000000000000000027_3befebd7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000001_363b2075.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000001_363b2075.szar new file mode 100644 index 00000000..cc3f57fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000001_363b2075.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000002_15df250a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000002_15df250a.szar new file mode 100644 index 00000000..6481c481 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000002_15df250a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000003_3a0b1f7b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000003_3a0b1f7b.szar new file mode 100644 index 00000000..892a30e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000003_3a0b1f7b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000004_56f6567f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000004_56f6567f.szar new file mode 100644 index 00000000..54ead815 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000004_56f6567f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000005_39040391.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000005_39040391.szar new file mode 100644 index 00000000..9a5de5d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000005_39040391.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000006_6f383d10.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000006_6f383d10.szar new file mode 100644 index 00000000..e69b6f8a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000006_6f383d10.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000007_8bd4c89c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000007_8bd4c89c.szar new file mode 100644 index 00000000..e890339a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000007_8bd4c89c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000008_d69ce66c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000008_d69ce66c.szar new file mode 100644 index 00000000..d93e8155 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000008_d69ce66c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000009_4638fa6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000009_4638fa6c.szar new file mode 100644 index 00000000..e97b698d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000009_4638fa6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000010_67bf946c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000010_67bf946c.szar new file mode 100644 index 00000000..f506dde7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000010_67bf946c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000011_811db400.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000011_811db400.szar new file mode 100644 index 00000000..63c3b83e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000011_811db400.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000012_ce021efc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000012_ce021efc.szar new file mode 100644 index 00000000..545b9e04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000012_ce021efc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000013_dc554274.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000013_dc554274.szar new file mode 100644 index 00000000..4f719738 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000013_dc554274.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000014_464d8a94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000014_464d8a94.szar new file mode 100644 index 00000000..5cbb71aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000014_464d8a94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000015_032870fa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000015_032870fa.szar new file mode 100644 index 00000000..30378246 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000015_032870fa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000016_af6b1db2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000016_af6b1db2.szar new file mode 100644 index 00000000..089b2058 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000016_af6b1db2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000017_0ea74a58.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000017_0ea74a58.szar new file mode 100644 index 00000000..bb890e9a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000017_0ea74a58.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000018_1e0fc480.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000018_1e0fc480.szar new file mode 100644 index 00000000..9d7e8564 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000018_1e0fc480.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000019_274254d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000019_274254d8.szar new file mode 100644 index 00000000..3e9eaf61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000019_274254d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000020_69d95119.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000020_69d95119.szar new file mode 100644 index 00000000..405be797 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000020_69d95119.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000021_7bf40ef3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000021_7bf40ef3.szar new file mode 100644 index 00000000..0fa47790 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000021_7bf40ef3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000022_e65abd13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000022_e65abd13.szar new file mode 100644 index 00000000..38d23c5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000022_e65abd13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000023_6b5875f7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000023_6b5875f7.szar new file mode 100644 index 00000000..9e6b79d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000023_6b5875f7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000024_d22e9bf0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000024_d22e9bf0.szar new file mode 100644 index 00000000..dce5df2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000024_d22e9bf0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000025_344b285e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000025_344b285e.szar new file mode 100644 index 00000000..11a987a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000025_344b285e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000026_dca85c11.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000026_dca85c11.szar new file mode 100644 index 00000000..e6b1b610 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000026_dca85c11.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000027_284a90ea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000027_284a90ea.szar new file mode 100644 index 00000000..d37f2e51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000027_284a90ea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000028_a826e64f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000028_a826e64f.szar new file mode 100644 index 00000000..0557a855 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000028_a826e64f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000029_52e63ffd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000029_52e63ffd.szar new file mode 100644 index 00000000..5b4c136a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000029_52e63ffd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000030_9f0ccdfa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000030_9f0ccdfa.szar new file mode 100644 index 00000000..e828698f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000030_9f0ccdfa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000031_b87753b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000031_b87753b0.szar new file mode 100644 index 00000000..7fd02c1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000031_b87753b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000032_468b9727.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000032_468b9727.szar new file mode 100644 index 00000000..495ca7fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000032_468b9727.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000033_20761f00.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000033_20761f00.szar new file mode 100644 index 00000000..cc896f8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000033_20761f00.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000034_fe4efe55.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000034_fe4efe55.szar new file mode 100644 index 00000000..2a12f806 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000034_fe4efe55.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000035_4ab14ce3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000035_4ab14ce3.szar new file mode 100644 index 00000000..6c8ac335 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/archive/delta_00000000000000000035_4ab14ce3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000001_01fc3f2e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000001_01fc3f2e.szcp new file mode 100644 index 00000000..a58f412e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000001_01fc3f2e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000002_c3803e14.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000002_c3803e14.szcp new file mode 100644 index 00000000..04cb0060 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000002_c3803e14.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000003_0bc879e1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000003_0bc879e1.szcp new file mode 100644 index 00000000..74ea7472 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000003_0bc879e1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000004_4ca085e1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000004_4ca085e1.szcp new file mode 100644 index 00000000..c24564eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000004_4ca085e1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000005_33f0018c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000005_33f0018c.szcp new file mode 100644 index 00000000..cbe5809e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000005_33f0018c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000006_277d23fb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000006_277d23fb.szcp new file mode 100644 index 00000000..54845b62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000006_277d23fb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000007_bc6af981.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000007_bc6af981.szcp new file mode 100644 index 00000000..c95fc2c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000007_bc6af981.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000008_b5af99a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000008_b5af99a6.szcp new file mode 100644 index 00000000..a6bd75bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000008_b5af99a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000009_f0c4ffb6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000009_f0c4ffb6.szcp new file mode 100644 index 00000000..d5f5eba7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000009_f0c4ffb6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000010_89c37abb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000010_89c37abb.szcp new file mode 100644 index 00000000..dee5a02d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000010_89c37abb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000011_da69a85f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000011_da69a85f.szcp new file mode 100644 index 00000000..4a3e406e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000011_da69a85f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000012_5533f883.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000012_5533f883.szcp new file mode 100644 index 00000000..6bd4f691 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000012_5533f883.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000013_a2dc9b1f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000013_a2dc9b1f.szcp new file mode 100644 index 00000000..dab30e7d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000013_a2dc9b1f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000014_076f5ff1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000014_076f5ff1.szcp new file mode 100644 index 00000000..a75af5cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000014_076f5ff1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000015_aa02bfbc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000015_aa02bfbc.szcp new file mode 100644 index 00000000..69477bdc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000015_aa02bfbc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000016_707eae72.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000016_707eae72.szcp new file mode 100644 index 00000000..733b89e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000016_707eae72.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000017_38ca9699.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000017_38ca9699.szcp new file mode 100644 index 00000000..24ade9f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000017_38ca9699.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000018_dedffa6b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000018_dedffa6b.szcp new file mode 100644 index 00000000..a06f39c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000018_dedffa6b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000019_8942a4e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000019_8942a4e3.szcp new file mode 100644 index 00000000..8de265d5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000019_8942a4e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000020_b0711401.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000020_b0711401.szcp new file mode 100644 index 00000000..9cba9362 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000020_b0711401.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000021_03a5fad4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000021_03a5fad4.szcp new file mode 100644 index 00000000..4a010f5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000021_03a5fad4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000022_0641c029.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000022_0641c029.szcp new file mode 100644 index 00000000..e21a6cc0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000022_0641c029.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000023_0a1437ce.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000023_0a1437ce.szcp new file mode 100644 index 00000000..9b572f67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000023_0a1437ce.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000024_9bb1d4e1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000024_9bb1d4e1.szcp new file mode 100644 index 00000000..74cc3f53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000024_9bb1d4e1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000025_be6c91ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000025_be6c91ca.szcp new file mode 100644 index 00000000..a63d2ba2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000025_be6c91ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000026_8e8d1fef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000026_8e8d1fef.szcp new file mode 100644 index 00000000..b9fd7777 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000026_8e8d1fef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000027_80396a8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000027_80396a8c.szcp new file mode 100644 index 00000000..72a87e23 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000027_80396a8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000028_973bb919.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000028_973bb919.szcp new file mode 100644 index 00000000..10cdea44 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000028_973bb919.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000029_a8cc597c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000029_a8cc597c.szcp new file mode 100644 index 00000000..dd622f20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000029_a8cc597c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000030_5da173f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000030_5da173f0.szcp new file mode 100644 index 00000000..628508ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000030_5da173f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000031_332bb1e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000031_332bb1e3.szcp new file mode 100644 index 00000000..10fa6574 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000031_332bb1e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000032_83a0ee69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000032_83a0ee69.szcp new file mode 100644 index 00000000..1999e08e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000032_83a0ee69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000033_4adfb1f9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000033_4adfb1f9.szcp new file mode 100644 index 00000000..1bfd1881 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000033_4adfb1f9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000034_5e630715.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000034_5e630715.szcp new file mode 100644 index 00000000..a92042e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000034_5e630715.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000035_aa7acee3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000035_aa7acee3.szcp new file mode 100644 index 00000000..6e162fc0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_030/checkpoints/checkpoint_00000000000000000035_aa7acee3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000001_02f10210.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000001_02f10210.szar new file mode 100644 index 00000000..4310be55 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000001_02f10210.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000002_e769e126.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000002_e769e126.szar new file mode 100644 index 00000000..84b3ce4c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000002_e769e126.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000003_da4e8141.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000003_da4e8141.szar new file mode 100644 index 00000000..1a0a4c8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000003_da4e8141.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000004_f306d7ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000004_f306d7ce.szar new file mode 100644 index 00000000..c43d4803 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000004_f306d7ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000005_c800a718.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000005_c800a718.szar new file mode 100644 index 00000000..7c91679a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000005_c800a718.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000006_08de08bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000006_08de08bc.szar new file mode 100644 index 00000000..81ad8c3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000006_08de08bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000007_3a9d527e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000007_3a9d527e.szar new file mode 100644 index 00000000..31677746 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000007_3a9d527e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000008_51366ff0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000008_51366ff0.szar new file mode 100644 index 00000000..c111e384 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000008_51366ff0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000009_5615d5ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000009_5615d5ae.szar new file mode 100644 index 00000000..7ac85ebd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000009_5615d5ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000010_0f625a5b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000010_0f625a5b.szar new file mode 100644 index 00000000..96f47503 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000010_0f625a5b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000011_55251606.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000011_55251606.szar new file mode 100644 index 00000000..438d473b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000011_55251606.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000012_d362386e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000012_d362386e.szar new file mode 100644 index 00000000..9848ac43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000012_d362386e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000013_296091fe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000013_296091fe.szar new file mode 100644 index 00000000..e47d67b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000013_296091fe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000014_bec80611.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000014_bec80611.szar new file mode 100644 index 00000000..0e1856fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000014_bec80611.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000015_01373aa1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000015_01373aa1.szar new file mode 100644 index 00000000..0daa5db8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000015_01373aa1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000016_29d021f5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000016_29d021f5.szar new file mode 100644 index 00000000..c37b847e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000016_29d021f5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000017_bb3a1114.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000017_bb3a1114.szar new file mode 100644 index 00000000..acfc5ad0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000017_bb3a1114.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000018_523640ab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000018_523640ab.szar new file mode 100644 index 00000000..e820b530 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000018_523640ab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000019_807ae405.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000019_807ae405.szar new file mode 100644 index 00000000..b51a1133 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000019_807ae405.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000020_4614f933.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000020_4614f933.szar new file mode 100644 index 00000000..cc321660 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000020_4614f933.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000021_59d1a05b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000021_59d1a05b.szar new file mode 100644 index 00000000..2ebfdb59 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000021_59d1a05b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000022_af992e8c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000022_af992e8c.szar new file mode 100644 index 00000000..11efa1e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000022_af992e8c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000023_7190826f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000023_7190826f.szar new file mode 100644 index 00000000..9335d2b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000023_7190826f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000024_304d6ee1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000024_304d6ee1.szar new file mode 100644 index 00000000..e115db96 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000024_304d6ee1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000025_888edbf4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000025_888edbf4.szar new file mode 100644 index 00000000..04ea7e6c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000025_888edbf4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000026_6b9af58b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000026_6b9af58b.szar new file mode 100644 index 00000000..9191d890 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000026_6b9af58b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000027_493703e8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000027_493703e8.szar new file mode 100644 index 00000000..fb35aa61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000027_493703e8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000028_f983d630.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000028_f983d630.szar new file mode 100644 index 00000000..12f5fe76 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000028_f983d630.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000029_c55eba0d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000029_c55eba0d.szar new file mode 100644 index 00000000..2a568fbc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000029_c55eba0d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000030_45c3c3fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000030_45c3c3fb.szar new file mode 100644 index 00000000..0c81cf0d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000030_45c3c3fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000031_a47e5c7f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000031_a47e5c7f.szar new file mode 100644 index 00000000..956e4f45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000031_a47e5c7f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000032_c9a59e9c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000032_c9a59e9c.szar new file mode 100644 index 00000000..b2776e14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000032_c9a59e9c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000033_88b3e185.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000033_88b3e185.szar new file mode 100644 index 00000000..14771ba2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000033_88b3e185.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000034_186afa81.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000034_186afa81.szar new file mode 100644 index 00000000..37de4b50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000034_186afa81.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000035_511fc312.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000035_511fc312.szar new file mode 100644 index 00000000..93673af3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000035_511fc312.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000036_4384fc6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000036_4384fc6c.szar new file mode 100644 index 00000000..bf4eacdc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000036_4384fc6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000037_548144b2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000037_548144b2.szar new file mode 100644 index 00000000..a87a699b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000037_548144b2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000038_2c08cdb5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000038_2c08cdb5.szar new file mode 100644 index 00000000..88dc2214 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000038_2c08cdb5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000039_0c335838.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000039_0c335838.szar new file mode 100644 index 00000000..0dafacfa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000039_0c335838.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000040_1b0c22f9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000040_1b0c22f9.szar new file mode 100644 index 00000000..fc03cd42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000040_1b0c22f9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000041_8b921a17.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000041_8b921a17.szar new file mode 100644 index 00000000..033404a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000041_8b921a17.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000042_294dccf0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000042_294dccf0.szar new file mode 100644 index 00000000..080bd859 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000042_294dccf0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000043_0f4e5a93.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000043_0f4e5a93.szar new file mode 100644 index 00000000..5fe2c9a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000043_0f4e5a93.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000044_fa08e5b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000044_fa08e5b4.szar new file mode 100644 index 00000000..6644da99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000044_fa08e5b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000045_4fd4629f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000045_4fd4629f.szar new file mode 100644 index 00000000..844aec4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000045_4fd4629f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000046_1f526f6b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000046_1f526f6b.szar new file mode 100644 index 00000000..1ca51fb6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/archive/delta_00000000000000000046_1f526f6b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000001_fca9a951.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000001_fca9a951.szcp new file mode 100644 index 00000000..f2b0f213 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000001_fca9a951.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000002_4653969c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000002_4653969c.szcp new file mode 100644 index 00000000..163c9f05 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000002_4653969c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000003_9a75e88b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000003_9a75e88b.szcp new file mode 100644 index 00000000..9fd42487 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000003_9a75e88b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000004_281fd03a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000004_281fd03a.szcp new file mode 100644 index 00000000..3d812091 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000004_281fd03a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000005_c00438be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000005_c00438be.szcp new file mode 100644 index 00000000..078b3aee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000005_c00438be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000006_76fcde5b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000006_76fcde5b.szcp new file mode 100644 index 00000000..7e99c782 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000006_76fcde5b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000007_35456bf9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000007_35456bf9.szcp new file mode 100644 index 00000000..5320ed84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000007_35456bf9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000008_73b7e48b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000008_73b7e48b.szcp new file mode 100644 index 00000000..92db8225 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000008_73b7e48b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000009_439f3c73.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000009_439f3c73.szcp new file mode 100644 index 00000000..480e0027 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000009_439f3c73.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000010_6b7ba6ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000010_6b7ba6ed.szcp new file mode 100644 index 00000000..f951539d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000010_6b7ba6ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000011_dd1da714.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000011_dd1da714.szcp new file mode 100644 index 00000000..d21b4673 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000011_dd1da714.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000012_f38bea4b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000012_f38bea4b.szcp new file mode 100644 index 00000000..288b7ad2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000012_f38bea4b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000013_ad193621.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000013_ad193621.szcp new file mode 100644 index 00000000..558edd90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000013_ad193621.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000014_e43ca142.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000014_e43ca142.szcp new file mode 100644 index 00000000..37d214bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000014_e43ca142.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000015_8e028b86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000015_8e028b86.szcp new file mode 100644 index 00000000..b41a563e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000015_8e028b86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000016_cb9a1b5e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000016_cb9a1b5e.szcp new file mode 100644 index 00000000..200ee5f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000016_cb9a1b5e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000017_06df9498.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000017_06df9498.szcp new file mode 100644 index 00000000..83401f3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000017_06df9498.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000018_5837206a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000018_5837206a.szcp new file mode 100644 index 00000000..00ad569c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000018_5837206a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000019_237babd7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000019_237babd7.szcp new file mode 100644 index 00000000..31e778b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000019_237babd7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000020_639eee3c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000020_639eee3c.szcp new file mode 100644 index 00000000..338288ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000020_639eee3c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000021_7b23d621.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000021_7b23d621.szcp new file mode 100644 index 00000000..7d3fb039 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000021_7b23d621.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000022_e6ea6e63.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000022_e6ea6e63.szcp new file mode 100644 index 00000000..6537049a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000022_e6ea6e63.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000023_008eaa45.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000023_008eaa45.szcp new file mode 100644 index 00000000..90ddad8e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000023_008eaa45.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000024_c68fdf22.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000024_c68fdf22.szcp new file mode 100644 index 00000000..e218a429 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000024_c68fdf22.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000025_6d981e3e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000025_6d981e3e.szcp new file mode 100644 index 00000000..15542900 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000025_6d981e3e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000026_a47a983d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000026_a47a983d.szcp new file mode 100644 index 00000000..632534b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000026_a47a983d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000027_a8c29b0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000027_a8c29b0d.szcp new file mode 100644 index 00000000..9d010ab5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000027_a8c29b0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000028_39652a3a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000028_39652a3a.szcp new file mode 100644 index 00000000..b985596c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000028_39652a3a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000029_08a64c93.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000029_08a64c93.szcp new file mode 100644 index 00000000..64260967 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000029_08a64c93.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000030_69bd91fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000030_69bd91fe.szcp new file mode 100644 index 00000000..fbcc270e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000030_69bd91fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000031_7d3bd646.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000031_7d3bd646.szcp new file mode 100644 index 00000000..220b8169 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000031_7d3bd646.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000032_019ba05d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000032_019ba05d.szcp new file mode 100644 index 00000000..dc795898 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000032_019ba05d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000033_4af1b49e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000033_4af1b49e.szcp new file mode 100644 index 00000000..0b8f2e47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000033_4af1b49e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000034_032b3bd2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000034_032b3bd2.szcp new file mode 100644 index 00000000..a896b82a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000034_032b3bd2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000035_b5d8d86a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000035_b5d8d86a.szcp new file mode 100644 index 00000000..c90eaa68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000035_b5d8d86a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000036_e4afe13d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000036_e4afe13d.szcp new file mode 100644 index 00000000..86e57873 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000036_e4afe13d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000037_19564039.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000037_19564039.szcp new file mode 100644 index 00000000..59db0bf1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000037_19564039.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000038_71b71bb7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000038_71b71bb7.szcp new file mode 100644 index 00000000..4fafc1fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000038_71b71bb7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000039_5b81d426.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000039_5b81d426.szcp new file mode 100644 index 00000000..47b0781d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000039_5b81d426.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000040_714b1430.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000040_714b1430.szcp new file mode 100644 index 00000000..10912fa1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000040_714b1430.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000041_ca5ebe4c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000041_ca5ebe4c.szcp new file mode 100644 index 00000000..186eb247 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000041_ca5ebe4c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000042_493a97b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000042_493a97b3.szcp new file mode 100644 index 00000000..c124b830 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000042_493a97b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000043_08359848.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000043_08359848.szcp new file mode 100644 index 00000000..e59fa045 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000043_08359848.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000044_8140a2c3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000044_8140a2c3.szcp new file mode 100644 index 00000000..3e736b25 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000044_8140a2c3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000045_a5ed4d94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000045_a5ed4d94.szcp new file mode 100644 index 00000000..11091f8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000045_a5ed4d94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000046_ad22de1a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000046_ad22de1a.szcp new file mode 100644 index 00000000..5ba15c5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_031/checkpoints/checkpoint_00000000000000000046_ad22de1a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000001_72435cc2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000001_72435cc2.szar new file mode 100644 index 00000000..4bdbb803 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000001_72435cc2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000002_38628a58.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000002_38628a58.szar new file mode 100644 index 00000000..0a55345b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000002_38628a58.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000003_3b448f43.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000003_3b448f43.szar new file mode 100644 index 00000000..4c09c25b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000003_3b448f43.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000004_4af8c702.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000004_4af8c702.szar new file mode 100644 index 00000000..1c6ff27f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000004_4af8c702.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000005_6e626aff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000005_6e626aff.szar new file mode 100644 index 00000000..f1434329 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000005_6e626aff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000006_2510d15a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000006_2510d15a.szar new file mode 100644 index 00000000..5fb98be1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000006_2510d15a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000007_afa69564.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000007_afa69564.szar new file mode 100644 index 00000000..696d3e8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000007_afa69564.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000008_e5701199.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000008_e5701199.szar new file mode 100644 index 00000000..6cf3dc37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000008_e5701199.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000009_9e47a2f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000009_9e47a2f2.szar new file mode 100644 index 00000000..77252379 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000009_9e47a2f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000010_8410ab77.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000010_8410ab77.szar new file mode 100644 index 00000000..4f0a13bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000010_8410ab77.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000011_1c10a228.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000011_1c10a228.szar new file mode 100644 index 00000000..e2179fba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000011_1c10a228.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000012_5199fb57.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000012_5199fb57.szar new file mode 100644 index 00000000..73ba2f20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000012_5199fb57.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000013_1653a26c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000013_1653a26c.szar new file mode 100644 index 00000000..49ff23fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000013_1653a26c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000014_a7bed05b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000014_a7bed05b.szar new file mode 100644 index 00000000..9912e46d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000014_a7bed05b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000015_d590cca9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000015_d590cca9.szar new file mode 100644 index 00000000..f9143df1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000015_d590cca9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000016_2889ad99.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000016_2889ad99.szar new file mode 100644 index 00000000..18af3f90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000016_2889ad99.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000017_51543edb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000017_51543edb.szar new file mode 100644 index 00000000..8e689879 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000017_51543edb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000018_accdb5fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000018_accdb5fc.szar new file mode 100644 index 00000000..f63bd28b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000018_accdb5fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000019_7170eab2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000019_7170eab2.szar new file mode 100644 index 00000000..e3af97dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000019_7170eab2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000020_c6786c17.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000020_c6786c17.szar new file mode 100644 index 00000000..40ceca7f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000020_c6786c17.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000021_df0fd750.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000021_df0fd750.szar new file mode 100644 index 00000000..f60cfb50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000021_df0fd750.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000022_c8318149.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000022_c8318149.szar new file mode 100644 index 00000000..257a29d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000022_c8318149.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000023_c6fbec4c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000023_c6fbec4c.szar new file mode 100644 index 00000000..f179ba8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000023_c6fbec4c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000024_361f6b5d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000024_361f6b5d.szar new file mode 100644 index 00000000..f83781f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000024_361f6b5d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000025_4377256c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000025_4377256c.szar new file mode 100644 index 00000000..356f8ec1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000025_4377256c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000026_90d2fe8d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000026_90d2fe8d.szar new file mode 100644 index 00000000..6894192d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000026_90d2fe8d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000027_4bd12644.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000027_4bd12644.szar new file mode 100644 index 00000000..badda172 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000027_4bd12644.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000028_de6a5011.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000028_de6a5011.szar new file mode 100644 index 00000000..14c7a8c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000028_de6a5011.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000029_34ac1ff0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000029_34ac1ff0.szar new file mode 100644 index 00000000..f08c0d3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000029_34ac1ff0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000030_6f870c16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000030_6f870c16.szar new file mode 100644 index 00000000..c7bf68d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000030_6f870c16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000031_5f078b8d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000031_5f078b8d.szar new file mode 100644 index 00000000..0708c269 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000031_5f078b8d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000032_1b5489ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000032_1b5489ae.szar new file mode 100644 index 00000000..7096157f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000032_1b5489ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000033_0558c617.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000033_0558c617.szar new file mode 100644 index 00000000..0dbf23bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000033_0558c617.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000034_2696e4b1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000034_2696e4b1.szar new file mode 100644 index 00000000..f0cb7243 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000034_2696e4b1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000035_2e6eb461.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000035_2e6eb461.szar new file mode 100644 index 00000000..07f5171a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/archive/delta_00000000000000000035_2e6eb461.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000001_b7bcd970.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000001_b7bcd970.szcp new file mode 100644 index 00000000..706334ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000001_b7bcd970.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000002_6e138e02.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000002_6e138e02.szcp new file mode 100644 index 00000000..098e839d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000002_6e138e02.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000003_87fca06e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000003_87fca06e.szcp new file mode 100644 index 00000000..8bdd3e0d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000003_87fca06e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000004_d50de674.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000004_d50de674.szcp new file mode 100644 index 00000000..8ce90f8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000004_d50de674.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000005_8efeaf66.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000005_8efeaf66.szcp new file mode 100644 index 00000000..1757a16a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000005_8efeaf66.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000006_5815446f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000006_5815446f.szcp new file mode 100644 index 00000000..0149c0ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000006_5815446f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000007_62eb54f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000007_62eb54f4.szcp new file mode 100644 index 00000000..b0498258 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000007_62eb54f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000008_7e8a5ab3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000008_7e8a5ab3.szcp new file mode 100644 index 00000000..cc9cfcaa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000008_7e8a5ab3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000009_38a1e4f2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000009_38a1e4f2.szcp new file mode 100644 index 00000000..f550f26a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000009_38a1e4f2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000010_e8667032.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000010_e8667032.szcp new file mode 100644 index 00000000..e2c56a6c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000010_e8667032.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000011_da67e0ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000011_da67e0ee.szcp new file mode 100644 index 00000000..8b8da04f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000011_da67e0ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000012_d15c2ef3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000012_d15c2ef3.szcp new file mode 100644 index 00000000..b7dc3895 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000012_d15c2ef3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000013_b70d8ef5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000013_b70d8ef5.szcp new file mode 100644 index 00000000..053c768c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000013_b70d8ef5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000014_cd245bc8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000014_cd245bc8.szcp new file mode 100644 index 00000000..2e9f6bb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000014_cd245bc8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000015_bb63975f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000015_bb63975f.szcp new file mode 100644 index 00000000..422953c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000015_bb63975f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000016_c36156b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000016_c36156b3.szcp new file mode 100644 index 00000000..3c6a2743 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000016_c36156b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000017_63f7b289.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000017_63f7b289.szcp new file mode 100644 index 00000000..7bc862ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000017_63f7b289.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000018_059e75de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000018_059e75de.szcp new file mode 100644 index 00000000..a737cc01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000018_059e75de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000019_47edb974.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000019_47edb974.szcp new file mode 100644 index 00000000..28bba880 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000019_47edb974.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000020_a8a87be2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000020_a8a87be2.szcp new file mode 100644 index 00000000..f7f0493f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000020_a8a87be2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000021_f4ca51e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000021_f4ca51e0.szcp new file mode 100644 index 00000000..be7db7f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000021_f4ca51e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000022_591a3b94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000022_591a3b94.szcp new file mode 100644 index 00000000..45dec2d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000022_591a3b94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000023_7ba1aa9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000023_7ba1aa9f.szcp new file mode 100644 index 00000000..e7dc1b49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000023_7ba1aa9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000024_cce7a344.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000024_cce7a344.szcp new file mode 100644 index 00000000..d9e9a602 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000024_cce7a344.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000025_439ef15b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000025_439ef15b.szcp new file mode 100644 index 00000000..a20025a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000025_439ef15b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000026_43ff80d9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000026_43ff80d9.szcp new file mode 100644 index 00000000..871d18ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000026_43ff80d9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000027_cd05a03f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000027_cd05a03f.szcp new file mode 100644 index 00000000..cd37e855 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000027_cd05a03f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000028_5fadfe99.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000028_5fadfe99.szcp new file mode 100644 index 00000000..99bf73fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000028_5fadfe99.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000029_d6e51774.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000029_d6e51774.szcp new file mode 100644 index 00000000..f520c842 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000029_d6e51774.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000030_c81526a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000030_c81526a1.szcp new file mode 100644 index 00000000..516e6233 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000030_c81526a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000031_88c511a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000031_88c511a1.szcp new file mode 100644 index 00000000..9759da50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000031_88c511a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000032_b21c8b7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000032_b21c8b7d.szcp new file mode 100644 index 00000000..218d0d97 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000032_b21c8b7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000033_d68ecba7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000033_d68ecba7.szcp new file mode 100644 index 00000000..d813eb99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000033_d68ecba7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000034_a1e5a91c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000034_a1e5a91c.szcp new file mode 100644 index 00000000..f1fb3521 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000034_a1e5a91c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000035_50d3f5ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000035_50d3f5ef.szcp new file mode 100644 index 00000000..1afbbab4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_032/checkpoints/checkpoint_00000000000000000035_50d3f5ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000001_103065c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000001_103065c2.szar new file mode 100644 index 00000000..a082a891 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000001_103065c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000002_e26bfefe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000002_e26bfefe.szar new file mode 100644 index 00000000..7c97c808 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000002_e26bfefe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000003_8dc4c687.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000003_8dc4c687.szar new file mode 100644 index 00000000..98d8169f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000003_8dc4c687.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000004_417e449c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000004_417e449c.szar new file mode 100644 index 00000000..284e0368 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000004_417e449c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000005_935b6bf6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000005_935b6bf6.szar new file mode 100644 index 00000000..b1aeef80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000005_935b6bf6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000006_bb3fbd17.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000006_bb3fbd17.szar new file mode 100644 index 00000000..f4b12d1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000006_bb3fbd17.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000007_865d1120.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000007_865d1120.szar new file mode 100644 index 00000000..697b2635 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000007_865d1120.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000008_8bfe1aea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000008_8bfe1aea.szar new file mode 100644 index 00000000..f72c1522 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000008_8bfe1aea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000009_86811cca.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000009_86811cca.szar new file mode 100644 index 00000000..3c34ca13 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000009_86811cca.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000010_445c80db.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000010_445c80db.szar new file mode 100644 index 00000000..162ec144 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000010_445c80db.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000011_ebf1123e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000011_ebf1123e.szar new file mode 100644 index 00000000..eb86ac22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000011_ebf1123e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000012_03d74717.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000012_03d74717.szar new file mode 100644 index 00000000..4355d93c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000012_03d74717.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000013_13643cf8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000013_13643cf8.szar new file mode 100644 index 00000000..391e4de3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000013_13643cf8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000014_220fc7e6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000014_220fc7e6.szar new file mode 100644 index 00000000..a02fc4e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000014_220fc7e6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000015_e32e3e67.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000015_e32e3e67.szar new file mode 100644 index 00000000..2f000180 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000015_e32e3e67.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000016_88e15960.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000016_88e15960.szar new file mode 100644 index 00000000..f3a39b42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000016_88e15960.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000017_8d2634a4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000017_8d2634a4.szar new file mode 100644 index 00000000..20e51f2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000017_8d2634a4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000018_b65b98e5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000018_b65b98e5.szar new file mode 100644 index 00000000..c32830de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000018_b65b98e5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000019_d26af930.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000019_d26af930.szar new file mode 100644 index 00000000..a7268e41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000019_d26af930.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000020_cbce5b06.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000020_cbce5b06.szar new file mode 100644 index 00000000..551ca391 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000020_cbce5b06.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000021_803d5959.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000021_803d5959.szar new file mode 100644 index 00000000..32abf472 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000021_803d5959.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000022_eaeb3bfc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000022_eaeb3bfc.szar new file mode 100644 index 00000000..d651a1e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000022_eaeb3bfc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000023_0e02921c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000023_0e02921c.szar new file mode 100644 index 00000000..1e4ff639 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000023_0e02921c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000024_5cbc983b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000024_5cbc983b.szar new file mode 100644 index 00000000..b6001693 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000024_5cbc983b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000025_0d806acd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000025_0d806acd.szar new file mode 100644 index 00000000..73be4269 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000025_0d806acd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000026_65c0cfbf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000026_65c0cfbf.szar new file mode 100644 index 00000000..97db9701 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000026_65c0cfbf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000027_2ff0f51f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000027_2ff0f51f.szar new file mode 100644 index 00000000..7f0a66f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000027_2ff0f51f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000028_98a62b03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000028_98a62b03.szar new file mode 100644 index 00000000..70b93ae8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000028_98a62b03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000029_d0f810dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000029_d0f810dd.szar new file mode 100644 index 00000000..833be56a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000029_d0f810dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000030_bc06a07b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000030_bc06a07b.szar new file mode 100644 index 00000000..3205933d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000030_bc06a07b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000031_184fed97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000031_184fed97.szar new file mode 100644 index 00000000..d07f975d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000031_184fed97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000032_4492b861.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000032_4492b861.szar new file mode 100644 index 00000000..6a20957e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000032_4492b861.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000033_39a00ee4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000033_39a00ee4.szar new file mode 100644 index 00000000..eecf83c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000033_39a00ee4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000034_e1c36594.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000034_e1c36594.szar new file mode 100644 index 00000000..beabee15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000034_e1c36594.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000035_d4f86035.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000035_d4f86035.szar new file mode 100644 index 00000000..f8d1e818 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000035_d4f86035.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000036_35ef613a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000036_35ef613a.szar new file mode 100644 index 00000000..91b9e2ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000036_35ef613a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000037_5b7a1210.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000037_5b7a1210.szar new file mode 100644 index 00000000..a814904b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000037_5b7a1210.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000038_5600f7e9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000038_5600f7e9.szar new file mode 100644 index 00000000..6c30de15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000038_5600f7e9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000039_7f818db1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000039_7f818db1.szar new file mode 100644 index 00000000..fd8aa2d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/archive/delta_00000000000000000039_7f818db1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000001_43496ddb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000001_43496ddb.szcp new file mode 100644 index 00000000..4c6d9e98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000001_43496ddb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000002_170c6b7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000002_170c6b7d.szcp new file mode 100644 index 00000000..d700eb6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000002_170c6b7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000003_48151bfd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000003_48151bfd.szcp new file mode 100644 index 00000000..5f915f00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000003_48151bfd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000004_41e0590e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000004_41e0590e.szcp new file mode 100644 index 00000000..87d4353b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000004_41e0590e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000005_b7cdb2aa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000005_b7cdb2aa.szcp new file mode 100644 index 00000000..2ef63fc6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000005_b7cdb2aa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000006_5c197334.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000006_5c197334.szcp new file mode 100644 index 00000000..16107323 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000006_5c197334.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000007_24d6af8a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000007_24d6af8a.szcp new file mode 100644 index 00000000..6787964d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000007_24d6af8a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000008_0f19b34d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000008_0f19b34d.szcp new file mode 100644 index 00000000..a5e79f17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000008_0f19b34d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000009_b18e77f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000009_b18e77f0.szcp new file mode 100644 index 00000000..8a4ea0d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000009_b18e77f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000010_3f33a767.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000010_3f33a767.szcp new file mode 100644 index 00000000..269f16ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000010_3f33a767.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000011_b2155a2e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000011_b2155a2e.szcp new file mode 100644 index 00000000..ed972663 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000011_b2155a2e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000012_eef34de8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000012_eef34de8.szcp new file mode 100644 index 00000000..2f6bb516 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000012_eef34de8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000013_0d1dfd1f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000013_0d1dfd1f.szcp new file mode 100644 index 00000000..930c7bcb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000013_0d1dfd1f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000014_1c84d152.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000014_1c84d152.szcp new file mode 100644 index 00000000..e6d57af1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000014_1c84d152.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000015_f81575de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000015_f81575de.szcp new file mode 100644 index 00000000..8481db20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000015_f81575de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000016_6f851fb7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000016_6f851fb7.szcp new file mode 100644 index 00000000..4adedcec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000016_6f851fb7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000017_646d74bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000017_646d74bd.szcp new file mode 100644 index 00000000..f860de1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000017_646d74bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000018_6b2aec7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000018_6b2aec7d.szcp new file mode 100644 index 00000000..206dbf37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000018_6b2aec7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000019_e0c5de5a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000019_e0c5de5a.szcp new file mode 100644 index 00000000..8cc4ae57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000019_e0c5de5a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000020_d1b549d2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000020_d1b549d2.szcp new file mode 100644 index 00000000..9643b88e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000020_d1b549d2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000021_0197ead4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000021_0197ead4.szcp new file mode 100644 index 00000000..6e792a94 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000021_0197ead4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000022_52d4d4a2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000022_52d4d4a2.szcp new file mode 100644 index 00000000..47c7c6e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000022_52d4d4a2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000023_943f0998.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000023_943f0998.szcp new file mode 100644 index 00000000..a020985b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000023_943f0998.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000024_f33f4fbf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000024_f33f4fbf.szcp new file mode 100644 index 00000000..bc2da126 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000024_f33f4fbf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000025_448a943b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000025_448a943b.szcp new file mode 100644 index 00000000..b11d0d24 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000025_448a943b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000026_e89b2225.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000026_e89b2225.szcp new file mode 100644 index 00000000..c99276f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000026_e89b2225.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000027_42f45a8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000027_42f45a8c.szcp new file mode 100644 index 00000000..ca7cc75b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000027_42f45a8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000028_cf41a183.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000028_cf41a183.szcp new file mode 100644 index 00000000..9fe1e7c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000028_cf41a183.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000029_28a75557.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000029_28a75557.szcp new file mode 100644 index 00000000..53914947 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000029_28a75557.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000030_f5bef0d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000030_f5bef0d1.szcp new file mode 100644 index 00000000..48ecf447 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000030_f5bef0d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000031_62a9460b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000031_62a9460b.szcp new file mode 100644 index 00000000..4d809022 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000031_62a9460b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000032_86788710.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000032_86788710.szcp new file mode 100644 index 00000000..35babe8f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000032_86788710.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000033_9e432e68.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000033_9e432e68.szcp new file mode 100644 index 00000000..3f06d0ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000033_9e432e68.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000034_d1ea5c70.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000034_d1ea5c70.szcp new file mode 100644 index 00000000..2232d694 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000034_d1ea5c70.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000035_2c2a5c6b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000035_2c2a5c6b.szcp new file mode 100644 index 00000000..4dee57b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000035_2c2a5c6b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000036_8fefb2c4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000036_8fefb2c4.szcp new file mode 100644 index 00000000..5198f9c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000036_8fefb2c4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000037_e0643ea5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000037_e0643ea5.szcp new file mode 100644 index 00000000..d65ba47a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000037_e0643ea5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000038_37054ad8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000038_37054ad8.szcp new file mode 100644 index 00000000..c36d6653 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000038_37054ad8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000039_f603ba90.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000039_f603ba90.szcp new file mode 100644 index 00000000..6f89cd5f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_033/checkpoints/checkpoint_00000000000000000039_f603ba90.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000001_b731d446.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000001_b731d446.szar new file mode 100644 index 00000000..ffcdc3dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000001_b731d446.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000002_c1bb7f51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000002_c1bb7f51.szar new file mode 100644 index 00000000..abeb3f43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000002_c1bb7f51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000003_e000e4fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000003_e000e4fb.szar new file mode 100644 index 00000000..8deb7068 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000003_e000e4fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000004_74d3db7f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000004_74d3db7f.szar new file mode 100644 index 00000000..28d574d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000004_74d3db7f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000005_9583697b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000005_9583697b.szar new file mode 100644 index 00000000..2a88684d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000005_9583697b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000006_69f8879f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000006_69f8879f.szar new file mode 100644 index 00000000..8d5daeed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000006_69f8879f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000007_dd59c16c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000007_dd59c16c.szar new file mode 100644 index 00000000..99e39446 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000007_dd59c16c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000008_11c33ac1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000008_11c33ac1.szar new file mode 100644 index 00000000..70bc5f3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000008_11c33ac1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000009_58ea7c5b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000009_58ea7c5b.szar new file mode 100644 index 00000000..9ea12b08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000009_58ea7c5b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000010_3f72d378.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000010_3f72d378.szar new file mode 100644 index 00000000..4991e2a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000010_3f72d378.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000011_ee6eca4a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000011_ee6eca4a.szar new file mode 100644 index 00000000..69573507 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000011_ee6eca4a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000012_e98e7efd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000012_e98e7efd.szar new file mode 100644 index 00000000..f59cbd41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000012_e98e7efd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000013_8843dbb2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000013_8843dbb2.szar new file mode 100644 index 00000000..26e82c38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000013_8843dbb2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000014_0c361501.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000014_0c361501.szar new file mode 100644 index 00000000..f688a148 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000014_0c361501.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000015_09001cc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000015_09001cc0.szar new file mode 100644 index 00000000..d879e66f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000015_09001cc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000016_f7612b9d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000016_f7612b9d.szar new file mode 100644 index 00000000..3d9a7921 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000016_f7612b9d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000017_ed165d83.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000017_ed165d83.szar new file mode 100644 index 00000000..64b7449e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000017_ed165d83.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000018_513266b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000018_513266b0.szar new file mode 100644 index 00000000..82726935 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000018_513266b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000019_ea0d6cb0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000019_ea0d6cb0.szar new file mode 100644 index 00000000..793fb304 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000019_ea0d6cb0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000020_3b7eaca5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000020_3b7eaca5.szar new file mode 100644 index 00000000..e7ff8822 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000020_3b7eaca5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000021_bf0b6924.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000021_bf0b6924.szar new file mode 100644 index 00000000..965acca1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000021_bf0b6924.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000022_05d8f4d5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000022_05d8f4d5.szar new file mode 100644 index 00000000..e492c00c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000022_05d8f4d5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000023_1a6f77c6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000023_1a6f77c6.szar new file mode 100644 index 00000000..60df8267 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000023_1a6f77c6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000024_18ca54b9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000024_18ca54b9.szar new file mode 100644 index 00000000..91145aa0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000024_18ca54b9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000025_a3a10921.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000025_a3a10921.szar new file mode 100644 index 00000000..7c4c2cb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000025_a3a10921.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000026_b0f8630e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000026_b0f8630e.szar new file mode 100644 index 00000000..b882432d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/archive/delta_00000000000000000026_b0f8630e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000001_35d03822.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000001_35d03822.szcp new file mode 100644 index 00000000..90512d75 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000001_35d03822.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000002_cbfeb2e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000002_cbfeb2e9.szcp new file mode 100644 index 00000000..1cae4d09 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000002_cbfeb2e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000003_c3bb9bd3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000003_c3bb9bd3.szcp new file mode 100644 index 00000000..45b86cdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000003_c3bb9bd3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000004_5db4eddc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000004_5db4eddc.szcp new file mode 100644 index 00000000..521972ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000004_5db4eddc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000005_7b05fe15.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000005_7b05fe15.szcp new file mode 100644 index 00000000..2d384ccc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000005_7b05fe15.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000006_97219ecd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000006_97219ecd.szcp new file mode 100644 index 00000000..5b72bd3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000006_97219ecd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000007_edc43581.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000007_edc43581.szcp new file mode 100644 index 00000000..488ef02f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000007_edc43581.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000008_c9a6f288.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000008_c9a6f288.szcp new file mode 100644 index 00000000..426f4791 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000008_c9a6f288.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000009_5b6d9941.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000009_5b6d9941.szcp new file mode 100644 index 00000000..0a6441e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000009_5b6d9941.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000010_85a1c7b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000010_85a1c7b1.szcp new file mode 100644 index 00000000..6017323f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000010_85a1c7b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000011_e0bd037e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000011_e0bd037e.szcp new file mode 100644 index 00000000..df6835b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000011_e0bd037e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000012_d76505f2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000012_d76505f2.szcp new file mode 100644 index 00000000..79d6d84c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000012_d76505f2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000013_6f22a174.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000013_6f22a174.szcp new file mode 100644 index 00000000..0fcfd725 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000013_6f22a174.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000014_d3cb02f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000014_d3cb02f4.szcp new file mode 100644 index 00000000..fe826580 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000014_d3cb02f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000015_d404b66d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000015_d404b66d.szcp new file mode 100644 index 00000000..635e5a54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000015_d404b66d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000016_ba2ca6ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000016_ba2ca6ca.szcp new file mode 100644 index 00000000..21720611 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000016_ba2ca6ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000017_037928ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000017_037928ef.szcp new file mode 100644 index 00000000..0b7a0050 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000017_037928ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000018_2d8ebd18.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000018_2d8ebd18.szcp new file mode 100644 index 00000000..68187e25 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000018_2d8ebd18.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000019_4d7dbf6c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000019_4d7dbf6c.szcp new file mode 100644 index 00000000..a09fd529 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000019_4d7dbf6c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000020_66f3db16.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000020_66f3db16.szcp new file mode 100644 index 00000000..7e6496ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000020_66f3db16.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000021_a1c0d57c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000021_a1c0d57c.szcp new file mode 100644 index 00000000..716d8ae6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000021_a1c0d57c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000022_baa5f803.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000022_baa5f803.szcp new file mode 100644 index 00000000..0cd024bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000022_baa5f803.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000023_263bda09.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000023_263bda09.szcp new file mode 100644 index 00000000..36a9c0dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000023_263bda09.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000024_d3c57a86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000024_d3c57a86.szcp new file mode 100644 index 00000000..76361f64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000024_d3c57a86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000025_106fef59.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000025_106fef59.szcp new file mode 100644 index 00000000..4b5f1e00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000025_106fef59.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000026_30695e75.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000026_30695e75.szcp new file mode 100644 index 00000000..032700ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_034/checkpoints/checkpoint_00000000000000000026_30695e75.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000001_7e751be2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000001_7e751be2.szar new file mode 100644 index 00000000..49e2088d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000001_7e751be2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000002_c93f6af3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000002_c93f6af3.szar new file mode 100644 index 00000000..2c703208 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000002_c93f6af3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000003_22d5e00d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000003_22d5e00d.szar new file mode 100644 index 00000000..cc07c132 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000003_22d5e00d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000004_7a7f1b66.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000004_7a7f1b66.szar new file mode 100644 index 00000000..8fe9d32f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000004_7a7f1b66.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000005_840d8f70.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000005_840d8f70.szar new file mode 100644 index 00000000..6c77ca1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000005_840d8f70.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000006_1093949e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000006_1093949e.szar new file mode 100644 index 00000000..b2228e22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000006_1093949e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000007_6b1b8611.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000007_6b1b8611.szar new file mode 100644 index 00000000..32bc94b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000007_6b1b8611.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000008_0253c90e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000008_0253c90e.szar new file mode 100644 index 00000000..a7c5812b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000008_0253c90e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000009_6728978b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000009_6728978b.szar new file mode 100644 index 00000000..e5ce9338 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000009_6728978b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000010_044b0ad9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000010_044b0ad9.szar new file mode 100644 index 00000000..2a238a03 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000010_044b0ad9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000011_13fa18cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000011_13fa18cc.szar new file mode 100644 index 00000000..63a1fd5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000011_13fa18cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000012_d9de8e1c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000012_d9de8e1c.szar new file mode 100644 index 00000000..fddafa7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000012_d9de8e1c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000013_5dc8e501.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000013_5dc8e501.szar new file mode 100644 index 00000000..1ea40f22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000013_5dc8e501.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000014_0623f6fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000014_0623f6fc.szar new file mode 100644 index 00000000..d18d56a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000014_0623f6fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000015_f9963292.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000015_f9963292.szar new file mode 100644 index 00000000..107d4e41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000015_f9963292.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000016_5278300e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000016_5278300e.szar new file mode 100644 index 00000000..ef1b8454 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000016_5278300e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000017_5e3ebb21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000017_5e3ebb21.szar new file mode 100644 index 00000000..d05b90c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000017_5e3ebb21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000018_77bbaa21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000018_77bbaa21.szar new file mode 100644 index 00000000..cf1db7b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000018_77bbaa21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000019_306ab538.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000019_306ab538.szar new file mode 100644 index 00000000..b47b59db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000019_306ab538.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000020_589d4046.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000020_589d4046.szar new file mode 100644 index 00000000..94397f37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000020_589d4046.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000021_d43d636b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000021_d43d636b.szar new file mode 100644 index 00000000..46765005 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000021_d43d636b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000022_4e19cdef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000022_4e19cdef.szar new file mode 100644 index 00000000..3cdf571e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000022_4e19cdef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000023_eee10da6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000023_eee10da6.szar new file mode 100644 index 00000000..060f908d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000023_eee10da6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000024_6644bdbd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000024_6644bdbd.szar new file mode 100644 index 00000000..62e8e8ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000024_6644bdbd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000025_d138830e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000025_d138830e.szar new file mode 100644 index 00000000..0af345da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000025_d138830e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000026_df5d0893.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000026_df5d0893.szar new file mode 100644 index 00000000..67bb9fb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000026_df5d0893.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000027_1b65f9d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000027_1b65f9d8.szar new file mode 100644 index 00000000..3845b97c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000027_1b65f9d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000028_e23fc25e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000028_e23fc25e.szar new file mode 100644 index 00000000..5ebe5589 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/archive/delta_00000000000000000028_e23fc25e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000001_737d5350.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000001_737d5350.szcp new file mode 100644 index 00000000..e1fa5a73 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000001_737d5350.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000002_a444848f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000002_a444848f.szcp new file mode 100644 index 00000000..39f48a32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000002_a444848f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000003_015168dc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000003_015168dc.szcp new file mode 100644 index 00000000..b03d8d22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000003_015168dc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000004_28cb6527.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000004_28cb6527.szcp new file mode 100644 index 00000000..403e7a2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000004_28cb6527.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000005_6b45c3f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000005_6b45c3f8.szcp new file mode 100644 index 00000000..38d4b2e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000005_6b45c3f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000006_65492f70.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000006_65492f70.szcp new file mode 100644 index 00000000..61185ab7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000006_65492f70.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000007_4bd66ebe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000007_4bd66ebe.szcp new file mode 100644 index 00000000..a19c4a67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000007_4bd66ebe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000008_19325c7b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000008_19325c7b.szcp new file mode 100644 index 00000000..95c4d749 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000008_19325c7b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000009_82da5dd9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000009_82da5dd9.szcp new file mode 100644 index 00000000..16d55ac1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000009_82da5dd9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000010_96b90a73.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000010_96b90a73.szcp new file mode 100644 index 00000000..1fa95c83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000010_96b90a73.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000011_48710faf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000011_48710faf.szcp new file mode 100644 index 00000000..3faec767 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000011_48710faf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000012_bf6cc1d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000012_bf6cc1d0.szcp new file mode 100644 index 00000000..a7b52242 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000012_bf6cc1d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000013_f30fc987.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000013_f30fc987.szcp new file mode 100644 index 00000000..f0d5d98b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000013_f30fc987.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000014_d87a6a7c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000014_d87a6a7c.szcp new file mode 100644 index 00000000..b44348f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000014_d87a6a7c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000015_f713c760.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000015_f713c760.szcp new file mode 100644 index 00000000..d94ef0df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000015_f713c760.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000016_f04314c5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000016_f04314c5.szcp new file mode 100644 index 00000000..e2efe3e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000016_f04314c5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000017_68759b68.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000017_68759b68.szcp new file mode 100644 index 00000000..54cc63b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000017_68759b68.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000018_f6ec0fd1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000018_f6ec0fd1.szcp new file mode 100644 index 00000000..7d18c9db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000018_f6ec0fd1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000019_1d64959b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000019_1d64959b.szcp new file mode 100644 index 00000000..50420425 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000019_1d64959b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000020_970b21fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000020_970b21fe.szcp new file mode 100644 index 00000000..42542db4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000020_970b21fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000021_68825981.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000021_68825981.szcp new file mode 100644 index 00000000..0f2a7d67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000021_68825981.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000022_eb2cd29b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000022_eb2cd29b.szcp new file mode 100644 index 00000000..79c95d6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000022_eb2cd29b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000023_a2ef9308.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000023_a2ef9308.szcp new file mode 100644 index 00000000..89ad05b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000023_a2ef9308.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000024_e261ce96.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000024_e261ce96.szcp new file mode 100644 index 00000000..2b32e502 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000024_e261ce96.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000025_37695fe7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000025_37695fe7.szcp new file mode 100644 index 00000000..850e9929 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000025_37695fe7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000026_3371b5fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000026_3371b5fc.szcp new file mode 100644 index 00000000..08e8b907 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000026_3371b5fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000027_40ad2225.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000027_40ad2225.szcp new file mode 100644 index 00000000..cc3051f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000027_40ad2225.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000028_0ef6e9ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000028_0ef6e9ad.szcp new file mode 100644 index 00000000..29d77b8e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_035/checkpoints/checkpoint_00000000000000000028_0ef6e9ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000001_d90b00f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000001_d90b00f8.szar new file mode 100644 index 00000000..c79f89c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000001_d90b00f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000002_7567ed03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000002_7567ed03.szar new file mode 100644 index 00000000..edf6c785 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000002_7567ed03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000003_0c70c8cb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000003_0c70c8cb.szar new file mode 100644 index 00000000..f6b4a350 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000003_0c70c8cb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000004_a79f6209.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000004_a79f6209.szar new file mode 100644 index 00000000..e94410be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000004_a79f6209.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000005_f76b81eb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000005_f76b81eb.szar new file mode 100644 index 00000000..38d3a5fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000005_f76b81eb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000006_ca2aac63.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000006_ca2aac63.szar new file mode 100644 index 00000000..4883b0aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000006_ca2aac63.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000007_968d78a7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000007_968d78a7.szar new file mode 100644 index 00000000..59b7680d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000007_968d78a7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000008_c806fb6a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000008_c806fb6a.szar new file mode 100644 index 00000000..94f902db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000008_c806fb6a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000009_8500018b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000009_8500018b.szar new file mode 100644 index 00000000..00bb0927 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000009_8500018b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000010_34c511dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000010_34c511dd.szar new file mode 100644 index 00000000..86e05ccc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000010_34c511dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000011_8a0a4904.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000011_8a0a4904.szar new file mode 100644 index 00000000..6b71d6e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000011_8a0a4904.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000012_f7e89356.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000012_f7e89356.szar new file mode 100644 index 00000000..de9d28a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000012_f7e89356.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000013_3d168566.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000013_3d168566.szar new file mode 100644 index 00000000..98d11dc5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000013_3d168566.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000014_320b5ea7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000014_320b5ea7.szar new file mode 100644 index 00000000..4fb5c12c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000014_320b5ea7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000015_e0045e5a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000015_e0045e5a.szar new file mode 100644 index 00000000..b74ba566 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000015_e0045e5a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000016_0ce9220e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000016_0ce9220e.szar new file mode 100644 index 00000000..e610175e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000016_0ce9220e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000017_b561cdaf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000017_b561cdaf.szar new file mode 100644 index 00000000..8337f1fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000017_b561cdaf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000018_1f896d60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000018_1f896d60.szar new file mode 100644 index 00000000..59448553 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000018_1f896d60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000019_13770efe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000019_13770efe.szar new file mode 100644 index 00000000..fe76af86 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000019_13770efe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000020_4cc960fd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000020_4cc960fd.szar new file mode 100644 index 00000000..2743271c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000020_4cc960fd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000021_2a9dcbfa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000021_2a9dcbfa.szar new file mode 100644 index 00000000..4f021b33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000021_2a9dcbfa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000022_7789ab1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000022_7789ab1b.szar new file mode 100644 index 00000000..c6afb463 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000022_7789ab1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000023_68b9e8fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000023_68b9e8fc.szar new file mode 100644 index 00000000..8884c02d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000023_68b9e8fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000024_e9d3e162.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000024_e9d3e162.szar new file mode 100644 index 00000000..414cdd45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000024_e9d3e162.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000025_021d730c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000025_021d730c.szar new file mode 100644 index 00000000..fee11c0a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000025_021d730c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000026_e92882a7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000026_e92882a7.szar new file mode 100644 index 00000000..cb8b75a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000026_e92882a7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000027_69948ad0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000027_69948ad0.szar new file mode 100644 index 00000000..84e3ec42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000027_69948ad0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000028_9e2f246e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000028_9e2f246e.szar new file mode 100644 index 00000000..a0266fbb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/archive/delta_00000000000000000028_9e2f246e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000001_775bf62d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000001_775bf62d.szcp new file mode 100644 index 00000000..a0ee6a15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000001_775bf62d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000002_a2bde944.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000002_a2bde944.szcp new file mode 100644 index 00000000..1eea4cb4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000002_a2bde944.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000003_b959d2f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000003_b959d2f8.szcp new file mode 100644 index 00000000..a57d5df3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000003_b959d2f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000004_0fd78391.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000004_0fd78391.szcp new file mode 100644 index 00000000..01ad9d1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000004_0fd78391.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000005_1c869018.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000005_1c869018.szcp new file mode 100644 index 00000000..954e9fcb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000005_1c869018.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000006_7e567736.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000006_7e567736.szcp new file mode 100644 index 00000000..b12670f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000006_7e567736.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000007_36f3cc16.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000007_36f3cc16.szcp new file mode 100644 index 00000000..45e1ed3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000007_36f3cc16.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000008_f80bd661.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000008_f80bd661.szcp new file mode 100644 index 00000000..70622c60 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000008_f80bd661.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000009_3d8092f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000009_3d8092f8.szcp new file mode 100644 index 00000000..05efe54f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000009_3d8092f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000010_ae17fd1e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000010_ae17fd1e.szcp new file mode 100644 index 00000000..f90b4784 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000010_ae17fd1e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000011_f9224f86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000011_f9224f86.szcp new file mode 100644 index 00000000..7830d274 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000011_f9224f86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000012_cbcf72f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000012_cbcf72f4.szcp new file mode 100644 index 00000000..2ab91c59 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000012_cbcf72f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000013_8b89375b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000013_8b89375b.szcp new file mode 100644 index 00000000..2c1f6183 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000013_8b89375b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000014_a9f8041c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000014_a9f8041c.szcp new file mode 100644 index 00000000..6c003fd5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000014_a9f8041c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000015_fd339c61.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000015_fd339c61.szcp new file mode 100644 index 00000000..95a57249 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000015_fd339c61.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000016_f5f58408.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000016_f5f58408.szcp new file mode 100644 index 00000000..3f821a2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000016_f5f58408.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000017_09c929a5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000017_09c929a5.szcp new file mode 100644 index 00000000..2150ff14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000017_09c929a5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000018_6f4814f3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000018_6f4814f3.szcp new file mode 100644 index 00000000..1e8b39de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000018_6f4814f3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000019_227c8427.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000019_227c8427.szcp new file mode 100644 index 00000000..1799d6da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000019_227c8427.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000020_a445625e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000020_a445625e.szcp new file mode 100644 index 00000000..460fc2e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000020_a445625e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000021_ef1d303c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000021_ef1d303c.szcp new file mode 100644 index 00000000..3297a0ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000021_ef1d303c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000022_478d7ac6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000022_478d7ac6.szcp new file mode 100644 index 00000000..1929dafc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000022_478d7ac6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000023_8e649a9f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000023_8e649a9f.szcp new file mode 100644 index 00000000..b0ed54b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000023_8e649a9f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000024_7b8dcc7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000024_7b8dcc7d.szcp new file mode 100644 index 00000000..9be18839 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000024_7b8dcc7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000025_aef6fe09.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000025_aef6fe09.szcp new file mode 100644 index 00000000..beaa0d0e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000025_aef6fe09.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000026_0b383cb5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000026_0b383cb5.szcp new file mode 100644 index 00000000..4a5a8f47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000026_0b383cb5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000027_10d31559.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000027_10d31559.szcp new file mode 100644 index 00000000..3a8320c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000027_10d31559.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000028_59f4c69b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000028_59f4c69b.szcp new file mode 100644 index 00000000..89cfe6c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_036/checkpoints/checkpoint_00000000000000000028_59f4c69b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000001_9849a0da.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000001_9849a0da.szar new file mode 100644 index 00000000..3f254d90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000001_9849a0da.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000002_c80f1e00.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000002_c80f1e00.szar new file mode 100644 index 00000000..621e113f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000002_c80f1e00.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000003_652117dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000003_652117dd.szar new file mode 100644 index 00000000..077f8b0f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000003_652117dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000004_4ae30d65.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000004_4ae30d65.szar new file mode 100644 index 00000000..f13f0d01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000004_4ae30d65.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000005_47406252.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000005_47406252.szar new file mode 100644 index 00000000..e4c0eb2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000005_47406252.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000006_19030539.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000006_19030539.szar new file mode 100644 index 00000000..51eb38e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000006_19030539.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000007_320422b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000007_320422b0.szar new file mode 100644 index 00000000..90fbcd6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000007_320422b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000008_6316d561.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000008_6316d561.szar new file mode 100644 index 00000000..dc1355a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000008_6316d561.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000009_abd4fd60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000009_abd4fd60.szar new file mode 100644 index 00000000..679e3d7e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000009_abd4fd60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000010_6860a421.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000010_6860a421.szar new file mode 100644 index 00000000..46705621 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000010_6860a421.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000011_2a60a00e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000011_2a60a00e.szar new file mode 100644 index 00000000..3d4c0b8a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000011_2a60a00e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000012_9ce625da.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000012_9ce625da.szar new file mode 100644 index 00000000..17b3ed36 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000012_9ce625da.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000013_f2bd571f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000013_f2bd571f.szar new file mode 100644 index 00000000..f8a713cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000013_f2bd571f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000014_99b4dc59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000014_99b4dc59.szar new file mode 100644 index 00000000..1110b326 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000014_99b4dc59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000015_c8299fbd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000015_c8299fbd.szar new file mode 100644 index 00000000..9532ab3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000015_c8299fbd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000016_49885deb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000016_49885deb.szar new file mode 100644 index 00000000..b4f0388c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000016_49885deb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000017_e23ac76f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000017_e23ac76f.szar new file mode 100644 index 00000000..a32964c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000017_e23ac76f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000018_3de54a02.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000018_3de54a02.szar new file mode 100644 index 00000000..5eb4c188 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000018_3de54a02.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000019_110b533c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000019_110b533c.szar new file mode 100644 index 00000000..8001f9fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000019_110b533c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000020_4819c168.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000020_4819c168.szar new file mode 100644 index 00000000..4bbfcbdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000020_4819c168.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000021_933d5ac6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000021_933d5ac6.szar new file mode 100644 index 00000000..00e8889b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000021_933d5ac6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000022_b02b8d59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000022_b02b8d59.szar new file mode 100644 index 00000000..c816ca2e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000022_b02b8d59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000023_0ca54e82.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000023_0ca54e82.szar new file mode 100644 index 00000000..36bb2468 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000023_0ca54e82.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000024_ae203827.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000024_ae203827.szar new file mode 100644 index 00000000..f167962c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000024_ae203827.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000025_26e3051b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000025_26e3051b.szar new file mode 100644 index 00000000..0612d17b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000025_26e3051b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000026_1ba97f73.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000026_1ba97f73.szar new file mode 100644 index 00000000..340720c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/archive/delta_00000000000000000026_1ba97f73.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000001_1ed7facc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000001_1ed7facc.szcp new file mode 100644 index 00000000..9910bff3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000001_1ed7facc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000002_8a84cd49.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000002_8a84cd49.szcp new file mode 100644 index 00000000..f6695c7f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000002_8a84cd49.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000003_70572a3a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000003_70572a3a.szcp new file mode 100644 index 00000000..199ac938 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000003_70572a3a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000004_20212550.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000004_20212550.szcp new file mode 100644 index 00000000..378ddd56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000004_20212550.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000005_a68a84c5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000005_a68a84c5.szcp new file mode 100644 index 00000000..678e8b3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000005_a68a84c5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000006_56e28436.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000006_56e28436.szcp new file mode 100644 index 00000000..d634c4cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000006_56e28436.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000007_8889fbb0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000007_8889fbb0.szcp new file mode 100644 index 00000000..e5066424 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000007_8889fbb0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000008_9141c598.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000008_9141c598.szcp new file mode 100644 index 00000000..6feecd41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000008_9141c598.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000009_e170a529.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000009_e170a529.szcp new file mode 100644 index 00000000..505b4002 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000009_e170a529.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000010_5dfdb120.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000010_5dfdb120.szcp new file mode 100644 index 00000000..cd4c189d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000010_5dfdb120.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000011_03778409.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000011_03778409.szcp new file mode 100644 index 00000000..38b98b33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000011_03778409.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000012_4b8736fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000012_4b8736fe.szcp new file mode 100644 index 00000000..b4eee4ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000012_4b8736fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000013_f09c07a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000013_f09c07a3.szcp new file mode 100644 index 00000000..6d0bf87b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000013_f09c07a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000014_9557a5ec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000014_9557a5ec.szcp new file mode 100644 index 00000000..1c09ce5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000014_9557a5ec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000015_f1b0d1b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000015_f1b0d1b0.szcp new file mode 100644 index 00000000..ce2f45f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000015_f1b0d1b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000016_91d81edf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000016_91d81edf.szcp new file mode 100644 index 00000000..92bbf190 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000016_91d81edf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000017_5effdf11.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000017_5effdf11.szcp new file mode 100644 index 00000000..6585deb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000017_5effdf11.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000018_852dd40e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000018_852dd40e.szcp new file mode 100644 index 00000000..360bb1a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000018_852dd40e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000019_cb8b2af7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000019_cb8b2af7.szcp new file mode 100644 index 00000000..3099e4b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000019_cb8b2af7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000020_a7d2e9b5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000020_a7d2e9b5.szcp new file mode 100644 index 00000000..e58ad597 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000020_a7d2e9b5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000021_c7f0137c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000021_c7f0137c.szcp new file mode 100644 index 00000000..4c9c6f6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000021_c7f0137c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000022_5238ae18.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000022_5238ae18.szcp new file mode 100644 index 00000000..1ba3feb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000022_5238ae18.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000023_89402b7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000023_89402b7d.szcp new file mode 100644 index 00000000..5b545b4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000023_89402b7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000024_957afc46.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000024_957afc46.szcp new file mode 100644 index 00000000..6810e9a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000024_957afc46.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000025_be8ebc59.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000025_be8ebc59.szcp new file mode 100644 index 00000000..0bb99e3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000025_be8ebc59.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000026_631e930c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000026_631e930c.szcp new file mode 100644 index 00000000..087bcd41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_037/checkpoints/checkpoint_00000000000000000026_631e930c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000001_bc796c82.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000001_bc796c82.szar new file mode 100644 index 00000000..9de4a2f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000001_bc796c82.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000002_1ff7a13e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000002_1ff7a13e.szar new file mode 100644 index 00000000..6788da29 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000002_1ff7a13e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000003_1a2dcd48.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000003_1a2dcd48.szar new file mode 100644 index 00000000..a249ebd2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000003_1a2dcd48.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000004_90cf696c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000004_90cf696c.szar new file mode 100644 index 00000000..059be469 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000004_90cf696c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000005_9ae36d6a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000005_9ae36d6a.szar new file mode 100644 index 00000000..8e9fd3f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000005_9ae36d6a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000006_364f7827.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000006_364f7827.szar new file mode 100644 index 00000000..50e2bc6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000006_364f7827.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000007_79da4640.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000007_79da4640.szar new file mode 100644 index 00000000..d0f52d67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000007_79da4640.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000008_400b4881.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000008_400b4881.szar new file mode 100644 index 00000000..c2e63807 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000008_400b4881.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000009_fea41f31.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000009_fea41f31.szar new file mode 100644 index 00000000..3c2b77e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000009_fea41f31.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000010_152b082a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000010_152b082a.szar new file mode 100644 index 00000000..d59334b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000010_152b082a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000011_4745d1ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000011_4745d1ce.szar new file mode 100644 index 00000000..6aa2f3f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000011_4745d1ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000012_50105398.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000012_50105398.szar new file mode 100644 index 00000000..72fc2cdb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000012_50105398.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000013_65ebfc69.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000013_65ebfc69.szar new file mode 100644 index 00000000..ba0e2791 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000013_65ebfc69.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000014_083a68d4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000014_083a68d4.szar new file mode 100644 index 00000000..8970af5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000014_083a68d4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000015_1cd8da0e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000015_1cd8da0e.szar new file mode 100644 index 00000000..26c362b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000015_1cd8da0e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000016_cba1cd18.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000016_cba1cd18.szar new file mode 100644 index 00000000..d52b89cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000016_cba1cd18.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000017_48e58b89.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000017_48e58b89.szar new file mode 100644 index 00000000..c990ad2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000017_48e58b89.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000018_7751d51e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000018_7751d51e.szar new file mode 100644 index 00000000..9a43ff1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000018_7751d51e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000019_6de83963.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000019_6de83963.szar new file mode 100644 index 00000000..c439e501 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000019_6de83963.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000020_8fa9be96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000020_8fa9be96.szar new file mode 100644 index 00000000..91c38dc9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000020_8fa9be96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000021_033d0899.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000021_033d0899.szar new file mode 100644 index 00000000..c8054d3e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000021_033d0899.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000022_aa0946bf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000022_aa0946bf.szar new file mode 100644 index 00000000..40d853f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000022_aa0946bf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000023_3677d2ff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000023_3677d2ff.szar new file mode 100644 index 00000000..78e5587b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000023_3677d2ff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000024_1b1099e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000024_1b1099e0.szar new file mode 100644 index 00000000..649ab932 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000024_1b1099e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000025_f6b54d99.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000025_f6b54d99.szar new file mode 100644 index 00000000..0b0cb4ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000025_f6b54d99.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000026_10fc2949.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000026_10fc2949.szar new file mode 100644 index 00000000..6d5e1aee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000026_10fc2949.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000027_c03cc81f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000027_c03cc81f.szar new file mode 100644 index 00000000..5dcacc10 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000027_c03cc81f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000028_6cc26190.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000028_6cc26190.szar new file mode 100644 index 00000000..4fbc1f35 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000028_6cc26190.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000029_dadb712f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000029_dadb712f.szar new file mode 100644 index 00000000..cbb2f277 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000029_dadb712f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000030_324934bf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000030_324934bf.szar new file mode 100644 index 00000000..d1dacec7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/archive/delta_00000000000000000030_324934bf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000001_9f4de665.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000001_9f4de665.szcp new file mode 100644 index 00000000..c865dc91 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000001_9f4de665.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000002_c41aa496.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000002_c41aa496.szcp new file mode 100644 index 00000000..be98c0c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000002_c41aa496.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000003_f94fe9ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000003_f94fe9ab.szcp new file mode 100644 index 00000000..3703768e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000003_f94fe9ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000004_6c43ccec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000004_6c43ccec.szcp new file mode 100644 index 00000000..5e9c6fa4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000004_6c43ccec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000005_04f28a2d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000005_04f28a2d.szcp new file mode 100644 index 00000000..a5fa036c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000005_04f28a2d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000006_400e3c20.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000006_400e3c20.szcp new file mode 100644 index 00000000..0a176b5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000006_400e3c20.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000007_515c7f85.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000007_515c7f85.szcp new file mode 100644 index 00000000..1a25acc3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000007_515c7f85.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000008_742ad9c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000008_742ad9c1.szcp new file mode 100644 index 00000000..286f953a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000008_742ad9c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000009_ae545916.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000009_ae545916.szcp new file mode 100644 index 00000000..65b6f108 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000009_ae545916.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000010_4b0f552a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000010_4b0f552a.szcp new file mode 100644 index 00000000..5e8a7d1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000010_4b0f552a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000011_49d09418.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000011_49d09418.szcp new file mode 100644 index 00000000..35e4c07b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000011_49d09418.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000012_3bfb548f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000012_3bfb548f.szcp new file mode 100644 index 00000000..edf97374 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000012_3bfb548f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000013_6b0e6a6a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000013_6b0e6a6a.szcp new file mode 100644 index 00000000..b41269e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000013_6b0e6a6a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000014_8598c0cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000014_8598c0cc.szcp new file mode 100644 index 00000000..0bc7c45e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000014_8598c0cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000015_a397f4dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000015_a397f4dd.szcp new file mode 100644 index 00000000..e16c1a1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000015_a397f4dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000016_0f0714a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000016_0f0714a6.szcp new file mode 100644 index 00000000..958e2957 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000016_0f0714a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000017_b13c8041.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000017_b13c8041.szcp new file mode 100644 index 00000000..c92a19b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000017_b13c8041.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000018_5e87df88.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000018_5e87df88.szcp new file mode 100644 index 00000000..639fd545 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000018_5e87df88.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000019_27367f01.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000019_27367f01.szcp new file mode 100644 index 00000000..7c1d77aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000019_27367f01.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000020_fe3fda48.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000020_fe3fda48.szcp new file mode 100644 index 00000000..847aec4c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000020_fe3fda48.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000021_3d1dc40e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000021_3d1dc40e.szcp new file mode 100644 index 00000000..30a6cc54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000021_3d1dc40e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000022_7a8839d5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000022_7a8839d5.szcp new file mode 100644 index 00000000..fbdae9e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000022_7a8839d5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000023_952f743b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000023_952f743b.szcp new file mode 100644 index 00000000..f629c734 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000023_952f743b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000024_8b0a520a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000024_8b0a520a.szcp new file mode 100644 index 00000000..0cb450e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000024_8b0a520a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000025_a4406b50.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000025_a4406b50.szcp new file mode 100644 index 00000000..fb029232 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000025_a4406b50.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000026_789e9faa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000026_789e9faa.szcp new file mode 100644 index 00000000..cecd798a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000026_789e9faa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000027_8e7f49e2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000027_8e7f49e2.szcp new file mode 100644 index 00000000..f97fb76c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000027_8e7f49e2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000028_182df6cb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000028_182df6cb.szcp new file mode 100644 index 00000000..583ed371 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000028_182df6cb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000029_175cb1c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000029_175cb1c8.szcp new file mode 100644 index 00000000..0b0667de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000029_175cb1c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000030_287ba9b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000030_287ba9b8.szcp new file mode 100644 index 00000000..546767d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_038/checkpoints/checkpoint_00000000000000000030_287ba9b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000001_4ccc0768.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000001_4ccc0768.szar new file mode 100644 index 00000000..db90174c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000001_4ccc0768.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000002_39bada52.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000002_39bada52.szar new file mode 100644 index 00000000..9067acc5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000002_39bada52.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000003_652ff7be.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000003_652ff7be.szar new file mode 100644 index 00000000..6927162e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000003_652ff7be.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000004_1e568cf4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000004_1e568cf4.szar new file mode 100644 index 00000000..7440710e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000004_1e568cf4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000005_73855981.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000005_73855981.szar new file mode 100644 index 00000000..ce09393b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000005_73855981.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000006_e92312e5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000006_e92312e5.szar new file mode 100644 index 00000000..dece3b5f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000006_e92312e5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000007_8a877018.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000007_8a877018.szar new file mode 100644 index 00000000..63eb6bfb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000007_8a877018.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000008_59f05bd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000008_59f05bd5.szar new file mode 100644 index 00000000..128673df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000008_59f05bd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000009_a0599194.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000009_a0599194.szar new file mode 100644 index 00000000..20a588b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000009_a0599194.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000010_23a801c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000010_23a801c4.szar new file mode 100644 index 00000000..504c8195 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000010_23a801c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000011_739e8669.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000011_739e8669.szar new file mode 100644 index 00000000..53210e63 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000011_739e8669.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000012_cb5bdeaf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000012_cb5bdeaf.szar new file mode 100644 index 00000000..63623284 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000012_cb5bdeaf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000013_54549fc1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000013_54549fc1.szar new file mode 100644 index 00000000..9e466013 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000013_54549fc1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000014_d1bf4760.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000014_d1bf4760.szar new file mode 100644 index 00000000..31872265 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000014_d1bf4760.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000015_e0fecb47.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000015_e0fecb47.szar new file mode 100644 index 00000000..a5dffc56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000015_e0fecb47.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000016_49f6a01c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000016_49f6a01c.szar new file mode 100644 index 00000000..f70a8c68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000016_49f6a01c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000017_5388926e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000017_5388926e.szar new file mode 100644 index 00000000..7f4c26aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000017_5388926e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000018_7043d053.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000018_7043d053.szar new file mode 100644 index 00000000..3e9bfefb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000018_7043d053.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000019_7c0d8b0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000019_7c0d8b0a.szar new file mode 100644 index 00000000..10485bd1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000019_7c0d8b0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000020_281e94c7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000020_281e94c7.szar new file mode 100644 index 00000000..26325355 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000020_281e94c7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000021_c783e3fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000021_c783e3fc.szar new file mode 100644 index 00000000..2f034cab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000021_c783e3fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000022_05f99cbb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000022_05f99cbb.szar new file mode 100644 index 00000000..422a07bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000022_05f99cbb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000023_d46fb824.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000023_d46fb824.szar new file mode 100644 index 00000000..674c8538 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000023_d46fb824.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000024_c7f80e73.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000024_c7f80e73.szar new file mode 100644 index 00000000..f49c8458 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000024_c7f80e73.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000025_ee4ea18d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000025_ee4ea18d.szar new file mode 100644 index 00000000..d9e0bf43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000025_ee4ea18d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000026_638bdc21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000026_638bdc21.szar new file mode 100644 index 00000000..3552e872 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000026_638bdc21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000027_2003ba1a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000027_2003ba1a.szar new file mode 100644 index 00000000..b67df08a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000027_2003ba1a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000028_b69c32a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000028_b69c32a3.szar new file mode 100644 index 00000000..ca5e2f77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/archive/delta_00000000000000000028_b69c32a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000001_855f0c22.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000001_855f0c22.szcp new file mode 100644 index 00000000..661bb6ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000001_855f0c22.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000002_f1c1e023.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000002_f1c1e023.szcp new file mode 100644 index 00000000..44836cd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000002_f1c1e023.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000003_a69460d1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000003_a69460d1.szcp new file mode 100644 index 00000000..916dabe6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000003_a69460d1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000004_0a2b2439.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000004_0a2b2439.szcp new file mode 100644 index 00000000..b8a47ff1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000004_0a2b2439.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000005_7d3ee44d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000005_7d3ee44d.szcp new file mode 100644 index 00000000..9bafeb0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000005_7d3ee44d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000006_009d173e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000006_009d173e.szcp new file mode 100644 index 00000000..90a3182c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000006_009d173e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000007_e297a1a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000007_e297a1a3.szcp new file mode 100644 index 00000000..aa0eb058 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000007_e297a1a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000008_5887fb17.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000008_5887fb17.szcp new file mode 100644 index 00000000..ebeda1f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000008_5887fb17.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000009_630adad5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000009_630adad5.szcp new file mode 100644 index 00000000..2047b3bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000009_630adad5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000010_69a371a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000010_69a371a0.szcp new file mode 100644 index 00000000..7045be46 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000010_69a371a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000011_4b4fd092.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000011_4b4fd092.szcp new file mode 100644 index 00000000..26f5924b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000011_4b4fd092.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000012_a9e17f8a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000012_a9e17f8a.szcp new file mode 100644 index 00000000..fc4992a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000012_a9e17f8a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000013_bf6ff533.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000013_bf6ff533.szcp new file mode 100644 index 00000000..c7335d9d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000013_bf6ff533.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000014_295c1083.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000014_295c1083.szcp new file mode 100644 index 00000000..4c0018a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000014_295c1083.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000015_48bc28a4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000015_48bc28a4.szcp new file mode 100644 index 00000000..45ba1312 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000015_48bc28a4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000016_58f3e7f6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000016_58f3e7f6.szcp new file mode 100644 index 00000000..81430925 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000016_58f3e7f6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000017_12c6f3c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000017_12c6f3c1.szcp new file mode 100644 index 00000000..bd2f2c83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000017_12c6f3c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000018_bfb729ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000018_bfb729ef.szcp new file mode 100644 index 00000000..76989cf3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000018_bfb729ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000019_7d100a0f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000019_7d100a0f.szcp new file mode 100644 index 00000000..6c4017f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000019_7d100a0f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000020_811f77bc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000020_811f77bc.szcp new file mode 100644 index 00000000..f4420485 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000020_811f77bc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000021_0472d343.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000021_0472d343.szcp new file mode 100644 index 00000000..2e7777c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000021_0472d343.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000022_66a77ae0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000022_66a77ae0.szcp new file mode 100644 index 00000000..83b9236d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000022_66a77ae0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000023_72b2d8ce.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000023_72b2d8ce.szcp new file mode 100644 index 00000000..0500d924 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000023_72b2d8ce.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000024_eded57e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000024_eded57e7.szcp new file mode 100644 index 00000000..a73f9242 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000024_eded57e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000025_63a24db8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000025_63a24db8.szcp new file mode 100644 index 00000000..701565cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000025_63a24db8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000026_f10e809b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000026_f10e809b.szcp new file mode 100644 index 00000000..7d366ece Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000026_f10e809b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000027_bac91bc1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000027_bac91bc1.szcp new file mode 100644 index 00000000..81392c38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000027_bac91bc1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000028_527d341a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000028_527d341a.szcp new file mode 100644 index 00000000..c6604a36 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_039/checkpoints/checkpoint_00000000000000000028_527d341a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000001_5eace0e9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000001_5eace0e9.szar new file mode 100644 index 00000000..68737d38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000001_5eace0e9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000002_f72aa5a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000002_f72aa5a6.szar new file mode 100644 index 00000000..ec29ed78 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000002_f72aa5a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000003_0647e111.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000003_0647e111.szar new file mode 100644 index 00000000..eb6cba7a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000003_0647e111.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000004_09291c60.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000004_09291c60.szar new file mode 100644 index 00000000..c85a1112 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000004_09291c60.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000005_a5d56464.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000005_a5d56464.szar new file mode 100644 index 00000000..d788c337 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000005_a5d56464.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000006_a8d72fde.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000006_a8d72fde.szar new file mode 100644 index 00000000..3fe89821 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000006_a8d72fde.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000007_bc77569b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000007_bc77569b.szar new file mode 100644 index 00000000..64fd05be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000007_bc77569b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000008_316b61d8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000008_316b61d8.szar new file mode 100644 index 00000000..ec9fee46 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000008_316b61d8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000009_e8120fdf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000009_e8120fdf.szar new file mode 100644 index 00000000..ed612138 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000009_e8120fdf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000010_bec6ac6b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000010_bec6ac6b.szar new file mode 100644 index 00000000..7cab1c85 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000010_bec6ac6b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000011_af903f61.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000011_af903f61.szar new file mode 100644 index 00000000..a77282fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000011_af903f61.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000012_9d597e49.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000012_9d597e49.szar new file mode 100644 index 00000000..b7cc9f27 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000012_9d597e49.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000013_ebf2fa9e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000013_ebf2fa9e.szar new file mode 100644 index 00000000..58451924 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000013_ebf2fa9e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000014_20212d9a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000014_20212d9a.szar new file mode 100644 index 00000000..e5944b62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000014_20212d9a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000015_9b73f72c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000015_9b73f72c.szar new file mode 100644 index 00000000..d81a166c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000015_9b73f72c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000016_f93ed395.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000016_f93ed395.szar new file mode 100644 index 00000000..990bf238 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000016_f93ed395.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000017_4f85383c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000017_4f85383c.szar new file mode 100644 index 00000000..75ee9e2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000017_4f85383c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000018_37e54235.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000018_37e54235.szar new file mode 100644 index 00000000..cf4e4ade Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000018_37e54235.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000019_b56b8702.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000019_b56b8702.szar new file mode 100644 index 00000000..cb6d74da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000019_b56b8702.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000020_961a49b6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000020_961a49b6.szar new file mode 100644 index 00000000..c564654b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000020_961a49b6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000021_dcd14381.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000021_dcd14381.szar new file mode 100644 index 00000000..5340bfe2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000021_dcd14381.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000022_de3b6232.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000022_de3b6232.szar new file mode 100644 index 00000000..a7fcd0e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000022_de3b6232.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000023_72f38039.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000023_72f38039.szar new file mode 100644 index 00000000..463036af Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000023_72f38039.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000024_947f5733.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000024_947f5733.szar new file mode 100644 index 00000000..b519b8d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000024_947f5733.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000025_fc53e06c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000025_fc53e06c.szar new file mode 100644 index 00000000..f1a830a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000025_fc53e06c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000026_cdc5bc6f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000026_cdc5bc6f.szar new file mode 100644 index 00000000..5df1db23 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000026_cdc5bc6f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000027_bf2fa2b6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000027_bf2fa2b6.szar new file mode 100644 index 00000000..c1f731f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000027_bf2fa2b6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000028_60889509.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000028_60889509.szar new file mode 100644 index 00000000..6e00df51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000028_60889509.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000029_fce1379c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000029_fce1379c.szar new file mode 100644 index 00000000..f3a6cf57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000029_fce1379c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000030_f0e097bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000030_f0e097bb.szar new file mode 100644 index 00000000..c670d2da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/archive/delta_00000000000000000030_f0e097bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000001_9c3094d2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000001_9c3094d2.szcp new file mode 100644 index 00000000..cd682017 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000001_9c3094d2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000002_c68a557f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000002_c68a557f.szcp new file mode 100644 index 00000000..ce617ed5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000002_c68a557f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000003_ee62fa29.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000003_ee62fa29.szcp new file mode 100644 index 00000000..40602e54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000003_ee62fa29.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000004_3cb7dedb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000004_3cb7dedb.szcp new file mode 100644 index 00000000..14a132a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000004_3cb7dedb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000005_f2574ca6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000005_f2574ca6.szcp new file mode 100644 index 00000000..fbd75ea6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000005_f2574ca6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000006_ee81cf65.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000006_ee81cf65.szcp new file mode 100644 index 00000000..61decff0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000006_ee81cf65.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000007_e5b8ecea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000007_e5b8ecea.szcp new file mode 100644 index 00000000..7ee59c88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000007_e5b8ecea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000008_6f948fbb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000008_6f948fbb.szcp new file mode 100644 index 00000000..cc8a927a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000008_6f948fbb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000009_3102a1e4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000009_3102a1e4.szcp new file mode 100644 index 00000000..4934d378 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000009_3102a1e4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000010_2e1cbb02.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000010_2e1cbb02.szcp new file mode 100644 index 00000000..d43b9fa6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000010_2e1cbb02.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000011_d277f2b5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000011_d277f2b5.szcp new file mode 100644 index 00000000..01ce6854 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000011_d277f2b5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000012_5b265270.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000012_5b265270.szcp new file mode 100644 index 00000000..ea766c66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000012_5b265270.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000013_5125c41f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000013_5125c41f.szcp new file mode 100644 index 00000000..9ed9abdc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000013_5125c41f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000014_b22dfa25.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000014_b22dfa25.szcp new file mode 100644 index 00000000..bfb046cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000014_b22dfa25.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000015_3051fa1f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000015_3051fa1f.szcp new file mode 100644 index 00000000..ca6a6bc3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000015_3051fa1f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000016_6239de49.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000016_6239de49.szcp new file mode 100644 index 00000000..886f632e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000016_6239de49.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000017_224202f7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000017_224202f7.szcp new file mode 100644 index 00000000..d330cdc7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000017_224202f7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000018_4eff1a86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000018_4eff1a86.szcp new file mode 100644 index 00000000..d15404ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000018_4eff1a86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000019_1a612b3c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000019_1a612b3c.szcp new file mode 100644 index 00000000..d441d45d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000019_1a612b3c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000020_81c52e03.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000020_81c52e03.szcp new file mode 100644 index 00000000..dc41e1b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000020_81c52e03.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000021_729d4781.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000021_729d4781.szcp new file mode 100644 index 00000000..6d15280c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000021_729d4781.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000022_bf92a50b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000022_bf92a50b.szcp new file mode 100644 index 00000000..8e8e938a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000022_bf92a50b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000023_e4afc99f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000023_e4afc99f.szcp new file mode 100644 index 00000000..0aafd611 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000023_e4afc99f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000024_18e0a055.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000024_18e0a055.szcp new file mode 100644 index 00000000..5252d774 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000024_18e0a055.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000025_0913d7fb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000025_0913d7fb.szcp new file mode 100644 index 00000000..69f90ff2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000025_0913d7fb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000026_5fac4d6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000026_5fac4d6e.szcp new file mode 100644 index 00000000..9b8d8e2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000026_5fac4d6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000027_6819b8f5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000027_6819b8f5.szcp new file mode 100644 index 00000000..668e6370 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000027_6819b8f5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000028_afca22f3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000028_afca22f3.szcp new file mode 100644 index 00000000..5a64d004 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000028_afca22f3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000029_0941b93e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000029_0941b93e.szcp new file mode 100644 index 00000000..3be693a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000029_0941b93e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000030_1f080ac7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000030_1f080ac7.szcp new file mode 100644 index 00000000..a71df2a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_040/checkpoints/checkpoint_00000000000000000030_1f080ac7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000001_c64f5f97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000001_c64f5f97.szar new file mode 100644 index 00000000..d137f726 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000001_c64f5f97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000002_618f5490.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000002_618f5490.szar new file mode 100644 index 00000000..c1de85da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000002_618f5490.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000003_d0ee584c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000003_d0ee584c.szar new file mode 100644 index 00000000..7de0822f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000003_d0ee584c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000004_94d4ab0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000004_94d4ab0a.szar new file mode 100644 index 00000000..4fb9827b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000004_94d4ab0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000005_67fd0176.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000005_67fd0176.szar new file mode 100644 index 00000000..ca0420d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000005_67fd0176.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000006_85127030.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000006_85127030.szar new file mode 100644 index 00000000..4314a719 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000006_85127030.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000007_246b4f59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000007_246b4f59.szar new file mode 100644 index 00000000..fd2ba6dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000007_246b4f59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000008_60af5cff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000008_60af5cff.szar new file mode 100644 index 00000000..a07f1ddb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000008_60af5cff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000009_b91640d0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000009_b91640d0.szar new file mode 100644 index 00000000..8fe44b72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000009_b91640d0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000010_2c9fd22d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000010_2c9fd22d.szar new file mode 100644 index 00000000..bb256075 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000010_2c9fd22d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000011_cf8e681e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000011_cf8e681e.szar new file mode 100644 index 00000000..17c36bef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000011_cf8e681e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000012_4bebe9b3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000012_4bebe9b3.szar new file mode 100644 index 00000000..8b68f823 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000012_4bebe9b3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000013_4397011c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000013_4397011c.szar new file mode 100644 index 00000000..fc916dde Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000013_4397011c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000014_2e2e3c4b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000014_2e2e3c4b.szar new file mode 100644 index 00000000..1e35f758 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000014_2e2e3c4b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000015_2f951d89.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000015_2f951d89.szar new file mode 100644 index 00000000..a92a90cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000015_2f951d89.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000016_c8f3c061.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000016_c8f3c061.szar new file mode 100644 index 00000000..09f56459 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000016_c8f3c061.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000017_2620f8d4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000017_2620f8d4.szar new file mode 100644 index 00000000..3372cd6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000017_2620f8d4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000018_4fce8674.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000018_4fce8674.szar new file mode 100644 index 00000000..db1c6f93 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000018_4fce8674.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000019_813eb22a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000019_813eb22a.szar new file mode 100644 index 00000000..cf0286f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000019_813eb22a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000020_69c98bd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000020_69c98bd5.szar new file mode 100644 index 00000000..724474e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000020_69c98bd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000021_d5284458.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000021_d5284458.szar new file mode 100644 index 00000000..1941edab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000021_d5284458.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000022_4d8e893f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000022_4d8e893f.szar new file mode 100644 index 00000000..39434768 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000022_4d8e893f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000023_fa07efac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000023_fa07efac.szar new file mode 100644 index 00000000..77fd61b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000023_fa07efac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000024_20bdb4e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000024_20bdb4e0.szar new file mode 100644 index 00000000..fb4ca8bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000024_20bdb4e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000025_29403e09.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000025_29403e09.szar new file mode 100644 index 00000000..ae09d149 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000025_29403e09.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000026_0da4f53b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000026_0da4f53b.szar new file mode 100644 index 00000000..95acadf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000026_0da4f53b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000027_99a2bb41.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000027_99a2bb41.szar new file mode 100644 index 00000000..370e7769 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000027_99a2bb41.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000028_46d7655a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000028_46d7655a.szar new file mode 100644 index 00000000..b40d6fbb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000028_46d7655a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000029_e8ee1bb5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000029_e8ee1bb5.szar new file mode 100644 index 00000000..ba86f27f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000029_e8ee1bb5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000030_f773f5ef.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000030_f773f5ef.szar new file mode 100644 index 00000000..91f78154 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000030_f773f5ef.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000031_d69e23c0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000031_d69e23c0.szar new file mode 100644 index 00000000..d3ff5409 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000031_d69e23c0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000032_1f49b239.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000032_1f49b239.szar new file mode 100644 index 00000000..55e51828 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/archive/delta_00000000000000000032_1f49b239.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000001_a336e50d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000001_a336e50d.szcp new file mode 100644 index 00000000..91f0daaf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000001_a336e50d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000002_25f341ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000002_25f341ba.szcp new file mode 100644 index 00000000..57c47117 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000002_25f341ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000003_21eba7e6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000003_21eba7e6.szcp new file mode 100644 index 00000000..8e18b2b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000003_21eba7e6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000004_d9656618.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000004_d9656618.szcp new file mode 100644 index 00000000..76b880f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000004_d9656618.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000005_fcab8123.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000005_fcab8123.szcp new file mode 100644 index 00000000..1c4bfea2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000005_fcab8123.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000006_586e3e5d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000006_586e3e5d.szcp new file mode 100644 index 00000000..82355a69 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000006_586e3e5d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000007_3b085cbc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000007_3b085cbc.szcp new file mode 100644 index 00000000..6b266c08 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000007_3b085cbc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000008_f6331f8b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000008_f6331f8b.szcp new file mode 100644 index 00000000..ca987ac4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000008_f6331f8b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000009_b433dcf6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000009_b433dcf6.szcp new file mode 100644 index 00000000..877ce8e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000009_b433dcf6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000010_49ee0f12.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000010_49ee0f12.szcp new file mode 100644 index 00000000..dc032e1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000010_49ee0f12.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000011_34cca045.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000011_34cca045.szcp new file mode 100644 index 00000000..249c72b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000011_34cca045.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000012_68cd74a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000012_68cd74a6.szcp new file mode 100644 index 00000000..99bfed07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000012_68cd74a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000013_cb647dfd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000013_cb647dfd.szcp new file mode 100644 index 00000000..798473f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000013_cb647dfd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000014_c4a53d90.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000014_c4a53d90.szcp new file mode 100644 index 00000000..328496a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000014_c4a53d90.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000015_b932663f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000015_b932663f.szcp new file mode 100644 index 00000000..f1e1c48c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000015_b932663f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000016_a02b680c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000016_a02b680c.szcp new file mode 100644 index 00000000..3c158921 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000016_a02b680c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000017_10f72729.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000017_10f72729.szcp new file mode 100644 index 00000000..b5723cf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000017_10f72729.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000018_ce189bd1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000018_ce189bd1.szcp new file mode 100644 index 00000000..e0c5d3e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000018_ce189bd1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000019_d17eb766.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000019_d17eb766.szcp new file mode 100644 index 00000000..16de506d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000019_d17eb766.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000020_f920712a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000020_f920712a.szcp new file mode 100644 index 00000000..4743e6e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000020_f920712a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000021_14cd7a7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000021_14cd7a7d.szcp new file mode 100644 index 00000000..b3d0b624 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000021_14cd7a7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000022_dbb6a425.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000022_dbb6a425.szcp new file mode 100644 index 00000000..6cf5d692 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000022_dbb6a425.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000023_9e5fde48.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000023_9e5fde48.szcp new file mode 100644 index 00000000..ec4052f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000023_9e5fde48.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000024_d1106ffb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000024_d1106ffb.szcp new file mode 100644 index 00000000..d329aeb6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000024_d1106ffb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000025_820138bf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000025_820138bf.szcp new file mode 100644 index 00000000..a1bd2c0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000025_820138bf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000026_02e38491.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000026_02e38491.szcp new file mode 100644 index 00000000..cf239a11 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000026_02e38491.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000027_f35fff8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000027_f35fff8c.szcp new file mode 100644 index 00000000..f2432484 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000027_f35fff8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000028_e8b09ce6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000028_e8b09ce6.szcp new file mode 100644 index 00000000..0368df8e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000028_e8b09ce6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000029_13594a3f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000029_13594a3f.szcp new file mode 100644 index 00000000..2ecd6ac4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000029_13594a3f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000030_da8415e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000030_da8415e5.szcp new file mode 100644 index 00000000..8a2f8c3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000030_da8415e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000031_440ad038.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000031_440ad038.szcp new file mode 100644 index 00000000..1f939df6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000031_440ad038.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000032_d393db54.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000032_d393db54.szcp new file mode 100644 index 00000000..c1dc5246 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_041/checkpoints/checkpoint_00000000000000000032_d393db54.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000001_8d14275a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000001_8d14275a.szar new file mode 100644 index 00000000..cf26f7a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000001_8d14275a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000002_f46e1842.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000002_f46e1842.szar new file mode 100644 index 00000000..0b53dfe0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000002_f46e1842.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000003_f9ea3b0c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000003_f9ea3b0c.szar new file mode 100644 index 00000000..4735d65b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000003_f9ea3b0c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000004_6f1cda59.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000004_6f1cda59.szar new file mode 100644 index 00000000..e71dca89 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000004_6f1cda59.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000005_b7693ca5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000005_b7693ca5.szar new file mode 100644 index 00000000..3b786d32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000005_b7693ca5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000006_5fb1d002.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000006_5fb1d002.szar new file mode 100644 index 00000000..6167f88c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000006_5fb1d002.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000007_87cf8121.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000007_87cf8121.szar new file mode 100644 index 00000000..28eb00ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000007_87cf8121.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000008_233574d2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000008_233574d2.szar new file mode 100644 index 00000000..b193c18d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000008_233574d2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000009_0303fed1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000009_0303fed1.szar new file mode 100644 index 00000000..d73e35df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000009_0303fed1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000010_34275ea1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000010_34275ea1.szar new file mode 100644 index 00000000..17177fb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000010_34275ea1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000011_a620c1eb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000011_a620c1eb.szar new file mode 100644 index 00000000..3d605cff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000011_a620c1eb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000012_ddd07c74.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000012_ddd07c74.szar new file mode 100644 index 00000000..76f49cb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000012_ddd07c74.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000013_9710dc54.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000013_9710dc54.szar new file mode 100644 index 00000000..70356359 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000013_9710dc54.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000014_e3b265f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000014_e3b265f2.szar new file mode 100644 index 00000000..39a4421a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000014_e3b265f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000015_3a2e33f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000015_3a2e33f8.szar new file mode 100644 index 00000000..5d573ef5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000015_3a2e33f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000016_9d9b0611.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000016_9d9b0611.szar new file mode 100644 index 00000000..dc9eb77f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000016_9d9b0611.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000017_a27054ba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000017_a27054ba.szar new file mode 100644 index 00000000..52b2daf0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000017_a27054ba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000018_264a833c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000018_264a833c.szar new file mode 100644 index 00000000..f57a3250 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000018_264a833c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000019_ffb7d711.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000019_ffb7d711.szar new file mode 100644 index 00000000..67500e51 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000019_ffb7d711.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000020_57096222.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000020_57096222.szar new file mode 100644 index 00000000..aef9e364 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000020_57096222.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000021_bd17c706.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000021_bd17c706.szar new file mode 100644 index 00000000..b19d6b3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000021_bd17c706.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000022_58823469.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000022_58823469.szar new file mode 100644 index 00000000..41f04db5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000022_58823469.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000023_4ec8cefc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000023_4ec8cefc.szar new file mode 100644 index 00000000..a399dae9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000023_4ec8cefc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000024_32d25a2b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000024_32d25a2b.szar new file mode 100644 index 00000000..8cf0d1f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000024_32d25a2b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000025_df660af4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000025_df660af4.szar new file mode 100644 index 00000000..958f247e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000025_df660af4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000026_5bfa0797.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000026_5bfa0797.szar new file mode 100644 index 00000000..a1a1592d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000026_5bfa0797.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000027_3ab39d5e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000027_3ab39d5e.szar new file mode 100644 index 00000000..d9b87081 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000027_3ab39d5e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000028_35c6c302.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000028_35c6c302.szar new file mode 100644 index 00000000..1208e8f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000028_35c6c302.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000029_89b271a2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000029_89b271a2.szar new file mode 100644 index 00000000..41e38d2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000029_89b271a2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000030_7fd47d47.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000030_7fd47d47.szar new file mode 100644 index 00000000..a8f72aba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000030_7fd47d47.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000031_8cd80424.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000031_8cd80424.szar new file mode 100644 index 00000000..b9c5912d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000031_8cd80424.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000032_f51ad625.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000032_f51ad625.szar new file mode 100644 index 00000000..6431c304 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000032_f51ad625.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000033_95e37109.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000033_95e37109.szar new file mode 100644 index 00000000..d18f2b53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000033_95e37109.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000034_e885eb72.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000034_e885eb72.szar new file mode 100644 index 00000000..42e72435 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000034_e885eb72.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000035_50c9fd96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000035_50c9fd96.szar new file mode 100644 index 00000000..ee047683 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000035_50c9fd96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000036_f558ceab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000036_f558ceab.szar new file mode 100644 index 00000000..ad00ffa4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000036_f558ceab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000037_2f58fe90.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000037_2f58fe90.szar new file mode 100644 index 00000000..55ec826a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000037_2f58fe90.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000038_f7ef7079.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000038_f7ef7079.szar new file mode 100644 index 00000000..e86a8661 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000038_f7ef7079.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000039_48d9a45c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000039_48d9a45c.szar new file mode 100644 index 00000000..dae84158 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000039_48d9a45c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000040_a503ba75.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000040_a503ba75.szar new file mode 100644 index 00000000..d1947570 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000040_a503ba75.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000041_4bac39e5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000041_4bac39e5.szar new file mode 100644 index 00000000..829906c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000041_4bac39e5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000042_f6953e72.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000042_f6953e72.szar new file mode 100644 index 00000000..d1bfa6aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000042_f6953e72.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000043_f19605cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000043_f19605cd.szar new file mode 100644 index 00000000..00cea815 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000043_f19605cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000044_c1c7acfe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000044_c1c7acfe.szar new file mode 100644 index 00000000..5eaa37c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000044_c1c7acfe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000045_6386e87c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000045_6386e87c.szar new file mode 100644 index 00000000..eb315636 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000045_6386e87c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000046_43c8785e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000046_43c8785e.szar new file mode 100644 index 00000000..2fe1c9a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000046_43c8785e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000047_4eafc058.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000047_4eafc058.szar new file mode 100644 index 00000000..28d143ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000047_4eafc058.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000048_da35aefd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000048_da35aefd.szar new file mode 100644 index 00000000..a5606264 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000048_da35aefd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000049_9a866029.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000049_9a866029.szar new file mode 100644 index 00000000..e9b534e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000049_9a866029.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000050_8fda6d34.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000050_8fda6d34.szar new file mode 100644 index 00000000..34499bfb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000050_8fda6d34.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000051_cc4f5b7a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000051_cc4f5b7a.szar new file mode 100644 index 00000000..81728906 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000051_cc4f5b7a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000052_153ed8c1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000052_153ed8c1.szar new file mode 100644 index 00000000..0c0e4adc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000052_153ed8c1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000053_dad17f73.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000053_dad17f73.szar new file mode 100644 index 00000000..8aaa3812 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000053_dad17f73.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000054_d1b2e702.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000054_d1b2e702.szar new file mode 100644 index 00000000..b999a270 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000054_d1b2e702.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000055_58c46709.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000055_58c46709.szar new file mode 100644 index 00000000..d089ada1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000055_58c46709.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000056_b843de43.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000056_b843de43.szar new file mode 100644 index 00000000..d018af87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000056_b843de43.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000057_54fadfcc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000057_54fadfcc.szar new file mode 100644 index 00000000..ea39add3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000057_54fadfcc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000058_d08c5130.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000058_d08c5130.szar new file mode 100644 index 00000000..1136d479 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000058_d08c5130.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000059_336bde30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000059_336bde30.szar new file mode 100644 index 00000000..b2bab295 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000059_336bde30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000060_776ec9d2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000060_776ec9d2.szar new file mode 100644 index 00000000..f4e4bb47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000060_776ec9d2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000061_cc5e8949.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000061_cc5e8949.szar new file mode 100644 index 00000000..9dc82e4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000061_cc5e8949.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000062_c52e5f69.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000062_c52e5f69.szar new file mode 100644 index 00000000..48e36797 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000062_c52e5f69.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000063_d0706b4f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000063_d0706b4f.szar new file mode 100644 index 00000000..15b38dd0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000063_d0706b4f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000064_44fca112.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000064_44fca112.szar new file mode 100644 index 00000000..6e0e1e14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000064_44fca112.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000065_70a744a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000065_70a744a6.szar new file mode 100644 index 00000000..3fc50b2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000065_70a744a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000066_41b266cf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000066_41b266cf.szar new file mode 100644 index 00000000..7afdf784 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000066_41b266cf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000067_753fd610.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000067_753fd610.szar new file mode 100644 index 00000000..73f32e60 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000067_753fd610.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000068_a042fd49.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000068_a042fd49.szar new file mode 100644 index 00000000..e461ad45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000068_a042fd49.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000069_39fd757e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000069_39fd757e.szar new file mode 100644 index 00000000..28ed3349 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/archive/delta_00000000000000000069_39fd757e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000001_43140410.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000001_43140410.szcp new file mode 100644 index 00000000..f059f83b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000001_43140410.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000002_e80c6103.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000002_e80c6103.szcp new file mode 100644 index 00000000..96a7acef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000002_e80c6103.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000003_f3d845b9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000003_f3d845b9.szcp new file mode 100644 index 00000000..cdb3d8c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000003_f3d845b9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000004_31f8941b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000004_31f8941b.szcp new file mode 100644 index 00000000..59274119 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000004_31f8941b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000005_5510ea1e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000005_5510ea1e.szcp new file mode 100644 index 00000000..cce181c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000005_5510ea1e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000006_47ded568.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000006_47ded568.szcp new file mode 100644 index 00000000..e2643701 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000006_47ded568.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000007_61f79365.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000007_61f79365.szcp new file mode 100644 index 00000000..84a18139 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000007_61f79365.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000008_76994f91.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000008_76994f91.szcp new file mode 100644 index 00000000..586c0e86 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000008_76994f91.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000009_42e5da39.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000009_42e5da39.szcp new file mode 100644 index 00000000..176797c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000009_42e5da39.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000010_c9420c6f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000010_c9420c6f.szcp new file mode 100644 index 00000000..eee092d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000010_c9420c6f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000011_770298c5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000011_770298c5.szcp new file mode 100644 index 00000000..36212d44 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000011_770298c5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000012_ceb2ce4c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000012_ceb2ce4c.szcp new file mode 100644 index 00000000..6d71e2f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000012_ceb2ce4c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000013_33987322.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000013_33987322.szcp new file mode 100644 index 00000000..cdbdb570 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000013_33987322.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000014_0e23be45.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000014_0e23be45.szcp new file mode 100644 index 00000000..75ebba98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000014_0e23be45.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000015_5eeec346.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000015_5eeec346.szcp new file mode 100644 index 00000000..984751e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000015_5eeec346.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000016_af4149e1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000016_af4149e1.szcp new file mode 100644 index 00000000..e64141a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000016_af4149e1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000017_e0ce7e96.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000017_e0ce7e96.szcp new file mode 100644 index 00000000..603b6ba4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000017_e0ce7e96.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000018_4f74f2dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000018_4f74f2dd.szcp new file mode 100644 index 00000000..d4e9fca2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000018_4f74f2dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000019_e3d9fe37.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000019_e3d9fe37.szcp new file mode 100644 index 00000000..c4fe9132 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000019_e3d9fe37.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000020_e57b7966.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000020_e57b7966.szcp new file mode 100644 index 00000000..96cd2058 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000020_e57b7966.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000021_c0e65222.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000021_c0e65222.szcp new file mode 100644 index 00000000..57a6723e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000021_c0e65222.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000022_ca74c22d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000022_ca74c22d.szcp new file mode 100644 index 00000000..bd31a868 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000022_ca74c22d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000023_bb8c9f11.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000023_bb8c9f11.szcp new file mode 100644 index 00000000..e686e4d8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000023_bb8c9f11.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000024_f21f7ff1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000024_f21f7ff1.szcp new file mode 100644 index 00000000..6185a4e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000024_f21f7ff1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000025_a4c0037e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000025_a4c0037e.szcp new file mode 100644 index 00000000..a80022e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000025_a4c0037e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000026_d50940e9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000026_d50940e9.szcp new file mode 100644 index 00000000..74a36bf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000026_d50940e9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000027_ace19892.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000027_ace19892.szcp new file mode 100644 index 00000000..da482a99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000027_ace19892.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000028_17140d12.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000028_17140d12.szcp new file mode 100644 index 00000000..ed15f998 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000028_17140d12.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000029_5caa2909.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000029_5caa2909.szcp new file mode 100644 index 00000000..c3f25cb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000029_5caa2909.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000030_1a489a6d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000030_1a489a6d.szcp new file mode 100644 index 00000000..22213e8e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000030_1a489a6d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000031_0a8f0b29.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000031_0a8f0b29.szcp new file mode 100644 index 00000000..b615e4d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000031_0a8f0b29.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000032_ed91501f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000032_ed91501f.szcp new file mode 100644 index 00000000..70ed783c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000032_ed91501f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000033_6b8e3257.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000033_6b8e3257.szcp new file mode 100644 index 00000000..382cf667 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000033_6b8e3257.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000034_760e8670.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000034_760e8670.szcp new file mode 100644 index 00000000..0bb50100 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000034_760e8670.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000035_fbc3f86a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000035_fbc3f86a.szcp new file mode 100644 index 00000000..2928aa2c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000035_fbc3f86a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000036_4a1a0741.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000036_4a1a0741.szcp new file mode 100644 index 00000000..9f03b085 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000036_4a1a0741.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000037_f328b9a2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000037_f328b9a2.szcp new file mode 100644 index 00000000..6e7560c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000037_f328b9a2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000038_3add21d7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000038_3add21d7.szcp new file mode 100644 index 00000000..abd71671 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000038_3add21d7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000039_dbdc349d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000039_dbdc349d.szcp new file mode 100644 index 00000000..519c1847 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000039_dbdc349d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000040_ba755eb9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000040_ba755eb9.szcp new file mode 100644 index 00000000..cb8328ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000040_ba755eb9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000041_30cda3c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000041_30cda3c1.szcp new file mode 100644 index 00000000..3c439d48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000041_30cda3c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000042_fc47e884.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000042_fc47e884.szcp new file mode 100644 index 00000000..a63102b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000042_fc47e884.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000043_ae64a10d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000043_ae64a10d.szcp new file mode 100644 index 00000000..8a61ab9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000043_ae64a10d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000044_918195bb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000044_918195bb.szcp new file mode 100644 index 00000000..2bc19b74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000044_918195bb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000045_65b28653.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000045_65b28653.szcp new file mode 100644 index 00000000..825f8112 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000045_65b28653.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000046_ed20c2ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000046_ed20c2ab.szcp new file mode 100644 index 00000000..d5bc453f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000046_ed20c2ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000047_7e724bb1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000047_7e724bb1.szcp new file mode 100644 index 00000000..e2245353 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000047_7e724bb1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000048_1d4a8b41.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000048_1d4a8b41.szcp new file mode 100644 index 00000000..ae31687b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000048_1d4a8b41.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000049_2b110acc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000049_2b110acc.szcp new file mode 100644 index 00000000..a19f09d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000049_2b110acc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000050_be896e8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000050_be896e8c.szcp new file mode 100644 index 00000000..a62cac3e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000050_be896e8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000051_298a43cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000051_298a43cc.szcp new file mode 100644 index 00000000..30228e49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000051_298a43cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000052_ab00793a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000052_ab00793a.szcp new file mode 100644 index 00000000..238c650c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000052_ab00793a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000053_cf9c1cdb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000053_cf9c1cdb.szcp new file mode 100644 index 00000000..ba14712c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000053_cf9c1cdb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000054_9d4527c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000054_9d4527c1.szcp new file mode 100644 index 00000000..addb9519 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000054_9d4527c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000055_aa7ff0f8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000055_aa7ff0f8.szcp new file mode 100644 index 00000000..5d0c7817 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000055_aa7ff0f8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000056_54be30a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000056_54be30a0.szcp new file mode 100644 index 00000000..1b5ae96a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000056_54be30a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000057_272c6f38.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000057_272c6f38.szcp new file mode 100644 index 00000000..a80333e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000057_272c6f38.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000058_71abeed7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000058_71abeed7.szcp new file mode 100644 index 00000000..9a95a1bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000058_71abeed7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000059_d25d1001.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000059_d25d1001.szcp new file mode 100644 index 00000000..d6fe2025 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000059_d25d1001.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000060_a3731fbe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000060_a3731fbe.szcp new file mode 100644 index 00000000..0dc3495e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000060_a3731fbe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000061_049a2e54.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000061_049a2e54.szcp new file mode 100644 index 00000000..c68f5b49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000061_049a2e54.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000062_f60ede0f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000062_f60ede0f.szcp new file mode 100644 index 00000000..c6fc315a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000062_f60ede0f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000063_a6f412e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000063_a6f412e0.szcp new file mode 100644 index 00000000..c81d5cab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000063_a6f412e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000064_ef979820.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000064_ef979820.szcp new file mode 100644 index 00000000..6a603501 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000064_ef979820.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000065_26aa9698.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000065_26aa9698.szcp new file mode 100644 index 00000000..0b15a63b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000065_26aa9698.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000066_667086af.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000066_667086af.szcp new file mode 100644 index 00000000..f302f2e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000066_667086af.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000067_4d41cdff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000067_4d41cdff.szcp new file mode 100644 index 00000000..a2f4b7b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000067_4d41cdff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000068_2858a139.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000068_2858a139.szcp new file mode 100644 index 00000000..3514e744 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000068_2858a139.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000069_58228aec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000069_58228aec.szcp new file mode 100644 index 00000000..b49702d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_042/checkpoints/checkpoint_00000000000000000069_58228aec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000001_7af30a35.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000001_7af30a35.szar new file mode 100644 index 00000000..4077d4b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000001_7af30a35.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000002_67de7694.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000002_67de7694.szar new file mode 100644 index 00000000..b687a418 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000002_67de7694.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000003_97c5097e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000003_97c5097e.szar new file mode 100644 index 00000000..82afd529 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000003_97c5097e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000004_78824de5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000004_78824de5.szar new file mode 100644 index 00000000..7e9ab2bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000004_78824de5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000005_56a1c0e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000005_56a1c0e0.szar new file mode 100644 index 00000000..7b5d63bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000005_56a1c0e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000006_48f36272.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000006_48f36272.szar new file mode 100644 index 00000000..c2a43bc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000006_48f36272.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000007_676bc5b6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000007_676bc5b6.szar new file mode 100644 index 00000000..f1641781 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000007_676bc5b6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000008_8061ef21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000008_8061ef21.szar new file mode 100644 index 00000000..eecb990a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000008_8061ef21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000009_afd19b17.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000009_afd19b17.szar new file mode 100644 index 00000000..90a23857 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000009_afd19b17.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000010_33e06ef9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000010_33e06ef9.szar new file mode 100644 index 00000000..686666fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000010_33e06ef9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000011_c78a881f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000011_c78a881f.szar new file mode 100644 index 00000000..2a21d5a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000011_c78a881f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000012_9037aacd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000012_9037aacd.szar new file mode 100644 index 00000000..2bb0105f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000012_9037aacd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000013_8fc76544.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000013_8fc76544.szar new file mode 100644 index 00000000..ac730ab5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000013_8fc76544.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000014_f93e5ace.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000014_f93e5ace.szar new file mode 100644 index 00000000..7f79819e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000014_f93e5ace.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000015_1502f2f1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000015_1502f2f1.szar new file mode 100644 index 00000000..9fd33c88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000015_1502f2f1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000016_1c7bb4c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000016_1c7bb4c2.szar new file mode 100644 index 00000000..c587a556 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000016_1c7bb4c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000017_b45ae2d3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000017_b45ae2d3.szar new file mode 100644 index 00000000..c6556189 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000017_b45ae2d3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000018_d1eb13aa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000018_d1eb13aa.szar new file mode 100644 index 00000000..e757cb0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000018_d1eb13aa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000019_8d1d85d2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000019_8d1d85d2.szar new file mode 100644 index 00000000..5399ee45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000019_8d1d85d2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000020_df2799ac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000020_df2799ac.szar new file mode 100644 index 00000000..7d932e76 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000020_df2799ac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000021_08e12448.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000021_08e12448.szar new file mode 100644 index 00000000..e3b0c883 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000021_08e12448.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000022_d8b25d34.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000022_d8b25d34.szar new file mode 100644 index 00000000..06cc9780 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000022_d8b25d34.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000023_5b28fdea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000023_5b28fdea.szar new file mode 100644 index 00000000..0c4fb08b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000023_5b28fdea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000024_963c9d4f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000024_963c9d4f.szar new file mode 100644 index 00000000..6da9e004 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000024_963c9d4f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000025_b750dae5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000025_b750dae5.szar new file mode 100644 index 00000000..d70c0299 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000025_b750dae5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000026_79c0b142.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000026_79c0b142.szar new file mode 100644 index 00000000..ecffa43e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000026_79c0b142.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000027_9b5697b0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000027_9b5697b0.szar new file mode 100644 index 00000000..6d633eb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/archive/delta_00000000000000000027_9b5697b0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000001_8ca74ddb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000001_8ca74ddb.szcp new file mode 100644 index 00000000..8422f33e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000001_8ca74ddb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000002_64fbd397.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000002_64fbd397.szcp new file mode 100644 index 00000000..6cc4ce06 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000002_64fbd397.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000003_c82b0b62.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000003_c82b0b62.szcp new file mode 100644 index 00000000..a40a061f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000003_c82b0b62.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000004_a2662023.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000004_a2662023.szcp new file mode 100644 index 00000000..9ec02d17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000004_a2662023.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000005_5d003582.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000005_5d003582.szcp new file mode 100644 index 00000000..e819ce85 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000005_5d003582.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000006_ae965831.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000006_ae965831.szcp new file mode 100644 index 00000000..d92fbd33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000006_ae965831.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000007_258a1548.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000007_258a1548.szcp new file mode 100644 index 00000000..de824512 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000007_258a1548.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000008_320fc385.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000008_320fc385.szcp new file mode 100644 index 00000000..8a33691c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000008_320fc385.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000009_aafbcf42.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000009_aafbcf42.szcp new file mode 100644 index 00000000..207ca908 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000009_aafbcf42.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000010_0e9829ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000010_0e9829ab.szcp new file mode 100644 index 00000000..6083cf48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000010_0e9829ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000011_9749ed43.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000011_9749ed43.szcp new file mode 100644 index 00000000..29610a35 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000011_9749ed43.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000012_7dc459ac.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000012_7dc459ac.szcp new file mode 100644 index 00000000..6e664f82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000012_7dc459ac.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000013_595eabf6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000013_595eabf6.szcp new file mode 100644 index 00000000..eae64ab1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000013_595eabf6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000014_048ec6e0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000014_048ec6e0.szcp new file mode 100644 index 00000000..dc36c71d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000014_048ec6e0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000015_af5c273d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000015_af5c273d.szcp new file mode 100644 index 00000000..f86cb384 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000015_af5c273d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000016_5266e5c3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000016_5266e5c3.szcp new file mode 100644 index 00000000..c9e2ad5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000016_5266e5c3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000017_4187b17e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000017_4187b17e.szcp new file mode 100644 index 00000000..f4bfba52 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000017_4187b17e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000018_af15e774.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000018_af15e774.szcp new file mode 100644 index 00000000..9d074bcd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000018_af15e774.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000019_fa4ef549.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000019_fa4ef549.szcp new file mode 100644 index 00000000..4fe11751 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000019_fa4ef549.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000020_9c108a40.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000020_9c108a40.szcp new file mode 100644 index 00000000..b7789458 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000020_9c108a40.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000021_07cf0501.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000021_07cf0501.szcp new file mode 100644 index 00000000..f0c32679 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000021_07cf0501.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000022_58c28d5c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000022_58c28d5c.szcp new file mode 100644 index 00000000..7ecc328b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000022_58c28d5c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000023_8e92f945.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000023_8e92f945.szcp new file mode 100644 index 00000000..1d4ecfb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000023_8e92f945.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000024_0431ba58.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000024_0431ba58.szcp new file mode 100644 index 00000000..484edbcd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000024_0431ba58.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000025_b2f3d5ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000025_b2f3d5ef.szcp new file mode 100644 index 00000000..08277c8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000025_b2f3d5ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000026_b097d47f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000026_b097d47f.szcp new file mode 100644 index 00000000..b517a58c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000026_b097d47f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000027_3fae298d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000027_3fae298d.szcp new file mode 100644 index 00000000..559f4722 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_043/checkpoints/checkpoint_00000000000000000027_3fae298d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000001_1e8bc16e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000001_1e8bc16e.szar new file mode 100644 index 00000000..ceeae391 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000001_1e8bc16e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000002_f0b84c3c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000002_f0b84c3c.szar new file mode 100644 index 00000000..c9158409 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000002_f0b84c3c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000003_00b6c102.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000003_00b6c102.szar new file mode 100644 index 00000000..4183b67b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000003_00b6c102.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000004_bb5e010f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000004_bb5e010f.szar new file mode 100644 index 00000000..4ce520c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000004_bb5e010f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000005_82e89aec.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000005_82e89aec.szar new file mode 100644 index 00000000..c1f3f270 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000005_82e89aec.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000006_1c175419.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000006_1c175419.szar new file mode 100644 index 00000000..aff1380f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000006_1c175419.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000007_177cb02f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000007_177cb02f.szar new file mode 100644 index 00000000..b4137e35 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000007_177cb02f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000008_0550bda9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000008_0550bda9.szar new file mode 100644 index 00000000..cf2b3b66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000008_0550bda9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000009_e359bc6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000009_e359bc6c.szar new file mode 100644 index 00000000..1864e4fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000009_e359bc6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000010_0c2bcbb3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000010_0c2bcbb3.szar new file mode 100644 index 00000000..28b5ed1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000010_0c2bcbb3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000011_7d593d3e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000011_7d593d3e.szar new file mode 100644 index 00000000..c773b0fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000011_7d593d3e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000012_459d9c87.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000012_459d9c87.szar new file mode 100644 index 00000000..6092574f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000012_459d9c87.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000013_96d079ab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000013_96d079ab.szar new file mode 100644 index 00000000..b619da05 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000013_96d079ab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000014_b0fa4769.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000014_b0fa4769.szar new file mode 100644 index 00000000..50cc03fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000014_b0fa4769.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000015_f2df1bd5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000015_f2df1bd5.szar new file mode 100644 index 00000000..c0505c58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000015_f2df1bd5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000016_57c8a12b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000016_57c8a12b.szar new file mode 100644 index 00000000..5089e651 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000016_57c8a12b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000017_4e164f5c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000017_4e164f5c.szar new file mode 100644 index 00000000..1b4092ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000017_4e164f5c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000018_405c85f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000018_405c85f8.szar new file mode 100644 index 00000000..06c082a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000018_405c85f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000019_f712e5a0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000019_f712e5a0.szar new file mode 100644 index 00000000..1d935e20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000019_f712e5a0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000020_3c0fe700.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000020_3c0fe700.szar new file mode 100644 index 00000000..041dcc6a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000020_3c0fe700.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000021_650cb48a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000021_650cb48a.szar new file mode 100644 index 00000000..6f05592d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000021_650cb48a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000022_ebacd13f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000022_ebacd13f.szar new file mode 100644 index 00000000..4129b929 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000022_ebacd13f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000023_0f2702eb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000023_0f2702eb.szar new file mode 100644 index 00000000..dbf754fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000023_0f2702eb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000024_78707934.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000024_78707934.szar new file mode 100644 index 00000000..227db54f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000024_78707934.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000025_dafdd0fa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000025_dafdd0fa.szar new file mode 100644 index 00000000..96294948 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000025_dafdd0fa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000026_63e39a52.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000026_63e39a52.szar new file mode 100644 index 00000000..0ff4db50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000026_63e39a52.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000027_975a724e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000027_975a724e.szar new file mode 100644 index 00000000..02094d9b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000027_975a724e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000028_32a8aca9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000028_32a8aca9.szar new file mode 100644 index 00000000..82ec8ba7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000028_32a8aca9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000029_5db33268.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000029_5db33268.szar new file mode 100644 index 00000000..d3bf1eb2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000029_5db33268.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000030_37d338c9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000030_37d338c9.szar new file mode 100644 index 00000000..a43c0887 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000030_37d338c9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000031_98ceb919.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000031_98ceb919.szar new file mode 100644 index 00000000..7156134d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000031_98ceb919.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000032_276194e2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000032_276194e2.szar new file mode 100644 index 00000000..a1188ac1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000032_276194e2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000033_ee5fe1b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000033_ee5fe1b4.szar new file mode 100644 index 00000000..073721c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000033_ee5fe1b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000034_6aa063e3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000034_6aa063e3.szar new file mode 100644 index 00000000..2eda16b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000034_6aa063e3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000035_f3262413.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000035_f3262413.szar new file mode 100644 index 00000000..e427dfe3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000035_f3262413.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000036_8d98206d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000036_8d98206d.szar new file mode 100644 index 00000000..8b3c07e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000036_8d98206d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000037_edba38f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000037_edba38f2.szar new file mode 100644 index 00000000..8aa8d216 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000037_edba38f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000038_04e75d29.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000038_04e75d29.szar new file mode 100644 index 00000000..d01ec5fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/archive/delta_00000000000000000038_04e75d29.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000001_4b783856.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000001_4b783856.szcp new file mode 100644 index 00000000..09c358cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000001_4b783856.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000002_ab085053.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000002_ab085053.szcp new file mode 100644 index 00000000..87417fe3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000002_ab085053.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000003_fc1f47cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000003_fc1f47cc.szcp new file mode 100644 index 00000000..9e5052a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000003_fc1f47cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000004_ea872072.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000004_ea872072.szcp new file mode 100644 index 00000000..008bba53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000004_ea872072.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000005_20c7d638.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000005_20c7d638.szcp new file mode 100644 index 00000000..97258c83 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000005_20c7d638.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000006_45c6c9ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000006_45c6c9ba.szcp new file mode 100644 index 00000000..9a669a21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000006_45c6c9ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000007_3b930194.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000007_3b930194.szcp new file mode 100644 index 00000000..3f54b5a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000007_3b930194.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000008_3c25d2b4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000008_3c25d2b4.szcp new file mode 100644 index 00000000..867450a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000008_3c25d2b4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000009_c28e26bf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000009_c28e26bf.szcp new file mode 100644 index 00000000..a571903b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000009_c28e26bf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000010_95fdfea6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000010_95fdfea6.szcp new file mode 100644 index 00000000..9976c54f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000010_95fdfea6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000011_15a18d28.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000011_15a18d28.szcp new file mode 100644 index 00000000..6e6be866 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000011_15a18d28.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000012_546236c4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000012_546236c4.szcp new file mode 100644 index 00000000..9f7b9f1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000012_546236c4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000013_e18ec2e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000013_e18ec2e7.szcp new file mode 100644 index 00000000..c692af22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000013_e18ec2e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000014_f540281c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000014_f540281c.szcp new file mode 100644 index 00000000..15d68176 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000014_f540281c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000015_998f15c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000015_998f15c0.szcp new file mode 100644 index 00000000..82c697c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000015_998f15c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000016_4cb6f58f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000016_4cb6f58f.szcp new file mode 100644 index 00000000..36fd0a4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000016_4cb6f58f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000017_35bb6833.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000017_35bb6833.szcp new file mode 100644 index 00000000..4283eb6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000017_35bb6833.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000018_57dec8ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000018_57dec8ed.szcp new file mode 100644 index 00000000..440dc959 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000018_57dec8ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000019_251adc55.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000019_251adc55.szcp new file mode 100644 index 00000000..d7353ac7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000019_251adc55.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000020_4f932c44.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000020_4f932c44.szcp new file mode 100644 index 00000000..a023065d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000020_4f932c44.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000021_90a666a9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000021_90a666a9.szcp new file mode 100644 index 00000000..e8726f7f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000021_90a666a9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000022_bc6d2365.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000022_bc6d2365.szcp new file mode 100644 index 00000000..de9cf640 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000022_bc6d2365.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000023_e92496a3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000023_e92496a3.szcp new file mode 100644 index 00000000..a1619def Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000023_e92496a3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000024_8af98287.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000024_8af98287.szcp new file mode 100644 index 00000000..106a3f79 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000024_8af98287.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000025_75ab1373.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000025_75ab1373.szcp new file mode 100644 index 00000000..e8a840f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000025_75ab1373.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000026_ccbbf62c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000026_ccbbf62c.szcp new file mode 100644 index 00000000..8a3b11fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000026_ccbbf62c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000027_fe1e1086.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000027_fe1e1086.szcp new file mode 100644 index 00000000..032543aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000027_fe1e1086.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000028_3100f47c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000028_3100f47c.szcp new file mode 100644 index 00000000..fc04f37d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000028_3100f47c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000029_bf1f8e64.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000029_bf1f8e64.szcp new file mode 100644 index 00000000..a96d6d1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000029_bf1f8e64.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000030_706cb02a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000030_706cb02a.szcp new file mode 100644 index 00000000..cdf09c90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000030_706cb02a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000031_30d1befa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000031_30d1befa.szcp new file mode 100644 index 00000000..51e7c710 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000031_30d1befa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000032_71b79f0a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000032_71b79f0a.szcp new file mode 100644 index 00000000..5dbc14c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000032_71b79f0a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000033_175f4f0b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000033_175f4f0b.szcp new file mode 100644 index 00000000..96b5b21d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000033_175f4f0b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000034_4b694467.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000034_4b694467.szcp new file mode 100644 index 00000000..4f83185b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000034_4b694467.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000035_d7675407.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000035_d7675407.szcp new file mode 100644 index 00000000..14fe2056 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000035_d7675407.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000036_7261591e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000036_7261591e.szcp new file mode 100644 index 00000000..85ebfcde Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000036_7261591e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000037_6f222483.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000037_6f222483.szcp new file mode 100644 index 00000000..50ebf6d8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000037_6f222483.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000038_94f6d539.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000038_94f6d539.szcp new file mode 100644 index 00000000..0612903c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_044/checkpoints/checkpoint_00000000000000000038_94f6d539.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000001_04de6b54.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000001_04de6b54.szar new file mode 100644 index 00000000..19a593c2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000001_04de6b54.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000002_83cf6dd8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000002_83cf6dd8.szar new file mode 100644 index 00000000..a12805ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000002_83cf6dd8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000003_d3b23b40.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000003_d3b23b40.szar new file mode 100644 index 00000000..114568de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000003_d3b23b40.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000004_87a0b85e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000004_87a0b85e.szar new file mode 100644 index 00000000..567493ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000004_87a0b85e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000005_fdac9b31.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000005_fdac9b31.szar new file mode 100644 index 00000000..6c74d238 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000005_fdac9b31.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000006_ebaeece1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000006_ebaeece1.szar new file mode 100644 index 00000000..ac099386 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000006_ebaeece1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000007_884198b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000007_884198b4.szar new file mode 100644 index 00000000..b505b2d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000007_884198b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000008_170ce966.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000008_170ce966.szar new file mode 100644 index 00000000..323af9f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000008_170ce966.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000009_0617159c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000009_0617159c.szar new file mode 100644 index 00000000..dc25d549 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000009_0617159c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000010_8c92378f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000010_8c92378f.szar new file mode 100644 index 00000000..5d9d67cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000010_8c92378f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000011_481e78b9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000011_481e78b9.szar new file mode 100644 index 00000000..db4ac6be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000011_481e78b9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000012_cac4fe80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000012_cac4fe80.szar new file mode 100644 index 00000000..580001aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000012_cac4fe80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000013_66f22d97.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000013_66f22d97.szar new file mode 100644 index 00000000..a9c69948 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000013_66f22d97.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000014_5185ef5c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000014_5185ef5c.szar new file mode 100644 index 00000000..edb3600d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000014_5185ef5c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000015_d6286742.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000015_d6286742.szar new file mode 100644 index 00000000..656d01ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000015_d6286742.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000016_770e911d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000016_770e911d.szar new file mode 100644 index 00000000..2b23367e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000016_770e911d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000017_3867f8ad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000017_3867f8ad.szar new file mode 100644 index 00000000..b664d90a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000017_3867f8ad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000018_af1e62e9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000018_af1e62e9.szar new file mode 100644 index 00000000..53127ea7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000018_af1e62e9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000019_2218a3af.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000019_2218a3af.szar new file mode 100644 index 00000000..ed121790 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000019_2218a3af.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000020_9ac0ab50.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000020_9ac0ab50.szar new file mode 100644 index 00000000..071074f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000020_9ac0ab50.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000021_549fc0da.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000021_549fc0da.szar new file mode 100644 index 00000000..089d02aa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000021_549fc0da.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000022_9708728e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000022_9708728e.szar new file mode 100644 index 00000000..15cd0213 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000022_9708728e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000023_cd66bf1e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000023_cd66bf1e.szar new file mode 100644 index 00000000..e01d345f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000023_cd66bf1e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000024_048ad817.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000024_048ad817.szar new file mode 100644 index 00000000..17376e40 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000024_048ad817.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000025_d2d0b104.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000025_d2d0b104.szar new file mode 100644 index 00000000..25032950 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000025_d2d0b104.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000026_ef9aa860.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000026_ef9aa860.szar new file mode 100644 index 00000000..b468f8a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000026_ef9aa860.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000027_3fe72a9f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000027_3fe72a9f.szar new file mode 100644 index 00000000..3f113f87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000027_3fe72a9f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000028_a9c4743b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000028_a9c4743b.szar new file mode 100644 index 00000000..7ef92c92 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000028_a9c4743b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000029_b79a9e94.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000029_b79a9e94.szar new file mode 100644 index 00000000..7dd9c694 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000029_b79a9e94.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000030_31472659.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000030_31472659.szar new file mode 100644 index 00000000..48eb3840 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000030_31472659.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000031_fa68d88a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000031_fa68d88a.szar new file mode 100644 index 00000000..b305004d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000031_fa68d88a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000032_5d87b594.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000032_5d87b594.szar new file mode 100644 index 00000000..95730fdd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000032_5d87b594.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000033_87289f2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000033_87289f2d.szar new file mode 100644 index 00000000..3754c912 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000033_87289f2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000034_15e99c8f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000034_15e99c8f.szar new file mode 100644 index 00000000..01105704 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000034_15e99c8f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000035_3a79123b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000035_3a79123b.szar new file mode 100644 index 00000000..76a381e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/archive/delta_00000000000000000035_3a79123b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000001_ee872461.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000001_ee872461.szcp new file mode 100644 index 00000000..5793ffc4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000001_ee872461.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000002_bcea2729.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000002_bcea2729.szcp new file mode 100644 index 00000000..fbc42d98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000002_bcea2729.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000003_13bc053a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000003_13bc053a.szcp new file mode 100644 index 00000000..052a0971 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000003_13bc053a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000004_3827c6ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000004_3827c6ef.szcp new file mode 100644 index 00000000..3e897c4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000004_3827c6ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000005_9926ebb8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000005_9926ebb8.szcp new file mode 100644 index 00000000..792aa7fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000005_9926ebb8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000006_c57353bd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000006_c57353bd.szcp new file mode 100644 index 00000000..b3a46bf3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000006_c57353bd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000007_b6817045.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000007_b6817045.szcp new file mode 100644 index 00000000..39aa8cac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000007_b6817045.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000008_6cd0ec48.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000008_6cd0ec48.szcp new file mode 100644 index 00000000..04497db6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000008_6cd0ec48.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000009_d9250100.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000009_d9250100.szcp new file mode 100644 index 00000000..e68dfd12 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000009_d9250100.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000010_4afb1e85.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000010_4afb1e85.szcp new file mode 100644 index 00000000..beb3d18e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000010_4afb1e85.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000011_f8bb0b0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000011_f8bb0b0d.szcp new file mode 100644 index 00000000..66c9c022 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000011_f8bb0b0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000012_96b61fb2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000012_96b61fb2.szcp new file mode 100644 index 00000000..8204f3a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000012_96b61fb2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000013_63c73135.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000013_63c73135.szcp new file mode 100644 index 00000000..05b5efc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000013_63c73135.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000014_703c28d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000014_703c28d6.szcp new file mode 100644 index 00000000..8d0159bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000014_703c28d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000015_eae49125.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000015_eae49125.szcp new file mode 100644 index 00000000..4efc78e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000015_eae49125.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000016_a3470e3b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000016_a3470e3b.szcp new file mode 100644 index 00000000..bb1addef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000016_a3470e3b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000017_97139ff0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000017_97139ff0.szcp new file mode 100644 index 00000000..77e59c33 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000017_97139ff0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000018_9289ac14.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000018_9289ac14.szcp new file mode 100644 index 00000000..569582c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000018_9289ac14.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000019_a88f2e65.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000019_a88f2e65.szcp new file mode 100644 index 00000000..9176d3b5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000019_a88f2e65.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000020_a6087a85.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000020_a6087a85.szcp new file mode 100644 index 00000000..27072a79 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000020_a6087a85.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000021_d51c3a5c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000021_d51c3a5c.szcp new file mode 100644 index 00000000..582e414d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000021_d51c3a5c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000022_e3388245.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000022_e3388245.szcp new file mode 100644 index 00000000..e2e74657 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000022_e3388245.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000023_b6e78bdf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000023_b6e78bdf.szcp new file mode 100644 index 00000000..a6391ccf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000023_b6e78bdf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000024_9879319c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000024_9879319c.szcp new file mode 100644 index 00000000..737fa9d0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000024_9879319c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000025_c721f4fd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000025_c721f4fd.szcp new file mode 100644 index 00000000..f9a82d0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000025_c721f4fd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000026_e909dcee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000026_e909dcee.szcp new file mode 100644 index 00000000..21964d66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000026_e909dcee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000027_9dd0df46.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000027_9dd0df46.szcp new file mode 100644 index 00000000..6ee2bf49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000027_9dd0df46.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000028_d0869d7f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000028_d0869d7f.szcp new file mode 100644 index 00000000..945f5a63 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000028_d0869d7f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000029_97eb05b6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000029_97eb05b6.szcp new file mode 100644 index 00000000..bebcf983 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000029_97eb05b6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000030_c682bb9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000030_c682bb9a.szcp new file mode 100644 index 00000000..edf5a2e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000030_c682bb9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000031_2294a082.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000031_2294a082.szcp new file mode 100644 index 00000000..59f78b4b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000031_2294a082.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000032_3d76a5a2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000032_3d76a5a2.szcp new file mode 100644 index 00000000..608e9e3e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000032_3d76a5a2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000033_4a9db940.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000033_4a9db940.szcp new file mode 100644 index 00000000..aec9b3b2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000033_4a9db940.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000034_29bd1dc3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000034_29bd1dc3.szcp new file mode 100644 index 00000000..6f339370 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000034_29bd1dc3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000035_3637672c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000035_3637672c.szcp new file mode 100644 index 00000000..03333504 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_045/checkpoints/checkpoint_00000000000000000035_3637672c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000001_d808c6f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000001_d808c6f2.szar new file mode 100644 index 00000000..4670dac1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000001_d808c6f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000002_3a437762.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000002_3a437762.szar new file mode 100644 index 00000000..904aace2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000002_3a437762.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000003_624f3585.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000003_624f3585.szar new file mode 100644 index 00000000..ff416aec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000003_624f3585.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000004_09edb6d3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000004_09edb6d3.szar new file mode 100644 index 00000000..a9d4c7c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000004_09edb6d3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000005_b1d00f6a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000005_b1d00f6a.szar new file mode 100644 index 00000000..a5934091 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000005_b1d00f6a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000006_b71a291e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000006_b71a291e.szar new file mode 100644 index 00000000..a43763c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000006_b71a291e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000007_26779c4e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000007_26779c4e.szar new file mode 100644 index 00000000..203e16cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000007_26779c4e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000008_64ffdcad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000008_64ffdcad.szar new file mode 100644 index 00000000..9a7f09ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000008_64ffdcad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000009_9d22ece8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000009_9d22ece8.szar new file mode 100644 index 00000000..3a40f430 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000009_9d22ece8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000010_f05bacf9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000010_f05bacf9.szar new file mode 100644 index 00000000..d5c31f3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000010_f05bacf9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000011_2529d644.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000011_2529d644.szar new file mode 100644 index 00000000..53246868 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000011_2529d644.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000012_edc914e2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000012_edc914e2.szar new file mode 100644 index 00000000..9f57f9c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000012_edc914e2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000013_2ca234a1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000013_2ca234a1.szar new file mode 100644 index 00000000..320131c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000013_2ca234a1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000014_76b13d25.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000014_76b13d25.szar new file mode 100644 index 00000000..908e3530 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000014_76b13d25.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000015_4dbfea2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000015_4dbfea2d.szar new file mode 100644 index 00000000..bb2b58d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000015_4dbfea2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000016_9be95a1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000016_9be95a1b.szar new file mode 100644 index 00000000..9dc51ae0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000016_9be95a1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000017_4f77188c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000017_4f77188c.szar new file mode 100644 index 00000000..c5edcd27 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000017_4f77188c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000018_8abb7ca1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000018_8abb7ca1.szar new file mode 100644 index 00000000..8d99ee8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000018_8abb7ca1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000019_9dd6406c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000019_9dd6406c.szar new file mode 100644 index 00000000..6189ae99 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000019_9dd6406c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000020_f3c4a666.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000020_f3c4a666.szar new file mode 100644 index 00000000..e3794a18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000020_f3c4a666.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000021_8e1649b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000021_8e1649b4.szar new file mode 100644 index 00000000..66383ea6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000021_8e1649b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000022_7ed80bfa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000022_7ed80bfa.szar new file mode 100644 index 00000000..6019d4a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000022_7ed80bfa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000023_a6c0527e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000023_a6c0527e.szar new file mode 100644 index 00000000..8b9d18ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000023_a6c0527e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000024_b02b24ad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000024_b02b24ad.szar new file mode 100644 index 00000000..f37ea561 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000024_b02b24ad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000025_83ab7deb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000025_83ab7deb.szar new file mode 100644 index 00000000..df98ea61 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000025_83ab7deb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000026_26242ed9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000026_26242ed9.szar new file mode 100644 index 00000000..8900a164 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000026_26242ed9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000027_2224ddff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000027_2224ddff.szar new file mode 100644 index 00000000..7788a406 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000027_2224ddff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000028_65e6fee1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000028_65e6fee1.szar new file mode 100644 index 00000000..b31734a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000028_65e6fee1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000029_3dec43c0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000029_3dec43c0.szar new file mode 100644 index 00000000..5fe93203 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000029_3dec43c0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000030_c283f19c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000030_c283f19c.szar new file mode 100644 index 00000000..ec578f5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000030_c283f19c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000031_860b1990.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000031_860b1990.szar new file mode 100644 index 00000000..801ace55 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000031_860b1990.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000032_f349f5ec.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000032_f349f5ec.szar new file mode 100644 index 00000000..25b9473e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000032_f349f5ec.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000033_4a3703c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000033_4a3703c3.szar new file mode 100644 index 00000000..36257172 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000033_4a3703c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000034_99534064.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000034_99534064.szar new file mode 100644 index 00000000..a0b5631f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000034_99534064.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000035_921aec6b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000035_921aec6b.szar new file mode 100644 index 00000000..dd77de0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000035_921aec6b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000036_1d78b62f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000036_1d78b62f.szar new file mode 100644 index 00000000..15906e1d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000036_1d78b62f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000037_07871f87.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000037_07871f87.szar new file mode 100644 index 00000000..d577b330 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/archive/delta_00000000000000000037_07871f87.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000001_2bd6018b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000001_2bd6018b.szcp new file mode 100644 index 00000000..a0bbbb48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000001_2bd6018b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000002_0308fe47.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000002_0308fe47.szcp new file mode 100644 index 00000000..dc9ac367 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000002_0308fe47.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000003_aa58b9a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000003_aa58b9a1.szcp new file mode 100644 index 00000000..013a28d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000003_aa58b9a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000004_24534be6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000004_24534be6.szcp new file mode 100644 index 00000000..6e737fd1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000004_24534be6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000005_6c54ef8b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000005_6c54ef8b.szcp new file mode 100644 index 00000000..56aade58 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000005_6c54ef8b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000006_a97b1b94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000006_a97b1b94.szcp new file mode 100644 index 00000000..de811a5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000006_a97b1b94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000007_13d0003b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000007_13d0003b.szcp new file mode 100644 index 00000000..125ed547 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000007_13d0003b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000008_6cad432d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000008_6cad432d.szcp new file mode 100644 index 00000000..c37a4c43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000008_6cad432d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000009_3b080f11.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000009_3b080f11.szcp new file mode 100644 index 00000000..1c0c6028 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000009_3b080f11.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000010_625b426e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000010_625b426e.szcp new file mode 100644 index 00000000..3595bd7f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000010_625b426e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000011_d85941bb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000011_d85941bb.szcp new file mode 100644 index 00000000..56082f77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000011_d85941bb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000012_46a4d9b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000012_46a4d9b8.szcp new file mode 100644 index 00000000..1821c981 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000012_46a4d9b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000013_44c86cf1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000013_44c86cf1.szcp new file mode 100644 index 00000000..5f617d59 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000013_44c86cf1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000014_3a20558b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000014_3a20558b.szcp new file mode 100644 index 00000000..b72e81ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000014_3a20558b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000015_58984d6f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000015_58984d6f.szcp new file mode 100644 index 00000000..9b426a45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000015_58984d6f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000016_b25445b5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000016_b25445b5.szcp new file mode 100644 index 00000000..3f5b7a0a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000016_b25445b5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000017_7e4d44ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000017_7e4d44ba.szcp new file mode 100644 index 00000000..6a53972a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000017_7e4d44ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000018_e5c931c9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000018_e5c931c9.szcp new file mode 100644 index 00000000..915ee869 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000018_e5c931c9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000019_b67dbff6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000019_b67dbff6.szcp new file mode 100644 index 00000000..235d0394 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000019_b67dbff6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000020_48091319.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000020_48091319.szcp new file mode 100644 index 00000000..ad7bc3eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000020_48091319.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000021_c5493af3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000021_c5493af3.szcp new file mode 100644 index 00000000..f8678209 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000021_c5493af3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000022_cd01f918.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000022_cd01f918.szcp new file mode 100644 index 00000000..bac6591f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000022_cd01f918.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000023_cfa58326.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000023_cfa58326.szcp new file mode 100644 index 00000000..c1c0b288 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000023_cfa58326.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000024_d071fc6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000024_d071fc6e.szcp new file mode 100644 index 00000000..9cfed258 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000024_d071fc6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000025_0f1c81ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000025_0f1c81ab.szcp new file mode 100644 index 00000000..f47af61a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000025_0f1c81ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000026_4e869834.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000026_4e869834.szcp new file mode 100644 index 00000000..cc2b3de2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000026_4e869834.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000027_88f2118b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000027_88f2118b.szcp new file mode 100644 index 00000000..84eb55d8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000027_88f2118b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000028_7745ae58.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000028_7745ae58.szcp new file mode 100644 index 00000000..80cf7929 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000028_7745ae58.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000029_fc113e2c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000029_fc113e2c.szcp new file mode 100644 index 00000000..e4cb30f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000029_fc113e2c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000030_d04c2df4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000030_d04c2df4.szcp new file mode 100644 index 00000000..eb3e25e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000030_d04c2df4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000031_57b86927.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000031_57b86927.szcp new file mode 100644 index 00000000..5ad33fdc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000031_57b86927.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000032_aaafb403.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000032_aaafb403.szcp new file mode 100644 index 00000000..bda1544c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000032_aaafb403.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000033_9fea1fc8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000033_9fea1fc8.szcp new file mode 100644 index 00000000..c161ab2f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000033_9fea1fc8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000034_8aa36a8b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000034_8aa36a8b.szcp new file mode 100644 index 00000000..ec4f3688 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000034_8aa36a8b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000035_61aa7353.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000035_61aa7353.szcp new file mode 100644 index 00000000..a3eadc50 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000035_61aa7353.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000036_7da6dd44.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000036_7da6dd44.szcp new file mode 100644 index 00000000..2ab6b0ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000036_7da6dd44.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000037_d1bcea41.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000037_d1bcea41.szcp new file mode 100644 index 00000000..02443a1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_046/checkpoints/checkpoint_00000000000000000037_d1bcea41.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000001_82e78c2a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000001_82e78c2a.szar new file mode 100644 index 00000000..8a8baf42 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000001_82e78c2a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000002_02807176.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000002_02807176.szar new file mode 100644 index 00000000..7374b81d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000002_02807176.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000003_382544e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000003_382544e0.szar new file mode 100644 index 00000000..9baf44c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000003_382544e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000004_e2663f9b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000004_e2663f9b.szar new file mode 100644 index 00000000..2cf5aa2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000004_e2663f9b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000005_69d10c80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000005_69d10c80.szar new file mode 100644 index 00000000..ecbcf2fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000005_69d10c80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000006_3f5e4ab1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000006_3f5e4ab1.szar new file mode 100644 index 00000000..f1e52b60 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000006_3f5e4ab1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000007_a741485c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000007_a741485c.szar new file mode 100644 index 00000000..8c7c266f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000007_a741485c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000008_ffb517d9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000008_ffb517d9.szar new file mode 100644 index 00000000..a9eb6b00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000008_ffb517d9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000009_b27a6023.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000009_b27a6023.szar new file mode 100644 index 00000000..c2281db7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000009_b27a6023.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000010_4e1955ae.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000010_4e1955ae.szar new file mode 100644 index 00000000..929d0cc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000010_4e1955ae.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000011_26fc11e0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000011_26fc11e0.szar new file mode 100644 index 00000000..71a27bc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000011_26fc11e0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000012_60bd2daa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000012_60bd2daa.szar new file mode 100644 index 00000000..e08920b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000012_60bd2daa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000013_2d223ded.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000013_2d223ded.szar new file mode 100644 index 00000000..c38a5dd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000013_2d223ded.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000014_f7e865c5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000014_f7e865c5.szar new file mode 100644 index 00000000..1c5522a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000014_f7e865c5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000015_401cfd88.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000015_401cfd88.szar new file mode 100644 index 00000000..1db43446 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000015_401cfd88.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000016_6a01c762.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000016_6a01c762.szar new file mode 100644 index 00000000..6af54bcd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000016_6a01c762.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000017_a92a83d5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000017_a92a83d5.szar new file mode 100644 index 00000000..d3b00b14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000017_a92a83d5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000018_2d8ee35d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000018_2d8ee35d.szar new file mode 100644 index 00000000..d7d25828 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000018_2d8ee35d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000019_9abf0d1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000019_9abf0d1b.szar new file mode 100644 index 00000000..e31a08c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000019_9abf0d1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000020_cbdaf0c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000020_cbdaf0c3.szar new file mode 100644 index 00000000..7051af04 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000020_cbdaf0c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000021_f0a184b5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000021_f0a184b5.szar new file mode 100644 index 00000000..dbc5ac29 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000021_f0a184b5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000022_8ea96a02.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000022_8ea96a02.szar new file mode 100644 index 00000000..c519b454 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000022_8ea96a02.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000023_db396711.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000023_db396711.szar new file mode 100644 index 00000000..485f77d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000023_db396711.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000024_5e69da95.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000024_5e69da95.szar new file mode 100644 index 00000000..e67b8a28 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000024_5e69da95.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000025_62c8fdd0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000025_62c8fdd0.szar new file mode 100644 index 00000000..329727f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000025_62c8fdd0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000026_c1913161.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000026_c1913161.szar new file mode 100644 index 00000000..2465e81d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000026_c1913161.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000027_9e219f51.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000027_9e219f51.szar new file mode 100644 index 00000000..1d8bf13e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000027_9e219f51.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000028_8cd09809.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000028_8cd09809.szar new file mode 100644 index 00000000..eb1462cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/archive/delta_00000000000000000028_8cd09809.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000001_b25ef660.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000001_b25ef660.szcp new file mode 100644 index 00000000..6bbf58a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000001_b25ef660.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000002_0917d773.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000002_0917d773.szcp new file mode 100644 index 00000000..f28d5a82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000002_0917d773.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000003_fbc693ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000003_fbc693ef.szcp new file mode 100644 index 00000000..5cd3ece6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000003_fbc693ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000004_0511375b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000004_0511375b.szcp new file mode 100644 index 00000000..fa850477 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000004_0511375b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000005_b60b05a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000005_b60b05a1.szcp new file mode 100644 index 00000000..f1b7324c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000005_b60b05a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000006_01d8b577.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000006_01d8b577.szcp new file mode 100644 index 00000000..31c527c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000006_01d8b577.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000007_f59a1fc8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000007_f59a1fc8.szcp new file mode 100644 index 00000000..a66bb821 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000007_f59a1fc8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000008_78cc65c9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000008_78cc65c9.szcp new file mode 100644 index 00000000..750c40ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000008_78cc65c9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000009_d1ff0ce8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000009_d1ff0ce8.szcp new file mode 100644 index 00000000..521fa354 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000009_d1ff0ce8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000010_18b4546d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000010_18b4546d.szcp new file mode 100644 index 00000000..08127123 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000010_18b4546d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000011_0face7a4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000011_0face7a4.szcp new file mode 100644 index 00000000..94f1baf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000011_0face7a4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000012_d82f1153.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000012_d82f1153.szcp new file mode 100644 index 00000000..9b840c22 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000012_d82f1153.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000013_45526d6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000013_45526d6e.szcp new file mode 100644 index 00000000..a98372a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000013_45526d6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000014_1e929414.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000014_1e929414.szcp new file mode 100644 index 00000000..f0b064e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000014_1e929414.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000015_6131a73c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000015_6131a73c.szcp new file mode 100644 index 00000000..eb3c01fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000015_6131a73c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000016_8de57d33.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000016_8de57d33.szcp new file mode 100644 index 00000000..9b1f18f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000016_8de57d33.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000017_22b62624.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000017_22b62624.szcp new file mode 100644 index 00000000..6021dfd8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000017_22b62624.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000018_b67e2ead.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000018_b67e2ead.szcp new file mode 100644 index 00000000..ee07e4ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000018_b67e2ead.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000019_a86376ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000019_a86376ba.szcp new file mode 100644 index 00000000..2bd71f01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000019_a86376ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000020_ec9419cf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000020_ec9419cf.szcp new file mode 100644 index 00000000..50042cdd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000020_ec9419cf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000021_e38bb403.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000021_e38bb403.szcp new file mode 100644 index 00000000..20acae62 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000021_e38bb403.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000022_eb68ed70.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000022_eb68ed70.szcp new file mode 100644 index 00000000..04f3ca5f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000022_eb68ed70.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000023_b3d8a884.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000023_b3d8a884.szcp new file mode 100644 index 00000000..93c99d32 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000023_b3d8a884.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000024_f86af36d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000024_f86af36d.szcp new file mode 100644 index 00000000..58a02d16 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000024_f86af36d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000025_38896f33.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000025_38896f33.szcp new file mode 100644 index 00000000..bb68652c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000025_38896f33.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000026_ceeda0be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000026_ceeda0be.szcp new file mode 100644 index 00000000..aef46cb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000026_ceeda0be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000027_ef8a6017.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000027_ef8a6017.szcp new file mode 100644 index 00000000..917a03d8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000027_ef8a6017.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000028_f7fe817f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000028_f7fe817f.szcp new file mode 100644 index 00000000..9e772fb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_047/checkpoints/checkpoint_00000000000000000028_f7fe817f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000001_944f73dd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000001_944f73dd.szar new file mode 100644 index 00000000..e45838e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000001_944f73dd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000002_85abf40e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000002_85abf40e.szar new file mode 100644 index 00000000..9dd6e129 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000002_85abf40e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000003_ea2ab8ac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000003_ea2ab8ac.szar new file mode 100644 index 00000000..6a02ed71 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000003_ea2ab8ac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000004_daa214cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000004_daa214cd.szar new file mode 100644 index 00000000..0dd9b6f2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000004_daa214cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000005_426bbed4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000005_426bbed4.szar new file mode 100644 index 00000000..fd7c1a6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000005_426bbed4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000006_da3e4667.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000006_da3e4667.szar new file mode 100644 index 00000000..52cbb724 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000006_da3e4667.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000007_def44e7b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000007_def44e7b.szar new file mode 100644 index 00000000..80635710 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000007_def44e7b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000008_aed40497.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000008_aed40497.szar new file mode 100644 index 00000000..3774c6ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000008_aed40497.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000009_fe535846.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000009_fe535846.szar new file mode 100644 index 00000000..745a152d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000009_fe535846.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000010_dba2dbc2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000010_dba2dbc2.szar new file mode 100644 index 00000000..2c4ad368 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000010_dba2dbc2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000011_e953c64f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000011_e953c64f.szar new file mode 100644 index 00000000..e8134f5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000011_e953c64f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000012_9409e910.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000012_9409e910.szar new file mode 100644 index 00000000..79b3f430 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000012_9409e910.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000013_39c8d21f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000013_39c8d21f.szar new file mode 100644 index 00000000..e9e39e74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000013_39c8d21f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000014_ee96301e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000014_ee96301e.szar new file mode 100644 index 00000000..70fc5c7d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000014_ee96301e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000015_3521f9d0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000015_3521f9d0.szar new file mode 100644 index 00000000..f0456cc8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000015_3521f9d0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000016_0abefbc0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000016_0abefbc0.szar new file mode 100644 index 00000000..9cc3d1dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000016_0abefbc0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000017_9475ba53.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000017_9475ba53.szar new file mode 100644 index 00000000..c02357ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000017_9475ba53.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000018_56ada81a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000018_56ada81a.szar new file mode 100644 index 00000000..6e032cf7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000018_56ada81a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000019_658a295c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000019_658a295c.szar new file mode 100644 index 00000000..624f6928 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000019_658a295c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000020_8f537c7f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000020_8f537c7f.szar new file mode 100644 index 00000000..f553dfb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000020_8f537c7f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000021_72348bab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000021_72348bab.szar new file mode 100644 index 00000000..971dfb01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000021_72348bab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000022_18318fad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000022_18318fad.szar new file mode 100644 index 00000000..903118c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000022_18318fad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000023_18597a8e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000023_18597a8e.szar new file mode 100644 index 00000000..e60f4e47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000023_18597a8e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000024_06d7bb53.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000024_06d7bb53.szar new file mode 100644 index 00000000..f9b645fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000024_06d7bb53.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000025_f8c3febb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000025_f8c3febb.szar new file mode 100644 index 00000000..29bd25b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000025_f8c3febb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000026_961eba3e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000026_961eba3e.szar new file mode 100644 index 00000000..0beb957d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000026_961eba3e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000027_dfb15070.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000027_dfb15070.szar new file mode 100644 index 00000000..38d5ae1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000027_dfb15070.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000028_a65eb01f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000028_a65eb01f.szar new file mode 100644 index 00000000..26ba79d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000028_a65eb01f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000029_e8dd992c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000029_e8dd992c.szar new file mode 100644 index 00000000..b8ca6925 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000029_e8dd992c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000030_4cd62b0a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000030_4cd62b0a.szar new file mode 100644 index 00000000..a7789b5e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000030_4cd62b0a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000031_848569f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000031_848569f8.szar new file mode 100644 index 00000000..55c23612 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000031_848569f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000032_5120930b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000032_5120930b.szar new file mode 100644 index 00000000..5e40e9d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000032_5120930b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000033_9d521f30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000033_9d521f30.szar new file mode 100644 index 00000000..86790888 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000033_9d521f30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000034_a494d28f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000034_a494d28f.szar new file mode 100644 index 00000000..bf2faaf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000034_a494d28f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000035_3eaf9d25.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000035_3eaf9d25.szar new file mode 100644 index 00000000..2acb029f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000035_3eaf9d25.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000036_14f074a2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000036_14f074a2.szar new file mode 100644 index 00000000..306fb167 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000036_14f074a2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000037_24dc1bdb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000037_24dc1bdb.szar new file mode 100644 index 00000000..cb8f8da9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000037_24dc1bdb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000038_f3900cf7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000038_f3900cf7.szar new file mode 100644 index 00000000..624781b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000038_f3900cf7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000039_b0b36027.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000039_b0b36027.szar new file mode 100644 index 00000000..28de32bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000039_b0b36027.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000040_3207074f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000040_3207074f.szar new file mode 100644 index 00000000..ac83fd54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000040_3207074f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000041_4b411be7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000041_4b411be7.szar new file mode 100644 index 00000000..d69f15db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000041_4b411be7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000042_eebe6e46.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000042_eebe6e46.szar new file mode 100644 index 00000000..c0a1712e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000042_eebe6e46.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000043_055cdac6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000043_055cdac6.szar new file mode 100644 index 00000000..46291994 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000043_055cdac6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000044_61659b84.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000044_61659b84.szar new file mode 100644 index 00000000..01e93f74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/archive/delta_00000000000000000044_61659b84.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000001_b4dc9946.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000001_b4dc9946.szcp new file mode 100644 index 00000000..7394afe8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000001_b4dc9946.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000002_bc056704.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000002_bc056704.szcp new file mode 100644 index 00000000..fb0b764f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000002_bc056704.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000003_ca937369.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000003_ca937369.szcp new file mode 100644 index 00000000..ebf0a6c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000003_ca937369.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000004_c1ab170d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000004_c1ab170d.szcp new file mode 100644 index 00000000..be350f68 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000004_c1ab170d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000005_43b08223.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000005_43b08223.szcp new file mode 100644 index 00000000..09b3ec1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000005_43b08223.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000006_232b6a82.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000006_232b6a82.szcp new file mode 100644 index 00000000..8e54e4ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000006_232b6a82.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000007_ec62e220.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000007_ec62e220.szcp new file mode 100644 index 00000000..5073392e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000007_ec62e220.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000008_969d2937.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000008_969d2937.szcp new file mode 100644 index 00000000..d7625506 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000008_969d2937.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000009_bca90a5c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000009_bca90a5c.szcp new file mode 100644 index 00000000..6731a941 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000009_bca90a5c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000010_7ad8b805.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000010_7ad8b805.szcp new file mode 100644 index 00000000..5fbb44be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000010_7ad8b805.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000011_c8587628.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000011_c8587628.szcp new file mode 100644 index 00000000..58a27f41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000011_c8587628.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000012_e631ea3b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000012_e631ea3b.szcp new file mode 100644 index 00000000..f6ee7e43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000012_e631ea3b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000013_4d76673b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000013_4d76673b.szcp new file mode 100644 index 00000000..9dc82a36 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000013_4d76673b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000014_a5c50043.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000014_a5c50043.szcp new file mode 100644 index 00000000..c113404a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000014_a5c50043.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000015_5d18ebd4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000015_5d18ebd4.szcp new file mode 100644 index 00000000..2d7316e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000015_5d18ebd4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000016_be106fdd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000016_be106fdd.szcp new file mode 100644 index 00000000..f3f56a1b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000016_be106fdd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000017_ad8c6b8c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000017_ad8c6b8c.szcp new file mode 100644 index 00000000..03676195 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000017_ad8c6b8c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000018_3a596ec4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000018_3a596ec4.szcp new file mode 100644 index 00000000..265d7a20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000018_3a596ec4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000019_4ae98d96.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000019_4ae98d96.szcp new file mode 100644 index 00000000..2916cce4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000019_4ae98d96.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000020_8e9f09c7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000020_8e9f09c7.szcp new file mode 100644 index 00000000..eb660407 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000020_8e9f09c7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000021_54ff4be0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000021_54ff4be0.szcp new file mode 100644 index 00000000..b3f11b14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000021_54ff4be0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000022_9c64b100.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000022_9c64b100.szcp new file mode 100644 index 00000000..8ca6000a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000022_9c64b100.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000023_1be706e4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000023_1be706e4.szcp new file mode 100644 index 00000000..56983dcb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000023_1be706e4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000024_4e1329ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000024_4e1329ee.szcp new file mode 100644 index 00000000..a8c499fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000024_4e1329ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000025_ee889029.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000025_ee889029.szcp new file mode 100644 index 00000000..7e74ae4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000025_ee889029.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000026_f66440bc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000026_f66440bc.szcp new file mode 100644 index 00000000..a0dc4d77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000026_f66440bc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000027_5f63f584.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000027_5f63f584.szcp new file mode 100644 index 00000000..04081f57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000027_5f63f584.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000028_888b20b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000028_888b20b0.szcp new file mode 100644 index 00000000..fdc85bbe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000028_888b20b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000029_09755ff6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000029_09755ff6.szcp new file mode 100644 index 00000000..4e58e1ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000029_09755ff6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000030_bbc97c3c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000030_bbc97c3c.szcp new file mode 100644 index 00000000..7c2e96b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000030_bbc97c3c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000031_c771972b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000031_c771972b.szcp new file mode 100644 index 00000000..b7666621 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000031_c771972b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000032_d71e597e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000032_d71e597e.szcp new file mode 100644 index 00000000..644c59ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000032_d71e597e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000033_499880d0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000033_499880d0.szcp new file mode 100644 index 00000000..d40cff95 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000033_499880d0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000034_015dc618.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000034_015dc618.szcp new file mode 100644 index 00000000..aef913d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000034_015dc618.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000035_ba99a3ec.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000035_ba99a3ec.szcp new file mode 100644 index 00000000..fdfbad18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000035_ba99a3ec.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000036_1854b802.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000036_1854b802.szcp new file mode 100644 index 00000000..75cdcd7d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000036_1854b802.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000037_961114b0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000037_961114b0.szcp new file mode 100644 index 00000000..53b2c197 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000037_961114b0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000038_e0a19afe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000038_e0a19afe.szcp new file mode 100644 index 00000000..56400d1c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000038_e0a19afe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000039_d41a83fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000039_d41a83fc.szcp new file mode 100644 index 00000000..9b1b83a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000039_d41a83fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000040_e306a9a8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000040_e306a9a8.szcp new file mode 100644 index 00000000..94245836 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000040_e306a9a8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000041_b9dd29e4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000041_b9dd29e4.szcp new file mode 100644 index 00000000..fbd2c78c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000041_b9dd29e4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000042_c2ffdf05.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000042_c2ffdf05.szcp new file mode 100644 index 00000000..cfbf968d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000042_c2ffdf05.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000043_fc4cee78.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000043_fc4cee78.szcp new file mode 100644 index 00000000..f2b8ba6b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000043_fc4cee78.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000044_754fad4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000044_754fad4a.szcp new file mode 100644 index 00000000..2af46109 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_048/checkpoints/checkpoint_00000000000000000044_754fad4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000001_eea87605.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000001_eea87605.szar new file mode 100644 index 00000000..97127dd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000001_eea87605.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000002_729e4fad.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000002_729e4fad.szar new file mode 100644 index 00000000..9b69d5fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000002_729e4fad.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000003_5762c661.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000003_5762c661.szar new file mode 100644 index 00000000..741ab329 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000003_5762c661.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000004_454ce458.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000004_454ce458.szar new file mode 100644 index 00000000..1f51bce0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000004_454ce458.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000005_2881729c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000005_2881729c.szar new file mode 100644 index 00000000..387e3459 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000005_2881729c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000006_a6456175.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000006_a6456175.szar new file mode 100644 index 00000000..caae2623 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000006_a6456175.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000007_0798b5c5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000007_0798b5c5.szar new file mode 100644 index 00000000..7d55302d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000007_0798b5c5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000008_ef12ee00.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000008_ef12ee00.szar new file mode 100644 index 00000000..d9c4f9f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000008_ef12ee00.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000009_6282a436.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000009_6282a436.szar new file mode 100644 index 00000000..3ad8b6ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000009_6282a436.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000010_4c82b881.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000010_4c82b881.szar new file mode 100644 index 00000000..a6847d15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000010_4c82b881.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000011_efb9daf3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000011_efb9daf3.szar new file mode 100644 index 00000000..5c48599f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000011_efb9daf3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000012_ef08f26e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000012_ef08f26e.szar new file mode 100644 index 00000000..7c59f697 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000012_ef08f26e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000013_50e0ee44.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000013_50e0ee44.szar new file mode 100644 index 00000000..2783147d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000013_50e0ee44.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000014_513cc549.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000014_513cc549.szar new file mode 100644 index 00000000..4e814677 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000014_513cc549.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000015_2f9a8642.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000015_2f9a8642.szar new file mode 100644 index 00000000..7e5980be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000015_2f9a8642.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000016_6b5535e9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000016_6b5535e9.szar new file mode 100644 index 00000000..499d50b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000016_6b5535e9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000017_699eef8d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000017_699eef8d.szar new file mode 100644 index 00000000..9a3f0ec0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000017_699eef8d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000018_157723a9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000018_157723a9.szar new file mode 100644 index 00000000..11e45fd5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000018_157723a9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000019_939dacc1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000019_939dacc1.szar new file mode 100644 index 00000000..5f539893 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000019_939dacc1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000020_a1e3c414.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000020_a1e3c414.szar new file mode 100644 index 00000000..5e4d194c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000020_a1e3c414.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000021_22094b3a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000021_22094b3a.szar new file mode 100644 index 00000000..708e0042 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000021_22094b3a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000022_028985db.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000022_028985db.szar new file mode 100644 index 00000000..fb684245 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000022_028985db.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000023_8f6f3ceb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000023_8f6f3ceb.szar new file mode 100644 index 00000000..8edbe2ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000023_8f6f3ceb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000024_f4431833.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000024_f4431833.szar new file mode 100644 index 00000000..d4a84353 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000024_f4431833.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000025_e68ab78b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000025_e68ab78b.szar new file mode 100644 index 00000000..c1d2b0c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000025_e68ab78b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000026_22a708f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000026_22a708f2.szar new file mode 100644 index 00000000..9657e328 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000026_22a708f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000027_d5739e2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000027_d5739e2d.szar new file mode 100644 index 00000000..a81874d7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000027_d5739e2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000028_68543c3f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000028_68543c3f.szar new file mode 100644 index 00000000..c37832ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000028_68543c3f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000029_6cfc2aa1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000029_6cfc2aa1.szar new file mode 100644 index 00000000..91e5f763 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000029_6cfc2aa1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000030_c7e9355b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000030_c7e9355b.szar new file mode 100644 index 00000000..17a693b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000030_c7e9355b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000031_5ea64610.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000031_5ea64610.szar new file mode 100644 index 00000000..b945bf41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000031_5ea64610.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000032_3676e9aa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000032_3676e9aa.szar new file mode 100644 index 00000000..e8cc2b89 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000032_3676e9aa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000033_7f2dc15d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000033_7f2dc15d.szar new file mode 100644 index 00000000..e5091001 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000033_7f2dc15d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000034_3d01f38a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000034_3d01f38a.szar new file mode 100644 index 00000000..8cbcc0e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000034_3d01f38a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000035_579839fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000035_579839fb.szar new file mode 100644 index 00000000..d7b54cb4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/archive/delta_00000000000000000035_579839fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000001_84333ab1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000001_84333ab1.szcp new file mode 100644 index 00000000..5583e47a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000001_84333ab1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000002_97d032c8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000002_97d032c8.szcp new file mode 100644 index 00000000..1538724e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000002_97d032c8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000003_d365f7f2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000003_d365f7f2.szcp new file mode 100644 index 00000000..58e9e099 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000003_d365f7f2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000004_390fd865.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000004_390fd865.szcp new file mode 100644 index 00000000..59aff184 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000004_390fd865.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000005_aaf8d460.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000005_aaf8d460.szcp new file mode 100644 index 00000000..fc398885 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000005_aaf8d460.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000006_8e200725.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000006_8e200725.szcp new file mode 100644 index 00000000..4cb9490b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000006_8e200725.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000007_11e53bfa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000007_11e53bfa.szcp new file mode 100644 index 00000000..ccafae94 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000007_11e53bfa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000008_689b7696.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000008_689b7696.szcp new file mode 100644 index 00000000..90c30ab8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000008_689b7696.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000009_e1ae7b09.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000009_e1ae7b09.szcp new file mode 100644 index 00000000..6adef667 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000009_e1ae7b09.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000010_241500ac.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000010_241500ac.szcp new file mode 100644 index 00000000..a1b4e409 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000010_241500ac.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000011_42892519.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000011_42892519.szcp new file mode 100644 index 00000000..5b46827e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000011_42892519.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000012_ce6dda93.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000012_ce6dda93.szcp new file mode 100644 index 00000000..672fedf2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000012_ce6dda93.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000013_ef14d6d5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000013_ef14d6d5.szcp new file mode 100644 index 00000000..37ef8c3a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000013_ef14d6d5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000014_713c2cfa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000014_713c2cfa.szcp new file mode 100644 index 00000000..0b297620 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000014_713c2cfa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000015_ebc1e4ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000015_ebc1e4ed.szcp new file mode 100644 index 00000000..85865f88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000015_ebc1e4ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000016_7db3e834.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000016_7db3e834.szcp new file mode 100644 index 00000000..1800626c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000016_7db3e834.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000017_c4bf8bd8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000017_c4bf8bd8.szcp new file mode 100644 index 00000000..52add6b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000017_c4bf8bd8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000018_94002548.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000018_94002548.szcp new file mode 100644 index 00000000..c72e57ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000018_94002548.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000019_db934b55.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000019_db934b55.szcp new file mode 100644 index 00000000..31bc734f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000019_db934b55.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000020_84fad35e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000020_84fad35e.szcp new file mode 100644 index 00000000..f831f02c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000020_84fad35e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000021_beed04e7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000021_beed04e7.szcp new file mode 100644 index 00000000..e8b1a32e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000021_beed04e7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000022_ddd029a0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000022_ddd029a0.szcp new file mode 100644 index 00000000..f7116df3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000022_ddd029a0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000023_bdbf4723.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000023_bdbf4723.szcp new file mode 100644 index 00000000..31be94cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000023_bdbf4723.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000024_6bb6c86e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000024_6bb6c86e.szcp new file mode 100644 index 00000000..e2ee28e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000024_6bb6c86e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000025_ccf0b009.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000025_ccf0b009.szcp new file mode 100644 index 00000000..2c1897f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000025_ccf0b009.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000026_52e56dca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000026_52e56dca.szcp new file mode 100644 index 00000000..75b96b69 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000026_52e56dca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000027_d854c6cb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000027_d854c6cb.szcp new file mode 100644 index 00000000..096252e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000027_d854c6cb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000028_4adcf1ff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000028_4adcf1ff.szcp new file mode 100644 index 00000000..fb52dbc7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000028_4adcf1ff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000029_a6915cf2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000029_a6915cf2.szcp new file mode 100644 index 00000000..8066f08c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000029_a6915cf2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000030_92ba7548.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000030_92ba7548.szcp new file mode 100644 index 00000000..c635d804 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000030_92ba7548.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000031_15e1c88c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000031_15e1c88c.szcp new file mode 100644 index 00000000..b7cee689 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000031_15e1c88c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000032_b4077c5d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000032_b4077c5d.szcp new file mode 100644 index 00000000..585f7daa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000032_b4077c5d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000033_0c54c42d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000033_0c54c42d.szcp new file mode 100644 index 00000000..929e4a17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000033_0c54c42d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000034_5e2c0912.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000034_5e2c0912.szcp new file mode 100644 index 00000000..b4389179 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000034_5e2c0912.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000035_1c41b7ff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000035_1c41b7ff.szcp new file mode 100644 index 00000000..a451388a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_049/checkpoints/checkpoint_00000000000000000035_1c41b7ff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000001_21204886.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000001_21204886.szar new file mode 100644 index 00000000..15928ed3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000001_21204886.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000002_aaa7abfd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000002_aaa7abfd.szar new file mode 100644 index 00000000..16f398cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000002_aaa7abfd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000003_0a874ebd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000003_0a874ebd.szar new file mode 100644 index 00000000..c845213d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000003_0a874ebd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000004_35510b13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000004_35510b13.szar new file mode 100644 index 00000000..d9044821 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000004_35510b13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000005_047241f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000005_047241f4.szar new file mode 100644 index 00000000..e8303820 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000005_047241f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000006_e096e86d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000006_e096e86d.szar new file mode 100644 index 00000000..605f4656 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000006_e096e86d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000007_c233632a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000007_c233632a.szar new file mode 100644 index 00000000..87823b05 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000007_c233632a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000008_d4e5341c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000008_d4e5341c.szar new file mode 100644 index 00000000..be745af8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000008_d4e5341c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000009_b9b238bf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000009_b9b238bf.szar new file mode 100644 index 00000000..7a82efde Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000009_b9b238bf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000010_62a67af7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000010_62a67af7.szar new file mode 100644 index 00000000..882601e3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000010_62a67af7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000011_7f692e77.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000011_7f692e77.szar new file mode 100644 index 00000000..c5833393 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000011_7f692e77.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000012_b4e9133d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000012_b4e9133d.szar new file mode 100644 index 00000000..56b9b419 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000012_b4e9133d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000013_991e552b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000013_991e552b.szar new file mode 100644 index 00000000..345470f3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000013_991e552b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000014_018e0e9d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000014_018e0e9d.szar new file mode 100644 index 00000000..df0fdc37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000014_018e0e9d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000015_b2674928.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000015_b2674928.szar new file mode 100644 index 00000000..88637468 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000015_b2674928.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000016_8484b8f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000016_8484b8f2.szar new file mode 100644 index 00000000..05778e07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000016_8484b8f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000017_21a70191.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000017_21a70191.szar new file mode 100644 index 00000000..9cc21660 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000017_21a70191.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000018_73abe306.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000018_73abe306.szar new file mode 100644 index 00000000..1e9bbc31 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000018_73abe306.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000019_07c980f0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000019_07c980f0.szar new file mode 100644 index 00000000..7a1e1c5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000019_07c980f0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000020_2e1fc9ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000020_2e1fc9ce.szar new file mode 100644 index 00000000..510fd732 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000020_2e1fc9ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000021_bb3d7e01.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000021_bb3d7e01.szar new file mode 100644 index 00000000..ab65009a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000021_bb3d7e01.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000022_e5fecda0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000022_e5fecda0.szar new file mode 100644 index 00000000..f0ad8ee7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000022_e5fecda0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000023_3d32303b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000023_3d32303b.szar new file mode 100644 index 00000000..80196601 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000023_3d32303b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000024_ae8da5df.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000024_ae8da5df.szar new file mode 100644 index 00000000..c3b3af45 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000024_ae8da5df.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000025_0e3b624f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000025_0e3b624f.szar new file mode 100644 index 00000000..bff8299a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/archive/delta_00000000000000000025_0e3b624f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000001_3d5eccd5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000001_3d5eccd5.szcp new file mode 100644 index 00000000..a2991835 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000001_3d5eccd5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000002_b82df05c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000002_b82df05c.szcp new file mode 100644 index 00000000..83787584 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000002_b82df05c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000003_4e942e69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000003_4e942e69.szcp new file mode 100644 index 00000000..57aea331 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000003_4e942e69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000004_a349a05b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000004_a349a05b.szcp new file mode 100644 index 00000000..8b76eb41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000004_a349a05b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000005_7ba13ddd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000005_7ba13ddd.szcp new file mode 100644 index 00000000..368ad0e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000005_7ba13ddd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000006_b2e3eaca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000006_b2e3eaca.szcp new file mode 100644 index 00000000..6bdf1870 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000006_b2e3eaca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000007_6f82fa0b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000007_6f82fa0b.szcp new file mode 100644 index 00000000..32e9b1e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000007_6f82fa0b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000008_81752f68.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000008_81752f68.szcp new file mode 100644 index 00000000..a51964d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000008_81752f68.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000009_003668e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000009_003668e5.szcp new file mode 100644 index 00000000..958233c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000009_003668e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000010_9bc39904.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000010_9bc39904.szcp new file mode 100644 index 00000000..87284917 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000010_9bc39904.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000011_8b4456dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000011_8b4456dd.szcp new file mode 100644 index 00000000..7f094361 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000011_8b4456dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000012_8f941f9e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000012_8f941f9e.szcp new file mode 100644 index 00000000..e6082d74 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000012_8f941f9e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000013_ef2f39f5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000013_ef2f39f5.szcp new file mode 100644 index 00000000..65f4a911 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000013_ef2f39f5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000014_06ad0920.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000014_06ad0920.szcp new file mode 100644 index 00000000..49e35dbb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000014_06ad0920.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000015_f2a48978.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000015_f2a48978.szcp new file mode 100644 index 00000000..e40f0f86 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000015_f2a48978.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000016_70b5f0ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000016_70b5f0ca.szcp new file mode 100644 index 00000000..7a0912ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000016_70b5f0ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000017_d5853486.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000017_d5853486.szcp new file mode 100644 index 00000000..967f6442 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000017_d5853486.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000018_06f0bfd5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000018_06f0bfd5.szcp new file mode 100644 index 00000000..002b43c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000018_06f0bfd5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000019_7e142193.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000019_7e142193.szcp new file mode 100644 index 00000000..bce7fab4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000019_7e142193.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000020_a7b15c80.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000020_a7b15c80.szcp new file mode 100644 index 00000000..c13df1ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000020_a7b15c80.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000021_be493b61.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000021_be493b61.szcp new file mode 100644 index 00000000..7fb3cbdf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000021_be493b61.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000022_543d1c6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000022_543d1c6e.szcp new file mode 100644 index 00000000..61132bf0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000022_543d1c6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000023_1299a8ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000023_1299a8ad.szcp new file mode 100644 index 00000000..f0b96675 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000023_1299a8ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000024_22fb8f86.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000024_22fb8f86.szcp new file mode 100644 index 00000000..2bd936db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000024_22fb8f86.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000025_9c1ac7c2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000025_9c1ac7c2.szcp new file mode 100644 index 00000000..bf1b9fb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_050/checkpoints/checkpoint_00000000000000000025_9c1ac7c2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000001_403cd785.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000001_403cd785.szar new file mode 100644 index 00000000..fc444eb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000001_403cd785.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000002_e751873d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000002_e751873d.szar new file mode 100644 index 00000000..1917c4a6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000002_e751873d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000003_7273d6cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000003_7273d6cd.szar new file mode 100644 index 00000000..9db846bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000003_7273d6cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000004_48448271.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000004_48448271.szar new file mode 100644 index 00000000..b5702b0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000004_48448271.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000005_b31fef80.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000005_b31fef80.szar new file mode 100644 index 00000000..44a36abd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000005_b31fef80.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000006_00eb7bc9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000006_00eb7bc9.szar new file mode 100644 index 00000000..f0bc2c43 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000006_00eb7bc9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000007_ba30412d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000007_ba30412d.szar new file mode 100644 index 00000000..69e21d2d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000007_ba30412d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000008_388a7dba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000008_388a7dba.szar new file mode 100644 index 00000000..42753358 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000008_388a7dba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000009_362b3b5e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000009_362b3b5e.szar new file mode 100644 index 00000000..3c7da897 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000009_362b3b5e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000010_f484a53a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000010_f484a53a.szar new file mode 100644 index 00000000..14dc80a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000010_f484a53a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000011_3212b47c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000011_3212b47c.szar new file mode 100644 index 00000000..8e64718b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000011_3212b47c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000012_4c90c43e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000012_4c90c43e.szar new file mode 100644 index 00000000..30da9dc7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000012_4c90c43e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000013_df3e4823.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000013_df3e4823.szar new file mode 100644 index 00000000..e96185cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000013_df3e4823.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000014_49513dbe.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000014_49513dbe.szar new file mode 100644 index 00000000..95065fe9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000014_49513dbe.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000015_0a449733.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000015_0a449733.szar new file mode 100644 index 00000000..0969765a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000015_0a449733.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000016_ac6fa7d5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000016_ac6fa7d5.szar new file mode 100644 index 00000000..258c677e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000016_ac6fa7d5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000017_d78d3816.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000017_d78d3816.szar new file mode 100644 index 00000000..346c934d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000017_d78d3816.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000018_76533b20.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000018_76533b20.szar new file mode 100644 index 00000000..47176ea3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000018_76533b20.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000019_6a8e9b9a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000019_6a8e9b9a.szar new file mode 100644 index 00000000..4b31d131 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000019_6a8e9b9a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000020_4315b5cc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000020_4315b5cc.szar new file mode 100644 index 00000000..0bd674f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000020_4315b5cc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000021_a496b8ec.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000021_a496b8ec.szar new file mode 100644 index 00000000..df888a03 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000021_a496b8ec.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000022_1f62b294.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000022_1f62b294.szar new file mode 100644 index 00000000..f7904883 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000022_1f62b294.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000023_2f0b335a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000023_2f0b335a.szar new file mode 100644 index 00000000..6be725db Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000023_2f0b335a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000024_9bbcd115.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000024_9bbcd115.szar new file mode 100644 index 00000000..e2fcaccf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000024_9bbcd115.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000025_f819e48c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000025_f819e48c.szar new file mode 100644 index 00000000..7bbaea6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000025_f819e48c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000026_33a32c5f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000026_33a32c5f.szar new file mode 100644 index 00000000..8d3c0014 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/archive/delta_00000000000000000026_33a32c5f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000001_f5ee0f0f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000001_f5ee0f0f.szcp new file mode 100644 index 00000000..8b4c41de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000001_f5ee0f0f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000002_cf2dff41.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000002_cf2dff41.szcp new file mode 100644 index 00000000..808025bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000002_cf2dff41.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000003_721638ea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000003_721638ea.szcp new file mode 100644 index 00000000..fe3f3ecf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000003_721638ea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000004_2a1e7eb4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000004_2a1e7eb4.szcp new file mode 100644 index 00000000..b5a2fa09 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000004_2a1e7eb4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000005_acfdf186.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000005_acfdf186.szcp new file mode 100644 index 00000000..59050621 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000005_acfdf186.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000006_a31f67e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000006_a31f67e3.szcp new file mode 100644 index 00000000..2049286e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000006_a31f67e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000007_2f605d3d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000007_2f605d3d.szcp new file mode 100644 index 00000000..cc784f9f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000007_2f605d3d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000008_0aed2258.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000008_0aed2258.szcp new file mode 100644 index 00000000..c3a4cb8a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000008_0aed2258.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000009_0573aeb2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000009_0573aeb2.szcp new file mode 100644 index 00000000..b1e317ca Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000009_0573aeb2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000010_d04c5bf7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000010_d04c5bf7.szcp new file mode 100644 index 00000000..030a7bc9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000010_d04c5bf7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000011_9038d855.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000011_9038d855.szcp new file mode 100644 index 00000000..1184add9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000011_9038d855.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000012_bb56143d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000012_bb56143d.szcp new file mode 100644 index 00000000..58ff3c5f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000012_bb56143d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000013_41c572a1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000013_41c572a1.szcp new file mode 100644 index 00000000..8dea0ba2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000013_41c572a1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000014_1092a747.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000014_1092a747.szcp new file mode 100644 index 00000000..d82ce885 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000014_1092a747.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000015_e9d9f962.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000015_e9d9f962.szcp new file mode 100644 index 00000000..339eeed3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000015_e9d9f962.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000016_27c3a951.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000016_27c3a951.szcp new file mode 100644 index 00000000..c590c588 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000016_27c3a951.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000017_c698644b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000017_c698644b.szcp new file mode 100644 index 00000000..04f66d35 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000017_c698644b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000018_05d4bc2b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000018_05d4bc2b.szcp new file mode 100644 index 00000000..15c3d19e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000018_05d4bc2b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000019_9212e6d2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000019_9212e6d2.szcp new file mode 100644 index 00000000..53342d5a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000019_9212e6d2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000020_a045e9dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000020_a045e9dd.szcp new file mode 100644 index 00000000..1fc50a41 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000020_a045e9dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000021_231370b7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000021_231370b7.szcp new file mode 100644 index 00000000..a0169b28 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000021_231370b7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000022_91403aaa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000022_91403aaa.szcp new file mode 100644 index 00000000..2f3d44ae Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000022_91403aaa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000023_53de10b8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000023_53de10b8.szcp new file mode 100644 index 00000000..a5edd8dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000023_53de10b8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000024_891056b6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000024_891056b6.szcp new file mode 100644 index 00000000..7c5bee96 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000024_891056b6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000025_e0c1c8e6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000025_e0c1c8e6.szcp new file mode 100644 index 00000000..84f7d044 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000025_e0c1c8e6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000026_f9955a21.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000026_f9955a21.szcp new file mode 100644 index 00000000..7ed28dda Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_051/checkpoints/checkpoint_00000000000000000026_f9955a21.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000001_1a530d71.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000001_1a530d71.szar new file mode 100644 index 00000000..aa2fb0c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000001_1a530d71.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000002_7fed258c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000002_7fed258c.szar new file mode 100644 index 00000000..5b76411d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000002_7fed258c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000003_98c1d7ce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000003_98c1d7ce.szar new file mode 100644 index 00000000..304d2bb8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000003_98c1d7ce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000004_fa27c5df.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000004_fa27c5df.szar new file mode 100644 index 00000000..d15dddd3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000004_fa27c5df.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000005_1006b011.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000005_1006b011.szar new file mode 100644 index 00000000..0178db4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000005_1006b011.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000006_c563a689.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000006_c563a689.szar new file mode 100644 index 00000000..0123b92e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000006_c563a689.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000007_8b16a6fd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000007_8b16a6fd.szar new file mode 100644 index 00000000..1415ddd3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000007_8b16a6fd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000008_3dd6baac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000008_3dd6baac.szar new file mode 100644 index 00000000..d59c62b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000008_3dd6baac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000009_cb7c86b9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000009_cb7c86b9.szar new file mode 100644 index 00000000..d1642202 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000009_cb7c86b9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000010_78dd5d08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000010_78dd5d08.szar new file mode 100644 index 00000000..084c799a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000010_78dd5d08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000011_3c559445.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000011_3c559445.szar new file mode 100644 index 00000000..14ab1c67 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000011_3c559445.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000012_830761e3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000012_830761e3.szar new file mode 100644 index 00000000..9a3ec0fa Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000012_830761e3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000013_5ac38d2d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000013_5ac38d2d.szar new file mode 100644 index 00000000..50940531 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000013_5ac38d2d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000014_c22a5232.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000014_c22a5232.szar new file mode 100644 index 00000000..f9c814ef Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000014_c22a5232.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000015_512c5dbc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000015_512c5dbc.szar new file mode 100644 index 00000000..c5847105 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000015_512c5dbc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000016_3baa702d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000016_3baa702d.szar new file mode 100644 index 00000000..bc3e6f00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000016_3baa702d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000017_8b9ecb96.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000017_8b9ecb96.szar new file mode 100644 index 00000000..e958d0b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000017_8b9ecb96.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000018_2693ba66.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000018_2693ba66.szar new file mode 100644 index 00000000..563e695f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000018_2693ba66.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000019_538a31d2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000019_538a31d2.szar new file mode 100644 index 00000000..1a580ee4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000019_538a31d2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000020_0e0bf5cf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000020_0e0bf5cf.szar new file mode 100644 index 00000000..03d4d328 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000020_0e0bf5cf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000021_59aaa915.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000021_59aaa915.szar new file mode 100644 index 00000000..184a9a6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000021_59aaa915.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000022_c6026e34.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000022_c6026e34.szar new file mode 100644 index 00000000..58a056a2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000022_c6026e34.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000023_172b1ca2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000023_172b1ca2.szar new file mode 100644 index 00000000..f0d46894 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000023_172b1ca2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000024_58322638.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000024_58322638.szar new file mode 100644 index 00000000..1fe70ec2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000024_58322638.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000025_5a70c630.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000025_5a70c630.szar new file mode 100644 index 00000000..3f0d9dd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000025_5a70c630.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000026_2d3117be.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000026_2d3117be.szar new file mode 100644 index 00000000..8713b5e5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000026_2d3117be.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000027_d5ac84c3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000027_d5ac84c3.szar new file mode 100644 index 00000000..b6c8d49c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000027_d5ac84c3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000028_074ff9cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000028_074ff9cd.szar new file mode 100644 index 00000000..942603c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000028_074ff9cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000029_33f3618b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000029_33f3618b.szar new file mode 100644 index 00000000..fbe9b682 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000029_33f3618b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000030_cc650423.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000030_cc650423.szar new file mode 100644 index 00000000..f3795931 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000030_cc650423.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000031_54955994.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000031_54955994.szar new file mode 100644 index 00000000..4787eb0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000031_54955994.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000032_d518b7b8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000032_d518b7b8.szar new file mode 100644 index 00000000..6257a6ea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000032_d518b7b8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000033_06da4e3f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000033_06da4e3f.szar new file mode 100644 index 00000000..bf5dde9a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000033_06da4e3f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000034_284bf700.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000034_284bf700.szar new file mode 100644 index 00000000..a8e9bd79 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000034_284bf700.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000035_7675082d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000035_7675082d.szar new file mode 100644 index 00000000..9ff6d9d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000035_7675082d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000036_1d7e0e76.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000036_1d7e0e76.szar new file mode 100644 index 00000000..db541e2f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000036_1d7e0e76.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000037_a9315054.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000037_a9315054.szar new file mode 100644 index 00000000..c972c446 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000037_a9315054.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000038_7b37fde1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000038_7b37fde1.szar new file mode 100644 index 00000000..96f89cd9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000038_7b37fde1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000039_54f11a21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000039_54f11a21.szar new file mode 100644 index 00000000..66684fd1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/archive/delta_00000000000000000039_54f11a21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000001_0bff9e2a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000001_0bff9e2a.szcp new file mode 100644 index 00000000..5a2a853a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000001_0bff9e2a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000002_99e47be1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000002_99e47be1.szcp new file mode 100644 index 00000000..513e7b80 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000002_99e47be1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000003_b51db4de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000003_b51db4de.szcp new file mode 100644 index 00000000..766047c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000003_b51db4de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000004_3d672026.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000004_3d672026.szcp new file mode 100644 index 00000000..e758cd8d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000004_3d672026.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000005_c1e5a0cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000005_c1e5a0cc.szcp new file mode 100644 index 00000000..456b134c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000005_c1e5a0cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000006_48897e34.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000006_48897e34.szcp new file mode 100644 index 00000000..6d617565 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000006_48897e34.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000007_9999668f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000007_9999668f.szcp new file mode 100644 index 00000000..cf5cfa3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000007_9999668f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000008_db069918.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000008_db069918.szcp new file mode 100644 index 00000000..1ccbf6ab Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000008_db069918.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000009_d0466a4b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000009_d0466a4b.szcp new file mode 100644 index 00000000..1086ddd6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000009_d0466a4b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000010_8b0e8bf2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000010_8b0e8bf2.szcp new file mode 100644 index 00000000..dd6f6f4a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000010_8b0e8bf2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000011_10b3cfb3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000011_10b3cfb3.szcp new file mode 100644 index 00000000..bd272751 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000011_10b3cfb3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000012_d66deda1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000012_d66deda1.szcp new file mode 100644 index 00000000..da870d9b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000012_d66deda1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000013_6ce4a9ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000013_6ce4a9ab.szcp new file mode 100644 index 00000000..e66fcc16 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000013_6ce4a9ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000014_12c9f70f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000014_12c9f70f.szcp new file mode 100644 index 00000000..10272b3c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000014_12c9f70f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000015_6f721723.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000015_6f721723.szcp new file mode 100644 index 00000000..f08909fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000015_6f721723.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000016_0c6d61d6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000016_0c6d61d6.szcp new file mode 100644 index 00000000..89d4741f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000016_0c6d61d6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000017_0945254e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000017_0945254e.szcp new file mode 100644 index 00000000..7e3db3d2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000017_0945254e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000018_b4ef267f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000018_b4ef267f.szcp new file mode 100644 index 00000000..8aa49674 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000018_b4ef267f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000019_a440f799.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000019_a440f799.szcp new file mode 100644 index 00000000..c03ffd3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000019_a440f799.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000020_ac740541.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000020_ac740541.szcp new file mode 100644 index 00000000..9994fdb4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000020_ac740541.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000021_6d8af6d4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000021_6d8af6d4.szcp new file mode 100644 index 00000000..db0e6787 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000021_6d8af6d4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000022_6ba4aa6d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000022_6ba4aa6d.szcp new file mode 100644 index 00000000..ee1bc7d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000022_6ba4aa6d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000023_884e50e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000023_884e50e3.szcp new file mode 100644 index 00000000..18e9dfa6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000023_884e50e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000024_a231bbf2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000024_a231bbf2.szcp new file mode 100644 index 00000000..1f9af82f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000024_a231bbf2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000025_847470db.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000025_847470db.szcp new file mode 100644 index 00000000..5b8e02e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000025_847470db.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000026_e4ca2140.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000026_e4ca2140.szcp new file mode 100644 index 00000000..863d8969 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000026_e4ca2140.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000027_b69f3484.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000027_b69f3484.szcp new file mode 100644 index 00000000..bea944dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000027_b69f3484.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000028_ca393009.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000028_ca393009.szcp new file mode 100644 index 00000000..e6749111 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000028_ca393009.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000029_3cffccc4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000029_3cffccc4.szcp new file mode 100644 index 00000000..ee206251 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000029_3cffccc4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000030_a9ea323e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000030_a9ea323e.szcp new file mode 100644 index 00000000..1e9feed6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000030_a9ea323e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000031_4aa476cc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000031_4aa476cc.szcp new file mode 100644 index 00000000..91dc34f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000031_4aa476cc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000032_6e4f2102.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000032_6e4f2102.szcp new file mode 100644 index 00000000..cb5f5c6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000032_6e4f2102.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000033_2a320c56.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000033_2a320c56.szcp new file mode 100644 index 00000000..3a109334 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000033_2a320c56.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000034_17215845.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000034_17215845.szcp new file mode 100644 index 00000000..b1d8ca0c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000034_17215845.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000035_5194d356.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000035_5194d356.szcp new file mode 100644 index 00000000..2cad0487 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000035_5194d356.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000036_0d89c5be.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000036_0d89c5be.szcp new file mode 100644 index 00000000..9e20617a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000036_0d89c5be.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000037_5161f6fe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000037_5161f6fe.szcp new file mode 100644 index 00000000..d9efb08e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000037_5161f6fe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000038_e56f679f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000038_e56f679f.szcp new file mode 100644 index 00000000..11a60795 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000038_e56f679f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000039_d9832d09.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000039_d9832d09.szcp new file mode 100644 index 00000000..2aaf5738 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_052/checkpoints/checkpoint_00000000000000000039_d9832d09.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000001_0962bed8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000001_0962bed8.szar new file mode 100644 index 00000000..6e5bbcb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000001_0962bed8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000002_a0ee8218.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000002_a0ee8218.szar new file mode 100644 index 00000000..5c5e8660 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000002_a0ee8218.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000003_f767f2ea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000003_f767f2ea.szar new file mode 100644 index 00000000..78f9bd20 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000003_f767f2ea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000004_dcd68b8e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000004_dcd68b8e.szar new file mode 100644 index 00000000..d60d24a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000004_dcd68b8e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000005_223b39a6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000005_223b39a6.szar new file mode 100644 index 00000000..a846c918 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000005_223b39a6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000006_5ef16365.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000006_5ef16365.szar new file mode 100644 index 00000000..cc522a84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000006_5ef16365.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000007_9cf5e52e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000007_9cf5e52e.szar new file mode 100644 index 00000000..c8d1aae2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000007_9cf5e52e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000008_575509a7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000008_575509a7.szar new file mode 100644 index 00000000..b809ab21 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000008_575509a7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000009_52187a08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000009_52187a08.szar new file mode 100644 index 00000000..d2e03e87 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000009_52187a08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000010_dd93bba6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000010_dd93bba6.szar new file mode 100644 index 00000000..b79cfff5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000010_dd93bba6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000011_b2c8d9bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000011_b2c8d9bb.szar new file mode 100644 index 00000000..d324dfc4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000011_b2c8d9bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000012_6c4af13d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000012_6c4af13d.szar new file mode 100644 index 00000000..26ec189f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000012_6c4af13d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000013_f8c8d106.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000013_f8c8d106.szar new file mode 100644 index 00000000..727dbd92 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000013_f8c8d106.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000014_6240dcb8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000014_6240dcb8.szar new file mode 100644 index 00000000..41ca70cd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000014_6240dcb8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000015_64628f24.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000015_64628f24.szar new file mode 100644 index 00000000..b9f3b1a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000015_64628f24.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000016_0bc0ee64.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000016_0bc0ee64.szar new file mode 100644 index 00000000..f111900a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000016_0bc0ee64.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000017_e62b4336.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000017_e62b4336.szar new file mode 100644 index 00000000..70bd107d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000017_e62b4336.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000018_56d3a366.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000018_56d3a366.szar new file mode 100644 index 00000000..2c9dbfad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000018_56d3a366.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000019_8545a4a7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000019_8545a4a7.szar new file mode 100644 index 00000000..fce330b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000019_8545a4a7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000020_fa566a13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000020_fa566a13.szar new file mode 100644 index 00000000..8631ed48 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000020_fa566a13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000021_1506da0d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000021_1506da0d.szar new file mode 100644 index 00000000..8db38727 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000021_1506da0d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000022_eb1451ac.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000022_eb1451ac.szar new file mode 100644 index 00000000..0b7ab327 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000022_eb1451ac.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000023_70f321bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000023_70f321bc.szar new file mode 100644 index 00000000..8d46b5f6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000023_70f321bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000024_17598ab0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000024_17598ab0.szar new file mode 100644 index 00000000..490b16f8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000024_17598ab0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000025_d51a5ec2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000025_d51a5ec2.szar new file mode 100644 index 00000000..81fb9c72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000025_d51a5ec2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000026_dd21bf37.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000026_dd21bf37.szar new file mode 100644 index 00000000..74e0f5cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000026_dd21bf37.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000027_35d7208a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000027_35d7208a.szar new file mode 100644 index 00000000..ae0454a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000027_35d7208a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000028_b1274fc1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000028_b1274fc1.szar new file mode 100644 index 00000000..a1ebe383 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000028_b1274fc1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000029_5112bdb0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000029_5112bdb0.szar new file mode 100644 index 00000000..00524573 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000029_5112bdb0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000030_e47869b5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000030_e47869b5.szar new file mode 100644 index 00000000..7535d6bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000030_e47869b5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000031_36d45104.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000031_36d45104.szar new file mode 100644 index 00000000..e849c5f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000031_36d45104.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000032_cef9a4e7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000032_cef9a4e7.szar new file mode 100644 index 00000000..af4f1b4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000032_cef9a4e7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000033_7a7b1a30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000033_7a7b1a30.szar new file mode 100644 index 00000000..2704aa30 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000033_7a7b1a30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000034_79e30127.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000034_79e30127.szar new file mode 100644 index 00000000..ec169a53 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000034_79e30127.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000035_d86990c4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000035_d86990c4.szar new file mode 100644 index 00000000..a1880fa4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000035_d86990c4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000036_ff45c06b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000036_ff45c06b.szar new file mode 100644 index 00000000..ae37b9b7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000036_ff45c06b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000037_efebe787.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000037_efebe787.szar new file mode 100644 index 00000000..deb28cf1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000037_efebe787.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000038_71a19fe1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000038_71a19fe1.szar new file mode 100644 index 00000000..124ea910 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/archive/delta_00000000000000000038_71a19fe1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000001_b0053e04.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000001_b0053e04.szcp new file mode 100644 index 00000000..5ace9ff7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000001_b0053e04.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000002_b557b514.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000002_b557b514.szcp new file mode 100644 index 00000000..e96b5115 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000002_b557b514.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000003_ea3bf59a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000003_ea3bf59a.szcp new file mode 100644 index 00000000..ccb403ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000003_ea3bf59a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000004_698b9154.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000004_698b9154.szcp new file mode 100644 index 00000000..e8985176 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000004_698b9154.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000005_fff98d4d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000005_fff98d4d.szcp new file mode 100644 index 00000000..c91d852c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000005_fff98d4d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000006_89b6c54f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000006_89b6c54f.szcp new file mode 100644 index 00000000..2c8ca17e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000006_89b6c54f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000007_0ed4e27f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000007_0ed4e27f.szcp new file mode 100644 index 00000000..d5c32138 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000007_0ed4e27f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000008_43f5d980.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000008_43f5d980.szcp new file mode 100644 index 00000000..87e54fd8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000008_43f5d980.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000009_6eebce2d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000009_6eebce2d.szcp new file mode 100644 index 00000000..262b0070 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000009_6eebce2d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000010_ef54aa76.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000010_ef54aa76.szcp new file mode 100644 index 00000000..3e9ec9ee Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000010_ef54aa76.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000011_be2545fa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000011_be2545fa.szcp new file mode 100644 index 00000000..3b9750f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000011_be2545fa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000012_e3224427.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000012_e3224427.szcp new file mode 100644 index 00000000..7c2d0eb1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000012_e3224427.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000013_b19c6971.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000013_b19c6971.szcp new file mode 100644 index 00000000..0b7e5e54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000013_b19c6971.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000014_3ede4252.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000014_3ede4252.szcp new file mode 100644 index 00000000..94ff12eb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000014_3ede4252.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000015_8df72604.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000015_8df72604.szcp new file mode 100644 index 00000000..2e5eb0d4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000015_8df72604.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000016_647149ee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000016_647149ee.szcp new file mode 100644 index 00000000..0378d3f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000016_647149ee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000017_bbd147c1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000017_bbd147c1.szcp new file mode 100644 index 00000000..56090d59 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000017_bbd147c1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000018_9d2923e5.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000018_9d2923e5.szcp new file mode 100644 index 00000000..ff5058e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000018_9d2923e5.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000019_15981138.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000019_15981138.szcp new file mode 100644 index 00000000..1e42cbf8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000019_15981138.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000020_f53b887c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000020_f53b887c.szcp new file mode 100644 index 00000000..3c629aa3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000020_f53b887c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000021_5a2ea3c0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000021_5a2ea3c0.szcp new file mode 100644 index 00000000..c435ae64 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000021_5a2ea3c0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000022_58682866.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000022_58682866.szcp new file mode 100644 index 00000000..2e89b107 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000022_58682866.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000023_ff39702b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000023_ff39702b.szcp new file mode 100644 index 00000000..543998c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000023_ff39702b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000024_6164f72e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000024_6164f72e.szcp new file mode 100644 index 00000000..56402a07 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000024_6164f72e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000025_dbebac94.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000025_dbebac94.szcp new file mode 100644 index 00000000..1bf57e73 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000025_dbebac94.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000026_050b0eee.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000026_050b0eee.szcp new file mode 100644 index 00000000..c3000b55 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000026_050b0eee.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000027_a976b597.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000027_a976b597.szcp new file mode 100644 index 00000000..43963d30 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000027_a976b597.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000028_beefdc76.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000028_beefdc76.szcp new file mode 100644 index 00000000..27be87ed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000028_beefdc76.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000029_b38c327f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000029_b38c327f.szcp new file mode 100644 index 00000000..39a01196 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000029_b38c327f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000030_87972a7f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000030_87972a7f.szcp new file mode 100644 index 00000000..e03fbf7c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000030_87972a7f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000031_fa5d05e6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000031_fa5d05e6.szcp new file mode 100644 index 00000000..81200fb5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000031_fa5d05e6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000032_5d43a3e8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000032_5d43a3e8.szcp new file mode 100644 index 00000000..a20cf2b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000032_5d43a3e8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000033_86e29e0f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000033_86e29e0f.szcp new file mode 100644 index 00000000..e5c1dd49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000033_86e29e0f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000034_8c1b5721.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000034_8c1b5721.szcp new file mode 100644 index 00000000..5329c6e9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000034_8c1b5721.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000035_316f5940.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000035_316f5940.szcp new file mode 100644 index 00000000..cd36021c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000035_316f5940.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000036_818fe1a9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000036_818fe1a9.szcp new file mode 100644 index 00000000..badf4fed Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000036_818fe1a9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000037_a68a2bea.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000037_a68a2bea.szcp new file mode 100644 index 00000000..38248c6f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000037_a68a2bea.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000038_37375a49.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000038_37375a49.szcp new file mode 100644 index 00000000..2ee4c54e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_053/checkpoints/checkpoint_00000000000000000038_37375a49.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000001_aed86013.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000001_aed86013.szar new file mode 100644 index 00000000..07d5f184 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000001_aed86013.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000002_f46e5bfa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000002_f46e5bfa.szar new file mode 100644 index 00000000..4d23dca9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000002_f46e5bfa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000003_56717eb3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000003_56717eb3.szar new file mode 100644 index 00000000..d83399de Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000003_56717eb3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000004_7bb2813f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000004_7bb2813f.szar new file mode 100644 index 00000000..9d3c37d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000004_7bb2813f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000005_63102674.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000005_63102674.szar new file mode 100644 index 00000000..9c6bdcd0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000005_63102674.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000006_de254df6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000006_de254df6.szar new file mode 100644 index 00000000..294e0af9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000006_de254df6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000007_e2a1d3c7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000007_e2a1d3c7.szar new file mode 100644 index 00000000..f8a0378d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000007_e2a1d3c7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000008_ffed679a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000008_ffed679a.szar new file mode 100644 index 00000000..f1b42d7e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000008_ffed679a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000009_093e881d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000009_093e881d.szar new file mode 100644 index 00000000..f7e76e4f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000009_093e881d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000010_9851f28d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000010_9851f28d.szar new file mode 100644 index 00000000..69a749c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000010_9851f28d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000011_be45af14.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000011_be45af14.szar new file mode 100644 index 00000000..16aad43d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000011_be45af14.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000012_161f6e68.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000012_161f6e68.szar new file mode 100644 index 00000000..4bb6caba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000012_161f6e68.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000013_b03ed835.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000013_b03ed835.szar new file mode 100644 index 00000000..7d26a622 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000013_b03ed835.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000014_3abeff7d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000014_3abeff7d.szar new file mode 100644 index 00000000..a044d34f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000014_3abeff7d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000015_9a43ff37.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000015_9a43ff37.szar new file mode 100644 index 00000000..cff084e7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000015_9a43ff37.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000016_adab8d08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000016_adab8d08.szar new file mode 100644 index 00000000..5c898922 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000016_adab8d08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000017_9f9cedb3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000017_9f9cedb3.szar new file mode 100644 index 00000000..3d09f7b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000017_9f9cedb3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000018_f8868454.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000018_f8868454.szar new file mode 100644 index 00000000..b5a129ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000018_f8868454.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000019_caae2ff5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000019_caae2ff5.szar new file mode 100644 index 00000000..a0a32fa0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000019_caae2ff5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000020_4d566262.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000020_4d566262.szar new file mode 100644 index 00000000..3ed31089 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000020_4d566262.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000021_0616ccb6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000021_0616ccb6.szar new file mode 100644 index 00000000..9780dbd3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000021_0616ccb6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000022_d9d9e705.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000022_d9d9e705.szar new file mode 100644 index 00000000..2266938e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000022_d9d9e705.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000023_d703590f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000023_d703590f.szar new file mode 100644 index 00000000..497798e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000023_d703590f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000024_4e5fc1f6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000024_4e5fc1f6.szar new file mode 100644 index 00000000..3bea1a77 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000024_4e5fc1f6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000025_08df8c0d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000025_08df8c0d.szar new file mode 100644 index 00000000..4b7d35a4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000025_08df8c0d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000026_3dc69ca9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000026_3dc69ca9.szar new file mode 100644 index 00000000..92e7d778 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000026_3dc69ca9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000027_de1a6798.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000027_de1a6798.szar new file mode 100644 index 00000000..2232a6f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000027_de1a6798.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000028_32b73a29.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000028_32b73a29.szar new file mode 100644 index 00000000..ae1b4aa6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000028_32b73a29.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000029_53863dea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000029_53863dea.szar new file mode 100644 index 00000000..a645c1a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000029_53863dea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000030_c2b3c20c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000030_c2b3c20c.szar new file mode 100644 index 00000000..5d924865 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000030_c2b3c20c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000031_10bdae6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000031_10bdae6c.szar new file mode 100644 index 00000000..351dcd4e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000031_10bdae6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000032_d5a093ed.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000032_d5a093ed.szar new file mode 100644 index 00000000..b3c26c2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/archive/delta_00000000000000000032_d5a093ed.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000001_3c3969bc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000001_3c3969bc.szcp new file mode 100644 index 00000000..f29105c9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000001_3c3969bc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000002_cae7d2fc.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000002_cae7d2fc.szcp new file mode 100644 index 00000000..00de9f00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000002_cae7d2fc.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000003_dd1f4298.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000003_dd1f4298.szcp new file mode 100644 index 00000000..1cac03c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000003_dd1f4298.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000004_106879de.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000004_106879de.szcp new file mode 100644 index 00000000..31615004 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000004_106879de.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000005_abd1e92e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000005_abd1e92e.szcp new file mode 100644 index 00000000..06f29582 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000005_abd1e92e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000006_ef574abe.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000006_ef574abe.szcp new file mode 100644 index 00000000..5d95749d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000006_ef574abe.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000007_c44a0bc0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000007_c44a0bc0.szcp new file mode 100644 index 00000000..5264c309 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000007_c44a0bc0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000008_b1dc5049.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000008_b1dc5049.szcp new file mode 100644 index 00000000..df4d5699 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000008_b1dc5049.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000009_fbc1be60.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000009_fbc1be60.szcp new file mode 100644 index 00000000..f6ae745b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000009_fbc1be60.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000010_cdbc8f98.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000010_cdbc8f98.szcp new file mode 100644 index 00000000..caab6544 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000010_cdbc8f98.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000011_ceb93149.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000011_ceb93149.szcp new file mode 100644 index 00000000..ac8f2266 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000011_ceb93149.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000012_98d1cba7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000012_98d1cba7.szcp new file mode 100644 index 00000000..68d6c1ce Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000012_98d1cba7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000013_404702dd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000013_404702dd.szcp new file mode 100644 index 00000000..db95b662 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000013_404702dd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000014_dfbca768.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000014_dfbca768.szcp new file mode 100644 index 00000000..b442f3bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000014_dfbca768.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000015_84f40728.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000015_84f40728.szcp new file mode 100644 index 00000000..bf29c291 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000015_84f40728.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000016_3843468a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000016_3843468a.szcp new file mode 100644 index 00000000..12a2af98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000016_3843468a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000017_dbed7e47.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000017_dbed7e47.szcp new file mode 100644 index 00000000..8d6621a0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000017_dbed7e47.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000018_f7a16125.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000018_f7a16125.szcp new file mode 100644 index 00000000..f7c82124 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000018_f7a16125.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000019_0229a39e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000019_0229a39e.szcp new file mode 100644 index 00000000..626c66e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000019_0229a39e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000020_4e8c6190.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000020_4e8c6190.szcp new file mode 100644 index 00000000..30aca896 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000020_4e8c6190.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000021_e05bd300.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000021_e05bd300.szcp new file mode 100644 index 00000000..b13ada9e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000021_e05bd300.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000022_b36501cb.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000022_b36501cb.szcp new file mode 100644 index 00000000..5a9a2e65 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000022_b36501cb.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000023_c551ed87.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000023_c551ed87.szcp new file mode 100644 index 00000000..70009623 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000023_c551ed87.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000024_87e4aa85.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000024_87e4aa85.szcp new file mode 100644 index 00000000..20ef2566 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000024_87e4aa85.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000025_97cd6a9c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000025_97cd6a9c.szcp new file mode 100644 index 00000000..1c0f55ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000025_97cd6a9c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000026_70bef4ba.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000026_70bef4ba.szcp new file mode 100644 index 00000000..72e7f3ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000026_70bef4ba.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000027_16ffbe73.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000027_16ffbe73.szcp new file mode 100644 index 00000000..7022e1f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000027_16ffbe73.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000028_9c1b2f35.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000028_9c1b2f35.szcp new file mode 100644 index 00000000..d1b7d1c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000028_9c1b2f35.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000029_6f9b2d0f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000029_6f9b2d0f.szcp new file mode 100644 index 00000000..b0cd797e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000029_6f9b2d0f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000030_726e2e6e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000030_726e2e6e.szcp new file mode 100644 index 00000000..8a8a352f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000030_726e2e6e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000031_ec9f0f47.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000031_ec9f0f47.szcp new file mode 100644 index 00000000..d8175753 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000031_ec9f0f47.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000032_fe5fcc8d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000032_fe5fcc8d.szcp new file mode 100644 index 00000000..0f04989e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_054/checkpoints/checkpoint_00000000000000000032_fe5fcc8d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000001_82b1ee84.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000001_82b1ee84.szar new file mode 100644 index 00000000..22cff3c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000001_82b1ee84.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000002_132aa5f3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000002_132aa5f3.szar new file mode 100644 index 00000000..8b60b3f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000002_132aa5f3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000003_5c16aea0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000003_5c16aea0.szar new file mode 100644 index 00000000..09344636 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000003_5c16aea0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000004_7e047fce.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000004_7e047fce.szar new file mode 100644 index 00000000..4af186a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000004_7e047fce.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000005_5faeb7e4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000005_5faeb7e4.szar new file mode 100644 index 00000000..7da6568f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000005_5faeb7e4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000006_cac61be6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000006_cac61be6.szar new file mode 100644 index 00000000..7cd557cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000006_cac61be6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000007_f93b143c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000007_f93b143c.szar new file mode 100644 index 00000000..3b1dbbc9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000007_f93b143c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000008_fc2c1bc1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000008_fc2c1bc1.szar new file mode 100644 index 00000000..be2000ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000008_fc2c1bc1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000009_31ca0a9b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000009_31ca0a9b.szar new file mode 100644 index 00000000..edac4e2b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000009_31ca0a9b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000010_d18ed440.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000010_d18ed440.szar new file mode 100644 index 00000000..fdbb557c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000010_d18ed440.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000011_d239f2b1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000011_d239f2b1.szar new file mode 100644 index 00000000..c75f0560 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000011_d239f2b1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000012_5d32816a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000012_5d32816a.szar new file mode 100644 index 00000000..f090b24a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000012_5d32816a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000013_0df8b731.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000013_0df8b731.szar new file mode 100644 index 00000000..6e4997da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000013_0df8b731.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000014_53eb954d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000014_53eb954d.szar new file mode 100644 index 00000000..badd5a56 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000014_53eb954d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000015_6ea99bd2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000015_6ea99bd2.szar new file mode 100644 index 00000000..57739248 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000015_6ea99bd2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000016_a78f8f1a.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000016_a78f8f1a.szar new file mode 100644 index 00000000..0db7a004 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000016_a78f8f1a.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000017_6388676d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000017_6388676d.szar new file mode 100644 index 00000000..4fd368f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000017_6388676d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000018_538edfba.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000018_538edfba.szar new file mode 100644 index 00000000..20677ed4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000018_538edfba.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000019_f847f439.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000019_f847f439.szar new file mode 100644 index 00000000..a78926bb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000019_f847f439.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000020_55acdf9b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000020_55acdf9b.szar new file mode 100644 index 00000000..9a4aed69 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000020_55acdf9b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000021_d580b9eb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000021_d580b9eb.szar new file mode 100644 index 00000000..ad4cc8b4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000021_d580b9eb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000022_06c446e1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000022_06c446e1.szar new file mode 100644 index 00000000..fa69ee85 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000022_06c446e1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000023_a77802ea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000023_a77802ea.szar new file mode 100644 index 00000000..df2335b1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000023_a77802ea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000024_07c54890.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000024_07c54890.szar new file mode 100644 index 00000000..7333f19a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000024_07c54890.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000025_04c7e9f4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000025_04c7e9f4.szar new file mode 100644 index 00000000..011cf98c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000025_04c7e9f4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000026_d3a13f03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000026_d3a13f03.szar new file mode 100644 index 00000000..425e73b6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000026_d3a13f03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000027_0446365c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000027_0446365c.szar new file mode 100644 index 00000000..0d5f10ad Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000027_0446365c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000028_e81093c5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000028_e81093c5.szar new file mode 100644 index 00000000..54cee7dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000028_e81093c5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000029_cb3427c8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000029_cb3427c8.szar new file mode 100644 index 00000000..19dd8e84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000029_cb3427c8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000030_fa941869.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000030_fa941869.szar new file mode 100644 index 00000000..edd3873c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/archive/delta_00000000000000000030_fa941869.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000001_9bc8ba13.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000001_9bc8ba13.szcp new file mode 100644 index 00000000..1075d05b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000001_9bc8ba13.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000002_fab314f4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000002_fab314f4.szcp new file mode 100644 index 00000000..d56da2e6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000002_fab314f4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000003_42b3c794.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000003_42b3c794.szcp new file mode 100644 index 00000000..809b2a40 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000003_42b3c794.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000004_9c576e8f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000004_9c576e8f.szcp new file mode 100644 index 00000000..fc185da1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000004_9c576e8f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000005_e0e54473.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000005_e0e54473.szcp new file mode 100644 index 00000000..a482edde Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000005_e0e54473.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000006_b8ae389b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000006_b8ae389b.szcp new file mode 100644 index 00000000..334cdf9c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000006_b8ae389b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000007_dedfac3d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000007_dedfac3d.szcp new file mode 100644 index 00000000..37729eb9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000007_dedfac3d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000008_6d0de28c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000008_6d0de28c.szcp new file mode 100644 index 00000000..19ad09ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000008_6d0de28c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000009_5f456749.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000009_5f456749.szcp new file mode 100644 index 00000000..c1b1a300 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000009_5f456749.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000010_a2dbda56.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000010_a2dbda56.szcp new file mode 100644 index 00000000..5af8983c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000010_a2dbda56.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000011_a652bc41.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000011_a652bc41.szcp new file mode 100644 index 00000000..5331b78a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000011_a652bc41.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000012_37a3a056.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000012_37a3a056.szcp new file mode 100644 index 00000000..7aa299fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000012_37a3a056.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000013_467075a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000013_467075a6.szcp new file mode 100644 index 00000000..786074f5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000013_467075a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000014_65a86ddd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000014_65a86ddd.szcp new file mode 100644 index 00000000..69d00a4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000014_65a86ddd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000015_d80ec277.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000015_d80ec277.szcp new file mode 100644 index 00000000..5951426c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000015_d80ec277.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000016_ae36846d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000016_ae36846d.szcp new file mode 100644 index 00000000..c8674597 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000016_ae36846d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000017_604a01ed.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000017_604a01ed.szcp new file mode 100644 index 00000000..9f47deb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000017_604a01ed.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000018_7793542c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000018_7793542c.szcp new file mode 100644 index 00000000..1aee3098 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000018_7793542c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000019_7be6fa73.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000019_7be6fa73.szcp new file mode 100644 index 00000000..c36f7546 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000019_7be6fa73.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000020_f0f917ab.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000020_f0f917ab.szcp new file mode 100644 index 00000000..944bc47e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000020_f0f917ab.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000021_03516f56.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000021_03516f56.szcp new file mode 100644 index 00000000..26ca52f4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000021_03516f56.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000022_24286184.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000022_24286184.szcp new file mode 100644 index 00000000..66b8dbf0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000022_24286184.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000023_b410bf4f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000023_b410bf4f.szcp new file mode 100644 index 00000000..31ec8380 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000023_b410bf4f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000024_70a770ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000024_70a770ca.szcp new file mode 100644 index 00000000..1604f4d3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000024_70a770ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000025_55455574.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000025_55455574.szcp new file mode 100644 index 00000000..780ddc65 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000025_55455574.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000026_497bcbe8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000026_497bcbe8.szcp new file mode 100644 index 00000000..8c6892dd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000026_497bcbe8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000027_910f1164.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000027_910f1164.szcp new file mode 100644 index 00000000..4345e31d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000027_910f1164.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000028_22ba042f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000028_22ba042f.szcp new file mode 100644 index 00000000..3b75e1df Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000028_22ba042f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000029_f062e56d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000029_f062e56d.szcp new file mode 100644 index 00000000..d80c3f0b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000029_f062e56d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000030_290422e4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000030_290422e4.szcp new file mode 100644 index 00000000..36024768 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_055/checkpoints/checkpoint_00000000000000000030_290422e4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000001_d951929b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000001_d951929b.szar new file mode 100644 index 00000000..e83f2ae7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000001_d951929b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000002_e5b3db33.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000002_e5b3db33.szar new file mode 100644 index 00000000..25a94666 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000002_e5b3db33.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000003_99de7e16.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000003_99de7e16.szar new file mode 100644 index 00000000..c51c25f7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000003_99de7e16.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000004_02c1fe32.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000004_02c1fe32.szar new file mode 100644 index 00000000..08d80676 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000004_02c1fe32.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000005_5a5259bb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000005_5a5259bb.szar new file mode 100644 index 00000000..3b66d663 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000005_5a5259bb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000006_91f0dea0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000006_91f0dea0.szar new file mode 100644 index 00000000..e4b89c49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000006_91f0dea0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000007_81d0fe01.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000007_81d0fe01.szar new file mode 100644 index 00000000..6a79d819 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000007_81d0fe01.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000008_ce0b4951.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000008_ce0b4951.szar new file mode 100644 index 00000000..a8282e10 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000008_ce0b4951.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000009_02a92d52.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000009_02a92d52.szar new file mode 100644 index 00000000..e744e254 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000009_02a92d52.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000010_8af38faf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000010_8af38faf.szar new file mode 100644 index 00000000..263ca5e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000010_8af38faf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000011_0283bbf4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000011_0283bbf4.szar new file mode 100644 index 00000000..413c3e25 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000011_0283bbf4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000012_92a6ecda.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000012_92a6ecda.szar new file mode 100644 index 00000000..9e1bdc81 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000012_92a6ecda.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000013_da4827d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000013_da4827d6.szar new file mode 100644 index 00000000..8108de38 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000013_da4827d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000014_297cdda0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000014_297cdda0.szar new file mode 100644 index 00000000..2ed39dc9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000014_297cdda0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000015_6c02637b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000015_6c02637b.szar new file mode 100644 index 00000000..1a2f0b14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000015_6c02637b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000016_f6e1da7d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000016_f6e1da7d.szar new file mode 100644 index 00000000..f97d45c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000016_f6e1da7d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000017_31e0a43c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000017_31e0a43c.szar new file mode 100644 index 00000000..e4f5c4cf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000017_31e0a43c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000018_f96d5ed5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000018_f96d5ed5.szar new file mode 100644 index 00000000..0224d2f1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000018_f96d5ed5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000019_c9f427fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000019_c9f427fc.szar new file mode 100644 index 00000000..a201108d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000019_c9f427fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000020_ae19e0dc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000020_ae19e0dc.szar new file mode 100644 index 00000000..45e369c3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000020_ae19e0dc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000021_5f948611.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000021_5f948611.szar new file mode 100644 index 00000000..3463ba37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000021_5f948611.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000022_6020af13.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000022_6020af13.szar new file mode 100644 index 00000000..9ebf14c0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000022_6020af13.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000023_14d25ac0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000023_14d25ac0.szar new file mode 100644 index 00000000..7709708b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000023_14d25ac0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000024_514a3890.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000024_514a3890.szar new file mode 100644 index 00000000..f73bce8b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000024_514a3890.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000025_6d0b1116.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000025_6d0b1116.szar new file mode 100644 index 00000000..8cf27068 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000025_6d0b1116.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000026_286806c5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000026_286806c5.szar new file mode 100644 index 00000000..bd3c93a7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000026_286806c5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000027_2f29def7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000027_2f29def7.szar new file mode 100644 index 00000000..1f09a963 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000027_2f29def7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000028_a4490958.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000028_a4490958.szar new file mode 100644 index 00000000..b2db65fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000028_a4490958.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000029_63e2437c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000029_63e2437c.szar new file mode 100644 index 00000000..96b79b2a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000029_63e2437c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000030_d9f2239c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000030_d9f2239c.szar new file mode 100644 index 00000000..76e40dcb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000030_d9f2239c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000031_7b59f663.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000031_7b59f663.szar new file mode 100644 index 00000000..693a3624 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000031_7b59f663.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000032_25f9ed85.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000032_25f9ed85.szar new file mode 100644 index 00000000..bf0deab2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000032_25f9ed85.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000033_06d79586.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000033_06d79586.szar new file mode 100644 index 00000000..01ae41c5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000033_06d79586.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000034_e8eed174.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000034_e8eed174.szar new file mode 100644 index 00000000..5e66c389 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000034_e8eed174.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000035_df0d3747.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000035_df0d3747.szar new file mode 100644 index 00000000..e4f2af3f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000035_df0d3747.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000036_23518b87.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000036_23518b87.szar new file mode 100644 index 00000000..bba019da Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000036_23518b87.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000037_ba478361.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000037_ba478361.szar new file mode 100644 index 00000000..1766386f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000037_ba478361.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000038_863d4385.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000038_863d4385.szar new file mode 100644 index 00000000..3f2965bc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000038_863d4385.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000039_d1700190.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000039_d1700190.szar new file mode 100644 index 00000000..4745866e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000039_d1700190.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000040_ef133bc8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000040_ef133bc8.szar new file mode 100644 index 00000000..cea17ed9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000040_ef133bc8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000041_8459d480.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000041_8459d480.szar new file mode 100644 index 00000000..1701f6bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000041_8459d480.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000042_97982231.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000042_97982231.szar new file mode 100644 index 00000000..af6d10b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000042_97982231.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000043_38c075a3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000043_38c075a3.szar new file mode 100644 index 00000000..5fa31ee3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000043_38c075a3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000044_d9a50670.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000044_d9a50670.szar new file mode 100644 index 00000000..2937c723 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000044_d9a50670.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000045_cfc4675f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000045_cfc4675f.szar new file mode 100644 index 00000000..90e467a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000045_cfc4675f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000046_4cbd6b45.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000046_4cbd6b45.szar new file mode 100644 index 00000000..82cc214a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000046_4cbd6b45.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000047_3ce05063.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000047_3ce05063.szar new file mode 100644 index 00000000..f43c8aff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000047_3ce05063.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000048_50c7e208.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000048_50c7e208.szar new file mode 100644 index 00000000..b8304bd7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/archive/delta_00000000000000000048_50c7e208.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000001_b6057978.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000001_b6057978.szcp new file mode 100644 index 00000000..3bb01972 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000001_b6057978.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000002_6eefdc56.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000002_6eefdc56.szcp new file mode 100644 index 00000000..3db551a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000002_6eefdc56.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000003_e008170b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000003_e008170b.szcp new file mode 100644 index 00000000..40fe30d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000003_e008170b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000004_c4b2ac77.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000004_c4b2ac77.szcp new file mode 100644 index 00000000..e94d10bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000004_c4b2ac77.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000005_4d9bf1f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000005_4d9bf1f0.szcp new file mode 100644 index 00000000..ac3411d6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000005_4d9bf1f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000006_d7a5310d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000006_d7a5310d.szcp new file mode 100644 index 00000000..087d80af Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000006_d7a5310d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000007_7cb2f763.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000007_7cb2f763.szcp new file mode 100644 index 00000000..193749fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000007_7cb2f763.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000008_3b7ff28b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000008_3b7ff28b.szcp new file mode 100644 index 00000000..585a511e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000008_3b7ff28b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000009_d8baee25.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000009_d8baee25.szcp new file mode 100644 index 00000000..0bfbccf5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000009_d8baee25.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000010_f4e3caaf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000010_f4e3caaf.szcp new file mode 100644 index 00000000..711474be Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000010_f4e3caaf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000011_4203c168.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000011_4203c168.szcp new file mode 100644 index 00000000..cb85a3e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000011_4203c168.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000012_f9ce2d08.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000012_f9ce2d08.szcp new file mode 100644 index 00000000..81136c98 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000012_f9ce2d08.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000013_6fc8c81a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000013_6fc8c81a.szcp new file mode 100644 index 00000000..4831a3a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000013_6fc8c81a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000014_a0c2d927.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000014_a0c2d927.szcp new file mode 100644 index 00000000..8958eea7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000014_a0c2d927.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000015_c2893624.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000015_c2893624.szcp new file mode 100644 index 00000000..1b74a7a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000015_c2893624.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000016_5facd22a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000016_5facd22a.szcp new file mode 100644 index 00000000..997c9d15 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000016_5facd22a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000017_f4cdff91.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000017_f4cdff91.szcp new file mode 100644 index 00000000..32e99eb7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000017_f4cdff91.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000018_2866fb4f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000018_2866fb4f.szcp new file mode 100644 index 00000000..d16e78e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000018_2866fb4f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000019_8dc145b2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000019_8dc145b2.szcp new file mode 100644 index 00000000..057c96e0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000019_8dc145b2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000020_355cb0e6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000020_355cb0e6.szcp new file mode 100644 index 00000000..2f3c8bc4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000020_355cb0e6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000021_367600a8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000021_367600a8.szcp new file mode 100644 index 00000000..2d976b57 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000021_367600a8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000022_c0369613.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000022_c0369613.szcp new file mode 100644 index 00000000..11219389 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000022_c0369613.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000023_0692ef02.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000023_0692ef02.szcp new file mode 100644 index 00000000..8c3061c8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000023_0692ef02.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000024_6482cbdd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000024_6482cbdd.szcp new file mode 100644 index 00000000..163cc0e1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000024_6482cbdd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000025_5507f880.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000025_5507f880.szcp new file mode 100644 index 00000000..4bf744a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000025_5507f880.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000026_09d88349.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000026_09d88349.szcp new file mode 100644 index 00000000..f53c5b37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000026_09d88349.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000027_1cbc6e07.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000027_1cbc6e07.szcp new file mode 100644 index 00000000..43bd9796 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000027_1cbc6e07.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000028_c6fe1e24.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000028_c6fe1e24.szcp new file mode 100644 index 00000000..fe271c14 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000028_c6fe1e24.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000029_2e3b0533.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000029_2e3b0533.szcp new file mode 100644 index 00000000..70473eb0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000029_2e3b0533.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000030_9c641b7c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000030_9c641b7c.szcp new file mode 100644 index 00000000..9cb5865f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000030_9c641b7c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000031_e2cf2969.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000031_e2cf2969.szcp new file mode 100644 index 00000000..a982d636 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000031_e2cf2969.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000032_35f8f431.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000032_35f8f431.szcp new file mode 100644 index 00000000..42a1c40a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000032_35f8f431.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000033_c27486fd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000033_c27486fd.szcp new file mode 100644 index 00000000..27dea2cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000033_c27486fd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000034_60f77fd2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000034_60f77fd2.szcp new file mode 100644 index 00000000..e24ffa1e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000034_60f77fd2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000035_d37c8ce4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000035_d37c8ce4.szcp new file mode 100644 index 00000000..38fa6bf3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000035_d37c8ce4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000036_00202246.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000036_00202246.szcp new file mode 100644 index 00000000..b79067c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000036_00202246.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000037_5ebdbfb0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000037_5ebdbfb0.szcp new file mode 100644 index 00000000..a4d3f17d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000037_5ebdbfb0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000038_b43931a9.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000038_b43931a9.szcp new file mode 100644 index 00000000..19ac0dc2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000038_b43931a9.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000039_52e849ca.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000039_52e849ca.szcp new file mode 100644 index 00000000..0df70250 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000039_52e849ca.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000040_c4bd799e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000040_c4bd799e.szcp new file mode 100644 index 00000000..ee875d49 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000040_c4bd799e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000041_4fdb36b4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000041_4fdb36b4.szcp new file mode 100644 index 00000000..66816b6d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000041_4fdb36b4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000042_404bec0a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000042_404bec0a.szcp new file mode 100644 index 00000000..d64275d9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000042_404bec0a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000043_589b1b12.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000043_589b1b12.szcp new file mode 100644 index 00000000..acb9929c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000043_589b1b12.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000044_7867595a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000044_7867595a.szcp new file mode 100644 index 00000000..c74ef4bf Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000044_7867595a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000045_17e5216e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000045_17e5216e.szcp new file mode 100644 index 00000000..6170af46 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000045_17e5216e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000046_70fe6e4a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000046_70fe6e4a.szcp new file mode 100644 index 00000000..50c501ac Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000046_70fe6e4a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000047_05064b8e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000047_05064b8e.szcp new file mode 100644 index 00000000..064c65fe Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000047_05064b8e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000048_b9c41855.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000048_b9c41855.szcp new file mode 100644 index 00000000..4707ef88 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_056/checkpoints/checkpoint_00000000000000000048_b9c41855.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000001_4294fe03.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000001_4294fe03.szar new file mode 100644 index 00000000..6cd48145 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000001_4294fe03.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000002_19d1bdd9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000002_19d1bdd9.szar new file mode 100644 index 00000000..5f36928e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000002_19d1bdd9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000003_8fc839fc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000003_8fc839fc.szar new file mode 100644 index 00000000..7088b998 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000003_8fc839fc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000004_a276c1cd.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000004_a276c1cd.szar new file mode 100644 index 00000000..a14f390f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000004_a276c1cd.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000005_5dfdab68.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000005_5dfdab68.szar new file mode 100644 index 00000000..ad558b65 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000005_5dfdab68.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000006_6b38cc4d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000006_6b38cc4d.szar new file mode 100644 index 00000000..b4a593fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000006_6b38cc4d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000007_f44a40d3.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000007_f44a40d3.szar new file mode 100644 index 00000000..eaba0d18 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000007_f44a40d3.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000008_0d7649c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000008_0d7649c2.szar new file mode 100644 index 00000000..c288529c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000008_0d7649c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000009_a13c67a7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000009_a13c67a7.szar new file mode 100644 index 00000000..e20304b3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000009_a13c67a7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000010_ec9a6297.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000010_ec9a6297.szar new file mode 100644 index 00000000..9419dc3d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000010_ec9a6297.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000011_fed4657e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000011_fed4657e.szar new file mode 100644 index 00000000..d3218b1f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000011_fed4657e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000012_b65fee43.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000012_b65fee43.szar new file mode 100644 index 00000000..5fc1fb4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000012_b65fee43.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000013_72c631f8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000013_72c631f8.szar new file mode 100644 index 00000000..7841057c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000013_72c631f8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000014_36e3a9c6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000014_36e3a9c6.szar new file mode 100644 index 00000000..097a970e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000014_36e3a9c6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000015_23ed9689.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000015_23ed9689.szar new file mode 100644 index 00000000..b9d26d65 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000015_23ed9689.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000016_b0cbb99d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000016_b0cbb99d.szar new file mode 100644 index 00000000..9c3230ec Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000016_b0cbb99d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000017_eaf99f05.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000017_eaf99f05.szar new file mode 100644 index 00000000..4a63bc00 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000017_eaf99f05.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000018_4f12598f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000018_4f12598f.szar new file mode 100644 index 00000000..5db4ac95 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000018_4f12598f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000019_c4eaaa30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000019_c4eaaa30.szar new file mode 100644 index 00000000..56732836 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000019_c4eaaa30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000020_359d5fdf.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000020_359d5fdf.szar new file mode 100644 index 00000000..5890d4fb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000020_359d5fdf.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000021_ef734bff.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000021_ef734bff.szar new file mode 100644 index 00000000..b95e06fd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000021_ef734bff.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000022_33c5ec4c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000022_33c5ec4c.szar new file mode 100644 index 00000000..8f704fd7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000022_33c5ec4c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000023_38c0373e.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000023_38c0373e.szar new file mode 100644 index 00000000..b4ee32d1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000023_38c0373e.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000024_7d4c6ed1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000024_7d4c6ed1.szar new file mode 100644 index 00000000..d137a6ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000024_7d4c6ed1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000025_4e8fec6c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000025_4e8fec6c.szar new file mode 100644 index 00000000..4eecc49a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000025_4e8fec6c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000026_e2ea43bc.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000026_e2ea43bc.szar new file mode 100644 index 00000000..33c7d6c2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000026_e2ea43bc.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000027_51b905b2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000027_51b905b2.szar new file mode 100644 index 00000000..4b9779a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000027_51b905b2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000028_3afd0de5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000028_3afd0de5.szar new file mode 100644 index 00000000..60f28884 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000028_3afd0de5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000029_d974084d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000029_d974084d.szar new file mode 100644 index 00000000..8068b34a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000029_d974084d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000030_59ae1cab.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000030_59ae1cab.szar new file mode 100644 index 00000000..6ac29d47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000030_59ae1cab.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000031_c65df965.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000031_c65df965.szar new file mode 100644 index 00000000..2181b79b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000031_c65df965.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000032_b56fc2f2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000032_b56fc2f2.szar new file mode 100644 index 00000000..08c4f15b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000032_b56fc2f2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000033_e28409b4.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000033_e28409b4.szar new file mode 100644 index 00000000..709f271d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000033_e28409b4.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000034_3b63cbd1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000034_3b63cbd1.szar new file mode 100644 index 00000000..e54b02b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000034_3b63cbd1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000035_0ca27a25.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000035_0ca27a25.szar new file mode 100644 index 00000000..229773bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000035_0ca27a25.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000036_0d738fe7.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000036_0d738fe7.szar new file mode 100644 index 00000000..7137083a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000036_0d738fe7.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000037_6660deea.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000037_6660deea.szar new file mode 100644 index 00000000..1a20faea Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000037_6660deea.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000038_b0ab9d76.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000038_b0ab9d76.szar new file mode 100644 index 00000000..67aacb03 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000038_b0ab9d76.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000039_fc89a962.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000039_fc89a962.szar new file mode 100644 index 00000000..1fbdf14b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000039_fc89a962.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000040_d8066225.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000040_d8066225.szar new file mode 100644 index 00000000..dca8c6ba Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000040_d8066225.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000041_0eb23934.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000041_0eb23934.szar new file mode 100644 index 00000000..6446b4cc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000041_0eb23934.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000042_e350a3c2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000042_e350a3c2.szar new file mode 100644 index 00000000..bd315232 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000042_e350a3c2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000043_f88499be.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000043_f88499be.szar new file mode 100644 index 00000000..849f07e2 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000043_f88499be.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000044_6a0dc68c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000044_6a0dc68c.szar new file mode 100644 index 00000000..b87924f9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/archive/delta_00000000000000000044_6a0dc68c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000001_acc868a8.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000001_acc868a8.szcp new file mode 100644 index 00000000..1b8b2909 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000001_acc868a8.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000002_fb1f4245.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000002_fb1f4245.szcp new file mode 100644 index 00000000..d1e6d6e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000002_fb1f4245.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000003_f051128a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000003_f051128a.szcp new file mode 100644 index 00000000..64c07e6e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000003_f051128a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000004_6d7e0a69.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000004_6d7e0a69.szcp new file mode 100644 index 00000000..e4a0f189 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000004_6d7e0a69.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000005_62fc4b4e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000005_62fc4b4e.szcp new file mode 100644 index 00000000..9a412add Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000005_62fc4b4e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000006_647d43ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000006_647d43ad.szcp new file mode 100644 index 00000000..268c6715 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000006_647d43ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000007_d7ed9e47.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000007_d7ed9e47.szcp new file mode 100644 index 00000000..fe3a2687 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000007_d7ed9e47.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000008_f39c8e81.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000008_f39c8e81.szcp new file mode 100644 index 00000000..a4c61f4d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000008_f39c8e81.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000009_70a963e3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000009_70a963e3.szcp new file mode 100644 index 00000000..64e8f8a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000009_70a963e3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000010_4fbd676e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000010_4fbd676e.szcp new file mode 100644 index 00000000..306837e4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000010_4fbd676e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000011_9316b071.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000011_9316b071.szcp new file mode 100644 index 00000000..8a830e94 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000011_9316b071.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000012_82fc5728.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000012_82fc5728.szcp new file mode 100644 index 00000000..b8d157a9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000012_82fc5728.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000013_6f44b53c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000013_6f44b53c.szcp new file mode 100644 index 00000000..939ae91e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000013_6f44b53c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000014_c68da13d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000014_c68da13d.szcp new file mode 100644 index 00000000..5508bae3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000014_c68da13d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000015_76d70139.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000015_76d70139.szcp new file mode 100644 index 00000000..2ec1dc84 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000015_76d70139.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000016_26a2014b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000016_26a2014b.szcp new file mode 100644 index 00000000..5514ce39 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000016_26a2014b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000017_8555d36a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000017_8555d36a.szcp new file mode 100644 index 00000000..3f811b7f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000017_8555d36a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000018_735e73b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000018_735e73b1.szcp new file mode 100644 index 00000000..15812246 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000018_735e73b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000019_298ce6f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000019_298ce6f0.szcp new file mode 100644 index 00000000..fcf029c7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000019_298ce6f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000020_5cf30680.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000020_5cf30680.szcp new file mode 100644 index 00000000..d609eaf6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000020_5cf30680.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000021_b5dd3729.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000021_b5dd3729.szcp new file mode 100644 index 00000000..82dd89a1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000021_b5dd3729.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000022_0953a57f.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000022_0953a57f.szcp new file mode 100644 index 00000000..b3816009 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000022_0953a57f.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000023_3b89cfdf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000023_3b89cfdf.szcp new file mode 100644 index 00000000..c33940e8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000023_3b89cfdf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000024_3a65e3ef.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000024_3a65e3ef.szcp new file mode 100644 index 00000000..65ea4d47 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000024_3a65e3ef.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000025_39cbc314.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000025_39cbc314.szcp new file mode 100644 index 00000000..c57874a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000025_39cbc314.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000026_a8999393.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000026_a8999393.szcp new file mode 100644 index 00000000..35db3f72 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000026_a8999393.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000027_19a83554.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000027_19a83554.szcp new file mode 100644 index 00000000..4e68fd30 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000027_19a83554.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000028_2550c967.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000028_2550c967.szcp new file mode 100644 index 00000000..fd479a5b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000028_2550c967.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000029_36294469.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000029_36294469.szcp new file mode 100644 index 00000000..63779ab8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000029_36294469.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000030_2a51afbf.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000030_2a51afbf.szcp new file mode 100644 index 00000000..389b4802 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000030_2a51afbf.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000031_defaebe6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000031_defaebe6.szcp new file mode 100644 index 00000000..202e448f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000031_defaebe6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000032_c50dc4ad.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000032_c50dc4ad.szcp new file mode 100644 index 00000000..480241b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000032_c50dc4ad.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000033_0c46dc00.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000033_0c46dc00.szcp new file mode 100644 index 00000000..b4739484 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000033_0c46dc00.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000034_177fe213.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000034_177fe213.szcp new file mode 100644 index 00000000..f2e8d7fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000034_177fe213.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000035_4b6cad7d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000035_4b6cad7d.szcp new file mode 100644 index 00000000..59b54e86 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000035_4b6cad7d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000036_a85dd767.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000036_a85dd767.szcp new file mode 100644 index 00000000..ff902b55 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000036_a85dd767.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000037_fe39de9a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000037_fe39de9a.szcp new file mode 100644 index 00000000..9eb23c37 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000037_fe39de9a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000038_ff59e854.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000038_ff59e854.szcp new file mode 100644 index 00000000..eb76420a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000038_ff59e854.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000039_62d9e225.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000039_62d9e225.szcp new file mode 100644 index 00000000..e7fbcc01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000039_62d9e225.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000040_e7f15136.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000040_e7f15136.szcp new file mode 100644 index 00000000..952ea08f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000040_e7f15136.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000041_853a9bfd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000041_853a9bfd.szcp new file mode 100644 index 00000000..0c3734dc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000041_853a9bfd.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000042_b91a6536.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000042_b91a6536.szcp new file mode 100644 index 00000000..0b5670c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000042_b91a6536.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000043_e8bd1dde.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000043_e8bd1dde.szcp new file mode 100644 index 00000000..aabf7464 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000043_e8bd1dde.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000044_73bc59d4.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000044_73bc59d4.szcp new file mode 100644 index 00000000..385a6ca9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_057/checkpoints/checkpoint_00000000000000000044_73bc59d4.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000001_a0aaaf21.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000001_a0aaaf21.szar new file mode 100644 index 00000000..9c9c254b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000001_a0aaaf21.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000002_479330fb.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000002_479330fb.szar new file mode 100644 index 00000000..57989905 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000002_479330fb.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000003_be6d155d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000003_be6d155d.szar new file mode 100644 index 00000000..72a57c90 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000003_be6d155d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000004_34dd5ab2.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000004_34dd5ab2.szar new file mode 100644 index 00000000..e68632fc Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000004_34dd5ab2.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000005_c2f9018c.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000005_c2f9018c.szar new file mode 100644 index 00000000..25438642 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000005_c2f9018c.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000006_1a36dcd1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000006_1a36dcd1.szar new file mode 100644 index 00000000..705dcd5d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000006_1a36dcd1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000007_a20b3fe5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000007_a20b3fe5.szar new file mode 100644 index 00000000..c0fa510a Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000007_a20b3fe5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000008_134c1db9.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000008_134c1db9.szar new file mode 100644 index 00000000..449fd413 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000008_134c1db9.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000009_1648d7d6.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000009_1648d7d6.szar new file mode 100644 index 00000000..545baa66 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000009_1648d7d6.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000010_a403cf1f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000010_a403cf1f.szar new file mode 100644 index 00000000..d63f88a3 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000010_a403cf1f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000011_add1faf5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000011_add1faf5.szar new file mode 100644 index 00000000..bdf40892 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000011_add1faf5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000012_e9bb32e5.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000012_e9bb32e5.szar new file mode 100644 index 00000000..38afbc30 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000012_e9bb32e5.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000013_c6e4269d.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000013_c6e4269d.szar new file mode 100644 index 00000000..9eaea9b9 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000013_c6e4269d.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000014_7cd133c0.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000014_7cd133c0.szar new file mode 100644 index 00000000..e1b739a5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000014_7cd133c0.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000015_e3201faa.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000015_e3201faa.szar new file mode 100644 index 00000000..f8552bff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000015_e3201faa.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000016_bd3a58b8.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000016_bd3a58b8.szar new file mode 100644 index 00000000..cff07b17 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000016_bd3a58b8.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000017_47475412.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000017_47475412.szar new file mode 100644 index 00000000..f8fad2ff Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000017_47475412.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000018_08a49981.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000018_08a49981.szar new file mode 100644 index 00000000..4477b748 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000018_08a49981.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000019_fda62750.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000019_fda62750.szar new file mode 100644 index 00000000..fbfc881d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000019_fda62750.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000020_d75a7291.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000020_d75a7291.szar new file mode 100644 index 00000000..267f4e82 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000020_d75a7291.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000021_3ed56d30.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000021_3ed56d30.szar new file mode 100644 index 00000000..98c1f625 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000021_3ed56d30.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000022_2997557f.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000022_2997557f.szar new file mode 100644 index 00000000..62ae82c1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000022_2997557f.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000023_62c50f1b.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000023_62c50f1b.szar new file mode 100644 index 00000000..2534633d Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000023_62c50f1b.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000024_fb1c91da.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000024_fb1c91da.szar new file mode 100644 index 00000000..c18a7186 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000024_fb1c91da.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000025_4e80c5d1.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000025_4e80c5d1.szar new file mode 100644 index 00000000..b51cb7a8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000025_4e80c5d1.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000026_79a6cf08.szar b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000026_79a6cf08.szar new file mode 100644 index 00000000..cb557e54 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/archive/delta_00000000000000000026_79a6cf08.szar differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000001_dba13a6a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000001_dba13a6a.szcp new file mode 100644 index 00000000..8833f3c4 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000001_dba13a6a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000002_a898a2a6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000002_a898a2a6.szcp new file mode 100644 index 00000000..49e38231 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000002_a898a2a6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000003_4ebdc8a2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000003_4ebdc8a2.szcp new file mode 100644 index 00000000..5cb518c6 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000003_4ebdc8a2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000004_1f7915b3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000004_1f7915b3.szcp new file mode 100644 index 00000000..ca91e377 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000004_1f7915b3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000005_de5669f0.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000005_de5669f0.szcp new file mode 100644 index 00000000..55f8bf8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000005_de5669f0.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000006_851517b1.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000006_851517b1.szcp new file mode 100644 index 00000000..357007cb Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000006_851517b1.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000007_45aa2ca6.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000007_45aa2ca6.szcp new file mode 100644 index 00000000..d1a5594e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000007_45aa2ca6.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000008_4ee2ce0d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000008_4ee2ce0d.szcp new file mode 100644 index 00000000..37b40430 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000008_4ee2ce0d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000009_e575b9f3.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000009_e575b9f3.szcp new file mode 100644 index 00000000..d31d7bbd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000009_e575b9f3.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000010_0a82047b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000010_0a82047b.szcp new file mode 100644 index 00000000..30eb5775 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000010_0a82047b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000011_56b05dce.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000011_56b05dce.szcp new file mode 100644 index 00000000..1b0eabfd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000011_56b05dce.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000012_a51b3d6a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000012_a51b3d6a.szcp new file mode 100644 index 00000000..cf636e26 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000012_a51b3d6a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000013_4fc446d2.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000013_4fc446d2.szcp new file mode 100644 index 00000000..5174bce5 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000013_4fc446d2.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000014_6751980c.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000014_6751980c.szcp new file mode 100644 index 00000000..dee9d398 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000014_6751980c.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000015_fb89a99a.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000015_fb89a99a.szcp new file mode 100644 index 00000000..cb10eb8c Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000015_fb89a99a.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000016_8de39827.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000016_8de39827.szcp new file mode 100644 index 00000000..1914d63e Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000016_8de39827.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000017_5adb657d.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000017_5adb657d.szcp new file mode 100644 index 00000000..5e87cdd1 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000017_5adb657d.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000018_c8a4b9ff.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000018_c8a4b9ff.szcp new file mode 100644 index 00000000..a706db3b Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000018_c8a4b9ff.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000019_beda5560.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000019_beda5560.szcp new file mode 100644 index 00000000..0a402a01 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000019_beda5560.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000020_426f925e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000020_426f925e.szcp new file mode 100644 index 00000000..8000f6b0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000020_426f925e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000021_32caa62b.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000021_32caa62b.szcp new file mode 100644 index 00000000..650532bd Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000021_32caa62b.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000022_a10dbefa.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000022_a10dbefa.szcp new file mode 100644 index 00000000..a8c583f0 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000022_a10dbefa.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000023_c25cef9e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000023_c25cef9e.szcp new file mode 100644 index 00000000..927317b8 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000023_c25cef9e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000024_736fc7f7.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000024_736fc7f7.szcp new file mode 100644 index 00000000..e855c754 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000024_736fc7f7.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000025_b8b8846e.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000025_b8b8846e.szcp new file mode 100644 index 00000000..dff3a14f Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000025_b8b8846e.szcp differ diff --git a/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000026_0ddb4edd.szcp b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000026_0ddb4edd.szcp new file mode 100644 index 00000000..34314de7 Binary files /dev/null and b/results/search/runs/90000b96-af3c-4d90-8233-0ba9c155673b/topology_058/checkpoints/checkpoint_00000000000000000026_0ddb4edd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/metrics.tsv b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/metrics.tsv new file mode 100644 index 00000000..9f388793 --- /dev/null +++ b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/metrics.tsv @@ -0,0 +1,1066 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783879664106796100 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 75 2555 23803929 209280 1485.0058135986328 8.5969999999999995 2804.2408 40320 20938 1 0 0 0.0059670821115201129 4096 2048 384 12 96 360 72 24 0 2555 1920 128 384 1 12862859744 4625304 1 0 5 1 2 2 6 7618560 1474560 2949120 2705030 8985600 182 171 150 154 1898 18 6 17 11 23 0 0 0 0 0 +2 1783879666527859500 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 111 2535 23803936 209280 1268.1728973388672 8.5898000000000003 2356.7233999999999 40320 20737 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2535 1920 128 384 1 12867464608 9230168 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 207 174 186 169 1799 17 9 30 9 46 0 0 0 0 0 +3 1783879668848629100 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 2586 36 2545 23803918 209280 1273.14599609375 8.5998000000000001 2264.8166999999999 40320 18971 1 0 0.01752489470554091 0.4602522868790504 4096 2048 384 12 96 360 72 24 0 2545 1920 128 384 1 12872079672 13845232 1 0 5 1 2 2 6 7618560 1474560 2949120 2705021 8985600 190 156 164 153 1882 11 1 1 1 22 0 0 0 0 0 +4 1783879671247856300 DEPTH 31 1 0.62168970155977021 0.26575809199318562 2 5 2 5 1 0 3320 136 2614 23803944 209280 1257.83740234375 8.5969999999999995 2334.1410000000001 40320 21115 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2614 1920 128 384 1 12876765116 18530676 1 0 5 1 2 2 6 7618560 1474560 2949120 2705045 8985600 158 185 153 183 1935 12 32 25 12 55 1 0 0 0 0 +5 1783879673693631200 DEPTH 48 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 2845 73 2565 23803929 209280 1303.4342346191406 8.5876000000000001 2387.0328 40320 21231 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2565 1920 128 384 1 12881400580 23166140 1 0 5 1 2 2 6 7618560 1474560 2949120 2705033 8985600 160 152 150 151 1952 16 7 14 8 28 0 0 0 0 0 +6 1783879676141512500 DEPTH 20 1 0.64185815269192936 0.26575809199318562 2 5 2 5 0 0 2298 77 2596 23803990 209280 1268.6581726074219 8.6032000000000011 2389.0464999999999 40320 19673 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2596 1920 128 384 1 12886067664 27833224 1 0 5 1 2 2 6 7618560 1474560 2949120 2705093 8985600 200 160 151 175 1910 5 7 31 5 29 0 0 0 0 0 +7 1783879678723290000 DEPTH 9 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 3531 95 2525 23803969 209280 1414.1759338378906 8.6534999999999993 2520.7683000000002 40320 22322 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2525 1920 128 384 1 12890662328 32427888 1 0 5 1 2 2 6 7618560 1474560 2949120 2705074 8985600 162 188 162 160 1853 19 1 9 11 55 0 0 0 0 0 +8 1783879681315213100 DEPTH 13 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4096 96 2553 23803881 209280 1330.6408996582031 8.6409000000000002 2529.3917999999999 40320 21236 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2553 1920 128 384 1 12895285552 37051112 1 0 5 1 2 2 6 7618560 1474560 2949120 2704986 8985600 205 153 155 161 1879 12 3 10 16 55 0 0 0 0 0 +9 1783879683816537400 DEPTH 57 1 0.67210940904596039 0.27342419080068137 1 6 1 6 0 0 4096 64 2544 23803916 209280 1287.4547271728516 8.6053999999999995 2442.7930000000001 40320 22133 1 0 0.00072518623570734639 0.42989973567536088 4096 2048 384 12 96 360 72 24 0 2544 1920 128 384 1 12899899596 41665156 1 0 5 1 2 2 6 7618560 1474560 2949120 2705016 8985600 188 161 153 156 1886 16 3 10 6 29 0 0 0 0 0 +10 1783879686373241200 DEPTH 17 1 0.6821927856939427 0.28109028960817717 0 7 0 7 0 0 4096 100 2572 23803931 209280 1256.2596893310547 8.7117000000000004 2493.1423 40320 21003 1 1 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2572 1920 128 384 1 12904542200 46307760 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 183 168 165 150 1906 30 3 21 16 29 0 0 0 0 0 +11 1783879688664708500 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3753 103 2536 23803915 209280 1314.1874542236328 8.6159999999999997 2233.8474000000001 40320 18524 1 0 0.0058944587434052705 0.1348365305912006 4096 2048 384 12 96 360 72 24 0 2536 1920 128 384 1 12909148084 50913644 1 0 5 1 2 2 6 7618560 1474560 2949120 2705020 8985600 202 187 171 165 1811 21 3 15 3 61 0 0 0 0 0 +12 1783879691123907700 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3954 95 2531 23803941 209280 1301.1221466064453 8.6036000000000001 2400.1318999999999 40320 19656 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2531 1920 128 384 1 12913748868 55514428 1 0 5 1 2 2 6 7618560 1474560 2949120 2705042 8985600 179 157 161 172 1862 18 7 21 10 39 0 0 0 0 0 +13 1783879693626609800 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 1 0 3789 123 2569 23803944 209280 1270.8515930175781 8.5897000000000006 2431.1792 40320 19975 1 0 0.017147769068302527 1.0203358922173167 4096 2048 384 12 96 360 72 24 0 2569 1920 128 384 1 12918388412 60153972 1 0 5 1 2 2 6 7618560 1474560 2949120 2705049 8985600 183 175 153 156 1902 30 8 13 13 59 0 0 0 0 1 +14 1783879696210787500 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 2688 77 2611 23803915 209280 1305.3573150634766 10.018800000000001 2524.1824999999999 40320 20941 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2611 1920 128 384 1 12923070796 64836356 1 0 5 1 2 2 6 7618560 1474560 2949120 2705019 8985600 160 150 152 155 1994 8 11 16 11 31 0 0 0 0 0 +15 1783879699801225300 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 2628 101 2563 23803930 209280 1252.6919555664062 8.5963999999999992 3530.953 40320 21947 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2563 1920 128 384 1 12927704300 2361660 1 0 5 1 2 2 6 7618560 1474560 2949120 2705031 8985600 175 150 168 167 1903 12 17 5 23 44 0 0 0 0 0 +16 1783879702372797800 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 4096 75 2505 23803917 209280 1334.7359924316406 8.6473999999999993 2509.4787000000001 40320 21858 1 0 0 0.19850936232506511 4096 2048 384 12 96 360 72 24 0 2505 1920 128 384 1 12932278564 6935924 1 0 5 1 2 2 6 7618560 1474560 2949120 2705020 8985600 177 178 164 174 1812 15 1 8 4 47 0 0 0 0 1 +17 1783879704933870100 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2936 68 2541 23803876 209280 1353.8099365234375 8.6426000000000016 2501.6316000000002 40320 21802 1 0 4.0190604027982437e-05 0.37214379769463379 4096 2048 384 12 96 360 72 24 0 2541 1920 128 384 1 12936889548 11546908 1 0 5 1 2 2 6 7618560 1474560 2949120 2704979 8985600 181 160 164 158 1878 11 4 11 9 33 0 0 0 0 0 +18 1783879707543169600 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2923 112 2567 23803927 209280 1365.4581451416016 8.6441000000000017 2545.2442000000001 40320 20284 1 0 0 0.65469463757049684 4096 2048 384 12 96 360 72 24 0 2567 1920 128 384 1 12941527052 16184412 1 0 5 1 2 2 6 7618560 1474560 2949120 2705031 8985600 182 156 164 160 1905 18 15 23 5 51 0 0 0 0 2 +19 1783879709789416900 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 0 0 1858 60 2540 23803952 209280 1309.4482116699219 8.7343000000000011 2189.4562999999998 40320 21855 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2540 1920 128 384 1 12946137016 20794376 1 0 5 1 2 2 6 7618560 1474560 2949120 2705053 8985600 192 171 166 155 1856 12 2 3 3 40 0 0 0 0 0 +20 1783879712394994000 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 4096 134 2551 23803911 209280 1307.5824584960938 8.6847999999999992 2540.183 40320 21264 1 0 0.27093137249484278 1.4362862634815152 4096 2048 384 12 96 360 72 24 0 2551 1920 128 384 1 12950758200 25415560 1 0 5 1 2 2 6 7618560 1474560 2949120 2705018 8985600 166 150 162 169 1904 29 9 16 10 70 0 0 0 0 0 +21 1783879714998080900 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2493 81 2571 23803939 209280 1360.8140869140625 8.6499000000000006 2540.4731000000002 40320 21031 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2571 1920 128 384 1 12955399784 30057144 1 0 5 1 2 2 6 7618560 1474560 2949120 2705040 8985600 155 156 160 157 1943 16 8 7 13 37 0 0 0 0 0 +22 1783879717635810300 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 1328 56 2554 23803914 209280 1380.3130798339844 8.6678999999999995 2575.7314000000001 40320 20789 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2554 1920 128 384 1 12960024028 34681388 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 186 158 167 171 1872 13 4 7 9 23 0 0 0 0 0 +23 1783879720214388000 DEPTH 27 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 4096 76 2581 23803900 209280 1359.2268829345703 8.7378000000000018 2520.9904999999999 40320 21046 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2581 1920 128 384 1 12964675812 39333172 1 0 5 1 2 2 6 7618560 1474560 2949120 2705003 8985600 162 168 166 150 1935 17 8 9 12 30 0 0 0 0 0 +24 1783879722668391300 DEPTH 32 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 3452 82 2568 23803956 209280 1277.4799499511719 8.5734999999999992 2397.0019000000002 40320 22324 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2568 1920 128 384 1 12969314336 43971696 1 0 5 1 2 2 6 7618560 1474560 2949120 2705061 8985600 159 158 152 155 1944 10 2 19 10 41 0 0 0 0 0 +25 1783879725161677000 DEPTH 30 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 4000 88 2518 23803984 209280 1283.0680999755859 8.6062000000000012 2427.4872999999998 40320 20650 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2518 1920 128 384 1 12973901860 48559220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705091 8985600 226 170 166 166 1790 14 6 12 9 47 0 0 0 0 0 +26 1783879727687783600 DEPTH 25 1 0.79850199982553804 0.4608177172061329 1 8 1 8 0 0 2577 74 2548 23804063 209280 1298.4426116943359 8.6128 2467.6797999999999 40320 22132 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2548 1920 128 384 1 12978519984 53177344 1 0 5 1 2 2 6 7618560 1474560 2949120 2705165 8985600 166 167 158 153 1904 14 4 7 13 36 0 0 0 0 0 +27 1783879730015548400 DEPTH 12 1 0.79143945696072959 0.54684838160136284 2 8 2 8 0 0 2061 114 2581 23803896 209280 1252.6930084228516 8.6143000000000001 2264.6455000000001 40320 21874 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2581 1920 128 384 1 12983171768 57829128 1 0 5 1 2 2 6 7618560 1474560 2949120 2705001 8985600 162 154 150 155 1960 21 8 12 15 58 0 0 0 0 0 +28 1783879732379668400 DEPTH 43 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 3749 100 2514 23803936 209280 1284.0080413818359 8.6965000000000003 2305.9250999999999 40320 21927 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2514 1920 128 384 1 12987755212 62412572 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 212 157 170 158 1817 5 6 3 4 82 0 0 0 0 0 +29 1783879734759296400 DEPTH 26 1 0.79159956614562654 0.55451448040885853 1 9 1 9 0 0 2237 111 2551 23803923 209280 1264.6461486816406 8.5719000000000012 2318.8265000000001 40320 21829 1 0 0.0036148281156409435 0.64880832113569242 4096 2048 384 12 96 360 72 24 0 2551 1920 128 384 1 12992376396 67033756 1 0 5 1 2 2 6 7618560 1474560 2949120 2705024 8985600 167 155 165 164 1900 16 4 13 14 64 0 0 0 0 0 +30 1783879738387354600 DEPTH 39 1 0.79167936249454984 0.55451448040885853 1 9 1 9 0 0 1701 56 2580 23803920 209280 1262.8111267089844 8.6386000000000003 3569.4524000000001 40320 22549 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2580 1920 128 384 1 12997027240 4575684 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 169 150 155 155 1951 8 8 8 2 30 0 0 0 0 0 +31 1783879740914089300 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 1 0 4096 29 2563 23742588 147840 1263.4644622802734 8.6006999999999998 2467.6867000000002 40320 14261 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13001500408 9048852 1 0 5 1 2 2 6 7372800 1474560 2949120 2950887 8985600 185 174 156 166 1882 0 1 12 0 16 0 0 0 0 1 +32 1783879743496141800 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 81 2567 23742664 147840 1300.7400970458984 8.6067 2516.1824000000001 40320 15897 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 13005977656 13526100 1 0 5 1 2 2 6 7372800 1474560 2949120 2950969 8985600 220 165 206 213 1763 4 11 19 3 44 0 0 0 0 0 +33 1783879746019113500 DEPTH 31 1 0.80847503462729942 0.26575809199318562 2 5 2 5 0 0 3336 66 2611 23742670 147840 1284.2045745849609 8.5689000000000011 2462.1718999999998 40320 15598 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 13010499784 18048228 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 156 172 171 375 1737 0 19 3 5 39 0 0 0 0 0 +34 1783879748413354100 DEPTH 8 1 0.80852549681013219 0.26575809199318562 2 5 2 5 1 0 2596 42 2541 23742741 147840 1301.02490234375 8.6669999999999998 2333.2784000000001 40320 15483 1 0 0.017525689687225465 0.085930151720234271 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 13014950512 22498956 1 0 5 1 2 2 6 7372800 1474560 2949120 2951043 8985600 195 154 166 183 1843 3 3 2 2 32 0 0 0 0 1 +35 1783879750904514400 DEPTH 48 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 2849 29 2574 23742682 147840 1269.0411682128906 8.596700000000002 2426.3728000000001 40320 15310 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 13019434900 26983344 1 0 5 1 2 2 6 7372800 1474560 2949120 2950986 8985600 174 157 150 152 1941 2 2 3 0 22 0 0 0 0 0 +36 1783879753469044800 DEPTH 20 1 0.80867512980503709 0.26575809199318562 2 5 2 5 0 0 2303 25 2597 23742739 147840 1271.5939788818359 8.5811999999999991 2506.5176000000001 40320 14602 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 13023942748 31491192 1 0 5 1 2 2 6 7372800 1474560 2949120 2951045 8985600 226 162 157 275 1777 0 0 5 0 20 0 0 0 0 0 +37 1783879755965387100 DEPTH 9 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 3561 98 2533 23742692 147840 1289.3962249755859 8.5993999999999993 2431.6871000000001 40320 16712 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 13028385316 35933760 1 0 5 1 2 2 6 7372800 1474560 2949120 2950995 8985600 156 179 165 163 1870 3 0 7 17 71 0 0 0 0 0 +38 1783879758242810700 DEPTH 38 1 0.79231162887979156 0.55451448040885853 1 9 1 9 0 0 2275 99 2539 23803933 209280 1274.3927764892578 8.5949999999999989 2218.2420999999999 40320 20714 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2539 1920 128 384 1 13032994260 40542704 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 196 150 159 161 1873 14 5 14 17 49 0 0 0 0 0 +39 1783879760703416100 DEPTH 41 1 0.79238990955176147 0.55451448040885853 1 9 1 9 0 0 2603 105 2558 23803984 209280 1250.6838989257812 8.6022999999999996 2395.9949999999999 40320 21070 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2558 1920 128 384 1 13037622584 45171028 1 0 5 1 2 2 6 7618560 1474560 2949120 2705085 8985600 168 164 159 161 1906 15 25 11 11 43 0 0 0 0 0 +40 1783879763216777200 DEPTH 21 1 0.79246802525146254 0.56218057921635434 0 10 0 10 0 0 2867 103 2553 23803996 209280 1287.7579650878906 8.9253 2447.2401 40320 20310 1 0 0.0003727367041393018 1.0094446117570586 4096 2048 384 12 96 360 72 24 0 2553 1920 128 384 1 13042245808 49794252 1 0 5 1 2 2 6 7618560 1474560 2949120 2705102 8985600 162 162 161 156 1912 26 9 12 6 50 0 0 0 0 0 +41 1783879765773634700 DEPTH 13 1 0.80904645084251603 0.27342419080068137 1 6 1 6 0 0 4096 87 2540 23742646 147840 1279.6272583007812 8.6694000000000013 2483.3453 40320 15623 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 13046695516 54243960 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 193 159 158 188 1842 3 2 14 3 65 0 0 0 0 0 +42 1783879768169742200 DEPTH 3 1 0.78726662156105365 0.64054514480408853 2 9 2 9 1 0 1267 64 2538 23803994 209280 1239.5769653320312 8.6801999999999992 2329.5345000000002 40320 22257 1 0 0.0079302196769804739 0.22803919289300528 4096 2048 384 12 96 360 72 24 0 2538 1920 128 384 1 13051303440 58851884 1 0 5 1 2 2 6 7618560 1474560 2949120 2705101 8985600 160 150 156 152 1920 10 1 9 3 41 0 0 0 0 2 +43 1783879770603047500 DEPTH 50 1 0.78734424636006617 0.64054514480408853 2 9 2 9 0 0 1098 58 2588 23803906 209280 1261.3529510498047 8.5841999999999992 2373.3478 40320 21444 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2588 1920 128 384 1 13055962364 63510808 1 0 5 1 2 2 6 7618560 1474560 2949120 2705008 8985600 172 150 154 160 1952 4 3 8 3 40 0 0 0 0 0 +44 1783879773941562900 DEPTH 55 1 0.78742170885083307 0.64054514480408853 2 9 2 9 0 0 1163 82 2515 23803945 209280 1304.6016235351562 8.5884 3278.9396999999999 40320 21076 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2515 1920 128 384 1 13060546908 987352 1 0 5 1 2 2 6 7618560 1474560 2949120 2705051 8985600 195 160 159 161 1840 9 0 3 8 62 0 0 0 0 0 +45 1783879776412234000 DEPTH 40 1 0.78749900968939857 0.64821124361158422 1 10 1 10 0 0 1962 76 2560 23803984 209280 1268.6399383544922 8.6227000000000018 2410.3490999999999 40320 21743 1 0 0.079501752389619845 0.46139863319818186 4096 2048 384 12 96 360 72 24 0 2560 1920 128 384 1 13065177272 5617716 1 0 5 1 2 2 6 7618560 1474560 2949120 2705085 8985600 170 150 150 151 1939 11 3 15 18 29 0 0 0 0 0 +46 1783879778630501600 DEPTH 10 1 0.78757614952788491 0.64821124361158422 1 10 1 10 0 0 1308 83 2547 23803953 209280 1273.4661865234375 8.6219000000000001 2161.2359000000001 40320 19728 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2547 1920 128 384 1 13069794376 10234820 1 0 5 1 2 2 6 7618560 1474560 2949120 2705056 8985600 184 157 162 169 1875 12 10 15 6 40 0 0 0 0 0 +47 1783879781178355500 DEPTH 42 1 0.93140579019274006 0 0 4 0 4 0 0 4096 18 2557 23742727 147840 1258.3035888671875 8.5664000000000016 2484.1714000000002 47040 18171 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 13074261424 14701868 1 0 4 2 2 2 6 7127040 1720320 2949120 2951032 8985600 230 175 156 219 1777 0 0 2 0 16 0 0 0 0 0 +48 1783879783740400000 DEPTH 57 1 0.80955979760523455 0.27342419080068137 1 6 1 6 1 0 4096 46 2538 23742588 147840 1307.1575164794922 8.5968000000000018 2500.4666999999999 40320 16017 1 0 0.00072830754635771122 0.39088276141577161 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 13078709092 19149536 1 0 5 1 2 2 6 7372800 1474560 2949120 2950894 8985600 190 163 157 171 1857 0 0 2 3 41 0 0 0 0 1 +49 1783879786310925100 DEPTH 17 1 0.80963252434254329 0.28109028960817717 0 7 0 7 0 0 4096 33 2572 23742717 147840 1270.5740814208984 8.6091000000000015 2511.0943000000002 40320 15431 1 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 13083191440 23631884 1 0 5 1 2 2 6 7372800 1474560 2949120 2951020 8985600 180 156 174 150 1912 1 1 0 6 25 0 0 0 0 0 +50 1783879788798076200 DEPTH 1 1 0.79503326776665917 0.36712095400340705 1 7 1 7 0 0 3802 68 2582 23742716 147840 1274.0300750732422 8.5939999999999994 2424.576 40320 15157 1 0 0.017147769068302527 1.0203358922173167 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 13087683988 28124432 1 0 5 1 2 2 6 7372800 1474560 2949120 2951022 8985600 180 178 163 176 1885 6 5 2 1 54 0 0 0 0 0 +51 1783879791279229300 DEPTH 53 1 0.79479131515987678 0.37478705281090291 0 8 0 8 1 0 4096 97 2525 23742615 147840 1262.9575500488281 8.6317000000000004 2413.6815000000001 40320 16730 1 0 0 0.19894551221186435 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 13092118396 32558840 1 0 5 1 2 2 6 7372800 1474560 2949120 2950919 8985600 176 172 172 188 1817 15 2 12 10 58 0 0 0 0 1 +52 1783879793802683500 DEPTH 11 1 0.79485486553053497 0.37478705281090291 0 8 0 8 1 0 2948 74 2551 23742684 147840 1278.8500823974609 8.6210999999999984 2459.6131999999998 40320 15386 1 0 0 0.65286409448481852 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 13096579324 37019768 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 178 150 172 201 1850 1 16 0 0 57 0 0 0 0 1 +53 1783879796129943700 DEPTH 16 1 0.79492193427821123 0.3594548551959113 2 6 2 6 1 0 3768 80 2527 23742592 147840 1347.4252777099609 8.7677999999999994 2266.8388 40320 15859 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 13101015772 41456216 1 0 5 1 2 2 6 7372800 1474560 2949120 2950897 8985600 211 177 175 187 1777 6 0 12 1 61 0 0 0 0 1 +54 1783879798656926100 DEPTH 33 1 0.79499391548470288 0.36712095400340705 1 7 1 7 0 0 3968 48 2544 23742685 147840 1330.3213958740234 8.6402000000000001 2466.6949 40320 15263 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 13105469560 45910004 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 193 150 159 168 1874 3 5 2 7 31 0 0 0 0 0 +55 1783879801194276600 DEPTH 42 1 0.84077394866493549 0 0 4 0 4 0 0 4096 18 2557 23742650 147840 1256.3366088867188 8.7464000000000013 2535.9153999999999 80640 20006 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 13109936608 50377052 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 236 183 157 279 1702 0 0 0 0 18 0 0 0 0 0 +56 1783879803758921700 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 59 2544 23742650 147840 1273.1156463623047 8.5609000000000002 2500.7026999999998 47040 19320 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 13114390396 54830840 1 0 4 2 2 2 6 7127040 1720320 2949120 2950955 8985600 306 167 224 409 1438 0 6 3 1 49 0 0 0 0 0 +57 1783879806295923600 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 2702 65 2618 23742680 147840 1287.5265350341797 8.6485000000000003 2475.6223 40320 15405 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2618 1920 0 384 1 13118919664 59360108 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 165 150 157 183 1963 0 15 10 0 40 0 0 0 0 0 +58 1783879808764414800 DEPTH 52 1 0.79528037279558439 0.36712095400340705 1 7 1 7 0 0 2646 53 2564 23742711 147840 1240.4081726074219 8.7251999999999992 2405.8523 40320 15425 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 13123393852 63834296 1 0 5 1 2 2 6 7372800 1474560 2949120 2951017 8985600 193 150 203 263 1755 0 13 2 0 38 0 0 0 0 0 +59 1783879812425877600 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 1 0 2947 43 2555 23742614 147840 1268.9346466064453 8.5776000000000003 3541.0491999999999 40320 15620 1 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 13127858940 1191352 1 0 5 1 2 2 6 7372800 1474560 2949120 2950921 8985600 178 157 169 179 1872 0 1 1 1 40 0 0 0 0 1 +60 1783879814771349200 DEPTH 14 1 0.78863955837334743 0.65587734241908002 0 11 0 11 0 0 1928 91 2507 23804007 209280 1297.9241027832031 8.6068999999999996 2283.0938000000001 40320 21620 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2507 1920 128 384 1 13132435244 5767656 1 0 5 1 2 2 6 7618560 1474560 2949120 2705110 8985600 200 165 169 163 1810 15 4 8 2 62 0 0 0 0 0 +61 1783879816968839200 DEPTH 49 1 0.78549369102288524 0.4454855195911413 3 6 3 6 0 0 1864 61 2536 23742675 147840 1261.6489105224609 8.567400000000001 2137.6604000000002 40320 15477 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 13136880872 10213284 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 183 151 174 180 1848 4 0 2 10 45 0 0 0 0 0 +62 1783879819419619200 DEPTH 2 1 0.78556450970216041 0.45315161839863699 2 7 2 7 1 0 4096 81 2545 23742697 147840 1264.285888671875 8.5578000000000003 2386.5769 40320 15663 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 13141335680 14668092 1 0 5 1 2 2 6 7372800 1474560 2949120 2951003 8985600 185 152 162 191 1855 6 0 7 1 67 0 0 0 0 1 +63 1783879819844662300 REFRESH 3 0 0.73313721588122571 0.64054514480408853 2 9 2 9 0 0 1272 19 412 3988955 56640 223.75628662109375 1.4362999999999999 368.00549999999998 6720 5037 0 0 0.0079302196769804739 0.22803919289300528 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13142064144 15396556 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 28 25 28 32 299 1 0 0 0 18 0 0 0 0 0 +64 1783879820277065400 REFRESH 47 0 0.78143785634947294 0.8279386712095399 2 11 2 11 0 0 742 13 409 4050326 118080 225.65989685058594 1.8144 369.69130000000001 6720 5066 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 409 320 128 64 0 13142949804 16282216 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 28 25 25 25 306 0 0 0 0 13 0 0 0 0 0 +65 1783879820708288200 REFRESH 42 0 0.85167346685196121 0 0 4 0 4 0 0 4096 25 418 3988957 56640 224.30618286132812 1.4244000000000001 429.83600000000001 13440 8167 0 0 0 0.0059643440304668833 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13143684388 17016800 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 43 27 27 61 260 1 0 6 3 15 0 0 0 0 0 +66 1783879821136986900 REFRESH 15 0 0.77885883437335246 0.91396933560476989 3 11 3 11 0 0 323 11 411 4050319 118080 226.08998107910156 1.5935999999999999 371.69630000000001 6720 5038 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 128 64 0 13144572088 17904500 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 27 25 25 26 308 1 0 0 0 10 0 0 0 0 0 +67 1783879821544459100 REFRESH 46 0 0.61277537328782039 0.37478705281090291 0 8 0 8 0 0 2950 16 407 3988956 56640 226.09510803222656 1.4229000000000001 405.84660000000002 6720 4775 0 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13145295452 18627864 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 33 25 37 31 281 1 0 2 1 12 0 0 0 0 0 +68 1783879821986067300 REFRESH 27 0 0.78598644312466859 0.4608177172061329 1 8 1 8 0 0 4096 40 411 3988962 56640 227.22355651855469 1.4255 382.9991 6720 5031 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13146022896 19355308 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 28 25 30 31 297 0 0 0 0 40 0 0 0 0 0 +69 1783879822427670400 REFRESH 50 0 0.77355627403892835 0.64054514480408853 2 9 2 9 0 0 1103 16 424 3988956 56640 224.61747741699219 1.4234 384.48719999999997 6720 4942 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 13146763600 20096012 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 30 25 32 31 306 3 1 4 1 7 0 0 0 0 0 +70 1783879822883208300 REFRESH 57 0 0.76816869497547535 0.27342419080068137 1 6 1 6 0 0 4096 20 408 3988964 56640 226.28147888183594 1.4263999999999999 396.68270000000001 6720 4785 0 0 0.00072830754635771122 0.39088276141577161 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13147487984 20820396 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 32 25 29 33 289 0 0 0 1 19 0 0 0 0 0 +71 1783879823283637900 REFRESH 52 0 0.66303461310466572 0.36712095400340705 1 7 1 7 0 0 2651 17 420 3988945 56640 224.24269104003906 1.4374 398.93090000000001 6720 4711 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13148224608 21557020 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 33 25 41 41 280 1 0 1 0 15 0 0 0 0 0 +72 1783879823702645900 REFRESH 33 0 0.71310079838959739 0.36712095400340705 1 7 1 7 0 0 3991 52 415 3988952 56640 237.84959411621094 1.458 417.34890000000001 6720 4749 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13148956132 22288544 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 45 25 29 27 289 4 0 1 1 46 0 0 0 0 0 +73 1783879824166726200 REFRESH 41 0 0.77919135654204763 0.55451448040885853 1 9 1 9 0 0 2619 33 420 3988973 56640 236.35763549804688 1.4413 408.41800000000001 6720 4942 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13149692756 23025168 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 29 25 32 30 304 2 0 4 0 27 0 0 0 0 0 +74 1783879824540455800 REFRESH 16 0 0.7432805656552548 0.3594548551959113 2 6 2 6 0 0 3789 46 411 3988945 56640 231.09222412109375 1.4319 371.9622 6720 4812 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13150420200 23752612 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 30 25 36 26 294 2 0 1 0 43 0 0 0 0 0 +75 1783879824970619000 REFRESH 8 0 0.79920224167525844 0.26575809199318562 2 5 2 5 0 0 2597 12 409 3988935 56640 227.346435546875 1.431 376.06209999999999 6720 4761 0 0 0.017525689687225465 0.085930151720234271 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13151145604 24478016 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 30 25 25 25 304 0 0 0 1 11 0 0 0 0 0 +76 1783879825407761800 REFRESH 1 0 0.78365958533070623 0.36712095400340705 1 7 1 7 0 0 3827 54 418 3988972 56640 225.90463256835938 1.4318 379.4785 6720 4839 0 0 0.017147769068302527 1.0203358922173167 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13151880188 25212600 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 33 25 36 32 292 5 1 6 5 37 0 0 0 0 0 +77 1783879825838467200 REFRESH 28 0 0.78239101418025048 0.8279386712095399 2 11 2 11 0 0 688 8 410 4050314 118080 227.0750732421875 1.5186999999999999 374.19880000000001 6720 4927 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 410 320 128 64 0 13152766868 26099280 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 30 28 26 25 301 1 0 0 0 7 0 0 0 0 0 +78 1783879826314867700 REFRESH 10 0 0.77417856374028915 0.64821124361158422 1 10 1 10 0 0 1325 34 416 3988961 56640 226.52621459960938 1.4447000000000001 366.19600000000003 6720 5002 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13153499412 26831824 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 27 25 28 27 309 3 0 4 2 25 0 0 0 0 0 +79 1783879826758932900 REFRESH 40 0 0.77424702900592413 0.64821124361158422 1 10 1 10 0 0 1976 37 413 3988950 56640 224.22630310058594 1.4218 387.71339999999998 6720 4997 0 0 0.079501752389619845 0.46139863319818186 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13154228896 27561308 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 29 26 26 28 304 4 0 4 8 21 0 0 0 0 0 +80 1783879827203639200 REFRESH 54 0 0.7868153605482987 0.4608177172061329 1 8 1 8 0 0 1336 20 418 3988948 56640 225.36294555664062 1.4338 388.84289999999999 6720 4982 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13154963480 28295892 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 31 25 26 37 299 2 0 4 1 13 0 0 0 0 0 +81 1783879827639308300 REFRESH 51 0 0.7799521355140947 0.91396933560476989 3 11 3 11 1 0 571 11 407 4050325 118080 227.74476623535156 1.4544999999999999 376.48079999999999 6720 5016 0 0 0.045260860351817124 0.27246138713925444 4096 2048 64 1 16 60 12 4 0 407 320 128 64 0 13155847100 29179512 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 28 28 25 25 301 2 0 0 0 9 0 0 0 0 1 +82 1783879828080825000 REFRESH 24 0 0.77775115569221454 1 4 11 4 11 0 0 504 19 406 4050318 118080 232.11622619628906 1.4646999999999999 379.28190000000001 6720 5018 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 406 320 128 64 0 13156729700 30062112 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 30 25 25 25 301 2 0 1 0 16 0 0 0 0 0 +83 1783879828534785300 REFRESH 13 0 0.79882030277004701 0.27342419080068137 1 6 1 6 0 0 4096 31 408 3988961 56640 229.07801818847656 1.4333 396.04759999999999 6720 4765 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13157454084 30786496 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 31 25 33 30 289 0 0 3 3 25 0 0 0 0 0 +84 1783879829096756600 REFRESH 17 0 0.79888494912788077 0.28109028960817717 0 7 0 7 0 0 4096 33 416 3988950 56640 224.66458129882812 1.4746999999999999 439.68560000000002 6720 4705 0 0 3.5839205783567988e-05 0.059047269389667936 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13158186628 31519040 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 29 25 34 38 290 5 0 1 6 21 0 0 0 0 0 +85 1783879829541245400 REFRESH 34 0 0.78296556392585404 0.8356047700170357 1 12 1 12 0 0 825 20 415 4050325 118080 224.94720458984375 1.4692000000000001 388.4631 6720 5079 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 415 320 128 64 0 13159078408 32410820 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 29 25 25 25 311 1 0 0 0 19 0 0 0 0 0 +86 1783879829967629300 REFRESH 19 0 0.78303675703292697 0.8279386712095399 2 11 2 11 0 0 929 20 410 4050315 118080 226.41488647460938 1.4297 369.9212 6720 5060 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 410 320 128 64 0 13159965088 33297500 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 26 26 25 25 308 3 0 1 0 16 0 0 0 0 0 +87 1783879830420916800 REFRESH 48 0 0.7990781393585572 0.26575809199318562 2 5 2 5 0 0 2865 35 412 3988973 56640 224.32255554199219 1.425 390.76870000000002 6720 4783 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13160693552 34025964 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 29 26 27 27 303 4 0 3 3 25 0 0 0 0 0 +88 1783879830851128300 REFRESH 44 0 0.78414228804030173 0.36712095400340705 1 7 1 7 0 0 2724 42 425 3988948 56640 226.53439331054688 1.4409000000000001 428.7011 6720 4745 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 13161435276 34767688 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 26 33 316 6 0 5 2 29 0 0 0 0 0 +89 1783879831278951000 REFRESH 5 0 0.78324951465028514 0.8279386712095399 2 11 2 11 0 0 963 18 419 4050317 118080 224.74342346191406 1.4547000000000001 371.09109999999998 6720 5118 0 0 0.0036262209849747063 0.39251624139758484 4096 2048 64 1 16 60 12 4 0 419 320 128 64 0 13162331136 35663548 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 27 25 25 25 317 3 1 0 1 13 0 0 0 0 0 +90 1783879831735010800 REFRESH 45 0 0.7874914309315183 0.45315161839863699 2 7 2 7 0 0 2501 29 414 3988955 56640 226.57945251464844 1.4258 395.5333 6720 5036 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13163061640 36394052 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 29 25 29 39 292 1 0 0 3 25 0 0 0 0 0 +91 1783879832168582100 REFRESH 4 0 0.78339067339385848 0.8356047700170357 1 12 1 12 0 0 297 10 421 4050317 118080 224.52735900878906 1.4300999999999999 376.62079999999997 6720 5053 0 0 0.035532469242004712 0.84948699724715482 4096 2048 64 1 16 60 12 4 0 421 320 128 64 0 13163959540 37291952 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 28 27 25 26 315 3 0 1 2 4 0 0 0 0 0 +92 1783879832617515900 REFRESH 31 0 0.79941978897821242 0.26575809199318562 2 5 2 5 0 0 3360 51 413 3988957 56640 226.64498901367188 1.4336 389.83550000000002 6720 4797 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13164689024 38021436 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 27 25 68 30 263 7 0 0 5 39 0 0 0 0 0 +93 1783879833082040200 REFRESH 35 0 0.78353129309718905 0.8279386712095399 2 11 2 11 0 0 1194 20 406 4050337 118080 226.28556823730469 1.4531000000000001 396.11439999999999 6720 5035 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 406 320 128 64 0 13165571624 38904036 1 0 6 1 2 1 6 1474560 245760 491520 245851 1497600 31 26 25 25 299 2 1 0 0 17 0 0 0 0 0 +94 1783879833519945800 REFRESH 36 0 0.78360140205236728 0.82027257240204421 3 10 3 10 0 0 1369 25 413 4050307 118080 225.62815856933594 1.4388000000000001 381.00049999999999 6720 5033 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 413 320 128 64 0 13166461364 39793776 1 0 6 1 2 1 6 1474560 245760 491520 245827 1497600 30 28 25 25 305 1 0 0 0 24 0 0 0 0 0 +95 1783879833988014300 REFRESH 11 0 0.78459322342442561 0.37478705281090291 0 8 0 8 0 0 2964 34 413 3988951 56640 225.40083312988281 1.4244000000000001 406.86410000000001 6720 4739 0 0 0 0.65286409448481852 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13167190848 40523260 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 33 25 48 40 267 6 0 3 2 23 0 0 0 0 0 +96 1783879834454955200 REFRESH 56 0 0.81335269400175625 0.17206132879045993 2 4 2 4 0 0 4096 62 412 3988947 56640 225.40902709960938 1.4268000000000001 404.94060000000002 13440 8652 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13167919312 41251724 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 31 26 56 35 264 2 1 6 5 48 0 0 0 0 0 +97 1783879834921472300 REFRESH 39 0 0.78081415869625515 0.55451448040885853 1 9 1 9 0 0 1703 9 419 3988966 56640 224.93901062011719 1.4335 409.78809999999999 6720 5073 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13168654916 41987328 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 28 25 32 36 298 4 0 0 1 4 0 0 0 0 0 +98 1783879835338669200 REFRESH 38 0 0.78088016693403428 0.55451448040885853 1 9 1 9 0 0 2281 30 410 3988947 56640 224.86834716796875 1.4493 362.41579999999999 6720 4909 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13169381340 42713752 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 28 25 26 29 302 0 0 1 0 29 0 0 0 0 0 +99 1783879835778137100 REFRESH 58 0 0.78122268476373835 0.92163543441226559 2 12 2 12 0 0 558 15 412 4050331 118080 227.01362609863281 1.4303999999999999 383.71859999999998 6720 5105 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 412 320 128 64 0 13170270060 43602472 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 28 25 25 25 309 0 0 0 0 15 0 0 0 0 0 +100 1783879836211046400 REFRESH 18 0 0.78129200137699162 0.92163543441226559 2 12 2 12 0 0 467 10 412 4050320 118080 228.48410034179688 1.4495 375.12259999999998 6720 4876 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 412 320 128 64 0 13171158780 44491192 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 30 25 25 25 307 3 0 0 0 7 0 0 0 0 0 +101 1783879836689029200 REFRESH 12 0 0.78107744592624551 0.54684838160136284 2 8 2 8 0 0 2069 20 416 3988957 56640 224.31436157226562 1.421 366.20830000000001 6720 4940 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13171891324 45223736 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 26 27 29 308 3 0 6 0 11 0 0 0 0 0 +102 1783879837134140500 REFRESH 23 0 0.78749085002022556 0.74190800681430991 1 11 1 11 0 0 3624 27 413 4050342 118080 226.7115478515625 1.4523999999999999 387.02159999999998 6720 4988 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 413 320 128 64 0 13172781064 46113476 1 0 6 1 2 1 6 1474560 245760 491520 245856 1497600 28 25 26 25 309 0 0 0 0 27 0 0 0 0 0 +103 1783879837516247400 REFRESH 14 0 0.77585120548092279 0.65587734241908002 0 11 0 11 0 0 1933 27 412 3988981 56640 228.54757690429688 1.4342999999999999 380.79520000000002 6720 4993 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13173509528 46841940 1 0 5 1 2 2 6 1228800 245760 491520 491700 1497600 35 25 32 26 294 1 0 2 0 24 0 0 0 0 0 +104 1783879837958929500 REFRESH 21 0 0.78127361581171362 0.56218057921635434 0 10 0 10 0 0 2882 36 411 3988937 56640 225.04345703125 1.4309000000000001 382.28809999999999 6720 4950 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13174236972 47569384 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 27 25 26 40 293 4 0 1 3 28 0 0 0 0 0 +105 1783879838393397100 REFRESH 29 0 0.78436391102743974 0.82027257240204421 3 10 3 10 0 0 1221 16 417 4050332 118080 224.47308349609375 1.4441999999999999 378.30759999999998 6720 5058 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 417 320 128 64 0 13175130792 48463204 1 0 6 1 2 1 6 1474560 245760 491520 245851 1497600 28 25 25 26 313 2 2 0 0 12 0 0 0 0 0 +106 1783879838888137500 REFRESH 9 0 0.80027632097689128 0.27342419080068137 1 6 1 6 0 0 3577 40 412 3988953 56640 225.91282653808594 1.4195 380.08670000000001 6720 4745 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13175859256 49191668 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 28 26 26 28 304 2 0 0 0 38 0 0 0 0 0 +107 1783879839272566600 REFRESH 2 0 0.77535777739776646 0.45315161839863699 2 7 2 7 0 0 4096 60 416 3988951 56640 226.19136047363281 1.4392 383.03039999999999 6720 4763 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13176591800 49924212 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 31 25 27 34 299 3 0 0 2 55 0 0 0 0 0 +108 1783879839645262400 REFRESH 49 0 0.7753999713635048 0.4454855195911413 3 6 3 6 0 0 1869 17 408 3988964 56640 225.32313537597656 1.4438 371.1275 6720 4778 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13177316184 50648596 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 30 25 35 33 285 0 0 1 2 14 0 0 0 0 0 +109 1783879840064073700 REFRESH 55 0 0.77624099063933494 0.64054514480408853 2 9 2 9 0 0 1163 14 407 3988956 56640 227.99256896972656 1.4248000000000001 364.154 6720 4965 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13178039548 51371960 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 30 25 38 26 288 0 0 1 0 13 0 0 0 0 0 +110 1783879840496501100 REFRESH 6 0 0.78197807443483103 0.91396933560476989 3 11 3 11 0 0 391 12 421 4050309 118080 225.28410339355469 1.4350000000000001 376.06959999999998 6720 5029 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 421 320 128 64 0 13178937448 52269860 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 28 27 25 25 316 1 0 0 0 11 0 0 0 0 0 +111 1783879840934767900 REFRESH 32 0 0.78886995664983639 0.4608177172061329 1 8 1 8 0 0 3473 45 414 3988942 56640 225.53599548339844 1.4799 379.5018 6720 4987 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13179667952 53000364 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 30 25 29 29 301 0 0 3 1 41 0 0 0 0 0 +112 1783879841371022400 REFRESH 37 0 0.78484103823805196 0.8356047700170357 1 12 1 12 0 0 1078 38 405 4050322 118080 225.54623413085938 1.4322999999999999 378.6542 6720 5012 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 405 320 128 64 0 13180549532 53881944 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 28 27 26 25 299 1 0 0 1 36 0 0 0 0 0 +113 1783879841803861800 REFRESH 7 0 0.78490869628387316 0.8356047700170357 1 12 1 12 0 0 958 17 405 4050312 118080 225.63226318359375 1.4345000000000001 376.84780000000001 6720 5045 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 405 320 128 64 0 13181431112 54763524 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 29 26 25 25 300 1 0 0 0 16 0 0 0 0 0 +114 1783879842276042500 REFRESH 20 0 0.80076818619694479 0.26575809199318562 2 5 2 5 0 0 2312 22 420 3988965 56640 225.27488708496094 1.4342999999999999 414.04379999999998 6720 4819 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13182167736 55500148 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 30 25 28 54 283 2 0 8 0 12 0 0 0 0 0 +115 1783879842826982800 REFRESH 0 0 0.78504363961537527 0.8279386712095399 2 11 2 11 0 0 968 16 415 4050318 118080 225.69676208496094 1.4311 379.56049999999999 6720 5063 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 415 320 128 64 0 13183059516 56391928 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 26 25 25 311 2 0 0 0 14 0 0 0 0 0 +116 1783879843266504300 REFRESH 30 0 0.78919029895382597 0.4608177172061329 1 8 1 8 0 0 4037 68 409 3988958 56640 226.19853210449219 1.4509000000000001 379.31569999999999 6720 4945 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13183784920 57117332 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 27 26 31 27 298 1 0 2 1 64 0 0 0 0 0 +117 1783879843688903200 REFRESH 43 0 0.78211115831073452 0.55451448040885853 1 9 1 9 0 0 3758 22 406 3988952 56640 226.9921875 1.4298999999999999 365.09559999999999 6720 4974 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13184507264 57839676 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 30 25 27 27 297 0 0 0 2 20 0 0 0 0 0 +118 1783879844155651000 REFRESH 53 0 0.7860269906926769 0.37478705281090291 0 8 0 8 0 0 4096 39 406 3988955 56640 237.13279724121094 1.5135000000000001 410.05020000000002 6720 4726 0 0 0 0.19894551221186435 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13185229608 58562020 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 27 26 42 29 282 0 0 4 0 35 0 0 0 0 0 +119 1783879844599523700 REFRESH 22 0 0.78258477481895405 0.91396933560476989 3 11 3 11 0 0 519 17 411 4050315 118080 238.40777587890625 1.4616 386.88479999999998 6720 4811 0 0 0.0084140362538463482 0.71098786331502006 4096 2048 64 1 16 60 12 4 0 411 320 128 64 0 13186117308 59449720 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 27 25 26 25 308 0 0 0 0 17 0 0 0 0 0 +120 1783879845109366600 REFRESH 25 0 0.78944446848818495 0.4608177172061329 1 8 1 8 0 0 2582 25 411 3988953 56640 227.13958740234375 1.4305000000000001 396.50670000000002 6720 4980 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13186844752 60177164 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 31 25 26 29 300 3 0 1 3 18 0 0 0 0 0 +121 1783879845534505900 REFRESH 26 0 0.78236486489825363 0.55451448040885853 1 9 1 9 0 0 2247 30 414 3988936 56640 224.78131103515625 1.4738 366.70119999999997 6720 4940 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13187575256 60907668 1 0 5 1 2 2 6 1228800 245760 491520 491655 1497600 29 25 28 27 305 2 0 2 0 26 0 0 0 0 0 +122 1783879848109919400 DEPTH 42 1 0.99626254518100676 0 0 4 0 4 0 0 4096 18 2559 23742664 147840 1299.979248046875 8.5680999999999994 2517.482 80640 40567 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 13192044344 65376756 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 175 156 150 172 1906 0 0 1 0 17 0 0 0 0 0 +123 1783879851758415000 DEPTH 56 1 0.8050567455127291 0.17206132879045993 2 4 2 4 0 0 4096 54 2538 23742720 147840 1303.4014739990234 8.5660000000000007 3588.9207000000001 80640 42440 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 13196492092 2715600 1 0 4 2 2 2 6 5898240 2949120 2949120 2951024 8985600 175 155 257 213 1738 5 0 6 4 39 0 0 0 0 0 +124 1783879854148307000 DEPTH 8 1 0.79081456388425153 0.26575809199318562 2 5 2 5 1 0 2597 27 2525 23742679 147840 1314.0971374511719 8.6131000000000011 2388.5174999999999 53760 33307 1 0 0.021464890416508842 0.049441266245774974 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 13200926500 7150008 1 0 4 2 2 2 6 6881280 1966080 2949120 2950985 8985600 169 156 150 150 1900 0 0 0 0 27 0 0 0 0 1 +125 1783879856723579600 DEPTH 57 1 0.79023894425317753 0.27342419080068137 1 6 1 6 0 0 4096 37 2528 23742632 147840 1309.7072601318359 8.565100000000001 2452.0277000000001 73920 40908 1 0 0.00072830754635771122 0.39088276141577161 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 13205363968 11587476 1 0 4 2 2 2 6 6144000 2703360 2949120 2950933 8985600 163 167 156 171 1871 0 1 0 2 34 0 0 0 0 0 +126 1783879859202956900 DEPTH 31 1 0.79013572869786297 0.26575809199318562 2 5 2 5 0 0 3374 56 2605 23742639 147840 1314.5693664550781 8.6599000000000004 2478.0506999999998 53760 32605 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 13209879976 16103484 1 0 4 2 2 2 6 6881280 1966080 2949120 2950942 8985600 152 150 212 166 1925 12 4 0 1 39 0 0 0 0 0 +127 1783879861715226000 DEPTH 48 1 0.79017292732658606 0.26575809199318562 2 5 2 5 0 0 2877 39 2563 23742736 147840 1304.5811309814453 8.6433999999999997 2453.6221999999998 73920 41222 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13214353144 20576652 1 0 4 2 2 2 6 6144000 2703360 2949120 2951038 8985600 154 151 152 150 1956 1 0 8 2 28 0 0 0 0 0 +128 1783879864282515700 DEPTH 13 1 0.79022994423578974 0.27342419080068137 1 6 1 6 0 0 4096 91 2545 23742655 147840 1303.3995819091797 8.644400000000001 2444.6309000000001 73920 40381 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 13218807952 25031460 1 0 4 2 2 2 6 6144000 2703360 2949120 2950961 8985600 167 150 151 161 1916 2 0 15 12 62 0 0 0 0 0 +129 1783879866903155000 DEPTH 17 1 0.79028685895319206 0.28109028960817717 0 7 0 7 1 0 4096 44 2561 23742728 147840 1296.7311401367188 8.5854999999999997 2498.2546000000002 73920 40280 1 0 6.6954648115945604e-06 0.073046253735353339 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 13223279080 29502588 1 0 4 2 2 2 6 6144000 2703360 2949120 2951029 8985600 162 150 156 150 1943 4 4 0 0 36 0 0 0 0 2 +130 1783879869405222300 DEPTH 42 1 0.8188331288736338 0 0 4 0 4 0 0 4096 28 2560 23735596 140160 1296.7200469970703 8.5803000000000011 2500.6565999999998 94080 43754 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 13227749188 33972696 1 0 4 3 2 2 5 5898240 3440640 2949120 2950932 8486400 178 168 150 327 1737 0 1 5 0 22 0 0 0 0 0 +131 1783879871889878600 DEPTH 9 1 0.79040038322826556 0.27342419080068137 1 6 1 6 0 0 3595 87 2502 23742667 147840 1308.1888580322266 8.6560000000000006 2419.8591000000001 53760 32765 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 13232160136 38383644 1 0 4 2 2 2 6 6881280 1966080 2949120 2950973 8985600 151 155 156 158 1882 11 1 8 11 56 0 0 0 0 0 +132 1783879874469559700 DEPTH 45 1 0.77684894739036359 0.45315161839863699 2 7 2 7 0 0 2507 41 2579 23742197 147840 1311.8996429443359 8.7308000000000003 2458.7220000000002 73920 45287 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 13236649624 42873132 1 0 4 2 2 2 6 6881280 2703360 2949120 2213217 8985600 150 150 150 189 1940 3 0 2 1 35 0 0 0 0 0 +133 1783879876947984900 DEPTH 54 1 0.776907969612886 0.4608177172061329 1 8 1 8 0 0 1343 38 2550 23742199 147840 1299.3987884521484 8.5928000000000004 2420.3802000000001 73920 45036 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 13241109532 47333040 1 0 4 2 2 2 6 6881280 2703360 2949120 2213222 8985600 156 150 156 197 1891 1 2 12 3 20 0 0 0 0 0 +134 1783879879468562300 DEPTH 27 1 0.77696688693134097 0.4608177172061329 1 8 1 8 0 0 4096 44 2574 23742677 147840 1314.1351013183594 8.5734000000000012 2463.2352000000001 40320 23081 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 13245593920 51817428 1 0 5 1 2 2 6 7372800 1474560 2949120 2950982 8985600 160 150 161 150 1953 0 0 6 3 35 0 0 0 0 0 +135 1783879881993642600 DEPTH 1 1 0.77589203620743352 0.36712095400340705 1 7 1 7 0 0 3854 91 2572 23742693 147840 1306.8423461914062 8.609 2462.4591 73920 40706 1 0 0.017147769068302527 1.0203358922173167 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 13250076268 56299776 1 0 4 2 2 2 6 6144000 2703360 2949120 2950998 8985600 169 150 183 170 1900 6 3 7 7 68 0 0 0 0 0 +136 1783879884271546200 DEPTH 16 1 0.77572544027993495 0.3594548551959113 2 6 2 6 0 0 3799 57 2540 23742734 147840 1322.3160705566406 8.5846 2222.8852000000002 53760 32899 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 13254525976 60749484 1 0 4 2 2 2 6 6881280 1966080 2949120 2951038 8985600 173 150 159 156 1902 0 0 7 0 50 0 0 0 0 0 +137 1783879886917500600 DEPTH 46 1 0.77574467876665865 0.37478705281090291 0 8 0 8 0 0 2958 50 2525 23742555 147840 1330.1299133300781 8.6702999999999992 2584.2876999999999 73920 40929 1 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 13258960384 65183892 1 0 4 2 2 2 6 6144000 2703360 2949120 2950860 8985600 152 150 168 164 1891 1 0 1 0 48 0 0 0 0 0 +138 1783879890570750900 DEPTH 42 1 0.81209109062194063 0 0 4 0 4 0 0 4096 20 2575 23720705 125760 1292.1948089599609 8.5967000000000002 3651.6574000000001 120960 42960 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 13263445872 2560560 1 0 4 3 2 2 5 5898240 4423680 2949120 2950911 7488000 176 160 154 1083 1002 0 0 4 0 16 0 0 0 0 0 +139 1783879893146590800 DEPTH 20 1 0.79085046264975012 0.26575809199318562 2 5 2 5 0 0 2322 34 2597 23742669 147840 1303.2202301025391 8.8569999999999993 2516.0785000000001 73920 40377 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 13267953720 7068408 1 0 4 2 2 2 6 6144000 2703360 2949120 2950973 8985600 164 150 151 260 1872 0 1 2 0 31 0 0 0 0 0 +140 1783879895609662400 DEPTH 32 1 0.77731820793150774 0.4608177172061329 1 8 1 8 0 0 3493 75 2564 23742239 147840 1304.3118896484375 8.6143999999999998 2404.0171999999998 73920 45308 1 0 0.00078146315670677303 1.7668011902969105 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 13272427908 11542596 1 0 4 2 2 2 6 6881280 2703360 2949120 2213266 8985600 156 150 156 156 1946 6 4 9 23 33 0 0 0 0 0 +141 1783879898160767600 DEPTH 11 1 0.77596678019914822 0.37478705281090291 0 8 0 8 1 0 2982 53 2536 23742673 147840 1298.8807678222656 8.5873000000000008 2488.8440000000001 73920 40592 1 0 0 0.64867708274616243 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 13276873536 15988224 1 0 4 2 2 2 6 6144000 2703360 2949120 2950979 8985600 161 154 159 170 1892 6 3 0 1 43 0 0 0 0 2 +142 1783879900655751700 DEPTH 33 1 0.77601760961961364 0.36712095400340705 1 7 1 7 0 0 3999 43 2530 23742661 147840 1310.8676452636719 8.5763999999999996 2434.7431000000001 53760 32754 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 13281313044 20427732 1 0 4 2 2 2 6 6881280 1966080 2949120 2950960 8985600 172 150 159 156 1893 2 0 1 4 36 0 0 0 0 0 +143 1783879903237058400 DEPTH 44 1 0.7760731300501269 0.36712095400340705 1 7 1 7 0 0 2752 74 2595 23742662 147840 1313.4602355957031 9.4961000000000002 2517.1208999999999 73920 40687 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 13285818852 24933540 1 0 4 2 2 2 6 6144000 2703360 2949120 2950967 8985600 150 150 150 154 1991 24 3 3 3 41 0 0 0 0 0 +144 1783879905804713100 DEPTH 52 1 0.77612855341897946 0.36712095400340705 1 7 1 7 0 0 2658 43 2571 23742721 147840 1324.5071411132812 8.6059000000000001 2448.2159999999999 73920 40252 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 13290300180 29414868 1 0 4 2 2 2 6 6144000 2703360 2949120 2951028 8985600 170 155 195 223 1828 0 2 4 2 35 0 0 0 0 0 +145 1783879908047095400 DEPTH 23 1 0.77432562481883815 0.74190800681430991 1 11 1 11 0 0 3629 42 2524 23742744 147840 1327.2309875488281 8.571299999999999 2184.5297999999998 40320 21644 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 13294733568 33848256 1 0 5 1 2 2 6 7372800 1474560 2949120 2951046 8985600 159 150 160 150 1905 0 0 0 0 42 0 0 0 0 0 +146 1783879910574478900 DEPTH 42 1 0.80590406887556387 0 0 4 0 4 0 0 4096 19 2579 23705493 110400 1286.8198547363281 8.5599999999999987 2525.5468999999998 120960 31304 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 13299223056 38337744 1 0 4 3 3 2 4 5898240 4423680 3932160 2951021 6489600 174 156 166 1349 734 0 1 2 0 16 0 0 0 0 0 +147 1783879913080768300 DEPTH 30 1 0.77772342747852374 0.4608177172061329 1 8 1 8 0 0 4057 69 2539 23742599 147840 1311.4995269775391 8.7268000000000008 2447.3703 40320 22983 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 13303671744 42786432 1 0 5 1 2 2 6 7372800 1474560 2949120 2950903 8985600 152 155 161 155 1916 4 0 7 1 57 0 0 0 0 0 +148 1783879915632378700 DEPTH 25 1 0.7777809132013046 0.4608177172061329 1 8 1 8 0 0 2598 64 2534 23742168 147840 1311.3592376708984 8.8385999999999996 2483.6019000000001 73920 45367 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 13308115332 47230020 1 0 4 2 2 2 6 6881280 2703360 2949120 2213192 8985600 161 151 155 159 1908 11 1 5 8 39 0 0 0 0 0 +149 1783879918197662600 DEPTH 56 1 0.79766768213583139 0.17206132879045993 2 4 2 4 0 0 4096 49 2562 23742603 147840 1296.4783020019531 8.6127000000000002 2495.7651000000001 80640 35420 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13312587480 51702168 1 0 4 2 2 2 6 5898240 2949120 2949120 2950908 8985600 171 152 240 229 1770 7 0 3 1 38 0 0 0 0 0 +150 1783879920716075600 DEPTH 53 1 0.77647309187479685 0.37478705281090291 0 8 0 8 1 0 4096 64 2510 23742670 147840 1306.1068878173828 8.6289999999999996 2453.4137000000001 53760 32670 1 0 0 0.19710103795490871 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 13317006588 56121276 1 0 4 2 2 2 6 6881280 1966080 2949120 2950974 8985600 156 154 162 154 1884 0 1 5 2 56 0 0 0 0 1 +151 1783879922925799900 DEPTH 36 1 0.771353729871598 0.82027257240204421 3 10 3 10 0 0 1377 37 2566 23742707 147840 1306.8482360839844 9.5750999999999991 2150.8625000000002 40320 21859 1 0 0.088252248440386649 0.12238213187432942 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 13321482816 60597504 1 0 5 1 2 2 6 7372800 1474560 2949120 2951012 8985600 162 156 156 150 1942 8 0 0 4 25 0 0 0 0 0 +152 1783879925157549600 DEPTH 29 1 0.7714136053234375 0.82027257240204421 3 10 3 10 0 0 1237 86 2588 23742753 147840 1324.5072326660156 8.6575000000000006 2171.9041000000002 40320 20600 1 0 0.16516741445186056 1.0133634692658928 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 13325981484 65096172 1 0 5 1 2 2 6 7372800 1474560 2949120 2951059 8985600 162 164 153 153 1956 7 2 3 0 74 0 0 0 0 0 +153 1783879928470118900 DEPTH 5 1 0.77147337762289991 0.8279386712095399 2 11 2 11 1 0 979 64 2559 23742626 147840 1308.3414306640625 8.6020000000000003 3254.6743000000001 40320 20064 1 0 0.003626466272781753 0.38721471638072708 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 13330450652 2456520 1 0 5 1 2 2 6 7372800 1474560 2949120 2950931 8985600 158 150 157 165 1929 3 10 1 6 44 0 0 0 0 1 +154 1783879928830547100 REFRESH 36 0 0.53812374590852674 0.82027257240204421 3 10 3 10 0 0 1378 15 409 3988956 56640 225.25030517578125 1.4346000000000001 358.6961 6720 4943 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13331176056 3181924 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 25 25 28 305 0 0 0 1 14 0 0 0 0 0 +155 1783879929248340100 REFRESH 19 0 0.7715926141386048 0.8279386712095399 2 11 2 11 0 0 937 32 414 3988947 56640 226.52946472167969 1.4349000000000001 361.30720000000002 6720 4968 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13331906560 3912428 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 26 25 25 25 313 0 0 0 0 32 0 0 0 0 0 +156 1783879929672608700 REFRESH 55 0 0.76573723839468644 0.64054514480408853 2 9 2 9 0 0 1163 9 405 3988955 56640 227.22764587402344 1.4279999999999999 367.64850000000001 6720 4899 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13332627884 4633752 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 28 25 37 26 289 0 0 0 0 9 0 0 0 0 0 +157 1783879930121026600 REFRESH 2 0 0.76685798815720296 0.45315161839863699 2 7 2 7 0 0 4096 56 409 3988953 56640 225.80018615722656 1.425 389.23079999999999 6720 4705 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13333353288 5359156 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 30 25 27 32 295 0 0 1 1 54 0 0 0 0 0 +158 1783879930545046400 REFRESH 7 0 0.77177070381197288 0.8356047700170357 1 12 1 12 0 0 961 17 408 3988959 56640 225.59846496582031 1.4252 364.37639999999999 6720 5079 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13334077672 6083540 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 25 26 25 25 307 0 0 0 0 17 0 0 0 0 0 +159 1783879931028064800 REFRESH 20 0 0.73198274647865702 0.26575809199318562 2 5 2 5 0 0 2327 19 426 3988960 56640 225.81861877441406 1.4564999999999999 421.69209999999998 13440 9414 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 13334820416 6826284 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 33 93 250 0 1 1 1 16 0 0 0 0 0 +160 1783879931449690000 REFRESH 34 0 0.77188892412794707 0.8356047700170357 1 12 1 12 0 0 826 12 415 3988932 56640 225.84217834472656 1.4392 364.95089999999999 6720 5079 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13335551940 7557808 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 26 25 25 25 314 0 0 0 0 12 0 0 0 0 0 +161 1783879931877281200 REFRESH 14 0 0.76601927683349902 0.65587734241908002 0 11 0 11 0 0 1937 26 407 3988953 56640 228.05094909667969 1.4255 368.78739999999999 6720 4858 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13336275304 8281172 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 36 25 27 26 293 1 0 2 0 23 0 0 0 0 0 +162 1783879932261036100 REFRESH 52 0 0.69713787900130875 0.36712095400340705 1 7 1 7 0 0 2665 23 419 3988949 56640 221.86904907226562 1.4455 382.38940000000002 13440 9363 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13337010908 9016776 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 68 49 252 0 0 4 1 18 0 0 0 0 0 +163 1783879932714115800 REFRESH 13 0 0.7821894144165259 0.27342419080068137 1 6 1 6 0 0 4096 38 411 3988960 56640 221.53843688964844 1.4477 394.32249999999999 13440 9213 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13337738352 9744220 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 28 25 28 29 301 0 0 2 4 32 0 0 0 0 0 +164 1783879933145604400 REFRESH 16 0 0.76727957172074834 0.3594548551959113 2 6 2 6 0 0 3806 26 407 3988957 56640 223.61088562011719 1.4417 373.45839999999998 13440 9269 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13338461716 10467584 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 61 26 270 0 0 3 1 22 0 0 0 0 0 +165 1783879933575850900 REFRESH 21 0 0.7716003302607316 0.56218057921635434 0 10 0 10 0 0 2900 40 413 3988948 56640 220.53581237792969 1.4348000000000001 368.50540000000001 6720 4901 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13339191200 11197068 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 27 25 27 43 291 4 0 3 2 31 0 0 0 0 0 +166 1783879933980611800 REFRESH 25 0 0.69732395849309015 0.4608177172061329 1 8 1 8 0 0 2608 25 410 3988949 56640 233.07991027832031 1.4456 403.07560000000001 13440 9643 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13339917624 11923492 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 29 32 298 0 0 2 1 22 0 0 0 0 0 +167 1783879934408739700 REFRESH 6 0 0.76957227563321851 0.91396933560476989 3 11 3 11 0 0 391 8 424 3988960 56640 225.04243469238281 1.4341999999999999 374.32769999999999 6720 5093 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 13340658328 12664196 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 26 323 0 0 0 2 6 0 0 0 0 0 +168 1783879934837815100 REFRESH 42 0 0.94078636383375369 0 0 4 0 4 0 0 4096 7 426 3988027 55680 229.14968872070312 1.4602999999999999 427.5992 20160 12062 0 0 0 0.0059643440304668833 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 13341401072 13406940 1 0 4 3 3 2 4 983040 737280 737280 491700 998400 38 25 37 233 93 0 0 0 0 7 0 0 0 0 0 +169 1783879935268098100 REFRESH 50 0 0.76646559054390007 0.64054514480408853 2 9 2 9 0 0 1103 11 422 3988966 56640 220.11494445800781 1.4349000000000001 373.7663 6720 4886 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 13342139736 14145604 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 28 25 29 29 311 1 0 3 1 6 0 0 0 0 0 +170 1783879935864642300 REFRESH 17 0 0.78260113538283393 0.28109028960817717 0 7 0 7 0 0 4096 19 414 3988962 56640 219.72991943359375 1.4218999999999999 421.62380000000002 13440 9304 0 0 6.6954648115945604e-06 0.073046253735353339 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13342870240 14876108 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 27 25 40 38 284 0 0 4 0 15 0 0 0 0 0 +171 1783879936297604100 REFRESH 47 0 0.77253202395256293 0.8279386712095399 2 11 2 11 0 0 744 24 409 3988955 56640 220.96588134765625 1.448 371.73450000000003 6720 5100 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13343595644 15601512 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 25 308 0 1 0 0 23 0 0 0 0 0 +172 1783879936759762900 REFRESH 48 0 0.78264934167040834 0.26575809199318562 2 5 2 5 0 0 2882 18 414 3988932 56640 220.29721069335938 1.4317 403.68509999999998 13440 9339 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13344326148 16332016 1 0 4 2 2 2 6 983040 491520 491520 491650 1497600 25 26 30 28 305 0 0 2 0 16 0 0 0 0 0 +173 1783879937257206100 REFRESH 11 0 0.76770962012330202 0.37478705281090291 0 8 0 8 1 0 2992 26 410 3988963 56640 222.89407348632812 1.4327000000000001 432.74099999999999 13440 9300 0 0 0 0.64860915353451576 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13345052572 17058440 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 51 43 265 0 1 3 2 20 0 0 0 0 1 +174 1783879937665988100 REFRESH 53 0 0.75777035585950747 0.37478705281090291 0 8 0 8 0 0 4096 34 401 3988976 56640 220.12322998046875 1.4778 406.96600000000001 13440 9391 0 0 0 0.19710103795490871 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 13345769816 17775684 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 25 26 41 30 279 0 0 1 1 32 0 0 0 0 0 +175 1783879938098094700 REFRESH 27 0 0.76780026195881512 0.4608177172061329 1 8 1 8 0 0 4096 35 412 3988964 56640 221.33676147460938 1.4529000000000001 376.07589999999999 6720 4747 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13346498280 18504148 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 29 25 36 33 289 0 0 1 1 33 0 0 0 0 0 +176 1783879938524941400 REFRESH 8 0 0.78389079007121898 0.26575809199318562 2 5 2 5 0 0 2599 7 407 3988965 56640 221.66323852539062 1.4987999999999999 373.1893 13440 9307 0 0 0.021464890416508842 0.049441266245774974 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13347221644 19227512 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 27 26 304 0 0 0 0 7 0 0 0 0 0 +177 1783879938963940800 REFRESH 1 0 0.76814111265505003 0.36712095400340705 1 7 1 7 0 0 3914 94 415 3988957 56640 220.801025390625 1.4285000000000001 379.30599999999998 13440 9271 0 0 0.017147769068302527 1.0203358922173167 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13347953168 19959036 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 52 45 267 0 0 5 6 83 0 0 0 0 0 +178 1783879939388851100 REFRESH 38 0 0.77231772958181122 0.55451448040885853 1 9 1 9 0 0 2284 24 418 3988963 56640 219.06022644042969 1.4294 368.57859999999999 6720 4908 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13348687752 20693620 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 28 25 26 28 311 0 0 0 0 24 0 0 0 0 0 +179 1783879939804792300 REFRESH 35 0 0.77299234386205284 0.8279386712095399 2 11 2 11 0 0 1196 16 407 3988962 56640 220.74674987792969 1.4213 359.26080000000002 6720 5088 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13349411116 21416984 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 27 27 25 25 303 0 1 0 0 15 0 0 0 0 0 +180 1783879940235649900 REFRESH 40 0 0.76706958476725662 0.64821124361158422 1 10 1 10 0 0 1988 29 411 3988947 56640 219.25273132324219 1.4367000000000001 373.99160000000001 6720 4914 0 0 0.079501752389619845 0.46139863319818186 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13350138560 22144428 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 29 26 28 28 300 3 0 0 2 24 0 0 0 0 0 +181 1783879940641930500 REFRESH 51 0 0.77037930830933721 0.91396933560476989 3 11 3 11 1 0 572 11 406 3988963 56640 221.04371643066406 1.4255 350.54500000000002 6720 5149 0 0 0.045283117289298361 0.27221116460735351 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13350860904 22866772 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 25 306 0 0 0 0 11 0 0 0 0 1 +182 1783879941015138500 REFRESH 5 0 0.75968686300688881 0.8279386712095399 2 11 2 11 0 0 981 12 418 3988965 56640 219.826171875 1.4581999999999999 371.84609999999998 6720 4991 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13351595488 23601356 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 25 26 25 38 304 0 0 0 3 9 0 0 0 0 0 +183 1783879941387521900 REFRESH 29 0 0.75973240942299214 0.82027257240204421 3 10 3 10 0 0 1249 26 414 3988953 56640 219.49235534667969 1.4440999999999999 370.90449999999998 6720 5005 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13352325992 24331860 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 30 308 0 0 0 2 24 0 0 0 0 0 +184 1783879941847012100 REFRESH 39 0 0.77164364899780069 0.55451448040885853 1 9 1 9 0 0 1704 8 423 3988994 56640 219.67974853515625 1.4339 404.03730000000002 6720 4920 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 13353065676 25071544 1 0 5 1 2 2 6 1228800 245760 491520 491712 1497600 28 25 31 38 301 3 0 1 0 4 0 0 0 0 0 +185 1783879942282655800 REFRESH 3 0 0.76734234148240021 0.64054514480408853 2 9 2 9 0 0 1277 20 402 3988969 56640 227.73043823242188 1.4549000000000001 371.45740000000001 6720 4908 0 0 0.0079302196769804739 0.22803919289300528 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 13353783940 25789808 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 30 25 32 39 276 1 0 0 1 18 0 0 0 0 0 +186 1783879942720331300 REFRESH 22 0 0.77066288774570402 0.91396933560476989 3 11 3 11 0 0 521 11 412 3988959 56640 238.13734436035156 1.4381999999999999 381.99200000000002 6720 5055 0 0 0.0084140362538463482 0.71098786331502006 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13354512404 26518272 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 27 25 25 309 0 0 0 0 11 0 0 0 0 0 +187 1783879943161274700 REFRESH 41 0 0.77280540860025104 0.55451448040885853 1 9 1 9 0 0 2636 43 418 3988961 56640 229.95762634277344 1.4361999999999999 385.98500000000001 6720 4965 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13355246988 27252856 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 28 25 35 30 300 0 0 4 1 38 0 0 0 0 0 +188 1783879943592000800 REFRESH 43 0 0.77285915254972615 0.55451448040885853 1 9 1 9 0 0 3763 18 407 3988969 56640 227.36589050292969 1.4598 372.87060000000002 6720 4911 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13355970352 27976220 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 30 25 27 28 297 0 0 0 1 17 0 0 0 0 0 +189 1783879944026888800 REFRESH 26 0 0.77291280900301196 0.55451448040885853 1 9 1 9 0 0 2271 49 415 3988945 56640 227.36793518066406 1.4283999999999999 376.68110000000001 6720 4850 0 0 0.0036148281156409435 0.64880832113569242 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13356701876 28707744 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 30 25 31 29 300 0 0 2 1 46 0 0 0 0 0 +190 1783879944446409500 REFRESH 56 0 0.791726258173997 0.17206132879045993 2 4 2 4 0 0 4096 44 415 3989007 56640 238.61862182617188 1.4305000000000001 418.00200000000001 13440 7973 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13357433400 29439268 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 37 26 54 43 255 1 0 2 1 40 0 0 0 0 0 +191 1783879944898101800 REFRESH 30 0 0.768629686979588 0.4608177172061329 1 8 1 8 0 0 4096 72 414 3988951 56640 230.48521423339844 1.4374 390.16269999999997 6720 4786 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13358163904 30169772 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 32 26 35 29 292 2 0 2 1 67 0 0 0 0 0 +192 1783879945396707900 REFRESH 44 0 0.76864711857824619 0.36712095400340705 1 7 1 7 0 0 2767 47 427 3988968 56640 241.54931640625 1.4342999999999999 436.19670000000002 13440 9313 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 13358907668 30913536 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 29 38 310 0 0 0 4 43 0 0 0 0 0 +193 1783879945880180300 REFRESH 15 0 0.77105617897343803 0.91396933560476989 3 11 3 11 0 0 323 7 405 3988955 56640 238.48857116699219 1.4316 370.25869999999998 6720 5095 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13359628992 31634860 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 26 304 0 0 0 0 7 0 0 0 0 0 +194 1783879946303849800 REFRESH 49 0 0.76878280629595341 0.4454855195911413 3 6 3 6 0 0 1873 20 413 3988952 56640 227.03514099121094 1.4309000000000001 367.6189 6720 4820 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13360358476 32364344 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 28 25 31 32 297 0 0 1 0 19 0 0 0 0 0 +195 1783879946731813900 REFRESH 23 0 0.7637091161309445 0.74190800681430991 1 11 1 11 0 0 3634 18 408 3988980 56640 228.87117004394531 1.4441999999999999 372.26780000000002 6720 5006 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13361082860 33088728 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 26 25 25 26 306 0 0 0 0 18 0 0 0 0 0 +196 1783879947179022000 REFRESH 45 0 0.7688844743807175 0.45315161839863699 2 7 2 7 0 0 2519 31 412 3988945 56640 239.98377990722656 1.4596 390.60750000000002 13440 9677 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13361811324 33817192 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 32 54 276 0 0 1 2 28 0 0 0 0 0 +197 1783879947601502400 REFRESH 10 0 0.76798180073035127 0.64821124361158422 1 10 1 10 0 0 1333 23 420 3988994 56640 225.63941955566406 1.4319999999999999 365.7525 6720 4829 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13362547948 34553816 1 0 5 1 2 2 6 1228800 245760 491520 491714 1497600 27 25 29 27 312 0 0 4 2 17 0 0 0 0 0 +198 1783879948044644300 REFRESH 57 0 0.78410248202815513 0.27342419080068137 1 6 1 6 0 0 4096 19 408 3988952 56640 227.26153564453125 1.4416 382.649 13440 9239 0 0 0.00072830754635771122 0.39088276141577161 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13363272332 35278200 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 34 36 287 0 0 0 0 19 0 0 0 0 0 +199 1783879948553645700 REFRESH 33 0 0.76898872482401481 0.36712095400340705 1 7 1 7 0 0 4004 30 420 3988936 56640 229.0513916015625 2.4121999999999999 391.83120000000002 13440 9351 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13364008956 36014824 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 29 30 311 0 0 0 2 28 0 0 0 0 0 +200 1783879948987632500 REFRESH 18 0 0.7714450435684963 0.92163543441226559 2 12 2 12 0 0 467 6 409 3988965 56640 235.19743347167969 1.4724999999999999 376.48090000000002 6720 4982 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13364734360 36740228 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 25 25 25 25 309 0 0 0 0 6 0 0 0 0 0 +201 1783879949399783500 REFRESH 37 0 0.77422751263516931 0.8356047700170357 1 12 1 12 0 0 1084 23 411 3988962 56640 226.2159423828125 1.4317 355.07139999999998 6720 5070 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13365461804 37467672 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 25 26 309 0 0 0 0 23 0 0 0 0 0 +202 1783879949823210400 REFRESH 28 0 0.77228262086452271 0.8279386712095399 2 11 2 11 0 0 690 9 409 3988953 56640 228.04071044921875 1.4254 367.65750000000003 6720 4962 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13366187208 38193076 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 26 27 25 25 306 0 0 0 0 9 0 0 0 0 0 +203 1783879950257786000 REFRESH 12 0 0.77365496435831049 0.54684838160136284 2 8 2 8 0 0 2077 31 421 3988952 56640 224.6614990234375 1.4311 375.91379999999998 6720 4890 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13366924852 38930720 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 27 26 28 32 308 1 0 3 3 24 0 0 0 0 0 +204 1783879950692466700 REFRESH 24 0 0.76939257408102568 1 4 11 4 11 0 0 504 10 405 3988963 56640 237.39801025390625 1.4298 378.44889999999998 6720 5107 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13367646176 39652044 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 27 26 25 26 301 0 0 0 0 10 0 0 0 0 0 +205 1783879951190034000 REFRESH 58 0 0.77172014688176416 0.92163543441226559 2 12 2 12 0 0 558 6 408 3988959 56640 229.58387756347656 1.4432 384.32580000000002 6720 5014 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13368370560 40376428 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 27 25 25 305 0 0 0 0 6 0 0 0 0 0 +206 1783879951608260200 REFRESH 4 0 0.77450217810873978 0.8356047700170357 1 12 1 12 0 0 299 11 422 3988967 56640 224.81715393066406 1.4235 358.16699999999997 6720 5081 0 0 0.035532469242004712 0.84948699724715482 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 13369109224 41115092 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 26 27 25 26 318 0 1 0 1 9 0 0 0 0 0 +207 1783879952034941900 REFRESH 0 0 0.77455684984749251 0.8279386712095399 2 11 2 11 0 0 972 13 412 3988948 56640 226.93376159667969 1.4301999999999999 368.42809999999997 6720 5115 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13369837688 41843556 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 26 26 25 26 309 0 1 0 0 12 0 0 0 0 0 +208 1783879952484643600 REFRESH 54 0 0.76948769104088477 0.4608177172061329 1 8 1 8 0 0 1346 16 419 3988953 56640 225.17759704589844 1.4368000000000001 387.92630000000003 13440 9684 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13370573292 42579160 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 28 58 283 0 0 1 0 15 0 0 0 0 0 +209 1783879953012141300 REFRESH 31 0 0.78448807293780487 0.26575809199318562 2 5 2 5 0 0 3386 31 415 3988961 56640 229.84909057617188 1.9718 415.81549999999999 13440 9169 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13371304816 43310684 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 73 34 258 0 0 0 0 31 0 0 0 0 0 +210 1783879953463433400 REFRESH 32 0 0.76958711369612076 0.4608177172061329 1 8 1 8 0 0 3503 32 415 3988956 56640 233.11871337890625 1.4383999999999999 390.87169999999998 13440 9620 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13372036340 44042208 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 33 32 299 0 0 2 5 25 0 0 0 0 0 +211 1783879953920468900 REFRESH 46 0 0.76957104077503158 0.37478705281090291 0 8 0 8 0 0 2962 12 409 3988955 56640 225.34246826171875 1.4412 397.94170000000003 13440 9391 0 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13372761744 44767612 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 40 45 274 0 0 3 1 8 0 0 0 0 0 +212 1783879954366070800 REFRESH 9 0 0.78461308912041416 0.27342419080068137 1 6 1 6 0 0 3617 46 409 3988941 56640 227.54508972167969 1.4311 386.63720000000001 13440 9242 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13373487148 45493016 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 26 37 34 287 0 0 1 1 44 0 0 0 0 0 +213 1783879957019093600 DEPTH 42 1 0.96390342279762264 0 0 4 0 4 0 0 4096 18 2574 23698518 103680 1321.2526550292969 8.7193000000000005 2596.4117000000001 120960 59896 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 13377971536 49977404 1 0 4 3 3 2 4 5898240 4423680 4423680 2950932 5990400 157 150 181 1172 914 0 0 0 0 18 0 0 0 0 0 +214 1783879959646476700 DEPTH 17 1 0.77584575101276509 0.28109028960817717 0 7 0 7 1 0 4096 45 2565 23742715 147840 1321.8723754882812 8.5928000000000004 2563.3024 80640 44903 1 0 6.690971174433474e-06 0.072766557108547722 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 13382446744 54452612 1 0 4 2 2 2 6 5898240 2949120 2949120 2951016 8985600 156 150 156 156 1947 0 0 2 0 43 0 0 0 0 1 +215 1783879962103888200 DEPTH 48 1 0.7758433187563154 0.26575809199318562 2 5 2 5 0 0 2896 63 2554 23742659 147840 1314.6050720214844 8.6123999999999992 2455.9928 80640 45174 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 13386910732 58916600 1 0 4 2 2 2 6 5898240 2949120 2949120 2950964 8985600 150 152 154 150 1948 0 0 8 2 53 0 0 0 0 0 +216 1783879964676353700 DEPTH 20 1 0.7758888748720798 0.26575809199318562 2 5 2 5 0 0 2338 34 2605 23742604 147840 1339.2386627197266 8.6478999999999999 2514.4400000000001 80640 45784 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 13391426740 63432608 1 0 4 2 2 2 6 5898240 2949120 2949120 2950911 8985600 150 150 154 302 1849 0 0 3 0 31 0 0 0 0 0 +217 1783879968540115400 DEPTH 13 1 0.77593435986553594 0.27342419080068137 1 6 1 6 0 0 4096 76 2537 23742678 147840 1354.0435028076172 8.6368999999999989 3617.2872000000002 80640 45213 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 13395873468 771912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950984 8985600 162 150 153 165 1907 0 0 11 7 58 0 0 0 0 0 +218 1783879970935971600 DEPTH 8 1 0.77391509968245253 0.26575809199318562 2 5 2 5 1 0 2602 37 2511 23742768 147840 1344.0555419921875 8.5928000000000004 2335.0996 80640 44944 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 13400293596 5192040 1 0 4 2 2 2 6 5898240 2949120 2949120 2951073 8985600 150 150 150 150 1911 0 0 0 0 37 0 0 0 0 2 +219 1783879973464456200 DEPTH 56 1 0.78575952257172699 0.17206132879045993 2 4 2 4 0 0 4096 55 2575 23723853 128640 1320.4131927490234 8.6253999999999991 2526.9839000000002 114240 54077 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 13404779004 9677448 1 0 4 3 2 2 5 5898240 4177920 2949120 2950997 7737600 174 150 224 796 1231 12 0 0 11 32 0 0 0 0 0 +220 1783879975853690700 DEPTH 43 1 0.76293671346474667 0.55451448040885853 1 9 1 9 0 0 3786 86 2528 23742167 147840 1324.2091674804688 8.6087000000000007 2325.0070000000001 80640 48042 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 13409216472 14114916 1 0 4 2 2 2 6 6635520 2949120 2949120 2213191 8985600 159 163 156 168 1882 0 0 2 4 80 0 0 0 0 0 +221 1783879978501230100 DEPTH 42 1 0.78908736143237734 0 0 4 0 4 0 0 4096 17 2593 23691224 96000 1316.7216491699219 8.6278000000000006 2584.0092 120960 48529 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 13413720240 18618684 1 0 4 3 3 3 3 5898240 4423680 4423680 3442783 5491200 156 150 182 1375 730 0 0 0 0 17 0 0 0 0 0 +222 1783879980990569100 DEPTH 26 1 0.76303428666727413 0.55451448040885853 1 9 1 9 1 0 2298 96 2562 23742151 147840 1303.4823455810547 8.6321000000000012 2425.6237999999998 80640 47757 1 0 0.0020072775248131053 0.27231590684042933 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13418192388 23090832 1 0 4 2 2 2 6 6635520 2949120 2949120 2213173 8985600 151 150 162 150 1949 13 0 11 10 62 0 0 0 0 1 +223 1783879983268839600 DEPTH 38 1 0.76308295999041775 0.55451448040885853 1 9 1 9 0 0 2297 59 2524 23742158 147840 1298.7864837646484 8.6557999999999993 2213.2453999999998 80640 47950 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 13422625776 27524220 1 0 4 2 2 2 6 6635520 2949120 2949120 2213181 8985600 156 150 156 169 1893 2 0 0 8 49 0 0 0 0 0 +224 1783879985739699700 DEPTH 41 1 0.76313155809657851 0.55451448040885853 1 9 1 9 0 0 2658 71 2566 23742273 147840 1312.9789428710938 8.6105 2408.9537 80640 47955 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 13427102004 32000448 1 0 4 2 2 2 6 6635520 2949120 2949120 2213294 8985600 150 150 170 159 1937 12 2 6 4 47 0 0 0 0 0 +225 1783879988320657000 DEPTH 21 1 0.76318008121082415 0.56218057921635434 0 10 0 10 0 0 2917 75 2553 23742187 147840 1330.2456207275391 8.6514000000000006 2518.5356000000002 80640 48352 1 0 0.0003727367041393018 1.0094446117570586 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 13431564972 36463416 1 0 4 2 2 2 6 6635520 2949120 2949120 2213214 8985600 158 150 156 171 1918 13 0 13 2 47 0 0 0 0 0 +226 1783879990540726200 DEPTH 19 1 0.76198186369389254 0.8279386712095399 2 11 2 11 0 0 940 36 2563 23741779 147840 1324.4590148925781 8.5868000000000002 2165.7844 47040 27745 1 0 0.030524511601939662 0.37748740839804101 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13436038140 40936584 1 0 6 1 2 1 6 8601600 1720320 2949120 1475522 8985600 161 150 150 150 1952 0 0 0 1 35 0 0 0 0 0 +227 1783879992771257800 DEPTH 35 1 0.76203238848188437 0.8279386712095399 2 11 2 11 0 0 1208 83 2497 23741738 147840 1327.636474609375 8.8076000000000008 2169.0655000000002 47040 27472 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2497 1920 0 384 1 13440443988 45342432 1 0 6 1 2 1 6 8601600 1720320 2949120 1475482 8985600 162 152 150 154 1879 1 0 0 0 82 0 0 0 0 0 +228 1783879995009210900 DEPTH 47 1 0.762082835642379 0.8279386712095399 2 11 2 11 0 0 745 27 2549 23742072 147840 1327.5855560302734 8.6077999999999992 2175.9400000000001 47040 29134 1 0 0.0072853174080265868 0.99678840260751533 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 13444902876 49801320 1 0 5 1 2 2 6 8110080 1720320 2949120 1967339 8985600 150 150 150 150 1949 0 3 0 0 24 0 0 0 0 0 +229 1783879997531683200 DEPTH 42 1 0.78451834326491665 0 0 4 0 4 0 0 4096 19 2575 23676882 81600 1316.3714599609375 8.5943999999999985 2520.7809000000002 154560 50854 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 13449388284 54286728 1 0 4 4 3 2 3 5898240 5652480 4423680 3196854 4492800 156 150 194 1480 595 0 0 0 0 19 0 0 0 0 0 +230 1783880000153737400 DEPTH 57 1 0.77666537975895589 0.27342419080068137 1 6 1 6 1 0 4096 43 2536 23742655 147840 1336.8289184570312 8.6014999999999997 2499.2538 80640 44921 1 0 0.00072784041137027584 0.38368822840294797 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 13453833912 58732356 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 156 150 154 168 1908 0 0 2 4 37 0 0 0 0 1 +231 1783880002490871000 DEPTH 12 1 0.76346965754499385 0.54684838160136284 2 8 2 8 0 0 2113 118 2576 23742192 147840 1308.5654907226562 8.5670999999999999 2272.2008000000001 80640 48102 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 13458320340 63218784 1 0 4 2 2 2 6 6635520 2949120 2949120 2213218 8985600 150 156 157 163 1950 26 3 12 9 68 0 0 0 0 0 +232 1783880005871541200 DEPTH 37 1 0.76228385261310139 0.8356047700170357 1 12 1 12 0 0 1086 34 2544 23742722 147840 1322.4458312988281 8.5897000000000006 3323.4508000000001 40320 21383 1 0 0.0036818131075182585 0.35823468855906732 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 13462774208 564068 1 0 5 1 2 2 6 7372800 1474560 2949120 2951027 8985600 156 150 150 150 1938 0 0 1 1 32 0 0 0 0 0 +233 1783880008124480000 DEPTH 7 1 0.76233391508005888 0.8356047700170357 1 12 1 12 0 0 964 44 2531 23742628 147840 1328.4691162109375 8.6331999999999987 2194.0416 40320 21753 1 0 0.00026819310007664712 0.68460147353777145 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 13467214736 5004596 1 0 5 1 2 2 6 7372800 1474560 2949120 2950933 8985600 150 163 150 150 1918 0 0 0 0 44 0 0 0 0 0 +234 1783880010349681200 DEPTH 34 1 0.76238390129006095 0.8356047700170357 1 12 1 12 0 0 834 33 2570 23741722 147840 1322.1724090576172 8.6425000000000001 2170.4863 47040 27190 1 0 0.00020804344036005055 1.7473031373488448 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 13471695044 9484904 1 0 6 1 2 1 6 8601600 1720320 2949120 1475469 8985600 151 150 150 166 1953 0 0 1 1 31 0 0 0 0 0 +235 1783880012874285500 DEPTH 1 1 0.76195647870552463 0.36712095400340705 1 7 1 7 0 0 3920 55 2575 23742655 147840 1321.7648468017578 8.9872000000000014 2463.0790999999999 80640 44975 1 0 0.017147769068302527 1.0203358922173167 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 13476180452 13970312 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 156 150 185 173 1911 0 0 3 4 48 0 0 0 0 0 +236 1783880015181512500 DEPTH 16 1 0.76182018000291296 0.3594548551959113 2 6 2 6 0 0 3812 47 2543 23742637 147840 1335.1096343994141 8.7571999999999992 2248.3117999999999 80640 44929 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 13480633220 18423080 1 0 4 2 2 2 6 5898240 2949120 2949120 2950942 8985600 150 150 163 156 1924 0 0 7 1 39 0 0 0 0 0 +237 1783880017675031600 DEPTH 42 1 0.78016203793930983 0 0 4 0 4 0 0 4096 19 2580 23676954 81600 1306.2993774414062 8.5902000000000012 2492.1237999999998 141120 36647 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 13485123728 22913588 1 0 4 3 3 3 3 5898240 5160960 4423680 3688656 4492800 156 150 189 1552 533 0 0 0 0 19 0 0 0 0 0 +238 1783880020179067000 DEPTH 31 1 0.7768896237590972 0.26575809199318562 2 5 2 5 0 0 3396 35 2595 23742707 147840 1336.2640075683594 8.5884999999999998 2447.6862999999998 80640 44790 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 13489629536 27419396 1 0 4 2 2 2 6 5898240 2949120 2949120 2951009 8985600 150 150 234 163 1898 1 0 1 1 32 0 0 0 0 0 +239 1783880022659833000 DEPTH 9 1 0.77691746092806224 0.27342419080068137 1 6 1 6 0 0 3626 59 2502 23742602 147840 1318.2149353027344 8.9368999999999996 2424.7548000000002 80640 44965 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 13494040484 31830344 1 0 4 2 2 2 6 5898240 2949120 2949120 2950904 8985600 150 153 161 153 1885 0 0 2 15 42 0 0 0 0 0 +240 1783880024921773500 DEPTH 0 1 0.76268222968176136 0.8279386712095399 2 11 2 11 0 0 978 42 2562 23741741 147840 1332.9735717773438 8.6752000000000002 2206.7705000000001 47040 26929 1 0 0.0001442316467257171 2.2553238703365661 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13498512632 36302492 1 0 6 1 2 1 6 8601600 1720320 2949120 1475483 8985600 156 150 151 150 1955 0 1 0 5 36 0 0 0 0 0 +241 1783880027143938500 DEPTH 4 1 0.76273168833656091 0.8356047700170357 1 12 1 12 1 0 302 27 2557 23741721 147840 1342.6107025146484 8.738999999999999 2170.2476999999999 47040 27165 1 0 0.035630241324250016 0.85245255548084264 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 13502979680 40769540 1 0 6 1 2 1 6 8601600 1720320 2949120 1475466 8985600 150 150 150 152 1955 1 0 0 1 25 0 0 0 0 2 +242 1783880029699235800 DEPTH 53 1 0.76206675471570984 0.37478705281090291 0 8 0 8 0 0 4096 50 2517 23742648 147840 1321.6214904785156 8.597999999999999 2488.9245999999998 80640 44925 1 0 0 0.19710103795490871 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 13507405928 45195788 1 0 4 2 2 2 6 5898240 2949120 2949120 2950953 8985600 150 150 162 156 1899 0 0 5 3 42 0 0 0 0 0 +243 1783880032265169400 DEPTH 11 1 0.76210161232168072 0.37478705281090291 0 8 0 8 1 0 3000 32 2519 23742651 147840 1314.2476806640625 8.5971999999999991 2449.5392999999999 80640 44720 1 0 0 0.64835175626484998 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 13511834216 49624076 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 157 150 156 164 1892 0 0 0 0 32 0 0 0 0 1 +244 1783880034788877500 DEPTH 46 1 0.76214130628651966 0.37478705281090291 0 8 0 8 0 0 2974 46 2533 23742633 147840 1322.2676544189453 8.5823 2457.8573999999999 80640 45361 1 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 13516276784 54066644 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 150 150 181 171 1881 0 0 1 0 45 0 0 0 0 0 +245 1783880035281461900 REFRESH 21 0 0.70399955214756682 0.56218057921635434 0 10 0 10 0 0 2925 32 410 3988939 56640 225.38444519042969 1.4323999999999999 425.92329999999998 13440 9688 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13517003208 54793068 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 28 66 266 0 0 2 4 26 0 0 0 0 0 +246 1783880035715989300 REFRESH 47 0 0.68132498886446213 0.8279386712095399 2 11 2 11 0 0 749 16 409 3988939 56640 225.73362731933594 1.4332 376.55579999999998 6720 4986 0 0 0.0072853174080265868 0.99678840260751533 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13517728612 55518472 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 26 25 25 28 305 0 0 0 0 16 0 0 0 0 0 +247 1783880036159972900 REFRESH 2 0 0.76124850600651961 0.45315161839863699 2 7 2 7 0 0 4096 50 412 3988965 56640 238.85926818847656 1.4338 388.3997 13440 9582 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13518457076 56246936 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 29 36 296 0 0 2 1 47 0 0 0 0 0 +248 1783880036583159200 REFRESH 24 0 0.75807582544848129 1 4 11 4 11 0 0 506 14 407 3988874 56640 227.34439086914062 1.4299999999999999 368.72190000000001 6720 4948 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13519180440 56970300 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 28 25 25 26 303 0 0 0 0 14 0 0 0 0 0 +249 1783880037066184000 REFRESH 44 0 0.76235357048309904 0.36712095400340705 1 7 1 7 0 0 2779 32 428 3988947 56640 228.03056335449219 1.4615 419.69119999999998 13440 9133 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 13519925224 57715084 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 41 43 294 0 0 4 2 26 0 0 0 0 0 +250 1783880037521355500 REFRESH 39 0 0.76146942516351979 0.55451448040885853 1 9 1 9 0 0 1706 6 421 3988878 56640 225.28306579589844 1.4354 399.54219999999998 13440 9936 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13520662868 58452728 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 29 25 25 42 300 2 0 1 0 3 0 0 0 0 0 +251 1783880037974616600 REFRESH 41 0 0.75426947169675329 0.55451448040885853 1 9 1 9 0 0 2663 27 415 3988943 56640 244.81689453125 1.4382999999999999 392.94830000000002 13440 9580 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13521394392 59184252 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 43 34 287 0 0 1 4 22 0 0 0 0 0 +252 1783880038407770300 REFRESH 15 0 0.75754359215341527 0.91396933560476989 3 11 3 11 0 0 324 9 411 3988878 56640 235.13497924804688 1.4410000000000001 377.58670000000001 6720 4968 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13522121836 59911696 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 25 27 309 0 0 0 0 9 0 0 0 0 0 +253 1783880038849731300 REFRESH 38 0 0.75435891037121439 0.55451448040885853 1 9 1 9 0 0 2302 30 414 3988970 56640 237.24237060546875 1.4295 384.08769999999998 13440 9630 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13522852340 60642200 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 26 33 305 0 0 0 1 29 0 0 0 0 0 +254 1783880039275323600 REFRESH 7 0 0.7116984641516495 0.8356047700170357 1 12 1 12 0 0 967 22 407 3988951 56640 237.8946533203125 1.4419999999999999 369.5958 6720 4956 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13523575704 61365564 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 25 26 25 26 305 0 0 0 0 22 0 0 0 0 0 +255 1783880039700916800 REFRESH 35 0 0.75174483742184683 0.8279386712095399 2 11 2 11 0 0 1210 15 406 3988878 56640 229.69139099121094 1.4279999999999999 368.33769999999998 6720 4948 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13524298048 62087908 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 28 25 25 29 299 0 0 0 0 15 0 0 0 0 0 +256 1783880040134186300 REFRESH 6 0 0.75873747723406393 0.91396933560476989 3 11 3 11 0 0 393 20 421 3988887 56640 240.27766418457031 1.4372 377.11590000000001 6720 4921 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13525035692 62825552 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 25 25 25 29 317 1 0 0 3 16 0 0 0 0 0 +257 1783880040585696500 REFRESH 26 0 0.75458591266866615 0.55451448040885853 1 9 1 9 0 0 2316 50 416 3988966 56640 235.28959655761719 1.4731000000000001 393.39640000000003 13440 9671 0 0 0.0020072775248131053 0.27231590684042933 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13525768236 63558096 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 37 31 298 0 0 2 2 46 0 0 0 0 0 +258 1783880041037145700 REFRESH 37 0 0.75188354712432126 0.8356047700170357 1 12 1 12 0 0 1097 24 410 3988935 56640 246.57817077636719 1.4347000000000001 387.78160000000003 6720 4908 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13526494660 64284520 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 26 25 25 33 301 0 0 0 0 24 0 0 0 0 0 +259 1783880041502951300 REFRESH 33 0 0.76278322875913851 0.36712095400340705 1 7 1 7 0 0 4007 15 416 3988945 56640 253.90489196777344 1.5588 409.85599999999999 13440 9260 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13527227204 65017064 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 29 29 308 0 0 0 1 14 0 0 0 0 0 +260 1783880041955843800 REFRESH 14 0 0.75947568045084191 0.65587734241908002 0 11 0 11 0 0 1940 25 407 3988972 56640 253.97453308105469 1.4642999999999999 396.0915 6720 4896 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13527950568 65740428 1 0 5 1 2 2 6 1228800 245760 491520 491691 1497600 36 25 31 26 289 0 0 2 0 23 0 0 0 0 0 +261 1783880042392407800 REFRESH 19 0 0.75202164575173847 0.8279386712095399 2 11 2 11 0 0 941 18 411 3988879 56640 248.98661804199219 1.4390000000000001 379.68950000000001 6720 4968 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13528678012 66467872 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 26 25 25 29 306 0 0 0 0 18 0 0 0 0 0 +262 1783880043937191800 REFRESH 9 0 0.74984697022784819 0.27342419080068137 1 6 1 6 0 0 3653 59 412 3988952 56640 249.56314086914062 1.4361999999999999 1543.4898000000001 13440 8670 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13529406556 88920 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 26 39 32 290 0 0 1 3 55 0 0 0 0 0 +263 1783880044379300500 REFRESH 42 0 0.9465948702075182 0 0 4 0 4 0 0 4096 11 427 3987617 55200 231.10041809082031 1.4417 440.35210000000001 20160 13149 0 0 0 0.0059643440304668833 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 13530150320 832684 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 51 25 52 217 82 0 0 0 0 11 0 0 0 0 0 +264 1783880044831034700 REFRESH 5 0 0.75216691378016465 0.8279386712095399 2 11 2 11 0 0 987 24 418 3988934 56640 234.61888122558594 1.7168000000000001 388.58879999999999 6720 4845 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13530884904 1567268 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 25 26 25 41 301 0 0 0 1 23 0 0 0 0 0 +265 1783880045304913000 REFRESH 3 0 0.75970648018397824 0.64054514480408853 2 9 2 9 1 0 1281 22 406 3988879 56640 240.49356079101562 1.5337000000000001 415.21339999999998 13440 9951 0 0 0.0080168265293977352 0.22185038546580493 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13531607248 2289612 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 31 25 25 39 286 0 0 0 0 22 0 0 0 0 1 +266 1783880045736782900 REFRESH 22 0 0.76121722557737359 0.91396933560476989 3 11 3 11 0 0 521 14 411 3988939 56640 231.01951599121094 1.4323999999999999 373.49900000000002 6720 4877 0 0 0.0084140362538463482 0.71098786331502006 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13532334692 3017056 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 26 25 25 25 310 0 0 0 0 14 0 0 0 0 0 +267 1783880046144519400 REFRESH 31 0 0.77006585730144206 0.26575809199318562 2 5 2 5 0 0 3408 26 418 3988949 56640 240.67379760742188 1.4567000000000001 406.26769999999999 13440 8696 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13533069276 3751640 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 84 38 246 0 0 1 0 25 0 0 0 0 0 +268 1783880046638474500 REFRESH 17 0 0.770135974346145 0.28109028960817717 0 7 0 7 0 0 4096 23 416 3988961 56640 232.51353454589844 1.4342999999999999 435.35180000000003 13440 8642 0 0 6.690971174433474e-06 0.072766557108547722 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13533801820 4484184 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 27 25 43 43 278 0 0 0 3 20 0 0 0 0 0 +269 1783880047060474000 REFRESH 46 0 0.75513714058239634 0.37478705281090291 0 8 0 8 0 0 2982 26 414 3988971 56640 242.61631774902344 1.4356 420.07569999999998 13440 8730 0 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13534532324 5214688 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 49 78 237 0 0 2 1 23 0 0 0 0 0 +270 1783880047456623600 REFRESH 53 0 0.7551892372928195 0.37478705281090291 0 8 0 8 0 0 4096 35 402 3988956 56640 226.98188781738281 1.4278 394.54379999999998 13440 8683 0 0 0 0.19710103795490871 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 13535250588 5932952 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 26 49 31 271 0 0 0 0 35 0 0 0 0 0 +271 1783880047879080400 REFRESH 16 0 0.75524511465522548 0.3594548551959113 2 6 2 6 0 0 3827 30 411 3988939 56640 226.84672546386719 1.4242999999999999 365.2824 13440 8611 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13535978032 6660396 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 63 26 272 0 0 0 0 30 0 0 0 0 0 +272 1783880048301367100 REFRESH 11 0 0.75526330668791197 0.37478705281090291 0 8 0 8 0 0 3006 20 407 3988955 56640 225.72236633300781 1.4341999999999999 420.81920000000002 13440 8696 0 0 0 0.64835175626484998 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13536701396 7383760 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 47 47 262 0 0 0 0 20 0 0 0 0 0 +273 1783880048762510600 REFRESH 13 0 0.77029462101603063 0.27342419080068137 1 6 1 6 0 0 4096 40 410 3988955 56640 241.92306518554688 1.4461999999999999 401.80369999999999 13440 8713 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13537427820 8110184 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 28 25 29 29 299 0 0 2 3 35 0 0 0 0 0 +274 1783880049225380700 REFRESH 48 0 0.77033496399607437 0.26575809199318562 2 5 2 5 0 0 2903 24 414 3988932 56640 230.68365478515625 1.4547000000000001 402.16759999999999 13440 8648 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13538158324 8840688 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 25 26 32 29 302 0 0 0 1 23 0 0 0 0 0 +275 1783880049730113400 REFRESH 20 0 0.77037524892974452 0.26575809199318562 2 5 2 5 0 0 2347 17 428 3988971 56640 243.10169982910156 1.4386000000000001 446.16919999999999 13440 8670 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 13538903108 9585472 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 33 99 246 0 0 2 0 15 0 0 0 0 0 +276 1783880050159288700 REFRESH 58 0 0.75769004090018555 0.92163543441226559 2 12 2 12 0 0 558 12 412 3988884 56640 231.79673767089844 1.4380999999999999 371.21499999999997 6720 5029 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13539631572 10313936 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 27 25 25 25 310 0 0 0 0 12 0 0 0 0 0 +277 1783880050650561900 REFRESH 30 0 0.76255480960121025 0.4608177172061329 1 8 1 8 0 0 4096 42 412 3988949 56640 241.42848205566406 1.4293 381.80560000000003 13440 9749 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13540360036 11042400 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 26 38 30 293 0 0 2 0 40 0 0 0 0 0 +278 1783880051118092100 REFRESH 56 0 0.78141022183503162 0.17206132879045993 2 4 2 4 0 0 4096 32 413 3988468 56160 228.14207458496094 1.4347000000000001 406.18529999999998 20160 14901 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13541089520 11771884 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 38 25 25 179 146 3 0 0 15 14 0 0 0 0 0 +279 1783880051537347700 REFRESH 43 0 0.75549806468667224 0.55451448040885853 1 9 1 9 0 0 3795 20 404 3988933 56640 226.42073059082031 1.4268000000000001 365.52390000000003 13440 9649 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 13541809824 12492188 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 28 25 27 30 294 0 0 0 0 20 0 0 0 0 0 +280 1783880051944698400 REFRESH 49 0 0.76268388562312084 0.4454855195911413 3 6 3 6 0 0 1880 24 411 3988951 56640 226.39103698730469 1.4292 352.8426 13440 9636 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13542537268 13219632 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 33 35 293 0 0 1 1 22 0 0 0 0 0 +281 1783880052358954900 REFRESH 29 0 0.7529270640508926 0.82027257240204421 3 10 3 10 0 0 1251 17 417 3988946 56640 228.40013122558594 1.4327000000000001 359.78070000000002 6720 4869 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13543270832 13953196 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 26 25 25 29 312 0 0 0 0 17 0 0 0 0 0 +282 1783880052838981100 REFRESH 18 0 0.75797048233101794 0.92163543441226559 2 12 2 12 0 0 467 9 411 3988971 56640 239.95085144042969 1.4293 371.64190000000002 6720 4888 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13543998276 14680640 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 25 25 25 26 310 0 0 0 0 9 0 0 0 0 0 +283 1783880053189102900 REFRESH 0 0 0.75301618190573216 0.8279386712095399 2 11 2 11 0 0 983 15 414 3988869 56640 225.85548400878906 1.4306000000000001 348.89179999999999 6720 4974 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13544728780 15411144 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 26 26 25 36 301 0 0 0 1 14 0 0 0 0 0 +284 1783880053591955500 REFRESH 28 0 0.76199070321702145 0.8279386712095399 2 11 2 11 0 0 691 13 408 3988952 56640 227.58399963378906 1.4308000000000001 351.46440000000001 6720 5011 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13545453164 16135528 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 25 307 0 0 0 0 13 0 0 0 0 0 +285 1783880054040036500 REFRESH 52 0 0.76387143671798952 0.36712095400340705 1 7 1 7 0 0 2671 20 423 3988958 56640 225.53292846679688 1.4292 392.99919999999997 13440 9279 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 13546192848 16875212 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 59 48 266 0 0 1 0 19 0 0 0 0 0 +286 1783880054474232400 REFRESH 45 0 0.76294038657732111 0.45315161839863699 2 7 2 7 0 0 2526 27 417 3988939 56640 226.61427307128906 1.4287000000000001 378.25920000000002 13440 9485 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13546926412 17608776 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 32 46 289 0 0 0 0 27 0 0 0 0 0 +287 1783880054889645400 REFRESH 55 0 0.75969365944654643 0.64054514480408853 2 9 2 9 0 0 1164 14 405 3988948 56640 238.69439697265625 1.4357 361.37020000000001 6720 4857 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13547647736 18330100 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 30 25 42 26 282 0 0 0 0 14 0 0 0 0 0 +288 1783880055363071100 REFRESH 1 0 0.75608752287865344 0.36712095400340705 1 7 1 7 0 0 3946 64 423 3988950 56640 228.68582153320312 1.4339999999999999 367.83100000000002 13440 8697 0 0 0.017147769068302527 1.0203358922173167 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 13548387420 19069784 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 53 48 271 0 0 3 6 55 0 0 0 0 0 +289 1783880055792993000 REFRESH 40 0 0.76078202190428901 0.64821124361158422 1 10 1 10 1 0 1994 21 417 3988892 56640 226.22412109375 1.4298999999999999 378.6669 13440 10032 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13549120984 19803348 1 0 5 2 2 1 6 1228800 491520 491520 245851 1497600 26 25 25 26 315 3 0 0 2 16 0 0 0 0 1 +290 1783880056217471600 REFRESH 57 0 0.77112069941376693 0.27342419080068137 1 6 1 6 0 0 4096 27 414 3988934 56640 227.68333435058594 1.4288000000000001 370.29410000000001 13440 8639 0 0 0.00072784041137027584 0.38368822840294797 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13549851488 20533852 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 26 25 36 35 292 0 0 1 1 25 0 0 0 0 0 +291 1783880056670007600 REFRESH 25 0 0.76315247719902235 0.4608177172061329 1 8 1 8 0 0 2614 24 416 3988958 56640 237.91001892089844 1.429 397.83150000000001 13440 9546 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13550584032 21266396 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 29 32 304 0 0 3 3 18 0 0 0 0 0 +292 1783880057093026600 REFRESH 23 0 0.75674743238779529 0.74190800681430991 1 11 1 11 0 0 3640 20 410 3988950 56640 230.17471313476562 1.4331 368.83010000000002 6720 4845 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13551310456 21992820 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 26 308 0 0 0 0 20 0 0 0 0 0 +293 1783880057510887000 REFRESH 12 0 0.75609403871290626 0.54684838160136284 2 8 2 8 0 0 2116 21 416 3988954 56640 224.25701904296875 1.4316 364.76190000000003 13440 9625 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13552043000 22725364 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 26 31 36 298 0 0 3 6 12 0 0 0 0 0 +294 1783880057934289600 REFRESH 8 0 0.76953459710698413 0.26575809199318562 2 5 2 5 0 0 2606 13 409 3988961 56640 227.83795166015625 1.4288000000000001 368.65350000000001 13440 8716 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13552768404 23450768 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 25 25 309 0 0 0 0 13 0 0 0 0 0 +295 1783880058350689200 REFRESH 4 0 0.75359468412148611 0.8356047700170357 1 12 1 12 0 0 303 9 417 3988877 56640 231.96774291992188 1.4302999999999999 362.48910000000001 6720 4868 0 0 0.035630241324250016 0.85245255548084264 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13553501968 24184332 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 27 25 25 35 305 0 0 0 0 9 0 0 0 0 0 +296 1783880058790457700 REFRESH 54 0 0.76336308047350199 0.4608177172061329 1 8 1 8 0 0 1350 13 419 3988880 56640 231.77420043945312 1.4309000000000001 385.11369999999999 13440 9833 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13554237572 24919936 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 25 25 25 48 296 0 0 0 1 12 0 0 0 0 0 +297 1783880059220400300 REFRESH 50 0 0.76113299480041996 0.64054514480408853 2 9 2 9 0 0 1106 14 430 3988950 56640 225.66604614257812 1.4297 375.83010000000002 6720 4854 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 13554984396 25666760 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 29 25 29 30 317 1 0 2 1 10 0 0 0 0 0 +298 1783880059627353500 REFRESH 34 0 0.7536765905272016 0.8356047700170357 1 12 1 12 0 0 838 19 416 3988880 56640 226.23027038574219 1.4297 354.5052 6720 4977 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13555716940 26399304 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 26 25 25 45 295 0 0 0 2 17 0 0 0 0 0 +299 1783880060104980800 REFRESH 32 0 0.7634887368901081 0.4608177172061329 1 8 1 8 0 0 3505 15 419 3988949 56640 226.86515808105469 1.4292 369.19139999999999 13440 9570 0 0 0.00078146315670677303 1.7668011902969105 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13556452544 27134908 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 32 29 307 0 0 1 1 13 0 0 0 0 0 +300 1783880060536838000 REFRESH 27 0 0.7635305057241627 0.4608177172061329 1 8 1 8 0 0 4096 51 409 3988954 56640 226.52313232421875 1.4373 378.63510000000002 6720 4652 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13557177948 27860312 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 29 25 38 33 284 0 0 0 3 48 0 0 0 0 0 +301 1783880060962523200 REFRESH 51 0 0.76284335994678398 0.91396933560476989 3 11 3 11 0 0 572 15 410 3988870 56640 226.33779907226562 1.6411 368.41430000000003 6720 4962 0 0 0.045283117289298361 0.27221116460735351 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13557904372 28586736 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 25 25 25 25 310 0 0 0 0 15 0 0 0 0 0 +302 1783880061397843600 REFRESH 10 0 0.76135036752150576 0.64821124361158422 1 10 1 10 0 0 1338 13 418 3988876 56640 238.38021850585938 1.4319999999999999 378.56790000000001 13440 9948 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13558638956 29321320 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 26 25 25 27 315 2 0 0 0 11 0 0 0 0 0 +303 1783880061805240000 REFRESH 36 0 0.75389366110711165 0.82027257240204421 3 10 3 10 0 0 1385 28 412 3988923 56640 226.11660766601562 1.4308000000000001 352.7919 6720 4935 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13559367420 30049784 1 0 5 1 2 2 6 1228800 245760 491520 491640 1497600 26 25 25 30 306 0 0 0 2 26 0 0 0 0 0 +304 1783880064407862500 DEPTH 42 1 0.94360088198452119 0 0 4 0 4 0 0 4096 25 2579 23677456 81600 1335.3021545410156 8.5769999999999982 2491.8652999999999 120960 61714 1 0 0 0.0059643440304668833 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 13563856908 34539272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 255 150 266 1247 661 0 0 0 0 25 0 0 0 0 0 +305 1783880066865807600 DEPTH 56 1 0.77613399920889936 0.17206132879045993 2 4 2 4 0 0 4096 54 2551 23720587 125760 1325.9072113037109 8.5960999999999999 2406.3472000000002 120960 69423 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 13568317836 39000200 1 0 4 3 2 2 5 5898240 4423680 2949120 2950965 7488000 197 150 150 635 1419 15 0 0 2 37 0 0 0 0 0 +306 1783880069304876400 DEPTH 17 1 0.76425669006714947 0.28109028960817717 0 7 0 7 1 0 4096 36 2559 23742874 147840 1322.777587890625 8.8011999999999997 2437.4114 80640 42416 1 0 6.689269240733998e-06 0.071480259947605346 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 13572786924 43469288 1 0 4 2 2 2 6 5898240 2949120 2949120 2950977 8985600 156 150 156 171 1926 0 0 0 0 36 0 0 0 0 1 +307 1783880071784556100 DEPTH 31 1 0.76426749648619963 0.26575809199318562 2 5 2 5 0 0 3416 48 2611 23742912 147840 1344.9389953613281 8.6161000000000012 2477.8789999999999 80640 42537 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 13577309052 47991416 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 289 191 1831 0 0 0 0 48 0 0 0 0 0 +308 1783880074237781300 DEPTH 48 1 0.76429166160875961 0.26575809199318562 2 5 2 5 0 0 2909 27 2563 23727508 132480 1350.2312927246094 8.6529000000000007 2451.7910999999999 107520 54919 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13581782220 52464584 1 0 4 3 2 2 5 5898240 3932160 2949120 2950949 7987200 150 151 152 456 1654 0 0 0 1 26 0 0 0 0 0 +309 1783880076776052300 DEPTH 20 1 0.7643288455668521 0.26575809199318562 2 5 2 5 0 0 2354 27 2601 23727635 132480 1322.1836853027344 9.0751000000000008 2474.3602999999998 107520 55291 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2601 1920 0 384 1 13586294148 56976512 1 0 4 3 2 2 5 5898240 3932160 2949120 2951030 7987200 150 150 156 613 1532 0 0 1 0 26 0 0 0 0 0 +310 1783880079273676600 DEPTH 9 1 0.76436597844141352 0.27342419080068137 1 6 1 6 0 0 3663 54 2507 23742739 147840 1328.3880920410156 8.6134000000000004 2443.4355 80640 42823 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2507 1920 0 384 1 13590710196 61392560 1 0 4 2 2 2 6 5898240 2949120 2949120 2950960 8985600 150 154 165 155 1883 0 0 0 6 48 0 0 0 0 0 +311 1783880082009312300 DEPTH 13 1 0.76440306036841099 0.27342419080068137 1 6 1 6 0 0 4096 82 2543 23735167 140160 1330.9921112060547 8.6229000000000013 2505.1192000000001 94080 51242 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 13595162964 65845328 1 0 4 3 2 2 5 5898240 3440640 2949120 2950931 8486400 160 150 154 313 1766 0 0 9 13 60 0 0 0 0 0 +312 1783880085703802700 DEPTH 42 1 0.76969136044597219 0 0 4 0 4 1 0 4096 23 2578 23677446 81600 1307.7698364257812 8.5534999999999997 3636.1448999999998 120960 50874 1 0 0 0.0059520403943885474 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 13599651512 3225784 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 247 150 272 1312 597 0 0 0 1 22 0 0 0 0 2 +313 1783880088204382500 DEPTH 33 1 0.75686460367818365 0.36712095400340705 1 7 1 7 0 0 4013 46 2547 23742665 147840 1350.6069793701172 8.6089000000000002 2443.8784999999998 80640 44982 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 13604108360 7682632 1 0 4 2 2 2 6 5898240 2949120 2949120 2950968 8985600 150 150 157 157 1933 0 0 4 5 37 0 0 0 0 0 +314 1783880090744761200 DEPTH 44 1 0.75690274470948848 0.36712095400340705 1 7 1 7 0 0 2786 30 2605 23742669 147840 1339.4329833984375 8.5848999999999993 2486.2123000000001 80640 44429 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 13608624368 12198640 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 150 150 157 166 1982 0 0 3 1 26 0 0 0 0 0 +315 1783880093256715900 DEPTH 52 1 0.75694083367857412 0.36712095400340705 1 7 1 7 0 0 2676 29 2569 23742748 147840 1316.1421356201172 8.7179000000000002 2455.5630999999998 80640 44412 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 13613103656 16677928 1 0 4 2 2 2 6 5898240 2949120 2949120 2951049 8985600 150 150 203 259 1807 0 0 2 0 27 0 0 0 0 0 +316 1783880095816827700 DEPTH 2 1 0.75513189165450911 0.45315161839863699 2 7 2 7 0 0 4096 89 2545 23742659 147840 1320.9200592041016 8.5801999999999996 2433.7923999999998 80640 45956 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 13617558464 21132736 1 0 4 2 2 2 6 5898240 2949120 2949120 2950964 8985600 150 150 156 159 1930 0 0 7 2 80 0 0 0 0 0 +317 1783880098114359600 DEPTH 49 1 0.75515694087327279 0.4454855195911413 3 6 3 6 0 0 1889 44 2545 23742382 147840 1323.3469390869141 8.6328999999999994 2233.4883 80640 47789 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 13622013272 25587544 1 0 4 2 2 2 6 6389760 2949120 2949120 2459166 8985600 150 150 167 158 1920 0 0 3 5 36 0 0 0 0 0 +318 1783880100653488000 DEPTH 45 1 0.7551962058862477 0.45315161839863699 2 7 2 7 0 0 2529 32 2578 23742671 147840 1323.5302429199219 8.5935999999999986 2477.2181999999998 80640 46247 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 13626501740 30076012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 150 150 150 182 1946 0 0 3 1 28 0 0 0 0 0 +319 1783880103171538200 DEPTH 30 1 0.75523541757644796 0.4608177172061329 1 8 1 8 0 0 4096 67 2528 23742697 147840 1324.8368530273438 8.6088000000000005 2454.4866999999999 80640 45864 1 0 0.0010896017445468553 1.5540631090610977 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 13630939208 34513480 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 150 156 178 167 1877 0 0 9 5 53 0 0 0 0 0 +320 1783880105691080600 DEPTH 42 1 0.76591844514939 0 0 4 0 4 1 0 4096 13 2586 23677444 81600 1314.8928070068359 8.5884 2518.1723000000002 120960 41150 1 0 0 0.0055065268483898352 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 13635435836 39010108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 249 150 268 1344 575 0 0 0 0 13 0 0 0 0 1 +321 1783880108269239900 DEPTH 57 1 0.76490433729867524 0.27342419080068137 1 6 1 6 1 0 4096 63 2538 23742757 147840 1336.7541809082031 8.6597999999999988 2516.4474 80640 42288 1 0 0.00074883878758207024 0.3606563093705149 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 13639883504 43457776 1 0 4 2 2 2 6 5898240 2949120 2949120 2950940 8985600 156 150 157 171 1904 0 0 3 6 54 0 0 0 0 1 +322 1783880110707491300 DEPTH 8 1 0.76337191419138106 0.26575809199318562 2 5 2 5 0 0 2610 38 2521 23742662 147840 1328.8939819335938 8.5992999999999995 2378.596 80640 43069 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 13644313832 47888104 1 0 4 2 2 2 6 5898240 2949120 2949120 2950956 8985600 150 150 150 150 1921 0 0 0 0 38 0 0 0 0 0 +323 1783880113225745000 DEPTH 25 1 0.7553917339074101 0.4608177172061329 1 8 1 8 0 0 2623 40 2535 23742691 147840 1329.1130981445312 9.0906000000000002 2460.1016 80640 46216 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 13648758440 52332712 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 150 150 154 180 1901 0 0 7 8 25 0 0 0 0 0 +324 1783880115466714800 DEPTH 28 1 0.75226922297025023 0.8279386712095399 2 11 2 11 0 0 693 33 2520 23742673 147840 1334.4544372558594 8.5814000000000004 2182.4657000000002 40320 22941 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 13653187748 56762020 1 0 5 1 2 2 6 7372800 1474560 2949120 2950974 8985600 156 150 150 150 1914 0 0 0 0 33 0 0 0 0 0 +325 1783880117694200500 DEPTH 22 1 0.75210396129989932 0.91396933560476989 3 11 3 11 1 0 523 42 2530 23742623 147840 1346.9625396728516 8.6013999999999999 2170.4974999999999 40320 22909 1 0 0.0081721394983269822 0.79317901129991142 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 13657627256 61201528 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 150 150 150 150 1930 0 0 0 0 42 0 0 0 0 3 +326 1783880120162684200 DEPTH 3 1 0.75210046964982591 0.64054514480408853 2 9 2 9 0 0 1285 41 2539 23742383 147840 1315.2563323974609 8.7147000000000006 2409.4901 80640 46643 1 0 0.0080168265293977352 0.22185038546580493 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 13662075944 65650216 1 0 4 2 2 2 6 6389760 2949120 2949120 2459166 8985600 156 150 150 158 1925 1 3 0 0 37 0 0 0 0 0 +327 1783880123795741800 DEPTH 40 1 0.75213954744161793 0.64821124361158422 1 10 1 10 0 0 2006 51 2591 23742333 147840 1313.9353485107422 8.6012000000000004 3573.5711999999999 80640 46530 1 0 0.078694659344276413 0.46137713255528728 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 13666577752 3044440 1 0 4 2 2 2 6 6389760 2949120 2949120 2459118 8985600 150 150 150 156 1985 4 2 0 11 34 0 0 0 0 0 +328 1783880126404589000 DEPTH 42 1 0.76227257535944992 0 0 4 0 4 1 0 4096 17 2575 23677875 81600 1317.9802703857422 8.5841999999999992 2549.3404999999998 120960 29008 1 0 0 0.0059621220847914944 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 13671063160 7529848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426560 4492800 250 150 271 1341 563 0 0 0 0 17 0 0 0 0 2 +329 1783880128968160500 DEPTH 54 1 0.75562463232443289 0.4608177172061329 1 8 1 8 0 0 1353 21 2544 23742663 147840 1356.5175170898438 9.1655999999999995 2502.3033 80640 45021 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 13675516948 11983636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950969 8985600 150 150 150 250 1844 0 0 0 1 20 0 0 0 0 0 +330 1783880131680622000 DEPTH 27 1 0.75566326660531369 0.4608177172061329 1 8 1 8 0 0 4096 46 2566 23742687 147840 1396.1093139648438 8.6555 2652.0259999999998 67200 37699 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 13679993176 16459864 1 0 4 2 2 2 6 6389760 2457600 2949120 2950992 8985600 161 150 162 156 1937 0 0 6 9 31 0 0 0 0 0 +331 1783880134181877500 DEPTH 32 1 0.75570184921160177 0.4608177172061329 1 8 1 8 1 0 3513 42 2562 23742657 147840 1331.0945281982422 8.6781000000000006 2443.4911000000002 80640 46612 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13684465324 20932012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 156 150 155 159 1942 0 0 2 4 36 0 0 0 0 1 +332 1783880136376774500 DEPTH 51 1 0.75239679973570905 0.91396933560476989 3 11 3 11 1 0 572 23 2563 23741782 147840 1321.2594299316406 8.5791000000000004 2140.2341000000001 47040 27182 1 0 0.045333094047942106 0.27156051259413866 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13688938492 25405180 1 0 6 1 2 1 6 8601600 1720320 2949120 1475526 8985600 150 150 150 150 1963 0 0 1 0 22 0 0 0 0 2 +333 1783880138919616000 DEPTH 50 1 0.75237721479294073 0.64054514480408853 2 9 2 9 0 0 1117 49 2603 23742421 147840 1383.1639099121094 8.7419999999999991 2485.7118999999998 80640 46896 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 13693452460 29919148 1 0 4 2 2 2 6 6389760 2949120 2949120 2459204 8985600 154 150 157 153 1989 7 1 7 2 32 0 0 0 0 0 +334 1783880141218498300 DEPTH 10 1 0.75241709381168687 0.64821124361158422 1 10 1 10 0 0 1350 62 2550 23742363 147840 1371.6154479980469 8.7315000000000005 2241.9094 80640 46576 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 13697912368 34379056 1 0 4 2 2 2 6 6389760 2949120 2949120 2459148 8985600 156 150 150 161 1933 14 1 0 5 42 0 0 0 0 0 +335 1783880143529141200 DEPTH 14 1 0.7524569197579104 0.65587734241908002 0 11 0 11 0 0 1945 72 2519 23742608 147840 1333.7333831787109 8.5999999999999996 2252.8966 40320 23416 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 13702340656 38807344 1 0 5 1 2 2 6 7372800 1474560 2949120 2950912 8985600 186 150 159 161 1863 0 0 6 0 66 0 0 0 0 0 +336 1783880143960384400 REFRESH 9 0 0.75850790827950687 0.27342419080068137 1 6 1 6 0 0 3679 43 401 3988966 56640 228.12467956542969 1.4302999999999999 374.97329999999999 13440 8393 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 13703057900 39524588 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 26 49 39 262 0 0 2 2 39 0 0 0 0 0 +337 1783880144383131400 REFRESH 29 0 0.74503641297972356 0.82027257240204421 3 10 3 10 0 0 1266 37 409 3988885 56640 234.84825134277344 1.4359999999999999 368.42570000000001 13440 10012 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13703783304 40249992 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 25 25 25 30 304 0 0 0 3 34 0 0 0 0 0 +338 1783880144827972500 REFRESH 52 0 0.73038549674260644 0.36712095400340705 1 7 1 7 0 0 2681 18 421 3988949 56640 229.29820251464844 1.4298999999999999 389.7133 13440 8613 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13704520948 40987636 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 71 57 243 0 0 2 0 16 0 0 0 0 0 +339 1783880145256858500 REFRESH 45 0 0.70783970037587585 0.45315161839863699 2 7 2 7 0 0 2532 20 414 3988945 56640 226.95936584472656 1.4305000000000001 373.71319999999997 13440 8833 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13705251452 41718140 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 32 47 285 0 0 1 1 18 0 0 0 0 0 +340 1783880145658771400 REFRESH 35 0 0.7451552581731915 0.8279386712095399 2 11 2 11 0 0 1212 13 403 3988872 56640 225.65586853027344 1.4289000000000001 348.06830000000002 6720 4886 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 13705970736 42437424 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 28 25 25 30 295 0 0 0 0 13 0 0 0 0 0 +341 1783880146025950300 REFRESH 14 0 0.55358486238321747 0.65587734241908002 0 11 0 11 0 0 1950 34 412 3988959 56640 228.15437316894531 1.4266000000000001 365.96910000000003 6720 4633 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13706699200 43165888 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 38 25 32 26 291 0 0 1 0 33 0 0 0 0 0 +342 1783880146454335700 REFRESH 1 0 0.75070244924161189 0.36712095400340705 1 7 1 7 0 0 3963 39 415 3988970 56640 226.16677856445312 1.4353 376.27280000000002 13440 8685 0 0 0.017147769068302527 1.0203358922173167 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13707430724 43897412 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 26 25 52 45 267 0 0 0 1 38 0 0 0 0 0 +343 1783880146842451300 REFRESH 40 0 0.65366331422207014 0.64821124361158422 1 10 1 10 0 0 2010 15 406 3988963 56640 238.58688354492188 1.4334 386.58769999999998 13440 9967 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13708153068 44619756 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 27 304 0 0 0 2 13 0 0 0 0 0 +344 1783880147240598500 REFRESH 54 0 0.64802336911563019 0.4608177172061329 1 8 1 8 0 0 1354 7 421 3988967 56640 231.35539245605469 1.4301999999999999 396.85250000000002 13440 9842 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13708890712 45357400 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 54 292 0 0 0 0 7 0 0 0 0 0 +345 1783880147669262800 REFRESH 42 0 0.8489864864507487 0 0 4 0 4 0 0 4096 5 425 3987679 55200 241.40202331542969 1.4482999999999999 427.35919999999999 20160 12228 0 0 0 0.0059621220847914944 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 13709632436 46099124 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 61 25 59 201 79 0 0 0 0 5 0 0 0 0 0 +346 1783880148147639000 REFRESH 11 0 0.75067802728211164 0.37478705281090291 0 8 0 8 0 0 3009 20 409 3988974 56640 238.62886047363281 1.4297 421.137 13440 8661 0 0 0 0.64835175626484998 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13710357840 46824528 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 69 61 228 0 0 4 1 15 0 0 0 0 0 +347 1783880148571651400 REFRESH 18 0 0.74841415448130433 0.92163543441226559 2 12 2 12 0 0 468 14 415 3988949 56640 236.95872497558594 1.4403999999999999 370.11930000000001 6720 4920 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13711089364 47556052 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 27 313 0 0 0 0 14 0 0 0 0 0 +348 1783880148973118400 REFRESH 34 0 0.74546988902673017 0.8356047700170357 1 12 1 12 0 0 843 20 414 3988872 56640 225.5810546875 1.4688000000000001 347.33920000000001 6720 4915 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13711819868 48286556 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 26 25 25 42 296 0 0 0 0 20 0 0 0 0 0 +349 1783880149381430700 REFRESH 5 0 0.74551598384287232 0.8279386712095399 2 11 2 11 0 0 990 10 414 3988870 56640 225.19705200195312 1.4666999999999999 354.67759999999998 13440 9938 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13712550372 49017060 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 25 25 25 47 292 0 0 0 2 8 0 0 0 0 0 +350 1783880149807079100 REFRESH 23 0 0.74888136542149264 0.74190800681430991 1 11 1 11 0 0 3644 13 412 3988956 56640 241.7838134765625 1.4298 369.49880000000002 6720 4846 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13713278836 49745524 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 25 25 26 310 0 0 0 0 13 0 0 0 0 0 +351 1783880150186501700 REFRESH 10 0 0.66396285222629847 0.64821124361158422 1 10 1 10 0 0 1375 47 416 3988955 56640 240.40447998046875 1.4368000000000001 378.13010000000003 13440 9990 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13714011380 50478068 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 25 29 312 0 0 0 1 46 0 0 0 0 0 +352 1783880150617119700 REFRESH 12 0 0.74935752268723899 0.54684838160136284 2 8 2 8 0 0 2122 17 419 3988935 56640 225.64659118652344 1.4323999999999999 373.39569999999998 13440 9449 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13714746984 51213672 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 26 31 39 298 0 0 3 1 13 0 0 0 0 0 +353 1783880151053892000 REFRESH 41 0 0.74939500144797533 0.55451448040885853 1 9 1 9 0 0 2678 33 417 3988956 56640 226.49037170410156 1.4593 377.94760000000002 13440 9443 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13715480548 51947236 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 46 36 284 0 0 1 2 30 0 0 0 0 0 +354 1783880151501345100 REFRESH 21 0 0.74943243148884586 0.56218057921635434 0 10 0 10 0 0 2936 30 408 3988956 56640 231.29087829589844 1.4239999999999999 389.27820000000003 13440 9510 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13716204932 52671620 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 25 25 28 71 259 0 0 2 1 27 0 0 0 0 0 +355 1783880151925307900 REFRESH 24 0 0.75106591700435099 1 4 11 4 11 0 0 506 13 407 3988877 56640 233.09721374511719 1.4314 365.4597 13440 9972 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13716928296 53394984 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 26 25 25 27 304 0 0 0 0 13 0 0 0 0 0 +356 1783880152346579500 REFRESH 47 0 0.74578124272063562 0.8279386712095399 2 11 2 11 1 0 753 21 407 3988878 56640 227.64749145507812 1.4335 363.69 13440 9952 0 0 0.0071877544132616378 0.95224877513028527 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13717651660 54118348 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 28 304 0 0 0 0 21 0 0 0 0 1 +357 1783880152792892500 REFRESH 43 0 0.74954443051732977 0.55451448040885853 1 9 1 9 0 0 3801 25 407 3988947 56640 226.85798645019531 1.4359999999999999 381.81799999999998 13440 9578 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13718375024 54841712 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 27 25 28 28 299 0 0 0 0 25 0 0 0 0 0 +358 1783880153213859700 REFRESH 3 0 0.7442280391080669 0.64054514480408853 2 9 2 9 0 0 1291 22 404 3988950 56640 225.07725524902344 1.4375 365.50110000000001 13440 9910 0 0 0.0080168265293977352 0.22185038546580493 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 13719095328 55562016 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 45 284 0 0 0 0 22 0 0 0 0 0 +359 1783880153694048400 REFRESH 20 0 0.75929535182421171 0.26575809199318562 2 5 2 5 0 0 2355 2 427 3988457 56160 235.863037109375 1.4273 425.36219999999997 20160 14819 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 13719839092 56305780 1 0 4 3 2 2 5 983040 737280 491520 491657 1248000 25 25 27 87 263 0 0 1 0 1 0 0 0 0 0 +360 1783880154196113700 REFRESH 31 0 0.75934081913200657 0.26575809199318562 2 5 2 5 0 0 3429 35 419 3988967 56640 229.85626220703125 1.4681 388.05079999999998 13440 8577 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13720574696 57041384 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 90 41 238 0 0 4 1 30 0 0 0 0 0 +361 1783880154659974600 REFRESH 25 0 0.74863892808432553 0.4608177172061329 1 8 1 8 0 0 2628 18 412 3988953 56640 227.35462951660156 1.4388000000000001 405.79259999999999 13440 8861 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13721303160 57769848 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 31 35 295 0 0 2 3 13 0 0 0 0 0 +362 1783880155119393200 REFRESH 2 0 0.74868755896017292 0.45315161839863699 2 7 2 7 0 0 4096 45 409 3988975 56640 226.56512451171875 1.4352 400.4948 13440 9213 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13722028564 58495252 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 25 25 27 34 298 0 0 0 4 41 0 0 0 0 0 +363 1783880155535896700 REFRESH 0 0 0.74605104051768112 0.8279386712095399 2 11 2 11 0 0 983 11 416 3988880 56640 225.55955505371094 1.4288000000000001 363.6952 6720 4920 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13722761108 59227796 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 26 26 25 30 309 0 0 0 0 11 0 0 0 0 0 +364 1783880155972679300 REFRESH 8 0 0.75817128890936647 0.26575809199318562 2 5 2 5 0 0 2615 17 411 3988972 56640 227.90451049804688 1.4227000000000001 379.80070000000001 13440 8187 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13723488552 59955240 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 26 310 0 0 0 0 17 0 0 0 0 0 +365 1783880156395984900 REFRESH 4 0 0.74517183731665015 0.8356047700170357 1 12 1 12 1 0 303 11 417 3988884 56640 236.6771240234375 1.4424999999999999 368.5453 6720 4885 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13724222116 60688804 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 27 25 25 30 310 0 0 0 0 11 0 0 0 0 1 +366 1783880156900262600 REFRESH 46 0 0.75137189792680048 0.37478705281090291 0 8 0 8 0 0 2984 18 408 3988962 56640 226.07974243164062 1.4330000000000001 389.97190000000001 13440 8690 0 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13724946500 61413188 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 48 61 249 0 0 0 0 18 0 0 0 0 0 +367 1783880157356533900 REFRESH 53 0 0.75141669628765229 0.37478705281090291 0 8 0 8 0 0 4096 30 403 3988962 56640 228.20556640625 1.4373 396.43369999999999 13440 8616 0 0 0 0.19710103795490871 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 13725665784 62132472 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 26 46 31 275 0 0 0 0 30 0 0 0 0 0 +368 1783880157778807600 REFRESH 28 0 0.74397427153509343 0.8279386712095399 2 11 2 11 0 0 695 17 411 3988950 56640 227.22157287597656 1.4371 362.77510000000001 6720 4938 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13726393228 62859916 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 26 25 25 25 310 0 0 0 0 17 0 0 0 0 0 +369 1783880158220018500 REFRESH 58 0 0.75029847784467152 0.92163543441226559 2 12 2 12 0 0 558 11 410 3988876 56640 231.61343383789062 1.4493 379.67559999999997 13440 9975 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13727119652 63586340 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 25 25 25 25 310 0 0 0 0 11 0 0 0 0 0 +370 1783880158657556800 REFRESH 55 0 0.75291842221124738 0.64054514480408853 2 9 2 9 0 0 1165 14 405 3988960 56640 237.49754333496094 1.4337 381.10680000000002 6720 4812 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13727840976 64307664 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 29 25 41 26 284 0 0 2 0 12 0 0 0 0 0 +371 1783880159196046300 REFRESH 44 0 0.75153958347751648 0.36712095400340705 1 7 1 7 0 0 2794 30 429 3988951 56640 227.12934875488281 1.4628000000000001 420.33179999999999 13440 8611 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 13728586780 65053468 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 29 41 309 0 0 2 3 25 0 0 0 0 0 +372 1783880159624065200 REFRESH 26 0 0.75014200463249248 0.55451448040885853 1 9 1 9 1 0 2341 51 414 3988942 56640 226.33164978027344 1.4246000000000001 371.02929999999998 13440 9542 0 0 0.0020073860318362891 0.27524972350757954 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13729317284 65783972 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 37 31 296 0 0 1 2 48 0 0 0 0 1 +373 1783880160049917700 REFRESH 6 0 0.75225659488216978 0.91396933560476989 3 11 3 11 0 0 393 9 414 3988883 56640 226.42279052734375 1.4915 369.3458 13440 9939 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13730047788 66514476 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 25 25 25 30 309 0 0 0 2 7 0 0 0 0 0 +374 1783880161581940200 REFRESH 37 0 0.74647014303569803 0.8356047700170357 1 12 1 12 0 0 1102 19 407 3988961 56640 225.54850769042969 1.4340999999999999 1475.2484999999999 6720 4829 0 0 0.0036818131075182585 0.35823468855906732 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13730771232 129984 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 26 25 25 33 298 0 0 0 0 19 0 0 0 0 0 +375 1783880162005514700 REFRESH 7 0 0.746507952992991 0.8356047700170357 1 12 1 12 0 0 969 14 407 3988934 56640 224.88575744628906 1.4452 366.95609999999999 6720 4864 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13731494596 853348 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 25 26 25 27 304 0 0 0 0 14 0 0 0 0 0 +376 1783880162429545500 REFRESH 38 0 0.75024380990652428 0.55451448040885853 1 9 1 9 0 0 2311 26 411 3988947 56640 226.018310546875 1.4410000000000001 366.54640000000001 13440 9455 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13732222040 1580792 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 25 26 36 299 0 0 0 1 25 0 0 0 0 0 +377 1783880162865663500 REFRESH 36 0 0.74658342943554723 0.82027257240204421 3 10 3 10 0 0 1391 17 412 3988948 56640 234.74380493164062 1.4439 370.95179999999999 6720 4884 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13732950504 2309256 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 26 25 25 30 306 0 0 0 0 17 0 0 0 0 0 +378 1783880163309988400 REFRESH 22 0 0.74395621967993208 0.91396933560476989 3 11 3 11 0 0 523 12 413 3988951 56640 231.30828857421875 1.4501999999999999 382.08760000000001 6720 4796 0 0 0.0081721394983269822 0.79317901129991142 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13733679988 3038740 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 26 25 25 26 311 0 0 0 0 12 0 0 0 0 0 +379 1783880163749080800 REFRESH 16 0 0.75184028345488096 0.3594548551959113 2 6 2 6 0 0 3840 33 418 3988964 56640 228.09292602539062 1.4392 380.7998 13440 8566 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13734414572 3773324 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 35 26 307 0 0 1 0 32 0 0 0 0 0 +380 1783880164192161300 REFRESH 33 0 0.75184593127821486 0.36712095400340705 1 7 1 7 0 0 4032 43 414 3988940 56640 228.23446655273438 1.4372 384.99939999999998 13440 8625 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13735145076 4503828 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 30 30 304 0 0 0 1 42 0 0 0 0 0 +381 1783880164584261700 REFRESH 50 0 0.74506792148645251 0.64054514480408853 2 9 2 9 0 0 1118 11 422 3988939 56640 225.62098693847656 1.4207000000000001 390.61270000000002 13440 9596 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 13735883740 5242492 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 33 35 304 0 1 1 2 7 0 0 0 0 0 +382 1783880165029584600 REFRESH 49 0 0.74938097406928361 0.4454855195911413 3 6 3 6 0 0 1898 21 407 3988954 56640 238.10560607910156 1.4309000000000001 388.33850000000001 13440 9142 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13736607104 5965856 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 37 35 285 0 0 0 1 20 0 0 0 0 0 +383 1783880165455725600 REFRESH 32 0 0.74985267331147321 0.4608177172061329 1 8 1 8 0 0 3522 32 410 3988976 56640 226.2794189453125 1.4339 370.91609999999997 13440 8742 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13737333528 6692280 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 38 33 288 0 0 5 4 23 0 0 0 0 0 +384 1783880165873843800 REFRESH 15 0 0.7507873099713257 0.91396933560476989 3 11 3 11 0 0 324 5 411 3988884 56640 226.63395690917969 1.4258 362.1438 13440 10000 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13738060972 7419724 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 25 25 25 27 309 0 0 0 0 5 0 0 0 0 0 +385 1783880166285876300 REFRESH 19 0 0.74688343932913426 0.8279386712095399 2 11 2 11 0 0 942 13 404 3988874 56640 226.41766357421875 1.4377 355.70350000000002 6720 4889 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 13738781276 8140028 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 26 25 25 29 299 0 0 0 0 13 0 0 0 0 0 +386 1783880166727090000 REFRESH 57 0 0.76036386765649355 0.27342419080068137 1 6 1 6 0 0 4096 24 405 3988952 56640 227.05459594726562 1.4348000000000001 386.43340000000001 13440 8584 0 0 0.00074883878758207024 0.3606563093705149 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13739502600 8861352 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 31 32 291 0 0 0 1 23 0 0 0 0 0 +387 1783880167208932900 REFRESH 39 0 0.75320511529518985 0.55451448040885853 1 9 1 9 0 0 1711 16 421 3988874 56640 238.33088684082031 1.4413 420.10039999999998 13440 9815 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13740240244 9598996 1 0 5 2 2 1 6 1228800 491520 491520 245833 1497600 29 25 25 41 301 0 0 0 0 16 0 0 0 0 0 +388 1783880167683248100 REFRESH 17 0 0.76029426401902045 0.28109028960817717 0 7 0 7 0 0 4096 16 407 3988980 56640 226.20486450195312 1.4261999999999999 415.3417 13440 8521 0 0 6.689269240733998e-06 0.071480259947605346 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13740963608 10322360 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 27 25 44 43 268 0 0 2 0 14 0 0 0 0 0 +389 1783880168130615900 REFRESH 27 0 0.74962398028433508 0.4608177172061329 1 8 1 8 0 0 4096 35 407 3988949 56640 227.98643493652344 1.429 385.50749999999999 13440 9168 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13741686972 11045724 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 45 35 276 0 0 0 2 33 0 0 0 0 0 +390 1783880168579164600 REFRESH 13 0 0.76032045895883582 0.27342419080068137 1 6 1 6 0 0 4096 45 414 3988469 56160 227.43756103515625 1.4395 391.02019999999999 20160 14953 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13742417476 11776228 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 183 156 0 0 0 22 23 0 0 0 0 0 +391 1783880169084699100 REFRESH 51 0 0.74438015226795207 0.91396933560476989 3 11 3 11 1 0 574 18 407 3988887 56640 234.819580078125 1.4343999999999999 389.15839999999997 6720 4930 0 0 0.045323658117991203 0.27130734141743307 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13743140840 12499592 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 25 25 25 26 306 0 0 0 0 18 0 0 0 0 1 +392 1783880169556884300 REFRESH 56 0 0.77309294644024185 0.17206132879045993 2 4 2 4 0 0 4096 40 417 3987995 55680 228.73088073730469 1.4407000000000001 411.7561 20160 13920 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13743874404 13233156 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 47 25 25 67 253 2 0 0 3 35 0 0 0 0 0 +393 1783880170029230600 REFRESH 48 0 0.760417557140462 0.26575809199318562 2 5 2 5 0 0 2916 17 425 3988492 56160 227.77958679199219 1.4380999999999999 412.53050000000002 20160 14903 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 13744616128 13974880 1 0 4 3 2 2 5 983040 737280 491520 491690 1248000 25 25 25 131 219 0 0 1 5 11 0 0 0 0 0 +394 1783880170471116300 REFRESH 30 0 0.74979626214151218 0.4608177172061329 1 8 1 8 0 0 4096 42 410 3988974 56640 226.40025329589844 1.4249000000000001 383.38350000000003 13440 9200 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13745342552 14701304 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 25 26 45 38 276 0 0 6 2 34 0 0 0 0 0 +395 1783880173174855300 DEPTH 42 1 0.92161902923213845 0 0 4 0 4 0 0 4096 18 2577 23677876 81600 1346.2476654052734 8.6394000000000002 2645.7604999999999 120960 59062 1 0 0 0.0059621220847914944 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 13749830000 19188752 1 0 4 3 3 3 3 5898240 4423680 4423680 4426514 4492800 340 150 324 1164 599 0 0 0 1 17 0 0 0 0 0 +396 1783880175705126900 DEPTH 31 1 0.754163716537676 0.26575809199318562 2 5 2 5 0 0 3433 35 2637 23727401 132480 1329.1509857177734 8.5909999999999993 2471.6316999999999 107520 53428 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2637 1920 0 384 1 13754378648 23737400 1 0 4 3 2 2 5 5898240 3932160 2949120 2950974 7987200 150 150 240 667 1430 0 0 1 5 29 0 0 0 0 0 +397 1783880178239555100 DEPTH 9 1 0.75418438971643398 0.27342419080068137 1 6 1 6 0 0 3692 57 2517 23735072 140160 1325.5065460205078 8.6072999999999986 2474.3505 80640 40764 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2517 1920 0 384 1 13758804896 28163648 1 0 4 2 3 2 5 5898240 2949120 3440640 2950973 8486400 150 154 171 352 1690 0 0 0 7 50 0 0 0 0 0 +398 1783880180584804700 DEPTH 8 1 0.75305267529450937 0.26575809199318562 2 5 2 5 0 0 2620 36 2521 23738853 144000 1332.5426483154297 8.6306999999999992 2343.8006999999998 80640 40252 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 13763235224 32593976 1 0 4 2 3 2 5 5898240 2949120 3194880 2950935 8736000 150 150 150 174 1897 0 0 0 1 35 0 0 0 0 0 +399 1783880183080630900 DEPTH 20 1 0.74624679397187244 0.26575809199318562 2 5 2 5 0 0 2362 34 2600 23720492 125760 1322.5269317626953 8.6236999999999995 2494.4128999999998 120960 69795 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 13767746132 37104884 1 0 4 3 2 2 5 5898240 4423680 2949120 2950879 7488000 150 150 155 431 1714 0 0 4 0 30 0 0 0 0 0 +400 1783880185700954300 DEPTH 1 1 0.74579968309936451 0.36712095400340705 1 7 1 7 1 0 3972 61 2561 23742883 147840 1322.7233581542969 8.5829000000000004 2448.9490000000001 80640 42661 1 0 0.024280054209409825 0.94304778428878566 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 13772217260 41576012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 155 150 216 187 1853 0 0 2 0 59 0 0 0 0 1 +401 1783880188344099100 DEPTH 53 1 0.74568768594306067 0.37478705281090291 0 8 0 8 0 0 4096 54 2498 23742697 147840 1324.7264556884766 8.6640999999999995 2464.6884 80640 42305 1 0 0 0.19710103795490871 4096 2048 384 12 96 360 72 24 0 2498 1920 0 384 1 13776624128 45982880 1 0 4 2 2 2 6 5898240 2949120 2949120 2950905 8985600 150 150 173 157 1868 0 0 3 6 45 0 0 0 0 0 +402 1783880190886661200 DEPTH 11 1 0.74571405899532783 0.37478705281090291 0 8 0 8 1 0 3015 42 2513 23742795 147840 1311.4544677734375 8.6027000000000005 2483.2350000000001 80640 42174 1 0 0 0.64819162914413719 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 13781046296 50405048 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 160 150 166 168 1869 0 0 1 0 41 0 0 0 0 2 +403 1783880193412545400 DEPTH 42 1 0.74876075148487453 0 0 4 0 4 0 0 4096 21 2590 23677564 81600 1325.7328796386719 8.5882000000000005 2524.2973999999999 120960 48162 1 0 0 0.0059621220847914944 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 13785547004 54905756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 325 150 317 1145 653 0 0 0 0 21 0 0 0 0 0 +404 1783880195961804000 DEPTH 46 1 0.74577414351531823 0.37478705281090291 0 8 0 8 0 0 2991 28 2558 23723571 128640 1319.9216461181641 8.6562999999999981 2483.8474999999999 114240 56554 1 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 13790015072 59373824 1 0 4 3 2 2 5 5898240 4177920 2949120 2950907 7737600 150 150 170 758 1330 0 0 1 0 27 0 0 0 0 0 +405 1783880198509998400 DEPTH 44 1 0.74580236999477489 0.36712095400340705 1 7 1 7 0 0 2802 43 2619 23742790 147840 1327.5834503173828 8.5884 2492.5423000000001 80640 42050 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2619 1920 0 384 1 13794545360 63904112 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 150 150 161 157 2001 0 0 4 0 39 0 0 0 0 0 +406 1783880202128804800 DEPTH 52 1 0.74583418246414102 0.36712095400340705 1 7 1 7 0 0 2692 46 2562 23739082 144000 1327.7327117919922 8.6277000000000008 3559.5239000000001 87360 48242 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13799017588 1267852 1 0 4 3 2 2 5 5898240 3194880 2949120 2950932 8736000 150 150 230 298 1734 0 0 2 0 44 0 0 0 0 0 +407 1783880204357183900 DEPTH 55 1 0.74518243393115668 0.64054514480408853 2 9 2 9 0 0 1168 42 2509 23742625 147840 1336.5350799560547 8.6026000000000007 2173.1224999999999 40320 23377 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 13803435676 5685940 1 0 5 1 2 2 6 7372800 1474560 2949120 2950925 8985600 159 150 156 159 1885 0 0 0 1 41 0 0 0 0 0 +408 1783880206768295100 DEPTH 26 1 0.74320270727293858 0.55451448040885853 1 9 1 9 0 0 2357 69 2540 23742361 147840 1326.9054412841797 8.9199000000000002 2352.8474999999999 94080 56471 1 0 0.0020073860318362891 0.27524972350757954 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 13807885384 10135648 1 0 4 3 2 1 6 5898240 3440640 2949120 2459144 8985600 150 150 177 153 1910 0 0 3 7 59 0 0 0 0 0 +409 1783880209116539400 DEPTH 12 1 0.74316391885589805 0.54684838160136284 2 8 2 8 0 0 2135 43 2563 23741701 147840 1318.1224822998047 8.6227 2287.3164000000002 80640 41743 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 13812358552 14608816 1 0 5 2 2 1 6 7372800 2949120 2949120 1475447 8985600 150 156 153 161 1943 0 0 0 1 42 0 0 0 0 0 +410 1783880211468140300 DEPTH 43 1 0.74319762101905362 0.55451448040885853 1 9 1 9 0 0 3813 68 2522 23742573 147840 1323.5795440673828 8.9760999999999989 2295.1313 80640 46230 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 13816789900 19040164 1 0 4 2 2 2 6 5898240 2949120 2949120 2950877 8985600 153 150 158 158 1903 0 0 0 2 66 0 0 0 0 0 +411 1783880213999747400 DEPTH 57 1 0.7547741157204273 0.27342419080068137 1 6 1 6 0 0 4096 46 2546 23738867 144000 1326.5326843261719 8.6513000000000009 2473.8523 80640 41121 1 0 0.00074883878758207024 0.3606563093705149 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 13821245728 23495992 1 0 4 2 3 2 5 5898240 2949120 3194880 2950955 8736000 156 150 150 193 1897 0 0 3 3 40 0 0 0 0 0 +412 1783880216306312000 DEPTH 16 1 0.74604964195503798 0.3594548551959113 2 6 2 6 0 0 3848 63 2526 23742639 147840 1333.2869262695312 9.9740000000000002 2250.3679999999999 80640 42384 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 13825681156 27931420 1 0 4 2 2 2 6 5898240 2949120 2949120 2950895 8985600 150 150 179 156 1891 0 0 6 0 57 0 0 0 0 0 +413 1783880218937141400 DEPTH 33 1 0.74605578742637069 0.36712095400340705 1 7 1 7 0 0 4039 51 2527 23742747 147840 1338.4857940673828 8.6691000000000003 2507.5079999999998 80640 42656 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 13830117604 32367868 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 150 150 166 159 1902 0 0 1 8 42 0 0 0 0 0 +414 1783880221668220700 DEPTH 42 1 0.77602007833951303 0 0 4 0 4 1 0 4096 16 2591 23677675 81600 1326.3282928466797 8.8666 2729.2087000000001 120960 38437 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 13834619332 36869596 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 321 150 313 1242 565 0 0 0 0 16 0 0 0 0 1 +415 1783880224213657200 DEPTH 32 1 0.74339830800415452 0.4608177172061329 1 8 1 8 0 0 3535 42 2568 23731157 136320 1321.4208221435547 8.6082000000000001 2488.8467000000001 100800 53565 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 13839097600 41347864 1 0 4 3 2 2 5 5898240 3686400 2949120 2950980 8236800 155 150 158 382 1723 0 0 1 3 38 0 0 0 0 0 +416 1783880226522699200 DEPTH 38 1 0.74339897728183102 0.55451448040885853 1 9 1 9 0 0 2317 44 2528 23742675 147840 1314.2140197753906 8.5835999999999988 2248.8384999999998 80640 46430 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 13843535068 45785332 1 0 4 2 2 2 6 5898240 2949120 2949120 2950982 8985600 150 150 156 162 1910 0 0 0 3 41 0 0 0 0 0 +417 1783880229003840800 DEPTH 41 1 0.74343239476565426 0.55451448040885853 1 9 1 9 0 0 2686 43 2562 23742459 147840 1318.1871643066406 8.6434999999999995 2420.1102000000001 87360 53480 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 13848007216 50257480 1 0 4 2 2 2 6 5898240 3194880 2949120 2705002 8985600 150 150 197 159 1906 0 0 1 3 39 0 0 0 0 0 +418 1783880231555953700 DEPTH 21 1 0.74346577196160279 0.56218057921635434 0 10 0 10 0 0 2948 48 2557 23742659 147840 1327.1860198974609 8.7516999999999996 2481.1457 80640 46536 1 0 0.0003727367041393018 1.0094446117570586 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 13852474264 54724528 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 150 150 162 192 1903 0 0 6 1 41 0 0 0 0 0 +419 1783880234150075300 DEPTH 56 1 0.76830793133358055 0.17206132879045993 2 4 2 4 0 0 4096 54 2532 23698476 103680 1329.0833740234375 8.5904000000000007 2534.5201000000002 120960 68309 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 13856915812 59166076 1 0 4 3 3 2 4 5898240 4423680 4423680 2950929 5990400 234 150 164 506 1478 12 0 1 1 40 0 0 0 0 0 +420 1783880236722170700 DEPTH 17 1 0.75492777313575166 0.28109028960817717 0 7 0 7 0 0 4096 44 2558 23720630 125760 1314.3848724365234 8.6372 2511.5077999999999 120960 57582 1 0 6.689269240733998e-06 0.071480259947605346 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 13861383880 63634144 1 0 4 3 2 2 5 5898240 4423680 2949120 2950927 7488000 156 150 156 280 1816 0 0 0 1 43 0 0 0 0 0 +421 1783880240402477100 DEPTH 48 1 0.75492326748258332 0.26575809199318562 2 5 2 5 0 0 2924 28 2550 23720546 125760 1324.6197814941406 8.6740999999999993 3625.8551000000002 120960 69789 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 13865843868 985312 1 0 4 3 2 2 5 5898240 4423680 2949120 2950931 7488000 150 150 150 377 1723 2 0 0 0 26 0 0 0 0 0 +422 1783880242963705100 DEPTH 13 1 0.75495359030054321 0.27342419080068137 1 6 1 6 0 0 4096 71 2542 23720569 125760 1334.9888000488281 8.5846 2496.2869999999998 120960 69274 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 13870295616 5437060 1 0 4 3 2 2 5 5898240 4423680 2949120 2950956 7488000 150 150 150 806 1286 0 0 0 5 66 0 0 0 0 0 +423 1783880245452565100 DEPTH 39 1 0.74595504339663243 0.55451448040885853 1 9 1 9 0 0 1720 37 2577 23742471 147840 1301.7640838623047 8.5675000000000008 2434.3225000000002 80640 44264 1 1 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 13874783064 9924508 1 0 4 2 2 2 6 6144000 2949120 2949120 2705015 8985600 157 150 150 167 1953 2 0 1 0 33 0 0 0 0 0 +424 1783880247936188000 DEPTH 2 1 0.74330685694042598 0.45315161839863699 2 7 2 7 0 0 4096 76 2534 23742635 147840 1308.5184020996094 8.6471999999999998 2418.3580000000002 80640 44503 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 13879226652 14368096 1 0 4 2 2 2 6 5898240 2949120 2949120 2950939 8985600 150 150 156 168 1910 0 0 1 4 71 0 0 0 0 0 +425 1783880250219891100 DEPTH 49 1 0.7433273456478322 0.4454855195911413 3 6 3 6 0 0 1906 43 2560 23742681 147840 1311.3159637451172 8.6095000000000006 2161.8296999999998 80640 45010 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 13883696760 18838204 1 0 4 2 2 2 6 5898240 2949120 2949120 2950984 8985600 150 150 175 160 1925 0 0 4 1 38 0 0 0 0 0 +426 1783880252796015500 DEPTH 45 1 0.74335935416613141 0.45315161839863699 2 7 2 7 0 0 2538 48 2595 23731084 136320 1324.2705993652344 8.6232000000000006 2515.8045999999999 100800 54049 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 13888202568 23344012 1 0 4 3 2 2 5 5898240 3686400 2949120 2950908 8236800 150 150 153 353 1789 0 0 6 1 41 0 0 0 0 0 +427 1783880253245991300 REFRESH 30 0 0.74339132448515899 0.4608177172061329 1 8 1 8 0 0 4096 68 413 3988948 56640 227.32389831542969 1.4283999999999999 391.56439999999998 13440 8989 0 0 0.0010896017445468553 1.5540631090610977 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13888932052 24073496 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 26 45 40 277 0 0 3 0 65 0 0 0 0 0 +428 1783880253673743600 REFRESH 35 0 0.73921799374058406 0.8279386712095399 2 11 2 11 0 0 1215 15 404 3988886 56640 226.39520263671875 1.4216 370.44729999999998 13440 9878 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 13889652356 24793800 1 0 5 2 2 1 6 1228800 491520 491520 245846 1497600 26 25 25 29 299 0 0 0 0 15 0 0 0 0 0 +429 1783880254101544000 REFRESH 55 0 0.7077441459590198 0.64054514480408853 2 9 2 9 0 0 1168 8 408 3988936 56640 239.24223327636719 1.4417 373.96339999999998 6720 4491 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13890376740 25518184 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 29 25 44 26 284 0 0 0 0 8 0 0 0 0 0 +430 1783880254539285300 REFRESH 8 0 0.74818234277470452 0.26575809199318562 2 5 2 5 0 0 2630 25 411 3988495 56160 228.75340270996094 1.4237 381.82440000000003 13440 7978 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13891104184 26245628 1 0 4 2 3 2 5 983040 491520 737280 491689 1248000 25 25 25 101 235 0 0 0 7 18 0 0 0 0 0 +431 1783880254988401600 REFRESH 25 0 0.74351882553164728 0.4608177172061329 1 8 1 8 0 0 2638 27 416 3988964 56640 227.2491455078125 1.4246000000000001 388.13549999999998 13440 8730 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13891836728 26978172 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 35 36 294 0 0 3 0 24 0 0 0 0 0 +432 1783880255429363000 REFRESH 57 0 0.7094278325247303 0.27342419080068137 1 6 1 6 0 0 4096 24 414 3988480 56160 226.96754455566406 1.4246000000000001 384.06560000000002 13440 8270 0 0 0.00074883878758207024 0.3606563093705149 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13892567232 27708676 1 0 4 2 3 2 5 983040 491520 737280 491677 1248000 26 25 25 189 149 0 0 0 7 17 0 0 0 0 0 +433 1783880255898501500 REFRESH 53 0 0.74029642103262483 0.37478705281090291 0 8 0 8 0 0 4096 45 407 3988963 56640 226.229248046875 1.4240999999999999 400.1712 13440 8350 0 0 0 0.19710103795490871 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13893290596 28432040 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 26 41 29 286 0 0 1 1 43 0 0 0 0 0 +434 1783880256311887300 REFRESH 45 0 0.56670949197953213 0.45315161839863699 2 7 2 7 0 0 2539 13 428 3988460 56160 240.18841552734375 1.4402999999999999 411.86649999999997 20160 14869 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 13894035380 29176824 1 0 4 3 2 2 5 983040 737280 491520 491658 1248000 25 25 25 214 139 0 0 0 4 9 0 0 0 0 0 +435 1783880256725594200 REFRESH 0 0 0.73945581959133533 0.8279386712095399 2 11 2 11 0 0 986 14 418 3988882 56640 226.21490478515625 1.4261999999999999 357.42540000000002 6720 4924 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13894769964 29911408 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 26 26 25 41 300 0 0 0 0 14 0 0 0 0 0 +436 1783880257175034800 REFRESH 1 0 0.74057668522213316 0.36712095400340705 1 7 1 7 0 0 3997 40 418 3988963 56640 227.2593994140625 1.4335 391.15280000000001 13440 8635 0 0 0.024280054209409825 0.94304778428878566 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 13895504548 30645992 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 46 35 286 0 0 0 0 40 0 0 0 0 0 +437 1783880257633142900 REFRESH 9 0 0.74943265006614834 0.27342419080068137 1 6 1 6 0 0 3710 39 408 3988480 56160 227.05255126953125 1.4333 399.18349999999998 13440 8159 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13896228932 31370376 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 25 26 25 149 183 0 0 0 15 24 0 0 0 0 0 +438 1783880258044386800 REFRESH 34 0 0.73955714313743526 0.8356047700170357 1 12 1 12 0 0 843 8 415 3988879 56640 225.55545043945312 1.4256 355.3809 6720 4859 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13896960456 32101900 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 48 291 0 0 0 0 8 0 0 0 0 0 +439 1783880258478796600 REFRESH 5 0 0.73959713605729915 0.8279386712095399 2 11 2 11 0 0 996 19 417 3988869 56640 236.40985107421875 1.4429000000000001 375.14479999999998 13440 9765 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13897694020 32835464 1 0 5 2 2 1 6 1228800 491520 491520 245829 1497600 25 25 25 48 294 0 0 0 1 18 0 0 0 0 0 +440 1783880258904588300 REFRESH 47 0 0.73963216193562986 0.8279386712095399 2 11 2 11 0 0 757 18 409 3988882 56640 226.57125854492188 1.4311 367.42169999999999 13440 9754 0 0 0.0071877544132616378 0.95224877513028527 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13898419424 33560868 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 25 25 25 28 306 0 0 0 0 18 0 0 0 0 0 +441 1783880259368562800 REFRESH 52 0 0.7405229121091419 0.36712095400340705 1 7 1 7 0 0 2700 18 429 3988501 56160 227.9117431640625 1.4362999999999999 406.7774 20160 14915 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 13899165228 34306672 1 0 4 3 2 2 5 983040 737280 491520 491701 1248000 25 25 25 105 249 0 0 1 3 14 0 0 0 0 0 +442 1783880259801301900 REFRESH 3 0 0.73890099904313689 0.64054514480408853 2 9 2 9 1 0 1293 16 407 3988964 56640 224.94618225097656 1.4350000000000001 373.8827 13440 9689 0 0 0.0080209892278890783 0.22115816468665725 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13899888592 35030036 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 42 290 0 0 0 0 16 0 0 0 0 1 +443 1783880260239004500 REFRESH 10 0 0.73893023526136958 0.64821124361158422 1 10 1 10 0 0 1378 13 424 3988945 56640 231.95954895019531 1.429 380.78879999999998 13440 9762 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 13900629296 35770740 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 27 322 1 0 0 0 12 0 0 0 0 0 +444 1783880260662244200 REFRESH 39 0 0.69896563995217997 0.55451448040885853 1 9 1 9 0 0 1722 7 422 3988942 56640 233.70445251464844 1.4611000000000001 421.67450000000002 13440 9893 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 13901367960 36509404 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 49 298 0 0 0 0 7 0 0 0 0 0 +445 1783880261094559900 REFRESH 42 0 0.91377192820746433 0 0 4 0 4 0 0 4096 5 429 3987627 55200 229.47328186035156 1.4329000000000001 430.67500000000001 20160 12435 0 0 0 0.0051298014679344913 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 13902113764 37255208 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 64 25 66 199 75 0 0 0 0 5 0 0 0 0 0 +446 1783880261525536000 REFRESH 41 0 0.73684876130399468 0.55451448040885853 1 9 1 9 0 0 2699 33 416 3988883 56640 226.5927734375 1.4251 374.9348 20160 14948 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13902846308 37987752 1 0 4 3 2 1 6 983040 737280 491520 245841 1497600 25 25 25 33 308 0 0 0 1 32 0 0 0 0 0 +447 1783880261890872800 REFRESH 49 0 0.70710607500023304 0.4454855195911413 3 6 3 6 0 0 1910 22 408 3988943 56640 226.44122314453125 1.4408000000000001 364.02620000000002 13440 8610 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13903570692 38712136 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 40 38 280 0 0 0 1 21 0 0 0 0 0 +448 1783880262327322500 REFRESH 14 0 0.73909166672951376 0.65587734241908002 0 11 0 11 0 0 1955 31 409 3988948 56640 229.106689453125 1.4253 379.49040000000002 6720 4514 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13904296096 39437540 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 40 25 37 26 281 0 0 0 0 31 0 0 0 0 0 +449 1783880262763899500 REFRESH 15 0 0.73812324097580084 0.91396933560476989 3 11 3 11 0 0 324 7 412 3988876 56640 238.02777099609375 1.4275 381.18540000000002 6720 5009 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13905024560 40166004 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 25 25 25 28 309 0 0 0 0 7 0 0 0 0 0 +450 1783880263241586000 REFRESH 11 0 0.74079558292999459 0.37478705281090291 0 8 0 8 0 0 3018 16 406 3988978 56640 226.20466613769531 1.4437 418.23559999999998 13440 8363 0 0 0 0.64819162914413719 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 13905746904 40888348 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 54 49 252 0 0 1 1 14 0 0 0 0 0 +451 1783880263680751700 REFRESH 27 0 0.74414737771179595 0.4608177172061329 1 8 1 8 0 0 4096 34 415 3988943 56640 227.65362548828125 1.4386000000000001 384.1454 13440 9253 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13906478428 41619872 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 46 35 283 0 0 0 1 33 0 0 0 0 0 +452 1783880264101027200 REFRESH 6 0 0.74393667946589148 0.91396933560476989 3 11 3 11 0 0 393 4 425 3988885 56640 226.80166625976562 1.4333 366.40809999999999 6720 4906 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 13907220152 42361596 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 25 25 25 31 319 0 0 0 0 4 0 0 0 0 0 +453 1783880264526600100 REFRESH 17 0 0.74992330253154449 0.28109028960817717 0 7 0 7 0 0 4096 15 415 3988470 56160 226.40435791015625 1.4180999999999999 424.00349999999997 20160 14970 0 0 6.689269240733998e-06 0.071480259947605346 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 13907951676 43093120 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 134 206 0 0 0 2 13 0 0 0 0 0 +454 1783880264940366900 REFRESH 4 0 0.73923317395543253 0.8356047700170357 1 12 1 12 0 0 304 8 419 3988874 56640 224.65126037597656 1.4353 358.255 13440 9763 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13908687280 43828724 1 0 5 2 2 1 6 1228800 491520 491520 245832 1497600 25 25 25 29 315 1 0 0 0 7 0 0 0 0 0 +455 1783880265394160400 REFRESH 40 0 0.73931830803630039 0.64821124361158422 1 10 1 10 0 0 2023 39 414 3988951 56640 239.425537109375 1.4348000000000001 399.1173 13440 9734 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13909417784 44559228 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 29 310 0 0 1 2 36 0 0 0 0 0 +456 1783880265804740300 REFRESH 19 0 0.74015766110208203 0.8279386712095399 2 11 2 11 0 0 943 10 417 3988890 56640 225.63533020019531 1.4244000000000001 353.39240000000001 13440 9971 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 13910151348 45292792 1 0 5 2 2 1 6 1228800 491520 491520 245849 1497600 27 25 25 29 311 0 0 0 0 10 0 0 0 0 0 +457 1783880266232335000 REFRESH 26 0 0.73725552046996101 0.55451448040885853 1 9 1 9 0 0 2370 28 413 3988872 56640 227.810302734375 1.4395 370.72309999999999 20160 14751 0 0 0.0020073860318362891 0.27524972350757954 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13910880832 46022276 1 0 4 3 2 1 6 983040 737280 491520 245829 1497600 25 25 25 30 308 0 0 0 3 25 0 0 0 0 0 +458 1783880266715952800 REFRESH 56 0 0.76409170159716222 0.17206132879045993 2 4 2 4 0 0 4096 29 416 3987982 55680 227.69049072265625 1.4319 423.55610000000001 20160 12633 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13911613376 46754820 1 0 4 3 3 2 4 983040 737280 737280 491660 998400 48 25 29 175 139 2 0 0 5 22 0 0 0 0 0 +459 1783880267223910100 REFRESH 50 0 0.73944352947349323 0.64054514480408853 2 9 2 9 0 0 1119 11 423 3988952 56640 237.75538635253906 1.4446000000000001 395.55650000000003 13440 9470 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 13912353060 47494504 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 35 36 301 0 0 2 0 9 0 0 0 0 0 +460 1783880267646020300 REFRESH 16 0 0.74110252768315088 0.3594548551959113 2 6 2 6 0 0 3858 26 419 3988961 56640 228.56294250488281 1.4235 364.84320000000002 13440 8164 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 13913088664 48230108 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 55 26 288 0 0 1 0 25 0 0 0 0 0 +461 1783880268071638000 REFRESH 24 0 0.74459212083780313 1 4 11 4 11 0 0 506 10 408 3988872 56640 227.60549926757812 1.4412 368.1139 6720 4856 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 13913813048 48954492 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 26 25 25 26 306 0 0 0 0 10 0 0 0 0 0 +462 1783880268500095600 REFRESH 58 0 0.74365889221379677 0.92163543441226559 2 12 2 12 0 0 560 11 412 3988869 56640 229.82246398925781 1.4339 372.31220000000002 6720 4860 0 0 0.0093886898708527514 1.6042734218995411 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13914541512 49682956 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 25 25 25 25 312 0 0 0 0 11 0 0 0 0 0 +463 1783880268929918400 REFRESH 22 0 0.73771671479231915 0.91396933560476989 3 11 3 11 0 0 524 10 411 3988952 56640 238.82444763183594 1.4397 372.01159999999999 6720 4793 0 0 0.0081721394983269822 0.79317901129991142 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 13915268956 50410400 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 25 25 25 25 311 0 0 0 0 10 0 0 0 0 0 +464 1783880269366329500 REFRESH 7 0 0.7404205614366377 0.8356047700170357 1 12 1 12 0 0 974 16 404 3988964 56640 238.9248046875 1.4369000000000001 378.48090000000002 6720 4842 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 13915989260 51130704 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 25 26 25 27 301 0 0 0 0 16 0 0 0 0 0 +465 1783880269811742500 REFRESH 12 0 0.73743588020375328 0.54684838160136284 2 8 2 8 0 0 2142 18 421 3988877 56640 225.21343994140625 1.4240999999999999 386.96969999999999 13440 9912 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13916726904 51868348 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 36 310 0 0 0 5 13 0 0 0 0 0 +466 1783880270228175800 REFRESH 23 0 0.74381924355407614 0.74190800681430991 1 11 1 11 1 0 3650 18 410 3988969 56640 229.24697875976562 1.4258 360.83339999999998 6720 4819 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13917453328 52594772 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 25 25 26 308 0 0 0 0 18 0 0 0 0 1 +467 1783880270677887400 REFRESH 32 0 0.73805845841898099 0.4608177172061329 1 8 1 8 0 0 3544 28 421 3988475 56160 227.69255065917969 1.4322999999999999 386.81659999999999 20160 15002 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13918190972 53332416 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 26 156 189 0 0 0 14 14 0 0 0 0 0 +468 1783880271171019400 REFRESH 20 0 0.74311482384580196 0.26575809199318562 2 5 2 5 0 0 2363 10 429 3988495 56160 233.60922241210938 1.4374 435.4434 20160 13897 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 13918936776 54078220 1 0 4 3 2 2 5 983040 737280 491520 491693 1248000 25 25 28 169 182 0 0 0 2 8 0 0 0 0 0 +469 1783880271608552900 REFRESH 21 0 0.73755785763869375 0.56218057921635434 0 10 0 10 0 0 2958 30 414 3988936 56640 231.07072448730469 1.4390000000000001 383.37380000000002 13440 8759 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 13919667280 54808724 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 29 86 249 0 0 0 4 26 0 0 0 0 0 +470 1783880272039724500 REFRESH 38 0 0.7375882651642971 0.55451448040885853 1 9 1 9 0 0 2328 29 410 3988959 56640 226.16998291015625 1.5899000000000001 372.45170000000002 13440 8681 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13920393704 55535148 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 29 45 286 0 0 2 1 26 0 0 0 0 0 +471 1783880272477667700 REFRESH 33 0 0.74139647020184918 0.36712095400340705 1 7 1 7 0 0 4046 20 413 3988954 56640 226.8037109375 1.4359999999999999 382.74970000000002 13440 8375 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 13921123188 56264632 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 32 31 300 0 0 0 1 19 0 0 0 0 0 +472 1783880272890427300 REFRESH 18 0 0.74309719974449362 0.92163543441226559 2 12 2 12 0 0 469 10 412 3988961 56640 227.78883361816406 1.4308000000000001 359.85809999999998 6720 4906 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 13921851652 56993096 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 25 312 0 0 0 0 10 0 0 0 0 0 +473 1783880273363011200 REFRESH 54 0 0.74182213770957173 0.4608177172061329 1 8 1 8 0 0 1356 13 416 3988941 56640 227.2135009765625 1.4341999999999999 412.6574 13440 9658 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13922584196 57725640 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 56 285 0 0 0 0 13 0 0 0 0 0 +474 1783880273755484400 REFRESH 2 0 0.73792127299601407 0.45315161839863699 2 7 2 7 0 0 4096 55 409 3988962 56640 230.31706237792969 1.4428000000000001 390.73570000000001 13440 8588 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 13923309600 58451044 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 29 45 284 0 0 0 3 52 0 0 0 0 0 +475 1783880274187254800 REFRESH 37 0 0.74077814306960466 0.8356047700170357 1 12 1 12 1 0 1105 26 407 3988871 56640 237.60794067382812 1.4393 379.3295 13440 9989 0 0 0.0038589040720119795 0.34364224328650245 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13924032964 59174408 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 25 25 25 36 296 0 0 0 0 26 0 0 0 0 1 +476 1783880274604495200 REFRESH 29 0 0.74081042949478204 0.82027257240204421 3 10 3 10 0 0 1277 29 410 3988894 56640 226.24665832519531 1.4216 364.26889999999997 13440 9823 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13924759388 59900832 1 0 5 2 2 1 6 1228800 491520 491520 245852 1497600 25 25 25 32 303 0 1 0 3 25 0 0 0 0 0 +477 1783880275082024000 REFRESH 13 0 0.75056510576992141 0.27342419080068137 1 6 1 6 0 0 4096 27 420 3988502 56160 228.0447998046875 1.5045999999999999 421.6345 20160 13955 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 13925496012 60637456 1 0 4 3 2 2 5 983040 737280 491520 491702 1248000 25 25 25 199 146 0 0 0 14 13 0 0 0 0 0 +478 1783880275554930100 REFRESH 28 0 0.73883369297826851 0.8279386712095399 2 11 2 11 0 0 696 11 407 3988960 56640 227.23175048828125 1.4204000000000001 364.7647 6720 4824 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 13926219376 61360820 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 25 25 25 306 0 0 0 0 11 0 0 0 0 0 +479 1783880276035073900 REFRESH 46 0 0.74162765463132485 0.37478705281090291 0 8 0 8 0 0 2995 18 421 3988473 56160 239.24336242675781 1.4345000000000001 425.03199999999998 20160 14794 0 0 4.1005835075051072e-05 0.3627907324763599 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 13926957020 62098464 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 222 124 0 0 0 4 14 0 0 0 0 0 +480 1783880276494156500 REFRESH 48 0 0.75064796813432133 0.26575809199318562 2 5 2 5 0 0 2928 16 422 3988472 56160 227.33004760742188 1.4253 405.2663 20160 14065 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 13927695684 62837128 1 0 4 3 2 2 5 983040 737280 491520 491671 1248000 25 25 25 181 166 0 0 0 4 12 0 0 0 0 0 +481 1783880276910249900 REFRESH 36 0 0.74097131598155075 0.82027257240204421 3 10 3 10 0 0 1395 18 410 3988947 56640 225.58309936523438 1.4285000000000001 362.80619999999999 6720 4818 0 0 0.088252248440386649 0.12238213187432942 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 13928422108 63563552 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 31 303 0 0 0 0 18 0 0 0 0 0 +482 1783880277321984300 REFRESH 51 0 0.73827732411341362 0.91396933560476989 3 11 3 11 0 0 574 14 405 3988881 56640 226.52517700195312 1.4335 357.91919999999999 13440 9894 0 0 0.045323658117991203 0.27130734141743307 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 13929143432 64284876 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 25 25 25 31 299 0 0 0 0 14 0 0 0 0 0 +483 1783880277793855100 REFRESH 44 0 0.74173758382092037 0.36712095400340705 1 7 1 7 0 0 2807 13 426 3988977 56640 227.80825805664062 1.4329000000000001 417.50409999999999 13440 8436 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 13929886176 65027620 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 30 44 302 0 0 1 0 12 0 0 0 0 0 +484 1783880278300055400 REFRESH 31 0 0.75076754506818877 0.26575809199318562 2 5 2 5 0 0 3439 24 416 3988467 56160 240.71475219726562 1.4500999999999999 393.08479999999997 20160 14901 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 13930618720 65760164 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 151 190 0 0 0 9 15 0 0 0 0 0 +485 1783880278720114800 REFRESH 43 0 0.73804027071979772 0.55451448040885853 1 9 1 9 0 0 3822 25 401 3988977 56640 227.07200622558594 1.4378 367.20530000000002 13440 8735 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 13931335964 66477408 1 0 4 2 2 2 6 983040 491520 491520 491697 1497600 27 25 32 31 286 0 0 0 1 24 0 0 0 0 0 +486 1783880282511196300 DEPTH 42 1 0.90674087044438467 0 0 4 0 4 0 0 4096 22 2584 23677619 81600 1334.7184753417969 8.5844000000000005 3682.9816999999998 120960 59679 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 13935830632 3863468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426396 4492800 369 150 352 1183 530 0 0 0 0 22 0 0 0 0 0 +487 1783880285091319900 DEPTH 56 1 0.75979470541255867 0.17206132879045993 2 4 2 4 0 0 4096 48 2578 23698492 103680 1324.9802551269531 8.8924999999999983 2523.8613999999998 120960 63007 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 13940319100 8351936 1 0 4 3 3 2 4 5898240 4423680 4423680 2950941 5990400 218 150 175 740 1295 5 0 1 0 42 0 0 0 0 0 +488 1783880287646798300 DEPTH 57 1 0.7453467696613314 0.27342419080068137 1 6 1 6 0 0 4096 32 2555 23720664 125760 1332.3141174316406 8.5664999999999996 2499.7752 80640 39530 1 0 0.00074883878758207024 0.3606563093705149 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 13944784108 12816944 1 0 4 2 3 2 5 5898240 2949120 4423680 2950984 7488000 156 150 150 632 1467 0 0 0 3 29 0 0 0 0 0 +489 1783880290205983600 DEPTH 17 1 0.74527519479821147 0.28109028960817717 0 7 0 7 1 0 4096 58 2559 23716748 121920 1338.8802337646484 8.6331000000000007 2557.7413000000001 120960 69732 1 0 1.3067118616620927e-06 0.052083736298125863 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 13949253196 17286032 1 0 4 3 3 2 4 5898240 4423680 3194880 2950974 7238400 150 150 151 293 1815 0 0 4 0 54 0 0 0 0 1 +490 1783880292740172000 DEPTH 9 1 0.7452735456677777 0.27342419080068137 1 6 1 6 0 0 3721 41 2561 23720599 125760 1329.3375396728516 8.6145999999999994 2476.5464000000002 80640 39670 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 13953724324 21757160 1 0 4 2 3 2 5 5898240 2949120 4423680 2950926 7488000 150 150 150 740 1371 0 0 0 3 38 0 0 0 0 0 +491 1783880295176597000 DEPTH 8 1 0.74435812952021274 0.26575809199318562 2 5 2 5 0 0 2635 41 2534 23720660 125760 1336.5739593505859 8.7798000000000016 2370.7547 80640 38680 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 13958167912 26200748 1 0 4 2 3 2 5 5898240 2949120 4423680 2950994 7488000 150 150 150 454 1630 0 0 0 0 41 0 0 0 0 0 +492 1783880297812018600 DEPTH 27 1 0.73843384025652103 0.4608177172061329 1 8 1 8 0 0 4096 38 2564 23742625 147840 1334.4952392578125 8.5968999999999998 2464.2903000000001 80640 44549 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 13962642100 30674936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950930 8985600 156 150 162 165 1931 0 0 0 3 35 0 0 0 0 0 +493 1783880300307426400 DEPTH 30 1 0.73846258659723785 0.4608177172061329 1 8 1 8 1 0 4096 50 2523 23742650 147840 1324.0003967285156 9.8327999999999989 2437.5558999999998 80640 44165 1 0 0.0010333068606564353 1.5278069806092593 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 13967074468 35107304 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 150 156 186 177 1854 0 0 1 5 44 0 0 0 0 1 +494 1783880302872458500 DEPTH 20 1 0.73889961601884679 0.26575809199318562 2 5 2 5 0 0 2373 41 2603 23709037 114240 1319.9946136474609 8.6646000000000001 2501.4225000000001 120960 68740 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 13971588436 39621272 1 0 4 3 3 2 4 5898240 4423680 3686400 2950942 6739200 150 150 160 681 1462 0 0 9 1 31 0 0 0 0 0 +495 1783880305439808900 DEPTH 25 1 0.73851998363171178 0.4608177172061329 1 8 1 8 0 0 2646 42 2538 23742637 147840 1326.6421661376953 8.6666999999999987 2499.0439000000001 80640 43511 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 13976036104 44068940 1 0 4 2 2 2 6 5898240 2949120 2949120 2950938 8985600 150 150 165 187 1886 0 0 7 6 29 0 0 0 0 0 +496 1783880307690370900 DEPTH 23 1 0.73649484386591935 0.74190800681430991 1 11 1 11 0 0 3655 48 2519 23742589 147840 1348.7474060058594 8.6210000000000004 2191.4985000000001 40320 23761 1 0 0.019300844193410726 0.74534664091034986 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 13980464392 48497228 1 0 5 1 2 2 6 7372800 1474560 2949120 2950895 8985600 156 150 150 156 1907 0 0 0 0 48 0 0 0 0 0 +497 1783880309924567800 DEPTH 24 1 0.73648013825824199 1 4 11 4 11 0 0 507 54 2533 23742494 147840 1326.3155059814453 8.5925999999999991 2176.7948000000001 40320 24074 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 13984906960 52939796 1 0 5 1 2 2 6 7618560 1474560 2949120 2705039 8985600 156 150 150 154 1923 0 0 0 0 54 0 0 0 0 0 +498 1783880312465697800 DEPTH 1 1 0.73632145718204267 0.36712095400340705 1 7 1 7 0 0 4002 62 2574 23720598 125760 1325.2536468505859 8.6320999999999994 2478.5515999999998 120960 57218 1 0 0.024280054209409825 0.94304778428878566 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 13989391348 57424184 1 0 4 3 2 2 5 5898240 4423680 2949120 2950904 7488000 154 150 209 320 1741 0 1 0 2 59 0 0 0 0 0 +499 1783880314769626000 DEPTH 16 1 0.73618692117436546 0.3594548551959113 2 6 2 6 0 0 3866 74 2522 23731264 136320 1334.0395660400391 8.5848999999999993 2243.6405 80640 39680 1 1 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 13993822696 61855532 1 0 4 2 3 2 5 5898240 2949120 3686400 2951026 8236800 150 150 186 331 1705 0 0 3 3 67 0 0 0 0 0 +500 1783880317309811400 DEPTH 53 1 0.73620382537793838 0.37478705281090291 0 8 0 8 1 0 4096 74 2506 23738908 144000 1321.3829193115234 8.6085000000000012 2475.5100000000002 80640 40338 1 0 0 0.13097577668588939 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 13998237724 66270560 1 0 4 2 3 2 5 5898240 2949120 3194880 2950985 8736000 150 150 175 191 1840 0 0 2 8 64 0 0 0 0 3 +501 1783880320974002700 DEPTH 11 1 0.73622695185629805 0.37478705281090291 0 8 0 8 0 0 3030 37 2537 23738887 144000 1303.3759918212891 8.5984999999999996 3601.5095000000001 87360 45965 1 0 0 0.64819162914413719 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 14002684452 3608704 1 0 4 3 2 2 5 5898240 3194880 2949120 2950937 8736000 156 150 176 258 1797 0 0 1 0 36 0 0 0 0 0 +502 1783880323632533000 DEPTH 42 1 0.81470471802315181 0 0 4 0 4 0 0 4096 18 2597 23677964 81600 1339.0305328369141 8.8445 2598.3108000000002 120960 48455 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 14007192300 8116552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 350 150 344 1178 575 0 0 0 0 18 0 0 0 0 0 +503 1783880326168679600 DEPTH 13 1 0.74561656333103588 0.27342419080068137 1 6 1 6 0 0 4096 54 2554 23712945 118080 1323.3500366210938 8.5870999999999995 2472.9825999999998 120960 68369 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 14011656288 12580540 1 0 4 3 3 2 4 5898240 4423680 3440640 2951011 6988800 150 150 150 807 1297 0 0 0 0 54 0 0 0 0 0 +504 1783880328710761600 DEPTH 33 1 0.73630095999454537 0.36712095400340705 1 7 1 7 0 0 4052 31 2543 23731148 136320 1328.9779205322266 8.6163000000000007 2483.5064000000002 80640 40850 1 0 0.00024107096410342919 0.29774101433912692 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 14016109056 17033308 1 0 4 2 3 2 5 5898240 2949120 3686400 2950892 8236800 150 150 165 370 1708 0 0 0 1 30 0 0 0 0 0 +505 1783880331258908800 DEPTH 52 1 0.73632779340118226 0.36712095400340705 1 7 1 7 0 0 2712 45 2560 23720659 125760 1353.0542297363281 8.6308000000000007 2490.5336000000002 120960 69008 1 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 14020579164 21503416 1 0 4 3 2 2 5 5898240 4423680 2949120 2951044 7488000 150 150 150 609 1501 2 0 5 2 36 0 0 0 0 0 +506 1783880333727919200 DEPTH 54 1 0.73613341043262515 0.4608177172061329 1 8 1 8 0 0 1361 23 2556 23742643 147840 1323.0049133300781 8.6132000000000009 2414.2044999999998 80640 46668 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 14025045192 25969444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950945 8985600 150 150 150 285 1821 0 0 0 0 23 0 0 0 0 0 +507 1783880335904347700 DEPTH 58 1 0.73615032813431691 0.92163543441226559 2 12 2 12 1 0 563 19 2544 23742505 147840 1314.2867889404297 8.5683000000000007 2124.2096000000001 40320 24101 1 0 0.0095430491934861868 1.5827371062351756 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 14029498980 30423232 1 0 5 1 2 2 6 7618560 1474560 2949120 2705050 8985600 150 150 150 150 1944 0 0 0 0 19 0 0 0 0 1 +508 1783880338123018800 DEPTH 18 1 0.73537148552907627 0.92163543441226559 2 12 2 12 0 0 472 43 2528 23742660 147840 1331.5399780273438 8.6195000000000004 2162.0156999999999 40320 23173 1 0 0.0029941425525071893 0.92661218102623089 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 14033936448 34860700 1 0 5 1 2 2 6 7372800 1474560 2949120 2950966 8985600 150 150 150 152 1926 0 0 0 0 43 0 0 0 0 0 +509 1783880340399433600 DEPTH 47 1 0.73349554926077254 0.8279386712095399 2 11 2 11 1 0 758 19 2541 23742033 147840 1326.8143005371094 8.7912999999999997 2224.3252000000002 80640 47920 1 0 0.014120308326235348 1.6344851170877133 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 14038387176 39311428 1 0 4 2 2 2 6 6881280 2949120 2949120 1967300 8985600 150 150 150 150 1941 0 0 0 0 19 0 0 0 0 1 +510 1783880342899587400 DEPTH 31 1 0.74580781629980886 0.26575809199318562 2 5 2 5 0 0 3453 53 2610 23712899 118080 1336.6056976318359 8.573599999999999 2441.835 120960 69557 1 1 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2610 1920 0 384 1 14042908284 43832536 1 0 4 3 3 2 4 5898240 4423680 3440640 2950962 6988800 150 150 150 522 1638 0 0 12 0 40 0 0 0 0 0 +511 1783880345443333200 DEPTH 48 1 0.74582522390527894 0.26575809199318562 2 5 2 5 0 0 2934 38 2563 23712851 118080 1323.4627685546875 8.6767000000000003 2483.5351000000001 120960 69055 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 14047381452 48305704 1 0 4 3 3 2 4 5898240 4423680 3440640 2950916 6988800 150 150 153 638 1472 0 0 3 0 35 0 0 0 0 0 +512 1783880347946220200 DEPTH 46 1 0.73651774334889208 0.37478705281090291 0 8 0 8 1 0 3002 30 2560 23720543 125760 1326.0328979492188 8.5706999999999987 2447.8440000000001 120960 69528 1 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 14051851560 52775812 1 0 4 3 2 2 5 5898240 4423680 2949120 2950928 7488000 150 150 151 1013 1096 0 0 0 0 30 0 0 0 0 1 +513 1783880350515790400 DEPTH 44 1 0.73654140700439608 0.36712095400340705 1 7 1 7 0 0 2818 39 2612 23731187 136320 1366.7206420898438 8.6154000000000011 2513.2948999999999 87360 45494 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2612 1920 0 384 1 14056374708 57298960 1 0 4 3 2 2 5 5898240 3194880 3440640 2950927 8236800 150 150 166 367 1779 0 0 4 0 35 0 0 0 0 0 +514 1783880353095433900 DEPTH 56 1 0.75562978971693884 0.17206132879045993 2 4 2 4 0 0 4096 51 2557 23680061 84480 1321.6872863769531 8.6181000000000001 2520.5214000000001 120960 50972 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 14060841756 61766008 1 0 4 3 3 3 3 5898240 4423680 4423680 4180467 4742400 241 150 174 1243 749 9 0 1 2 39 0 0 0 0 0 +515 1783880355296596400 DEPTH 5 1 0.73367403694554767 0.8279386712095399 2 11 2 11 0 0 1002 39 2562 23742044 147840 1321.3501586914062 8.6015999999999995 2144.7116999999998 80640 48568 1 0 0.003626466272781753 0.38721471638072708 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 14065313904 66238156 1 0 4 2 2 2 6 6881280 2949120 2949120 1967310 8985600 150 150 150 217 1895 0 2 0 1 36 0 0 0 0 0 +516 1783880358618099000 DEPTH 37 1 0.73370175925203529 0.8356047700170357 1 12 1 12 0 0 1108 30 2551 23742653 147840 1309.0879211425781 8.5682999999999989 3267.7094000000002 80640 43552 1 0 0.0038589040720119795 0.34364224328650245 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 14069774912 3590344 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 150 150 150 160 1941 0 0 0 2 28 0 0 0 0 0 +517 1783880360837400800 DEPTH 36 1 0.73372801582398628 0.82027257240204421 3 10 3 10 1 0 1398 39 2542 23742690 147840 1317.0660400390625 8.7463999999999995 2164.9171999999999 60480 36450 1 0 0.08650246521679307 0.12010890864141764 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 14074226660 8042092 1 0 4 2 2 2 6 6635520 2211840 2949120 2950997 8985600 156 150 150 150 1936 0 0 0 6 33 0 0 0 0 2 +518 1783880361236869100 REFRESH 48 0 0.56065191070926612 0.26575809199318562 2 5 2 5 0 0 2938 21 417 3987998 55680 229.38214111328125 1.4354 397.7602 20160 12798 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14074960224 8775656 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 161 181 1 0 0 3 17 0 0 0 0 0 +519 1783880361653146300 REFRESH 19 0 0.73378753378488648 0.8279386712095399 2 11 2 11 0 0 946 15 415 3988871 56640 237.20755004882812 1.4383999999999999 364.55489999999998 13440 9752 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14075691748 9507180 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 26 25 25 30 309 0 0 0 0 15 0 0 0 0 0 +520 1783880362083362100 REFRESH 16 0 0.69107631756045695 0.3594548551959113 2 6 2 6 0 0 3877 27 418 3988472 56160 228.5322265625 1.4268000000000001 377.03899999999999 13440 8006 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14076426332 10241764 1 0 4 2 3 2 5 983040 491520 737280 491668 1248000 25 25 25 124 219 0 0 0 8 19 0 0 0 0 0 +521 1783880362502699600 REFRESH 26 0 0.73217066994576518 0.55451448040885853 1 9 1 9 0 0 2388 48 408 3988866 56640 227.68025207519531 1.4224000000000001 364.24779999999998 20160 14645 0 0 0.0020073860318362891 0.27524972350757954 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14077150716 10966148 1 0 4 3 2 1 6 983040 737280 491520 245825 1497600 25 25 25 48 285 0 0 0 3 45 0 0 0 0 0 +522 1783880362870720400 REFRESH 18 0 0.61779589713091299 0.92163543441226559 2 12 2 12 0 0 473 10 409 3988952 56640 226.72076416015625 1.4293 366.52719999999999 6720 4865 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14077876120 11691552 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 25 25 25 26 308 0 0 0 0 10 0 0 0 0 0 +523 1783880363315487100 REFRESH 33 0 0.67113482746067921 0.36712095400340705 1 7 1 7 0 0 4060 27 417 3988485 56160 227.99667358398438 1.4453 390.346 13440 8170 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14078609684 12425116 1 0 4 2 3 2 5 983040 491520 737280 491684 1248000 25 25 25 148 194 0 0 0 4 23 0 0 0 0 0 +524 1783880363767670200 REFRESH 50 0 0.73382369679775583 0.64054514480408853 2 9 2 9 0 0 1120 8 428 3988931 56640 225.72236633300781 1.4424999999999999 400.6327 13440 9330 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 14079354468 13169900 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 25 25 32 32 314 0 0 2 0 6 0 0 0 0 0 +525 1783880364155980100 REFRESH 31 0 0.64083502127440994 0.26575809199318562 2 5 2 5 0 0 3461 30 411 3988007 55680 232.85862731933594 1.4511000000000001 386.68329999999997 20160 14011 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14080081912 13897344 1 0 4 3 3 2 4 983040 737280 737280 491687 998400 25 25 26 172 163 0 0 1 12 17 0 0 0 0 0 +526 1783880364591531500 REFRESH 55 0 0.73122479144041796 0.64054514480408853 2 9 2 9 0 0 1168 13 409 3988951 56640 240.79154968261719 1.4347000000000001 381.57150000000001 13440 9485 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14080807316 14622748 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 44 26 289 0 0 0 0 13 0 0 0 0 0 +527 1783880365030112600 REFRESH 3 0 0.73391340843730646 0.64054514480408853 2 9 2 9 0 0 1297 23 408 3988969 56640 229.5572509765625 1.5044 382.42649999999998 13440 9608 0 0 0.0080209892278890783 0.22115816468665725 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14081531700 15347132 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 47 286 0 0 0 0 23 0 0 0 0 0 +528 1783880365445033400 REFRESH 34 0 0.73205378150672551 0.8356047700170357 1 12 1 12 0 0 849 20 419 3988879 56640 224.62156677246094 1.425 361.53140000000002 6720 4819 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14082267304 16082736 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 26 26 25 52 290 0 0 0 0 20 0 0 0 0 0 +529 1783880365874141300 REFRESH 32 0 0.73332238653378123 0.4608177172061329 1 8 1 8 0 0 3547 18 418 3988470 56160 222.14041137695312 1.4271 376.29930000000002 20160 14602 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14083001888 16817320 1 0 4 3 2 2 5 983040 737280 491520 491669 1248000 25 25 25 159 184 0 0 0 8 10 0 0 0 0 0 +530 1783880366282303100 REFRESH 7 0 0.73411259903770332 0.8356047700170357 1 12 1 12 0 0 974 10 407 3988978 56640 220.85836791992188 1.4273 356.60930000000002 6720 4785 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14083725252 17540684 1 0 5 1 2 2 6 1228800 245760 491520 491696 1497600 25 26 25 27 304 0 0 0 0 10 0 0 0 0 0 +531 1783880366685180000 REFRESH 29 0 0.73414196065766624 0.82027257240204421 3 10 3 10 0 0 1289 31 415 3988954 56640 220.16511535644531 1.4342999999999999 348.70929999999998 13440 9871 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14084456776 18272208 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 34 306 0 0 0 0 31 0 0 0 0 0 +532 1783880367100335000 REFRESH 49 0 0.73308433048944499 0.4454855195911413 3 6 3 6 0 0 1916 20 407 3988960 56640 220.60134887695312 1.4420999999999999 360.85629999999998 13440 8522 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14085180140 18995572 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 40 38 279 0 0 1 1 18 0 0 0 0 0 +533 1783880367514223200 REFRESH 38 0 0.73244413137713349 0.55451448040885853 1 9 1 9 0 0 2337 31 412 3988947 56640 219.33567810058594 1.4581999999999999 358.47390000000001 13440 8733 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14085908604 19724036 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 29 46 287 0 0 1 0 30 0 0 0 0 0 +534 1783880367921412300 REFRESH 22 0 0.73155312595286848 0.91396933560476989 3 11 3 11 1 0 526 12 409 3988974 56640 221.81990051269531 1.4361999999999999 354.54129999999998 6720 4778 0 0 0.0081795665873507124 0.7851579201611314 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14086634008 20449440 1 0 5 1 2 2 6 1228800 245760 491520 491693 1497600 26 25 25 26 307 0 0 0 0 12 0 0 0 0 1 +535 1783880368432539300 REFRESH 57 0 0.74118938234418663 0.27342419080068137 1 6 1 6 0 0 4096 8 420 3988474 56160 223.12754821777344 1.4459 400.02820000000003 13440 8205 0 0 0.00074883878758207024 0.3606563093705149 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14087370632 21186064 1 0 4 2 3 2 5 983040 491520 737280 491664 1248000 26 25 25 236 108 0 0 0 2 6 0 0 0 0 0 +536 1783880368797054800 REFRESH 37 0 0.67666823058608272 0.8356047700170357 1 12 1 12 1 0 1112 27 405 3988958 56640 221.02528381347656 1.419 363.11250000000001 13440 9863 0 0 0.0038589041579628232 0.32869605532234936 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14088091956 21907388 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 44 286 1 0 1 2 23 0 0 0 0 1 +537 1783880369224392500 REFRESH 41 0 0.73255392524387264 0.55451448040885853 1 9 1 9 0 0 2715 40 413 3988933 56640 220.61567687988281 1.4367000000000001 370.9819 13440 9844 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14088821440 22636872 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 25 25 25 31 307 0 0 0 1 39 0 0 0 0 0 +538 1783880369665421000 REFRESH 54 0 0.73081438147133682 0.4608177172061329 1 8 1 8 0 0 1365 14 417 3988953 56640 220.44773864746094 1.4336 384.95159999999998 13440 9181 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14089555004 23370436 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 25 25 63 279 0 0 0 1 13 0 0 0 0 0 +539 1783880370086971800 REFRESH 15 0 0.729549827123251 0.91396933560476989 3 11 3 11 0 0 326 9 411 3988891 56640 221.02220153808594 1.4351 364.98259999999999 6720 4970 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14090282448 24097880 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 25 25 25 30 306 0 0 0 0 9 0 0 0 0 0 +540 1783880370568637600 REFRESH 42 0 0.90308286310823682 0 0 4 0 4 0 0 4096 5 424 3987676 55200 223.47468566894531 1.4298 425.97829999999999 20160 12547 0 0 0 0.0051298014679344913 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14091023152 24838584 1 0 4 3 3 3 3 983040 737280 737280 737487 748800 63 25 70 188 78 0 0 0 0 5 0 0 0 0 0 +541 1783880370921248600 REFRESH 5 0 0.72681107769352959 0.8279386712095399 2 11 2 11 0 0 1003 18 417 3988940 56640 219.01516723632812 1.4266000000000001 350.8922 13440 9934 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14091756716 25572148 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 56 286 0 0 1 4 13 0 0 0 0 0 +542 1783880371399174900 REFRESH 17 0 0.74130046832235297 0.28109028960817717 0 7 0 7 0 0 4096 23 420 3987994 55680 223.06303405761719 1.4378 418.85849999999999 20160 13918 0 0 1.3067118616620927e-06 0.052083736298125863 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14092493340 26308772 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 27 175 168 0 0 0 5 18 0 0 0 0 0 +543 1783880371864999700 REFRESH 1 0 0.73180595608336385 0.36712095400340705 1 7 1 7 0 0 4017 42 412 3988472 56160 246.66018676757812 1.4419999999999999 407.5813 20160 14903 0 0 0.024280054209409825 0.94304778428878566 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14093221804 27037236 1 0 4 3 2 2 5 983040 737280 491520 491672 1248000 25 25 25 78 259 0 0 0 7 35 0 0 0 0 0 +544 1783880372301001000 REFRESH 0 0 0.73452083288626802 0.8279386712095399 2 11 2 11 0 0 989 11 416 3988886 56640 230.63040161132812 1.4399999999999999 372.0548 6720 4826 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14093954348 27769780 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 26 26 25 39 300 0 0 0 0 11 0 0 0 0 0 +545 1783880372808947300 REFRESH 11 0 0.73169818371506112 0.37478705281090291 0 8 0 8 0 0 3032 15 414 3988492 56160 237.50245666503906 1.4378 447.57100000000003 20160 14846 0 0 0 0.64819162914413719 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14094684852 28500284 1 0 4 3 2 2 5 983040 737280 491520 491692 1248000 25 25 25 129 210 0 0 1 4 10 0 0 0 0 0 +546 1783880373345090000 REFRESH 9 0 0.74134567148269626 0.27342419080068137 1 6 1 6 0 0 3739 41 413 3988015 55680 230.72358703613281 1.4370000000000001 414.96749999999997 20160 14989 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14095414336 29229768 1 0 4 3 3 2 4 983040 737280 737280 491694 998400 25 25 27 116 220 0 0 0 12 29 0 0 0 0 0 +547 1783880373784464700 REFRESH 28 0 0.7327704475267085 0.8279386712095399 2 11 2 11 0 0 697 11 405 3988949 56640 239.54022216796875 1.4467000000000001 386.95639999999997 6720 4820 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14096135660 29951092 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 25 304 0 0 0 0 11 0 0 0 0 0 +548 1783880374200119900 REFRESH 24 0 0.72963636500041174 1 4 11 4 11 0 0 508 14 399 3988945 56640 227.87686157226562 1.4245000000000001 358.56799999999998 6720 4967 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 14096850864 30666296 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 30 293 0 0 0 0 14 0 0 0 0 0 +549 1783880374646018700 REFRESH 12 0 0.73288053043618562 0.54684838160136284 2 8 2 8 0 0 2151 23 420 3988881 56640 225.14790344238281 1.4509000000000001 383.87459999999999 13440 9735 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14097587488 31402920 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 25 25 25 32 313 0 0 0 4 19 0 0 0 0 0 +550 1783880375097555900 REFRESH 30 0 0.73361109289425541 0.4608177172061329 1 8 1 8 0 0 4096 50 423 3988972 56640 227.59333801269531 1.4331 388.19330000000002 13440 8410 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14098327172 32142604 1 0 4 2 2 2 6 983040 491520 491520 491691 1497600 25 26 40 35 297 0 0 4 3 43 0 0 0 0 0 +551 1783880375610720900 REFRESH 53 0 0.73197841117559648 0.37478705281090291 0 8 0 8 1 0 4096 45 410 3988479 56160 227.74272155761719 1.4259999999999999 397.1592 13440 8050 0 0 0 0.12620928436990511 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14099053596 32869028 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 25 26 25 140 194 0 0 0 12 33 0 0 0 0 1 +552 1783880376094997700 REFRESH 20 0 0.73565967451612835 0.26575809199318562 2 5 2 5 0 0 2377 13 426 3987964 55680 239.92626953125 1.4313 426.47789999999998 20160 12572 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14099796340 33611772 1 0 4 3 3 2 4 983040 737280 737280 491643 998400 25 25 27 129 220 0 1 0 2 10 0 0 0 0 0 +553 1783880376462833800 REFRESH 36 0 0.72714790524570572 0.82027257240204421 3 10 3 10 0 0 1404 29 405 3988950 56640 226.14425659179688 1.4354 366.32830000000001 13440 9504 0 0 0.08650246521679307 0.12010890864141764 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14100517664 34333096 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 25 32 297 0 0 0 2 27 0 0 0 0 0 +554 1783880376903539000 REFRESH 21 0 0.73301540429238332 0.56218057921635434 0 10 0 10 0 0 2971 33 410 3988943 56640 226.30809020996094 1.4337 380.7552 13440 8745 0 0 0.0003727367041393018 1.0094446117570586 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14101244088 35059520 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 29 87 244 0 0 1 1 31 0 0 0 0 0 +555 1783880377371943700 REFRESH 13 0 0.74156433280163636 0.27342419080068137 1 6 1 6 0 0 4096 33 416 3987997 55680 229.37088012695312 1.4331 403.798 20160 12605 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14101976632 35792064 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 140 201 0 0 0 7 26 0 0 0 0 0 +556 1783880377839006300 REFRESH 45 0 0.73371849225393349 0.45315161839863699 2 7 2 7 0 0 2544 15 427 3988477 56160 228.67864990234375 1.4332 412.7321 20160 14698 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14102720396 36535828 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 202 150 0 0 0 1 14 0 0 0 0 0 +557 1783880378272786900 REFRESH 47 0 0.7276356609189083 0.8279386712095399 2 11 2 11 0 0 759 18 408 3988949 56640 235.49440002441406 1.4296 377.3689 13440 9965 0 0 0.014120308326235348 1.6344851170877133 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14103444780 37260212 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 30 303 0 0 0 0 18 0 0 0 0 0 +558 1783880378711842800 REFRESH 10 0 0.73477966307884268 0.64821124361158422 1 10 1 10 0 0 1391 31 415 3988944 56640 230.26687622070312 1.4346000000000001 380.68340000000001 13440 9664 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14104176304 37991736 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 28 312 1 0 0 1 29 0 0 0 0 0 +559 1783880379140196800 REFRESH 23 0 0.73070029868304243 0.74190800681430991 1 11 1 11 0 0 3660 15 411 3988973 56640 228.85069274902344 1.4408000000000001 371.1327 13440 9516 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14104903748 38719180 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 25 26 309 0 0 0 0 15 0 0 0 0 0 +560 1783880379577106300 REFRESH 27 0 0.73382264264013086 0.4608177172061329 1 8 1 8 0 0 4096 37 415 3988960 56640 227.66490173339844 1.4356 379.0856 13440 8556 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14105635272 39450704 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 26 25 41 35 288 0 0 1 2 34 0 0 0 0 0 +561 1783880380002868600 REFRESH 56 0 0.75208386493718071 0.17206132879045993 2 4 2 4 0 0 4096 47 419 3987557 55200 229.22752380371094 1.4232 424.26889999999997 20160 12025 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14106370876 40186308 1 0 4 3 3 3 3 983040 737280 737280 737468 748800 63 25 31 164 136 5 0 0 19 23 0 0 0 0 0 +562 1783880380477320700 REFRESH 46 0 0.73214447353347922 0.37478705281090291 0 8 0 8 0 0 3002 6 419 3988479 56160 229.87469482421875 1.4378 418.0521 20160 13970 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14107106480 40921912 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 26 247 96 0 0 0 2 4 0 0 0 0 0 +563 1783880380897477400 REFRESH 51 0 0.73233914746634432 0.91396933560476989 3 11 3 11 1 0 574 6 402 3988883 56640 235.33363342285156 1.4368000000000001 362.92840000000001 13440 9751 0 0 0.04522712750814354 0.26895799829731232 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 14107824744 41640176 1 0 5 2 2 1 6 1228800 491520 491520 245842 1497600 25 25 25 32 295 0 0 0 0 6 0 0 0 0 1 +564 1783880381353013200 REFRESH 25 0 0.7339263615731586 0.4608177172061329 1 8 1 8 0 0 2649 13 413 3988939 56640 227.93113708496094 1.4335 398.80849999999998 13440 8167 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14108554228 42369660 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 31 35 296 0 0 1 0 12 0 0 0 0 0 +565 1783880381811399700 REFRESH 52 0 0.73218777265293034 0.36712095400340705 1 7 1 7 0 0 2720 16 426 3988477 56160 227.02386474609375 1.4226000000000001 402.48939999999999 20160 14025 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14109296972 43112404 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 26 186 164 0 0 0 3 13 0 0 0 0 0 +566 1783880382236553700 REFRESH 4 0 0.73237777876954002 0.8356047700170357 1 12 1 12 0 0 304 6 415 3988889 56640 226.99827575683594 1.4427000000000001 369.50139999999999 13440 9714 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14110028496 43843928 1 0 5 2 2 1 6 1228800 491520 491520 245848 1497600 25 25 25 49 291 0 0 0 0 6 0 0 0 0 0 +567 1783880382656111900 REFRESH 58 0 0.72983311518554483 0.92163543441226559 2 12 2 12 0 0 563 13 413 3988928 56640 227.63417053222656 1.4238999999999999 365.35879999999997 6720 4909 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14110757980 44573412 1 0 5 1 2 2 6 1228800 245760 491520 491646 1497600 25 25 25 28 310 0 0 0 0 13 0 0 0 0 0 +568 1783880383186205200 REFRESH 40 0 0.7350563963044292 0.64821124361158422 1 10 1 10 0 0 2026 15 414 3988971 56640 225.55955505371094 1.4510000000000001 410.74630000000002 13440 9709 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14111488484 45303916 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 25 25 25 26 313 0 0 0 1 14 0 0 0 0 0 +569 1783880383642506900 REFRESH 2 0 0.73406477083147792 0.45315161839863699 2 7 2 7 0 0 4096 43 414 3988945 56640 237.36627197265625 1.4379 393.476 13440 8534 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14112218988 46034420 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 26 25 27 46 290 0 0 1 0 42 0 0 0 0 0 +570 1783880384094185700 REFRESH 8 0 0.74107646676720584 0.26575809199318562 2 5 2 5 0 0 2639 18 417 3988512 56160 227.45497131347656 1.4349000000000001 396.25349999999997 13440 8052 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14112952552 46767984 1 0 4 2 3 2 5 983040 491520 737280 491689 1248000 25 25 25 200 142 0 0 0 8 10 0 0 0 0 0 +571 1783880384526207900 REFRESH 43 0 0.73346876531939043 0.55451448040885853 1 9 1 9 0 0 3832 17 403 3988970 56640 227.08029174804688 1.4258999999999999 376.26069999999999 13440 8683 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 14113671836 47487268 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 27 25 30 30 291 0 0 0 0 17 0 0 0 0 0 +572 1783880385016023200 REFRESH 44 0 0.73235881510005851 0.36712095400340705 1 7 1 7 0 0 2822 31 421 3988449 56160 229.11897277832031 1.4678 426.93619999999999 20160 14825 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14114409480 48224912 1 0 4 3 2 2 5 983040 737280 491520 491648 1248000 25 25 26 45 300 0 1 0 2 28 0 0 0 0 0 +573 1783880385547011400 REFRESH 39 0 0.73272917257585712 0.55451448040885853 1 9 1 9 0 0 1723 11 421 3988990 56640 237.35910034179688 1.4514 418.81209999999999 13440 9720 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14115147124 48962556 1 0 4 2 2 2 6 983040 491520 491520 491709 1497600 25 25 25 52 294 0 0 0 0 11 0 0 0 0 0 +574 1783880385958925300 REFRESH 35 0 0.73537569274068582 0.8279386712095399 2 11 2 11 0 0 1216 16 405 3988879 56640 226.25497436523438 1.4350000000000001 357.66849999999999 13440 9807 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14115868448 49683880 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 26 25 25 30 299 0 0 0 0 16 0 0 0 0 0 +575 1783880386377061700 REFRESH 6 0 0.73275291176904811 0.91396933560476989 3 11 3 11 0 0 393 6 420 3988872 56640 224.73727416992188 1.4329000000000001 361.93329999999997 6720 4974 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14116605072 50420504 1 0 6 1 2 1 6 1474560 245760 491520 245831 1497600 25 25 25 31 314 0 0 0 0 6 0 0 0 0 0 +576 1783880386811045500 REFRESH 14 0 0.73527217259535815 0.65587734241908002 0 11 0 11 0 0 1963 27 408 3988962 56640 229.13229370117188 1.4277 378.17099999999999 13440 9435 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14117329456 51144888 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 39 26 292 0 0 1 0 26 0 0 0 0 0 +577 1783880389536313400 DEPTH 42 1 0.89640416309596405 0 0 4 0 4 0 0 4096 14 2584 23677856 81600 1335.7508697509766 8.6405999999999992 2670.7404999999999 120960 60122 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 14121824044 55639476 1 0 4 3 3 3 3 5898240 4423680 4423680 4426411 4492800 364 150 370 1129 571 0 0 0 0 14 0 0 0 0 0 +578 1783880392073073900 DEPTH 17 1 0.73704531501739456 0.28109028960817717 0 7 0 7 0 0 4096 44 2566 23698513 103680 1299.3013763427734 8.6463000000000001 2480.6244000000002 120960 68769 1 1 1.3067118616620927e-06 0.052083736298125863 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14126300272 60115704 1 0 4 3 3 2 4 5898240 4423680 4423680 2950974 5990400 150 150 156 604 1506 0 0 1 1 41 0 0 0 0 0 +579 1783880394549245500 DEPTH 31 1 0.73702794030418106 0.26575809199318562 2 5 2 5 0 0 3480 78 2563 23698526 103680 1317.8019866943359 8.6005000000000003 2474.7784000000001 120960 68380 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 14130773440 64588872 1 0 4 3 3 2 4 5898240 4423680 4423680 2950988 5990400 150 150 157 619 1487 0 0 12 3 63 0 0 0 0 0 +580 1783880398133414800 DEPTH 48 1 0.73704403085758718 0.26575809199318562 2 5 2 5 0 0 2942 23 2561 23698549 103680 1329.0563049316406 8.6149000000000004 3582.4429 120960 63900 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 14135244648 1951436 1 0 4 3 3 2 4 5898240 4423680 4423680 2951009 5990400 150 150 150 473 1638 1 0 0 0 22 0 0 0 0 0 +581 1783880400659319200 DEPTH 9 1 0.73706704393752398 0.27342419080068137 1 6 1 6 0 0 3749 35 2568 23698552 103680 1329.3098297119141 8.6174999999999997 2469.6349 120960 68374 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 14139722916 6429704 1 0 4 3 3 2 4 5898240 4423680 4423680 2951011 5990400 150 150 168 930 1170 0 0 0 2 33 0 0 0 0 0 +582 1783880403300124200 DEPTH 57 1 0.7351924472339757 0.27342419080068137 1 6 1 6 1 0 4096 29 2578 23698472 103680 1325.6336975097656 9.569700000000001 2522.9785999999999 120960 50745 1 0 0.00074881903816725068 0.35893128562027904 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 14144211384 10918172 1 0 4 3 3 2 4 5898240 4423680 4423680 2950918 5990400 154 150 150 1086 1038 0 0 0 0 29 0 0 0 0 1 +583 1783880405989221500 DEPTH 20 1 0.73186419997168928 0.26575809199318562 2 5 2 5 0 0 2385 31 2602 23698471 103680 1332.9318237304688 8.6039000000000012 2508.7049000000002 120960 64113 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 14148724332 15431120 1 0 4 3 3 2 4 5898240 4423680 4423680 2950935 5990400 150 150 150 423 1729 0 0 1 0 30 0 0 0 0 0 +584 1783880408541254000 DEPTH 32 1 0.72864615071632532 0.4608177172061329 1 8 1 8 0 0 3554 36 2573 23720650 125760 1324.0750122070312 8.5841999999999992 2433.4792000000002 120960 70171 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 14153207700 19914488 1 0 4 3 2 2 5 5898240 4423680 2949120 2951037 7488000 150 150 150 457 1666 0 0 1 0 35 0 0 0 0 0 +585 1783880411074847700 DEPTH 56 1 0.73814558313272804 0.17206132879045993 2 4 2 4 0 0 4096 62 2566 23677387 81600 1331.7765960693359 8.5922999999999998 2531.5771 120960 55967 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14157683928 24390716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 279 150 185 803 1149 14 0 0 2 46 0 0 0 0 0 +586 1783880413721596900 DEPTH 13 1 0.73718175939851927 0.27342419080068137 1 6 1 6 0 0 4096 53 2551 23698528 103680 1335.8284912109375 8.6516999999999999 2523.1316000000002 120960 63438 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 14162144856 28851644 1 0 4 3 3 2 4 5898240 4423680 4423680 2950992 5990400 150 150 150 509 1592 0 0 0 0 53 0 0 0 0 0 +587 1783880416160448400 DEPTH 3 1 0.72853471304675865 0.64054514480408853 2 9 2 9 0 0 1298 46 2526 23742624 147840 1316.2356872558594 8.6151999999999997 2377.8303000000001 80640 47069 1 0 0.0080209892278890783 0.22115816468665725 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 14166580284 33287072 1 0 4 2 2 2 6 5898240 2949120 2949120 2950925 8985600 150 150 150 169 1907 0 0 0 0 46 0 0 0 0 0 +588 1783880418420769000 DEPTH 10 1 0.7285571382621282 0.64821124361158422 1 10 1 10 0 0 1398 46 2561 23742707 147840 1328.3430480957031 8.5774000000000008 2205.1228999999998 80640 47153 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 14171051412 37758200 1 0 4 2 2 2 6 5898240 2949120 2949120 2951013 8985600 150 150 150 158 1953 0 0 0 5 41 0 0 0 0 0 +589 1783880420945139500 DEPTH 30 1 0.72852727528298611 0.4608177172061329 1 8 1 8 0 0 4096 67 2522 23742762 147840 1324.9577026367188 8.6032999999999991 2458.2184000000002 80640 41867 1 0 0.0010333068606564353 1.5278069806092593 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 14175482760 42189548 1 0 4 2 2 2 6 5898240 2949120 2949120 2950921 8985600 150 156 195 175 1846 0 0 7 2 58 0 0 0 0 0 +590 1783880423210840200 DEPTH 49 1 0.72850713530150535 0.4454855195911413 3 6 3 6 0 0 1927 49 2571 23731335 136320 1325.8312072753906 8.5969999999999995 2205.8987999999999 100800 53217 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 14179964088 46670876 1 0 4 3 2 2 5 5898240 3686400 2949120 2950941 8236800 150 150 173 378 1720 0 0 7 1 41 0 0 0 0 0 +591 1783880425793486100 DEPTH 45 1 0.72853164916554181 0.45315161839863699 2 7 2 7 0 0 2550 31 2578 23720615 125760 1334.6929626464844 8.6300000000000008 2518.9794000000002 120960 70141 1 0 0.37746141789507498 1.2915995853723634 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 14184452556 51159344 1 0 4 3 2 2 5 5898240 4423680 2949120 2950999 7488000 150 150 150 556 1572 0 0 0 0 31 0 0 0 0 0 +592 1783880428341630000 DEPTH 27 1 0.728556138349858 0.4608177172061329 1 8 1 8 0 0 4096 41 2565 23742796 147840 1333.4026489257812 8.6590999999999987 2489.4198000000001 80640 42381 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14188927764 55634552 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 156 150 162 158 1939 0 0 5 4 32 0 0 0 0 0 +593 1783880430963395700 DEPTH 42 1 0.80483301002272367 0 0 4 0 4 0 0 4096 13 2578 23677800 81600 1323.5875701904297 8.5797000000000008 2561.3238999999999 120960 49226 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 14193416232 60123020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 350 150 361 1184 533 0 0 0 0 13 0 0 0 0 0 +594 1783880433465821000 DEPTH 40 1 0.72871434552237602 0.64821124361158422 1 10 1 10 0 0 2040 47 2562 23742697 147840 1328.5447998046875 8.6001999999999992 2442.2206999999999 80640 46845 1 0 0.078694659344276413 0.46137713255528728 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 14197888380 64595168 1 0 4 2 2 2 6 5898240 2949120 2949120 2951003 8985600 150 150 150 158 1954 0 0 0 9 38 0 0 0 0 0 +595 1783880437116102400 DEPTH 25 1 0.72862945830586034 0.4608177172061329 1 8 1 8 0 0 2656 36 2545 23723475 128640 1323.5407104492188 8.6077999999999992 3594.3368999999998 114240 53047 1 1 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 14202343268 1941236 1 0 4 3 2 2 5 5898240 4177920 2949120 2950851 7737600 150 150 168 876 1201 0 0 2 0 33 0 0 0 0 0 +596 1783880439314722900 DEPTH 29 1 0.728308891178435 0.82027257240204421 3 10 3 10 0 0 1300 69 2583 23742597 147840 1324.2460021972656 8.5707000000000004 2144.8831 80640 45659 1 0 0.16516741445186056 1.0133634692658928 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 14206836836 6434804 1 0 4 2 2 2 6 5898240 2949120 2949120 2950902 8985600 150 150 150 156 1977 1 0 1 3 64 0 0 0 0 0 +597 1783880441513763500 DEPTH 19 1 0.72833544396279448 0.8279386712095399 2 11 2 11 0 0 949 34 2554 23741711 147840 1322.0199737548828 8.5876999999999999 2146.2671999999998 80640 46393 1 0 0.030524511601939662 0.37748740839804101 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 14211300824 10898792 1 0 5 2 2 1 6 7372800 2949120 2949120 1475457 8985600 161 150 150 155 1938 1 0 0 2 31 0 0 0 0 0 +598 1783880443717988300 DEPTH 0 1 0.7283619701659787 0.8279386712095399 2 11 2 11 0 0 998 36 2555 23741710 147840 1331.3536224365234 8.6129999999999995 2150.0731999999998 80640 44757 1 0 0.0001442316467257171 2.2553238703365661 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 14215765832 15363800 1 0 6 2 1 1 6 8847360 2949120 1474560 1475454 8985600 156 150 150 170 1929 0 0 0 3 33 0 0 0 0 0 +599 1783880445901299600 DEPTH 7 1 0.72838846983961636 0.8356047700170357 1 12 1 12 0 0 976 36 2524 23742692 147840 1311.2074127197266 8.6227999999999998 2130.3058999999998 47040 29029 1 0 0.00026819310007664712 0.68460147353777145 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 14220199220 19797188 1 0 4 2 2 2 6 7127040 1720320 2949120 2950990 8985600 150 150 150 161 1913 0 0 0 0 36 0 0 0 0 0 +600 1783880448458685700 DEPTH 1 1 0.7277752339595247 0.36712095400340705 1 7 1 7 0 0 4026 52 2574 23712865 118080 1340.9035339355469 8.6090999999999998 2500.5214000000001 120960 69963 1 0 0.024280054209409825 0.94304778428878566 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 14224683608 24281576 1 0 4 3 3 2 4 5898240 4423680 3440640 2950932 6988800 150 150 150 405 1719 0 0 3 1 48 0 0 0 0 0 +601 1783880450997094700 DEPTH 8 1 0.73675945188957637 0.26575809199318562 2 5 2 5 0 0 2639 23 2604 23702204 106560 1334.7933959960938 8.6218000000000004 2482.6351 80640 38514 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2604 1920 0 384 1 14229198596 28796564 1 0 4 2 3 3 4 5898240 2949120 4423680 4180530 6240000 150 150 150 1111 1043 0 0 0 1 22 0 0 0 0 0 +602 1783880453324109700 DEPTH 14 1 0.72891832664276679 0.65587734241908002 0 11 0 11 0 0 1973 85 2515 23742682 147840 1341.6903076171875 8.6255000000000024 2268.1100000000001 80640 44975 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 14233622804 33220772 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 156 150 158 156 1895 0 0 1 0 84 0 0 0 0 0 +603 1783880455883965500 DEPTH 2 1 0.72883233005803771 0.45315161839863699 2 7 2 7 0 0 4096 72 2554 23742755 147840 1322.9393920898438 8.5903999999999989 2497.4886999999999 80640 42654 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 14238086792 37684760 1 0 4 2 2 2 6 5898240 2949120 2949120 2950891 8985600 150 150 156 191 1907 0 0 2 0 70 0 0 0 0 0 +604 1783880458090190300 DEPTH 35 1 0.72852057206124643 0.8279386712095399 2 11 2 11 0 0 1221 78 2485 23741767 147840 1323.5816955566406 8.6264000000000003 2149.8060999999998 80640 46681 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2485 1920 0 384 1 14242480400 42078368 1 0 5 2 2 1 6 7372800 2949120 2949120 1475511 8985600 156 150 150 156 1873 0 0 0 0 78 0 0 0 0 0 +605 1783880460610091900 DEPTH 53 1 0.72787967088135375 0.37478705281090291 0 8 0 8 1 0 4096 48 2493 23731212 136320 1326.5871276855469 8.6195000000000004 2461.5518000000002 80640 39166 1 0 1.0462594597958854e-05 0.071441306162589646 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 14246882168 46480136 1 0 4 2 3 2 5 5898240 2949120 3686400 2950945 8236800 150 150 151 451 1591 0 0 0 0 48 0 0 0 0 2 +606 1783880463025762700 DEPTH 26 1 0.72790022569214197 0.55451448040885853 1 9 1 9 0 0 2398 63 2537 23720582 125760 1321.9698333740234 8.5800000000000001 2357.5502000000001 120960 70430 1 0 0.0020073860318362891 0.27524972350757954 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 14251328816 50926784 1 0 4 3 2 2 5 5898240 4423680 2949120 2950968 7488000 150 150 150 326 1761 0 0 0 6 57 0 0 0 0 0 +607 1783880465378347200 DEPTH 12 1 0.72787213590065636 0.54684838160136284 2 8 2 8 0 0 2166 64 2570 23720580 125760 1314.9306793212891 8.6068999999999996 2294.8611999999998 80640 46974 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 14255809124 55407092 1 0 5 2 2 2 5 7372800 2949120 2949120 2950965 7488000 150 150 150 349 1771 0 0 0 5 59 0 0 0 0 0 +608 1783880467757010200 DEPTH 43 1 0.72789689708937688 0.55451448040885853 1 9 1 9 0 0 3846 67 2509 23742689 147840 1339.5886077880859 8.5978999999999992 2318.9043999999999 80640 43324 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 14260227212 59825180 1 0 4 2 2 2 6 5898240 2949120 2949120 2950992 8985600 155 150 163 161 1880 0 0 0 4 63 0 0 0 0 0 +609 1783880468222644900 REFRESH 11 0 0.72784005635742277 0.37478705281090291 0 8 0 8 0 0 3036 19 418 3988484 56160 228.71757507324219 1.4305000000000001 409.15249999999997 20160 14593 0 0 0 0.64819162914413719 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14260961796 60559764 1 0 4 3 2 2 5 983040 737280 491520 491683 1248000 25 25 25 174 169 0 0 0 1 18 0 0 0 0 0 +610 1783880468644992500 REFRESH 47 0 0.7219677300465307 0.8279386712095399 2 11 2 11 0 0 760 8 407 3988939 56640 226.01318359375 1.4286000000000001 367.28739999999999 13440 9797 0 0 0.014120308326235348 1.6344851170877133 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14261685160 61283128 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 25 25 25 31 301 0 0 0 0 8 0 0 0 0 0 +611 1783880469104210900 REFRESH 54 0 0.72682980699617672 0.4608177172061329 1 8 1 8 0 0 1368 8 420 3988982 56640 226.84378051757812 1.4389000000000001 403.68720000000002 13440 9084 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14262421784 62019752 1 0 4 2 2 2 6 983040 491520 491520 491702 1497600 25 25 25 61 284 0 0 0 0 8 0 0 0 0 0 +612 1783880469527119600 REFRESH 36 0 0.72167926420839645 0.82027257240204421 3 10 3 10 1 0 1409 19 407 3988973 56640 226.90202331542969 1.4225000000000001 366.60899999999998 13440 9301 0 0 0.086502510238594926 0.11697867676045438 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14263145148 62743116 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 25 32 299 0 0 0 2 17 0 0 0 0 1 +613 1783880469955783500 REFRESH 24 0 0.72375670823008598 1 4 11 4 11 0 0 508 9 399 3988972 56640 232.55448913574219 1.4401999999999999 372.70490000000001 6720 4877 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 14263860352 63458320 1 0 5 1 2 2 6 1228800 245760 491520 491691 1497600 26 25 25 33 290 0 0 0 0 9 0 0 0 0 0 +614 1783880470445883000 REFRESH 44 0 0.72794882360312774 0.36712095400340705 1 7 1 7 0 0 2830 33 426 3988450 56160 234.534912109375 1.4336 429.4744 20160 14594 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14264603096 64201064 1 0 4 3 2 2 5 983040 737280 491520 491650 1248000 25 25 27 51 298 0 0 0 1 32 0 0 0 0 0 +615 1783880470826004100 REFRESH 26 0 0.56201741798736504 0.55451448040885853 1 9 1 9 0 0 2410 28 415 3988488 56160 227.44781494140625 1.4348000000000001 378.27640000000002 20160 13833 0 0 0.0020073860318362891 0.27524972350757954 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14265334620 64932588 1 0 4 3 2 2 5 983040 737280 491520 491687 1248000 25 25 25 77 263 0 0 0 7 21 0 0 0 0 0 +616 1783880471243396100 REFRESH 23 0 0.72516157200808118 0.74190800681430991 1 11 1 11 0 0 3663 15 411 3988967 56640 229.78048706054688 1.4379999999999999 361.18079999999998 13440 9233 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14266062064 65660032 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 25 26 309 0 0 0 0 15 0 0 0 0 0 +617 1783880471662914700 REFRESH 19 0 0.67179976260859786 0.8279386712095399 2 11 2 11 0 0 953 16 410 3988880 56640 226.38694763183594 1.4208000000000001 365.92180000000002 13440 9341 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14266788488 66386456 1 0 5 2 2 1 6 1228800 491520 491520 245839 1497600 26 25 25 33 301 0 0 0 0 16 0 0 0 0 0 +618 1783880473229940300 REFRESH 3 0 0.72278923675536655 0.64054514480408853 2 9 2 9 0 0 1300 22 411 3988967 56640 236.81741333007812 1.4389000000000001 1508.8101999999999 13440 9010 0 0 0.0080209892278890783 0.22115816468665725 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14267516012 6504 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 25 25 25 47 289 0 0 0 0 22 0 0 0 0 0 +619 1783880473717368900 REFRESH 9 0 0.73302946093633903 0.27342419080068137 1 6 1 6 0 0 3751 18 426 3988017 55680 228.19039916992188 1.4291 419.3177 20160 13891 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14268258756 749248 1 0 4 3 3 2 4 983040 737280 737280 491695 998400 25 25 28 256 92 0 0 0 5 13 0 0 0 0 0 +620 1783880474160418800 REFRESH 51 0 0.72221433513164146 0.91396933560476989 3 11 3 11 0 0 575 10 398 3988888 56640 225.55751037597656 1.4325000000000001 383.5917 13440 9751 0 0 0.04522712750814354 0.26895799829731232 4096 2048 64 1 16 60 12 4 0 398 320 0 64 0 14268972940 1463432 1 0 5 2 2 1 6 1228800 491520 491520 245847 1497600 25 25 25 28 295 0 1 0 0 9 0 0 0 0 0 +621 1783880474604512000 REFRESH 41 0 0.72821657705984122 0.55451448040885853 1 9 1 9 0 0 2726 35 418 3988942 56640 225.04345703125 1.4207000000000001 381.94729999999998 13440 9794 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14269707524 2198016 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 34 309 0 0 0 1 34 0 0 0 0 0 +622 1783880475107310600 REFRESH 42 0 0.89343884196029688 0 0 4 0 4 0 0 4096 6 422 3987671 55200 241.11923217773438 1.4386000000000001 447.536 20160 12726 0 0 0 0.0051298014679344913 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14270446188 2936680 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 63 25 70 186 78 0 0 0 0 6 0 0 0 0 0 +623 1783880475485634000 REFRESH 14 0 0.68290825425390522 0.65587734241908002 0 11 0 11 0 0 1977 22 408 3988963 56640 228.84063720703125 1.4356 376.84629999999999 13440 9100 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14271170572 3661064 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 36 26 295 0 0 1 0 21 0 0 0 0 0 +624 1783880475938643200 REFRESH 31 0 0.7331437371867684 0.26575809199318562 2 5 2 5 0 0 3486 25 427 3987999 55680 228.22808837890625 1.425 393.85860000000002 20160 12670 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14271914336 4404828 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 27 235 115 0 0 3 9 13 0 0 0 0 0 +625 1783880476355165300 REFRESH 7 0 0.72200090202443234 0.8356047700170357 1 12 1 12 0 0 979 19 406 3988947 56640 226.93484497070312 1.4433 360.25349999999997 13440 9288 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 14272636680 5127172 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 26 25 27 303 0 0 1 0 18 0 0 0 0 0 +626 1783880476741294100 REFRESH 2 0 0.70364596985840278 0.45315161839863699 2 7 2 7 0 0 4096 22 412 3988959 56640 228.55168151855469 1.4218999999999999 384.82769999999999 13440 8440 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14273365144 5855636 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 26 41 295 0 0 1 2 19 0 0 0 0 0 +627 1783880477184575400 REFRESH 55 0 0.72716045156818288 0.64054514480408853 2 9 2 9 0 0 1168 13 405 3988960 56640 242.19544982910156 1.4410000000000001 382.2627 13440 9297 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14274086468 6576960 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 45 26 284 0 0 0 0 13 0 0 0 0 0 +628 1783880477606697100 REFRESH 29 0 0.72207592479880078 0.82027257240204421 3 10 3 10 0 0 1302 15 416 3988958 56640 225.36294555664062 1.4322999999999999 366.30200000000002 13440 9697 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14274819012 7309504 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 34 307 0 0 0 1 14 0 0 0 0 0 +629 1783880478033058900 REFRESH 22 0 0.72649968202799819 0.91396933560476989 3 11 3 11 0 0 527 9 412 3988966 56640 226.86003112792969 1.4229000000000001 369.3818 6720 4796 0 0 0.0081795665873507124 0.7851579201611314 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14275547476 8037968 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 26 25 25 26 310 0 0 0 0 9 0 0 0 0 0 +630 1783880478486895600 REFRESH 57 0 0.73156245673391251 0.27342419080068137 1 6 1 6 0 0 4096 18 409 3987999 55680 229.0513916015625 1.4255 399.32319999999999 20160 14865 0 0 0.00074881903816725068 0.35893128562027904 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14276272880 8763372 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 25 162 172 0 0 0 5 13 0 0 0 0 0 +631 1783880478909846200 REFRESH 53 0 0.7233720032621247 0.37478705281090291 0 8 0 8 0 0 4096 21 408 3988523 56160 231.85203552246094 1.4312 421.2364 13440 8250 0 0 1.0462594597958854e-05 0.071441306162589646 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14276997264 9487756 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 25 26 25 220 112 0 0 0 9 12 0 0 0 0 0 +632 1783880479292375900 REFRESH 12 0 0.72237314944996589 0.54684838160136284 2 8 2 8 0 0 2173 26 422 3988491 56160 233.55186462402344 1.4401999999999999 381.20069999999998 13440 9255 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14277735928 10226420 1 0 5 2 2 2 5 1228800 491520 491520 491689 1248000 25 25 25 137 210 0 0 0 8 18 0 0 0 0 0 +633 1783880479717633800 REFRESH 58 0 0.72419037299644962 0.92163543441226559 2 12 2 12 0 0 566 12 411 3988950 56640 226.44837951660156 1.4244000000000001 368.74470000000002 6720 4890 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14278463372 10953864 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 25 25 25 27 309 0 0 0 0 12 0 0 0 0 0 +634 1783880480143831600 REFRESH 5 0 0.72222990671722243 0.8279386712095399 2 11 2 11 0 0 1008 23 418 3988969 56640 225.51756286621094 1.4325000000000001 368.6617 13440 9816 0 0 0.003626466272781753 0.38721471638072708 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14279197956 11688448 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 55 288 0 0 0 1 22 0 0 0 0 0 +635 1783880480566233700 REFRESH 6 0 0.72278624737041741 0.91396933560476989 3 11 3 11 0 0 393 7 416 3988970 56640 225.8155517578125 1.4291 366.8707 6720 5108 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14279930500 12420992 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 25 25 25 36 305 0 0 0 0 7 0 0 0 0 0 +636 1783880481058936600 REFRESH 48 0 0.73339460786744981 0.26575809199318562 2 5 2 5 0 0 2943 10 418 3987995 55680 237.76768493652344 1.4335 431.58929999999998 20160 11969 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14280665084 13155576 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 25 223 120 0 0 0 4 6 0 0 0 0 0 +637 1783880481509897100 REFRESH 30 0 0.72393098407110612 0.4608177172061329 1 8 1 8 0 0 4096 58 416 3988978 56640 227.36505126953125 1.4294 390.86360000000002 13440 8388 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14281397628 13888120 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 26 45 41 279 0 0 7 2 49 0 0 0 0 0 +638 1783880481936812700 REFRESH 16 0 0.72850577857507326 0.3594548551959113 2 6 2 6 0 0 3880 20 416 3988472 56160 229.09030151367188 1.4301999999999999 372.14569999999998 13440 8148 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14282130172 14620664 1 0 4 2 3 2 5 983040 491520 737280 491668 1248000 25 25 25 145 196 0 0 0 6 14 0 0 0 0 0 +639 1783880482424772700 REFRESH 56 0 0.74495682274809227 0.17206132879045993 2 4 2 4 0 0 4096 33 418 3987603 55200 230.42355346679688 1.4442999999999999 427.45420000000001 20160 11973 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14282864756 15355248 1 0 4 3 3 3 3 983040 737280 737280 737500 748800 65 25 31 179 118 1 0 0 9 23 0 0 0 0 0 +640 1783880482864477600 REFRESH 0 0 0.72237384123263104 0.8279386712095399 2 11 2 11 0 0 999 16 416 3988393 56160 239.01799011230469 1.4417 380.60430000000002 13440 10031 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14283597300 16087792 1 0 6 2 2 1 5 1474560 491520 491520 245832 1248000 26 26 25 54 285 0 0 3 3 10 0 0 0 0 0 +641 1783880483385016100 REFRESH 13 0 0.73350086359530042 0.27342419080068137 1 6 1 6 0 0 4096 27 417 3988010 55680 228.49842834472656 1.4435 404.85860000000002 20160 11922 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14284330864 16821356 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 204 138 0 0 0 16 11 0 0 0 0 0 +642 1783880483822004200 REFRESH 32 0 0.72426256783777987 0.4608177172061329 1 8 1 8 0 0 3561 20 417 3988462 56160 227.29420471191406 1.4333 381.22000000000003 20160 13905 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14285064428 17554920 1 0 4 3 2 2 5 983040 737280 491520 491662 1248000 25 25 25 189 153 0 0 1 7 12 0 0 0 0 0 +643 1783880484270758200 REFRESH 1 0 0.72358269253027685 0.36712095400340705 1 7 1 7 0 0 4039 26 416 3988005 55680 231.69842529296875 1.4373 394.03870000000001 20160 13814 0 0 0.024280054209409825 0.94304778428878566 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14285796972 18287464 1 0 4 3 3 2 4 983040 737280 737280 491685 998400 25 25 25 179 162 0 0 0 14 12 0 0 0 0 0 +644 1783880484692236300 REFRESH 18 0 0.72380897352705187 0.92163543441226559 2 12 2 12 0 0 473 9 410 3988931 56640 237.73388671875 1.4327000000000001 365.46789999999999 6720 4759 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14286523396 19013888 1 0 5 1 2 2 6 1228800 245760 491520 491650 1497600 25 25 25 26 309 0 0 0 0 9 0 0 0 0 0 +645 1783880485130062900 REFRESH 38 0 0.72879620246716759 0.55451448040885853 1 9 1 9 0 0 2343 23 413 3988950 56640 225.94047546386719 1.4336 380.57619999999997 13440 8586 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14287252880 19743372 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 27 34 302 0 0 1 1 21 0 0 0 0 0 +646 1783880485516602300 REFRESH 43 0 0.72270033478715456 0.55451448040885853 1 9 1 9 0 0 3856 22 402 3988964 56640 231.94111633300781 1.4295 383.6746 13440 8093 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 14287971144 20461636 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 27 25 32 33 285 0 0 0 0 22 0 0 0 0 0 +647 1783880486014037900 REFRESH 10 0 0.72348675875399238 0.64821124361158422 1 10 1 10 0 0 1399 9 419 3988950 56640 237.01708984375 1.4452 376.41800000000001 13440 9051 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14288706748 21197240 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 27 317 0 0 0 1 8 0 0 0 0 0 +648 1783880486470133400 REFRESH 50 0 0.72807054675971705 0.64054514480408853 2 9 2 9 0 0 1120 6 424 3988969 56640 226.16883850097656 1.4482999999999999 392.82830000000001 13440 9231 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14289447452 21937944 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 26 25 34 35 304 0 0 1 0 5 0 0 0 0 0 +649 1783880486897990500 REFRESH 34 0 0.72788072739413501 0.8356047700170357 1 12 1 12 0 0 853 14 419 3988868 56640 225.32403564453125 1.4222999999999999 366.65260000000001 13440 9913 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14290183056 22673548 1 0 6 2 1 1 6 1474560 491520 245760 245826 1497600 26 25 25 51 292 0 0 0 1 13 0 0 0 0 0 +650 1783880487400097300 REFRESH 25 0 0.72418561653668712 0.4608177172061329 1 8 1 8 0 0 2657 8 412 3988478 56160 229.80198669433594 1.4468000000000001 439.00130000000001 20160 14903 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14290911520 23402012 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 124 213 0 0 0 0 8 0 0 0 0 0 +651 1783880487861299900 REFRESH 40 0 0.7235834953686513 0.64821124361158422 1 10 1 10 0 0 2051 27 411 3988960 56640 225.52166748046875 1.4466000000000001 401.5301 13440 9056 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14291638964 24129456 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 25 25 25 29 307 0 1 0 1 25 0 0 0 0 0 +652 1783880488319817900 REFRESH 21 0 0.72896275140316513 0.56218057921635434 0 10 0 10 1 0 2978 23 411 3988966 56640 225.99781799316406 1.4370000000000001 399.3784 13440 8584 0 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14292366408 24856900 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 29 91 241 0 0 2 0 21 0 0 0 0 1 +653 1783880488802280300 REFRESH 46 0 0.72484783110724937 0.37478705281090291 0 8 0 8 0 0 3003 9 427 3988446 56160 230.44403076171875 1.4427000000000001 422.39659999999998 20160 13835 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14293110172 25600664 1 0 4 3 2 2 5 983040 737280 491520 491646 1248000 25 25 26 257 94 0 0 0 0 9 0 0 0 0 0 +654 1783880489278581100 REFRESH 45 0 0.72427560242998945 0.45315161839863699 2 7 2 7 0 0 2551 12 427 3988494 56160 236.83993530273438 1.4785999999999999 419.58670000000001 20160 13744 0 0 0.37746141789507498 1.2915995853723634 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14293853936 26344428 1 0 4 3 2 2 5 983040 737280 491520 491693 1248000 25 25 25 242 110 0 0 0 6 6 0 0 0 0 0 +655 1783880489699506300 REFRESH 28 0 0.72817826654642159 0.8279386712095399 2 11 2 11 0 0 697 13 408 3988947 56640 227.47648620605469 1.4306000000000001 360.67509999999999 6720 4760 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14294578320 27068812 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 25 307 0 0 0 0 13 0 0 0 0 0 +656 1783880490157922600 REFRESH 27 0 0.72432046717250531 0.4608177172061329 1 8 1 8 0 0 4096 37 417 3988485 56160 228.69914245605469 1.4472 395.20920000000001 13440 8391 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14295311884 27802376 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 26 25 25 62 279 0 0 0 9 28 0 0 0 0 0 +657 1783880490587963900 REFRESH 35 0 0.72279005096560867 0.8279386712095399 2 11 2 11 0 0 1221 15 407 3988881 56640 233.393310546875 1.4262999999999999 373.71300000000002 13440 9307 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14296035248 28525740 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 26 25 25 30 301 0 0 0 0 15 0 0 0 0 0 +658 1783880491085884600 REFRESH 4 0 0.72341148227638075 0.8356047700170357 1 12 1 12 0 0 304 6 419 3988876 56640 230.59046936035156 1.4269000000000001 371.95710000000003 13440 9814 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14296770852 29261344 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 25 25 25 33 311 0 0 0 0 6 0 0 0 0 0 +659 1783880491595900100 REFRESH 20 0 0.72915527783561962 0.26575809199318562 2 5 2 5 0 0 2386 6 431 3987993 55680 228.3714599609375 1.5077 451.38369999999998 20160 11967 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 431 320 0 64 0 14297518696 30009188 1 0 4 3 3 2 4 983040 737280 737280 491673 998400 25 25 26 155 200 0 0 1 0 5 0 0 0 0 0 +660 1783880492061156800 REFRESH 39 0 0.72868312499689458 0.55451448040885853 1 9 1 9 0 0 1725 6 416 3988932 56640 225.3701171875 1.4419 408.4237 13440 9654 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14298251240 30741732 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 25 25 25 51 290 0 0 0 0 6 0 0 0 0 0 +661 1783880492489250600 REFRESH 15 0 0.72453915623903131 0.91396933560476989 3 11 3 11 0 0 328 5 407 3988942 56640 239.10604858398438 1.4334 371.12869999999998 6720 5043 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14298974604 31465096 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 25 25 25 30 302 1 0 0 0 4 0 0 0 0 0 +662 1783880492976772800 REFRESH 17 0 0.73398426924928073 0.28109028960817717 0 7 0 7 0 0 4096 14 424 3988003 55680 239.16543579101562 1.4533 429.005 20160 12688 0 0 1.3067118616620927e-06 0.052083736298125863 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14299715308 32205800 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 26 252 96 0 0 1 2 11 0 0 0 0 0 +663 1783880493481229200 REFRESH 33 0 0.72903878292770163 0.36712095400340705 1 7 1 7 0 0 4063 8 417 3988481 56160 227.68025207519531 1.4379999999999999 392.11099999999999 13440 8049 0 0 0.00024107096410342919 0.29774101433912692 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14300448872 32939364 1 0 4 2 3 2 5 983040 491520 737280 491676 1248000 25 25 25 133 209 0 0 0 0 8 0 0 0 0 0 +664 1783880493955367100 REFRESH 52 0 0.72906049934984374 0.36712095400340705 1 7 1 7 0 0 2721 8 425 3988482 56160 235.50668334960938 1.4296 416.36250000000001 20160 13770 0 0 7.4364556679300904e-05 1.8431471660931109 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14301190596 33681088 1 0 4 3 2 2 5 983040 737280 491520 491682 1248000 25 25 26 193 156 0 0 1 1 6 0 0 0 0 0 +665 1783880494377273900 REFRESH 49 0 0.72452131052128299 0.4454855195911413 3 6 3 6 0 0 1931 17 416 3988490 56160 228.68582153320312 1.4415 364.6302 20160 14904 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14301923140 34413632 1 0 4 3 2 2 5 983040 737280 491520 491690 1248000 25 25 25 208 133 0 0 0 11 6 0 0 0 0 0 +666 1783880494799991000 REFRESH 37 0 0.72302991637671843 0.8356047700170357 1 12 1 12 0 0 1117 27 407 3988954 56640 223.18695068359375 1.4227000000000001 363.39210000000003 13440 9699 0 0 0.0038589041579628232 0.32869605532234936 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14302646504 35136996 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 43 289 1 0 2 0 24 0 0 0 0 0 +667 1783880495238356900 REFRESH 8 0 0.73335858097607498 0.26575809199318562 2 5 2 5 0 0 2642 18 411 3988076 55680 226.15449523925781 1.4454 378.04480000000001 13440 8186 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14303373948 35864440 1 0 4 2 3 3 4 983040 491520 737280 737513 998400 25 25 25 132 204 0 0 0 6 12 0 0 0 0 0 +668 1783880497940131800 DEPTH 42 1 0.88826761395357323 0 0 4 0 4 0 0 4096 22 2578 23677865 81600 1318.3375244140625 8.7339000000000002 2581.4517999999998 120960 60816 1 0 0 0.0051298014679344913 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 14307862416 40352908 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 357 150 385 1132 554 0 0 0 0 22 0 0 0 0 0 +669 1783880500481139700 DEPTH 56 1 0.74137888242394878 0.17206132879045993 2 4 2 4 0 0 4096 73 2563 23677418 81600 1322.4786834716797 8.5935999999999986 2539.2166000000002 120960 55731 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 14312335584 44826076 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 277 150 177 936 1023 14 0 1 0 58 0 0 0 0 0 +670 1783880502953987100 DEPTH 31 1 0.72941062828595515 0.26575809199318562 2 5 2 5 0 0 3493 42 2603 23694798 99840 1321.9000396728516 8.5833000000000013 2471.4621999999999 120960 63664 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 14316849552 49340044 1 0 4 3 3 3 3 5898240 4423680 4423680 3196854 5740800 150 150 158 945 1200 0 0 4 1 37 0 0 0 0 0 +671 1783880505493530300 DEPTH 48 1 0.72942518275164536 0.26575809199318562 2 5 2 5 0 0 2953 36 2556 23694957 99840 1315.6372528076172 8.5797999999999988 2478.8321000000001 120960 58685 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 14321315580 53806072 1 0 4 3 3 3 3 5898240 4423680 4423680 3196926 5740800 150 150 150 700 1406 0 0 2 2 32 0 0 0 0 0 +672 1783880508078503500 DEPTH 9 1 0.729445344563592 0.27342419080068137 1 6 1 6 0 0 3758 26 2575 23694775 99840 1312.9123840332031 8.6920999999999999 2456.7869999999998 120960 68884 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 14325800988 58291480 1 0 4 3 3 3 3 5898240 4423680 4423680 3196835 5740800 150 150 165 1278 832 0 0 0 0 26 0 0 0 0 0 +673 1783880510554961100 DEPTH 13 1 0.72946548752573515 0.27342419080068137 1 6 1 6 0 0 4096 55 2563 23694860 99840 1311.9263000488281 8.6047000000000011 2475.1781000000001 120960 57391 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 14330274156 62764648 1 0 4 3 3 3 3 5898240 4423680 4423680 3196863 5740800 150 150 150 790 1323 0 0 2 4 49 0 0 0 0 0 +674 1783880514431629200 DEPTH 57 1 0.72795204341130226 0.27342419080068137 1 6 1 6 0 0 4096 40 2533 23698608 103680 1341.0368041992188 8.6257000000000001 3631.4142000000002 120960 69798 1 0 0.00074881903816725068 0.35893128562027904 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 14334716804 98484 1 0 4 3 3 2 4 5898240 4423680 4423680 2951063 5990400 150 150 150 550 1533 0 0 0 0 40 0 0 0 0 0 +675 1783880516774481900 DEPTH 16 1 0.7241468144997707 0.3594548551959113 2 6 2 6 0 0 3884 45 2548 23717110 121920 1336.6794281005859 8.5899000000000001 2284.0282000000002 80640 38161 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 14339174672 4556352 1 0 4 2 3 3 4 5898240 2949120 4423680 3196978 7238400 150 150 150 522 1576 0 0 0 8 37 0 0 0 0 0 +676 1783880519309037100 DEPTH 11 1 0.72415765941979893 0.37478705281090291 0 8 0 8 0 0 3054 49 2568 23716755 121920 1319.7772827148438 8.6370000000000005 2474.6368000000002 120960 69773 1 0 0 0.64819162914413719 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 14343652940 9034620 1 0 4 3 3 2 4 5898240 4423680 3194880 2950980 7238400 150 150 150 805 1313 0 1 1 0 47 0 0 0 0 0 +677 1783880521899486900 DEPTH 44 1 0.72417375782277649 0.36712095400340705 1 7 1 7 0 0 2840 42 2608 23705201 110400 1353.6851806640625 9.2538 2528.1574000000001 120960 69721 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2608 1920 0 384 1 14348172008 13553688 1 0 4 3 3 2 4 5898240 4423680 3932160 2950948 6489600 150 150 158 692 1458 0 0 1 1 40 0 0 0 0 0 +678 1783880524298944600 DEPTH 38 1 0.72343200852951361 0.55451448040885853 1 9 1 9 0 0 2353 43 2525 23742639 147840 1356.874755859375 8.9725000000000001 2340.6127999999999 80640 42427 1 0 0.12560512949046146 2.1364907577361136 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 14352606416 17988096 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 150 158 173 1894 0 1 7 1 34 0 0 0 0 0 +679 1783880526878559600 DEPTH 41 1 0.72345452095611895 0.55451448040885853 1 9 1 9 0 0 2735 53 2559 23720587 125760 1378.0739288330078 9.6014999999999997 2518.1824000000001 120960 69202 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 14357075504 22457184 1 0 4 3 2 2 5 5898240 4423680 2949120 2950972 7488000 150 150 150 377 1732 0 3 2 2 46 0 0 0 0 0 +680 1783880529181892800 DEPTH 55 1 0.7221094400557877 0.64054514480408853 2 9 2 9 0 0 1170 58 2512 23742656 147840 1340.9177703857422 8.6605000000000008 2236.7718 80640 45182 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2512 1920 0 384 1 14361496652 26878332 1 0 4 2 2 2 6 5898240 2949120 2949120 2950961 8985600 150 150 166 157 1889 0 0 2 0 56 0 0 0 0 0 +681 1783880531398349400 DEPTH 34 1 0.72174636190971964 0.8356047700170357 1 12 1 12 0 0 861 40 2579 23741735 147840 1288.3253326416016 8.6436999999999991 2160.2586999999999 80640 46190 1 0 0.00020804344036005055 1.7473031373488448 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 14365986140 31367820 1 0 5 2 2 1 6 8110080 2949120 2211840 1475480 8985600 151 150 150 266 1862 0 0 0 1 39 0 0 0 0 0 +682 1783880533856385700 DEPTH 54 1 0.72092778141074909 0.4608177172061329 1 8 1 8 0 0 1376 26 2547 23742657 147840 1274.7642822265625 8.5898000000000003 2399.8265999999999 80640 45082 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 14370442988 35824668 1 0 4 2 2 2 6 5898240 2949120 2949120 2950952 8985600 150 150 150 289 1808 2 1 0 0 23 0 0 0 0 0 +683 1783880536075518100 DEPTH 23 1 0.72021176599990566 0.74190800681430991 1 11 1 11 0 0 3666 32 2530 23742686 147840 1308.0545196533203 8.5725999999999996 2162.1788999999999 80640 45195 1 0 0.019300844193410726 0.74534664091034986 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 14374882496 40264176 1 0 4 2 2 2 6 5898240 2949120 2949120 2950990 8985600 156 150 150 156 1918 0 0 0 0 32 0 0 0 0 0 +684 1783880538673411300 DEPTH 42 1 0.79697454944055857 0 0 4 0 4 1 0 4096 17 2575 23677899 81600 1286.2209625244141 8.5808 2539.3703 120960 50202 1 0 0 0.0051479695561386651 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 14379367904 44749584 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 340 150 362 1194 529 0 0 0 0 17 0 0 0 0 1 +685 1783880541216494100 DEPTH 21 1 0.72394770138131281 0.56218057921635434 0 10 0 10 0 0 2988 45 2566 23723436 128640 1332.2332458496094 8.7849000000000004 2482.5506 114240 55627 1 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14383844132 49225812 1 0 4 3 2 2 5 5898240 4177920 2949120 2950942 7737600 150 150 159 667 1440 0 0 5 2 38 0 0 0 0 0 +686 1783880543472560500 DEPTH 28 1 0.72199677579578458 0.8279386712095399 2 11 2 11 0 0 699 45 2506 23742692 147840 1344.5140533447266 8.5924999999999994 2199.1624999999999 53760 33017 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 14388259160 53640840 1 0 4 2 2 2 6 6881280 1966080 2949120 2950994 8985600 156 150 150 150 1900 0 0 1 0 44 0 0 0 0 0 +687 1783880545999835100 DEPTH 20 1 0.72149400075401582 0.26575809199318562 2 5 2 5 0 0 2394 21 2598 23694919 99840 1334.7708587646484 8.5998000000000019 2468.7280999999998 120960 58363 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 14392768028 58149708 1 0 4 3 3 3 3 5898240 4423680 4423680 3196886 5740800 150 150 156 730 1412 0 0 0 0 21 0 0 0 0 0 +688 1783880548295460700 DEPTH 22 1 0.71985478693795524 0.91396933560476989 3 11 3 11 1 0 530 39 2531 23742702 147840 1361.2216186523438 8.6465999999999994 2237.6129999999998 53760 33121 1 0 0.0084545273381526394 0.77132763056342224 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 14397208556 62590236 1 0 4 2 2 2 6 6881280 1966080 2949120 2951005 8985600 150 150 150 150 1931 0 0 0 0 39 0 0 0 0 2 +689 1783880550886783100 DEPTH 46 1 0.71984837970810467 0.37478705281090291 0 8 0 8 0 0 3006 30 2564 23712893 118080 1363.9479370117188 8.6944000000000017 2534.6545999999998 120960 69323 1 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 14401682744 67064424 1 0 4 3 3 2 4 5898240 4423680 3440640 2950956 6988800 150 150 155 1215 894 0 0 1 0 29 0 0 0 0 0 +690 1783880554597788200 DEPTH 32 1 0.71985021870370391 0.4608177172061329 1 8 1 8 0 0 3567 38 2559 23720671 125760 1387.05615234375 8.6464999999999996 3655.8244 120960 68417 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 14406151912 4424968 1 0 4 3 2 2 5 5898240 4423680 2949120 2951054 7488000 150 150 150 573 1536 0 0 3 0 35 0 0 0 0 0 +691 1783880557236109300 DEPTH 53 1 0.71970102812410297 0.37478705281090291 0 8 0 8 1 0 4096 57 2521 23720663 125760 1361.1368255615234 8.6328999999999994 2574.1138999999998 80640 39087 1 0 0 0.076141977976436764 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 14410582240 8855296 1 0 4 2 3 2 5 5898240 2949120 4423680 2951024 7488000 150 150 150 913 1158 0 0 0 3 54 0 0 0 0 3 +692 1783880559725703100 DEPTH 17 1 0.72988304563784734 0.28109028960817717 0 7 0 7 1 0 4096 44 2566 23698445 103680 1338.0219879150391 8.5913999999999984 2433.0819999999999 120960 63606 1 0 0 0.05386738446057495 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14415058468 13331524 1 0 4 3 3 2 4 5898240 4423680 4423680 2950898 5990400 150 150 156 754 1356 0 0 4 0 40 0 0 0 0 1 +693 1783880562016678400 DEPTH 8 1 0.7292464085618815 0.26575809199318562 2 5 2 5 0 0 2646 38 2527 23699441 103680 1292.12109375 8.5961999999999996 2236.2548000000002 80640 38985 1 0 0.021444022544722795 0.093876487130454683 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 14419494916 17767972 1 0 4 2 3 3 4 5898240 2949120 4423680 4426447 5990400 150 150 150 426 1651 0 0 0 0 38 0 0 0 0 0 +694 1783880564381436400 DEPTH 33 1 0.72252712533676422 0.36712095400340705 1 7 1 7 1 0 4067 33 2551 23717007 121920 1288.1424560546875 8.5960999999999999 2311.2505999999998 80640 39323 1 0 0.00024165034904502245 0.29694989293667745 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 14423955844 22228900 1 0 4 2 3 3 4 5898240 2949120 4423680 3196875 7238400 150 150 150 734 1367 0 0 0 0 33 0 0 0 0 1 +695 1783880566741556300 DEPTH 52 1 0.72254773971000241 0.36712095400340705 1 7 1 7 1 0 2735 54 2585 23705341 110400 1273.3797760009766 8.5971000000000011 2302.9087 120960 68005 1 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 14428451452 26724508 1 0 4 3 2 3 4 5898240 4423680 3686400 3196845 6489600 150 150 156 1028 1101 0 0 5 2 47 0 0 0 1 0 +696 1783880569143707700 DEPTH 30 1 0.71978101808429251 0.4608177172061329 1 8 1 8 0 0 4096 35 2543 23723424 128640 1279.6599884033203 8.5969000000000015 2344.3631 80640 40666 1 0 0.0010333068606564353 1.5278069806092593 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 14432904220 31177276 1 0 4 2 3 2 5 5898240 2949120 4177920 2950883 7737600 150 156 207 718 1312 0 0 2 2 31 0 0 0 0 0 +697 1783880571528314400 DEPTH 1 1 0.71977665932506407 0.36712095400340705 1 7 1 7 1 0 4044 33 2585 23698452 103680 1283.4293670654297 8.5950999999999986 2329.2037 120960 68608 1 0 0.033099964129757194 0.81500277267769694 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 14437399828 35672884 1 0 4 3 3 2 4 5898240 4423680 4423680 2950914 5990400 150 150 150 902 1233 0 0 0 0 33 0 0 0 0 1 +698 1783880573935940300 DEPTH 2 1 0.71979375581342198 0.45315161839863699 2 7 2 7 0 0 4096 41 2567 23723531 128640 1275.2875671386719 8.6054999999999993 2350.3616999999999 80640 41010 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 14441877076 40150132 1 0 4 2 3 2 5 5898240 2949120 4177920 2950951 7737600 150 150 156 709 1402 0 0 0 3 38 0 0 0 0 0 +699 1783880576081216500 DEPTH 49 1 0.71980795322297308 0.4454855195911413 3 6 3 6 0 0 1937 42 2537 23720543 125760 1278.1769256591797 8.6357999999999997 2090.7350000000001 120960 70296 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 14446323724 44596780 1 0 4 3 2 2 5 5898240 4423680 2949120 2950928 7488000 150 150 150 574 1513 0 0 0 1 41 0 0 0 0 0 +700 1783880576484934600 REFRESH 58 0 0.71896555693907716 0.92163543441226559 2 12 2 12 0 0 569 16 410 3988949 56640 221.55775451660156 1.4323999999999999 350.64179999999999 6720 4811 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14447050148 45323204 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 28 307 0 0 0 0 16 0 0 0 0 0 +701 1783880576896943800 REFRESH 10 0 0.71758742505265583 0.64821124361158422 1 10 1 10 0 0 1410 35 414 3988959 56640 221.91104125976562 1.4339999999999999 357.7996 13440 8870 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14447780652 46053708 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 28 311 0 0 0 1 34 0 0 0 0 0 +702 1783880577268582800 REFRESH 8 0 0.56496519128320033 0.26575809199318562 2 5 2 5 0 0 2647 14 411 3988083 55680 224.5611572265625 1.4298 370.38099999999997 13440 8112 0 0 0.021444022544722795 0.093876487130454683 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14448508096 46781152 1 0 4 2 3 3 4 983040 491520 737280 737516 998400 25 25 25 148 188 0 0 0 2 12 0 0 0 0 0 +703 1783880577682647600 REFRESH 41 0 0.70820810355505937 0.55451448040885853 1 9 1 9 0 0 2749 43 414 3988450 56160 221.20550537109375 1.4322999999999999 357.30040000000002 20160 14836 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14449238600 47511656 1 0 4 3 2 2 5 983040 737280 491520 491650 1248000 25 25 25 82 257 0 0 0 6 37 0 0 0 0 0 +704 1783880578080456000 REFRESH 34 0 0.69585112068361599 0.8356047700170357 1 12 1 12 0 0 864 18 418 3988879 56640 219.40736389160156 1.4348000000000001 341.0453 13440 9980 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14449973184 48246240 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 59 284 0 0 0 3 15 0 0 0 0 0 +705 1783880578499489300 REFRESH 50 0 0.7190317035531999 0.64054514480408853 2 9 2 9 0 0 1121 10 427 3988972 56640 220.60543823242188 1.4345000000000001 366.63150000000002 13440 9221 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14450716948 48990004 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 35 36 305 0 0 2 0 8 0 0 0 0 0 +706 1783880578873745300 REFRESH 30 0 0.56480582910066268 0.4608177172061329 1 8 1 8 0 0 4096 37 422 3988475 56160 221.81170654296875 1.4339 373.11579999999998 13440 8131 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14451455612 49728668 1 0 4 2 3 2 5 983040 491520 737280 491675 1248000 25 26 25 191 155 0 0 0 19 18 0 0 0 0 0 +707 1783880579284320200 REFRESH 51 0 0.71765153185452779 0.91396933560476989 3 11 3 11 0 0 576 10 397 3988876 56640 220.68121337890625 1.4354 355.32549999999998 13440 9687 0 0 0.04522712750814354 0.26895799829731232 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 14452168776 50441832 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 25 25 25 33 289 0 0 0 0 10 0 0 0 0 0 +708 1783880579679454500 REFRESH 38 0 0.7183151263635964 0.55451448040885853 1 9 1 9 0 0 2359 32 410 3988983 56640 219.55072021484375 1.4312 345.1644 13440 8006 0 0 0.12560512949046146 2.1364907577361136 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14452895200 51168256 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 29 44 287 0 0 1 1 30 0 0 0 0 0 +709 1783880580073770200 REFRESH 23 0 0.71464004464346309 0.74190800681430991 1 11 1 11 0 0 3677 18 407 3988965 56640 222.376953125 1.4334 342.67970000000003 13440 8663 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14453618564 51891620 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 26 25 25 28 303 0 0 0 0 18 0 0 0 0 0 +710 1783880580470066000 REFRESH 22 0 0.68388020189961674 0.91396933560476989 3 11 3 11 0 0 531 13 410 3988964 56640 222.33497619628906 1.4322999999999999 347.40899999999999 13440 9388 0 0 0.0084545273381526394 0.77132763056342224 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14454344988 52618044 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 26 308 0 0 0 0 13 0 0 0 0 0 +711 1783880580895792900 REFRESH 31 0 0.72569863110697375 0.26575809199318562 2 5 2 5 0 0 3533 62 415 3987599 55200 224.46284484863281 1.4279999999999999 372.67610000000002 20160 11906 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14455076512 53349568 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 29 80 256 0 0 0 5 57 0 0 0 0 0 +712 1783880581350707300 REFRESH 56 0 0.73814758427969696 0.17206132879045993 2 4 2 4 0 0 4096 25 421 3987631 55200 224.07884216308594 1.4298999999999999 401.9271 20160 11906 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14455814156 54087212 1 0 4 3 3 3 3 983040 737280 737280 737529 748800 60 25 31 179 126 1 0 0 3 21 0 0 0 0 0 +713 1783880581732724700 REFRESH 1 0 0.62550574691317118 0.36712095400340705 1 7 1 7 0 0 4055 27 424 3987999 55680 222.09024047851562 1.4945999999999999 380.86520000000002 20160 12671 0 0 0.033099964129757194 0.81500277267769694 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14456554860 54827916 1 0 4 3 3 2 4 983040 737280 737280 491679 998400 25 25 25 241 108 0 0 0 7 20 0 0 0 0 0 +714 1783880582147685300 REFRESH 9 0 0.72575063888082569 0.27342419080068137 1 6 1 6 0 0 3778 42 408 3987592 55200 225.10301208496094 1.4303999999999999 362.00540000000001 20160 12637 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14457279244 55552300 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 25 25 32 82 244 0 0 0 11 31 0 0 0 0 0 +715 1783880582549050800 REFRESH 3 0 0.71889707139925096 0.64054514480408853 2 9 2 9 0 0 1304 17 410 3988935 56640 221.17170715332031 1.4305000000000001 351.40570000000002 13440 8906 0 0 0.0080209892278890783 0.22115816468665725 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14458005668 56278724 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 25 25 25 48 287 0 0 0 0 17 0 0 0 0 0 +716 1783880582944011500 REFRESH 35 0 0.71757876893209349 0.8279386712095399 2 11 2 11 0 0 1221 12 405 3988880 56640 222.53567504882812 1.4308000000000001 343.25959999999998 13440 9253 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14458726992 57000048 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 26 25 25 31 298 0 0 0 0 12 0 0 0 0 0 +717 1783880583343919900 REFRESH 52 0 0.69021504159646363 0.36712095400340705 1 7 1 7 0 0 2738 19 425 3988055 55680 229.68141174316406 1.4365000000000001 398.0376 20160 12584 0 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14459468716 57741772 1 0 4 3 2 3 4 983040 737280 491520 737494 998400 25 25 29 160 186 0 0 1 4 14 0 0 0 0 0 +718 1783880583765858900 REFRESH 29 0 0.71762342691719827 0.82027257240204421 3 10 3 10 0 0 1304 10 414 3988938 56640 222.28274536132812 1.4438 362.57850000000002 13440 9749 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14460199220 58472276 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 25 25 25 35 304 0 0 0 0 10 0 0 0 0 0 +719 1783880584194251100 REFRESH 17 0 0.72590840162361836 0.28109028960817717 0 7 0 7 0 0 4096 9 423 3987986 55680 222.62681579589844 1.431 427.04770000000002 20160 12041 0 0 0 0.05386738446057495 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14460938904 59211960 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 25 25 26 248 99 0 0 0 1 8 0 0 0 0 0 +720 1783880584639500000 REFRESH 25 0 0.71824503971993359 0.4608177172061329 1 8 1 8 0 0 2658 13 416 3988475 56160 222.99545288085938 1.4351 389.94549999999998 20160 14695 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14461671448 59944504 1 0 4 3 2 2 5 983040 737280 491520 491673 1248000 25 25 25 153 188 0 0 0 1 12 0 0 0 0 0 +721 1783880585154694100 REFRESH 11 0 0.72013908227210233 0.37478705281090291 0 8 0 8 0 0 3059 22 416 3988011 55680 231.99026489257812 1.4429000000000001 453.71960000000001 20160 13838 0 0 0 0.64819162914413719 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14462403992 60677048 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 27 159 180 0 0 3 3 16 0 0 0 0 0 +722 1783880585613239200 REFRESH 27 0 0.72028623671044367 0.4608177172061329 1 8 1 8 0 0 4096 33 415 3988470 56160 236.400634765625 1.4315 401.90570000000002 13440 8347 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14463135516 61408572 1 0 4 2 3 2 5 983040 491520 737280 491663 1248000 26 25 25 106 233 0 0 0 12 21 0 0 0 0 0 +723 1783880586031792400 REFRESH 0 0 0.71773472155232354 0.8279386712095399 2 11 2 11 0 0 1000 8 418 3988398 56160 235.81082153320312 1.4326000000000001 364.66399999999999 13440 9719 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14463870100 62143156 1 0 6 2 2 1 5 1474560 491520 491520 245835 1248000 26 26 26 51 289 0 0 1 1 6 0 0 0 0 0 +724 1783880586458084600 REFRESH 32 0 0.71534641906845287 0.4608177172061329 1 8 1 8 0 0 3571 25 424 3988454 56160 224.66458129882812 1.4328000000000001 371.53859999999997 20160 12607 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14464610804 62883860 1 0 4 3 2 2 5 983040 737280 491520 491654 1248000 25 25 25 229 120 0 0 0 15 10 0 0 0 0 0 +725 1783880586867568900 REFRESH 7 0 0.71777910000601819 0.8356047700170357 1 12 1 12 0 0 980 16 405 3988948 56640 224.92672729492188 1.4333 353.95859999999999 13440 9254 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14465332128 63605184 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 26 25 28 301 0 0 1 0 15 0 0 0 0 0 +726 1783880587268052800 REFRESH 2 0 0.71518372178633061 0.45315161839863699 2 7 2 7 0 0 4096 18 410 3988473 56160 223.21253967285156 1.4993000000000001 399.23930000000001 13440 8286 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14466058552 64331608 1 0 4 2 3 2 5 983040 491520 737280 491667 1248000 25 25 25 216 119 0 0 0 7 11 0 0 0 0 0 +727 1783880587690938500 REFRESH 12 0 0.71871743449960379 0.54684838160136284 2 8 2 8 0 0 2176 12 421 3988462 56160 223.97952270507812 1.4371 368.02089999999998 13440 8988 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14466796196 65069252 1 0 5 2 2 2 5 1228800 491520 491520 491662 1248000 25 25 25 112 234 0 0 0 3 9 0 0 0 0 0 +728 1783880588075410300 REFRESH 33 0 0.71847387749032632 0.36712095400340705 1 7 1 7 0 0 4071 13 428 3988509 56160 225.259521484375 1.4322999999999999 382.60169999999999 13440 8356 0 0 0.00024165034904502245 0.29694989293667745 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 14467540980 65814036 1 0 4 2 3 2 5 983040 491520 737280 491695 1248000 25 25 25 204 149 0 0 0 3 10 0 0 0 0 0 +729 1783880588442438100 REFRESH 49 0 0.71523760418094606 0.4454855195911413 3 6 3 6 0 0 1939 17 420 3988466 56160 223.50437927246094 1.4352 365.15289999999999 20160 14015 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14468277604 66550660 1 0 4 3 2 2 5 983040 737280 491520 491666 1248000 25 25 25 220 125 0 0 0 7 10 0 0 0 0 0 +730 1783880590046741200 REFRESH 48 0 0.72605243454537072 0.26575809199318562 2 5 2 5 0 0 2975 48 414 3987616 55200 223.05996704101562 1.4348000000000001 1483.5609999999999 20160 11933 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14469008188 172824 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 25 95 244 0 0 1 6 41 0 0 0 0 0 +731 1783880590523776000 REFRESH 21 0 0.71912395130594309 0.56218057921635434 0 10 0 10 0 0 2993 25 423 3988459 56160 235.50575256347656 1.4412 419.65100000000001 20160 14895 0 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14469747872 912508 1 0 4 3 2 2 5 983040 737280 491520 491659 1248000 25 25 25 215 133 0 0 0 7 18 0 0 0 0 0 +732 1783880590939344000 REFRESH 15 0 0.71456554036990716 0.91396933560476989 3 11 3 11 0 0 331 10 408 3988959 56640 225.85037231445312 1.4341999999999999 360.8288 6720 4884 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14470472256 1636892 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 31 302 0 0 0 0 10 0 0 0 0 0 +733 1783880591354786100 REFRESH 36 0 0.71796254623369693 0.82027257240204421 3 10 3 10 0 0 1414 22 409 3988958 56640 223.07839965820312 1.4330000000000001 360.96859999999998 13440 9195 0 0 0.086502510238594926 0.11697867676045438 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14471197660 2362296 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 25 25 33 300 0 0 0 0 22 0 0 0 0 0 +734 1783880591812845400 REFRESH 13 0 0.72612721220320031 0.27342419080068137 1 6 1 6 0 0 4096 46 411 3987622 55200 231.583740234375 1.4373 401.97410000000002 20160 11952 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14471925104 3089740 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 28 108 225 0 0 1 5 40 0 0 0 0 0 +735 1783880592330883500 REFRESH 40 0 0.71932720392648686 0.64821124361158422 1 10 1 10 0 0 2055 13 415 3988962 56640 228.36837768554688 1.4345000000000001 409.84500000000003 13440 8942 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14472656628 3821264 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 28 312 0 1 0 1 11 0 0 0 0 0 +736 1783880592749962500 REFRESH 4 0 0.71479429191570076 0.8356047700170357 1 12 1 12 0 0 304 7 414 3988877 56640 224.12696838378906 1.4399999999999999 363.37130000000002 13440 9548 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14473387132 4551768 1 0 5 2 2 1 6 1228800 491520 491520 245837 1497600 25 25 25 39 300 0 0 0 0 7 0 0 0 0 0 +737 1783880593175646800 REFRESH 28 0 0.71670448486649552 0.8279386712095399 2 11 2 11 0 0 700 15 400 3988959 56640 223.10604858398438 1.8998999999999999 371.38299999999998 13440 9280 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 14474103356 5267992 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 25 25 299 0 0 0 0 15 0 0 0 0 0 +738 1783880593592211300 REFRESH 55 0 0.71745353239824805 0.64054514480408853 2 9 2 9 0 0 1171 15 407 3988950 56640 232.15615844726562 1.4287000000000001 363.7962 13440 9002 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14474826720 5991356 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 50 26 281 0 0 0 0 15 0 0 0 0 0 +739 1783880593984466200 REFRESH 6 0 0.71576119976529395 0.91396933560476989 3 11 3 11 0 0 393 9 420 3988954 56640 219.578369140625 1.4300999999999999 338.63830000000002 6720 4969 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14475563344 6727980 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 25 25 25 33 312 0 0 0 0 9 0 0 0 0 0 +740 1783880594438784700 REFRESH 19 0 0.71810943136627281 0.8279386712095399 2 11 2 11 0 0 956 25 411 3988865 56640 220.759033203125 1.4317 348.5838 13440 9158 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14476290788 7455424 1 0 5 2 2 1 6 1228800 491520 491520 245825 1497600 26 25 25 34 301 0 0 0 1 24 0 0 0 0 0 +741 1783880594856065500 REFRESH 16 0 0.72053836531785431 0.3594548551959113 2 6 2 6 0 0 3894 33 412 3988066 55680 222.14860534667969 1.4354 351.15750000000003 13440 8272 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14477019252 8183888 1 0 4 2 3 3 4 983040 491520 737280 737495 998400 25 25 25 56 281 0 0 0 9 24 0 0 0 0 0 +742 1783880595314906800 REFRESH 44 0 0.72054419538753223 0.36712095400340705 1 7 1 7 0 0 2844 15 432 3988010 55680 222.71487426757812 1.4346000000000001 403.99299999999999 20160 13705 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 432 320 0 64 0 14477768116 8932752 1 0 4 3 3 2 4 983040 737280 737280 491688 998400 25 25 25 165 192 0 0 0 6 9 0 0 0 0 0 +743 1783880595720043800 REFRESH 5 0 0.71817910490509451 0.8279386712095399 2 11 2 11 1 0 1014 17 414 3988955 56640 219.17900085449219 1.4332 351.4221 13440 9682 0 0 0.0022798964505263688 0.40163915809239625 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14478498620 9663256 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 59 280 0 0 2 2 13 0 0 0 0 1 +744 1783880596150421400 REFRESH 57 0 0.72493279035462543 0.27342419080068137 1 6 1 6 1 0 4096 26 418 3988008 55680 223.35795593261719 1.4327000000000001 379.18619999999999 20160 13918 0 0 0.00075051410247620697 0.29489497589250807 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14479233204 10397840 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 25 181 162 0 0 0 8 18 0 0 0 0 1 +745 1783880596555974300 REFRESH 18 0 0.71839903009014039 0.92163543441226559 2 12 2 12 0 0 473 10 415 3988949 56640 221.65913391113281 1.4306000000000001 356.173 6720 4715 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14479964728 11129364 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 25 25 25 26 314 0 0 0 0 10 0 0 0 0 0 +746 1783880597048536300 REFRESH 39 0 0.72076434534828815 0.55451448040885853 1 9 1 9 0 0 1725 7 420 3988961 56640 219.03564453125 1.4339 384.05290000000002 13440 9586 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14480701352 11865988 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 25 25 25 53 292 0 0 0 0 7 0 0 0 0 0 +747 1783880597443861400 REFRESH 47 0 0.71657283232259594 0.8279386712095399 2 11 2 11 0 0 764 16 414 3988943 56640 221.86393737792969 1.4360999999999999 341.72559999999999 13440 9680 0 0 0.014120308326235348 1.6344851170877133 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14481431856 12596492 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 31 308 0 0 0 0 16 0 0 0 0 0 +748 1783880597880424500 REFRESH 45 0 0.72081517841042042 0.45315161839863699 2 7 2 7 1 0 2551 10 428 3988480 56160 222.24896240234375 1.4316 384.40469999999999 20160 13697 0 0 0.37746142733162075 1.2035736239565262 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 14482176640 13341276 1 0 4 3 2 2 5 983040 737280 491520 491679 1248000 25 25 25 256 97 0 0 0 0 10 0 0 0 0 1 +749 1783880598335989100 REFRESH 42 0 0.88634556537823128 0 0 4 0 4 0 0 4096 8 428 3987692 55200 224.87142944335938 1.4323999999999999 402.0138 20160 12513 0 0 0 0.0051479695561386651 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 14482921424 14086060 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 63 25 70 189 81 0 0 0 0 8 0 0 0 0 0 +750 1783880598726621800 REFRESH 24 0 0.71895436820764203 1 4 11 4 11 0 0 508 14 399 3988944 56640 220.36787414550781 1.4325000000000001 340.07159999999999 6720 4777 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 399 320 0 64 0 14483636628 14801264 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 26 25 25 31 292 0 0 0 0 14 0 0 0 0 0 +751 1783880599239325500 REFRESH 53 0 0.71621793575430304 0.37478705281090291 0 8 0 8 0 0 4096 14 416 3988462 56160 221.93869018554688 1.4365000000000001 399.1189 13440 8222 0 0 0 0.076141977976436764 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14484369172 15533808 1 0 4 2 3 2 5 983040 491520 737280 491659 1248000 25 25 25 261 80 0 0 0 5 9 0 0 0 0 0 +752 1783880599672336300 REFRESH 14 0 0.71968661948585555 0.65587734241908002 0 11 0 11 0 0 1980 20 410 3988968 56640 222.66879272460938 1.4330000000000001 366.84500000000003 13440 8959 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14485095596 16260232 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 36 26 297 0 0 0 0 20 0 0 0 0 0 +753 1783880600100076200 REFRESH 54 0 0.71734404507747918 0.4608177172061329 1 8 1 8 0 0 1376 13 426 3988948 56640 219.97874450683594 1.4320999999999999 373.83960000000002 13440 8164 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14485838340 17002976 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 25 73 278 0 0 0 1 12 0 0 0 0 0 +754 1783880600543773400 REFRESH 20 0 0.71907078924729539 0.26575809199318562 2 5 2 5 0 0 2398 10 427 3987607 55200 223.07968139648438 1.4345000000000001 389.61270000000002 20160 12087 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14486582104 17746740 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 28 70 279 0 0 0 2 8 0 0 0 0 0 +755 1783880600948604900 REFRESH 43 0 0.71929804729832192 0.55451448040885853 1 9 1 9 0 0 3859 19 403 3988482 56160 222.42098999023438 1.4361999999999999 351.58600000000001 20160 14996 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 14487301388 18466024 1 0 4 3 2 2 5 983040 737280 491520 491682 1248000 25 25 25 31 297 0 0 0 1 18 0 0 0 0 0 +756 1783880601358403500 REFRESH 26 0 0.71936134980730659 0.55451448040885853 1 9 1 9 0 0 2415 25 419 3988476 56160 223.34976196289062 2.1236999999999999 358.61689999999999 20160 13631 0 0 0.0020073860318362891 0.27524972350757954 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14488036992 19201628 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 25 98 246 0 0 0 7 18 0 0 0 0 0 +757 1783880601865980200 REFRESH 46 0 0.7167142255008887 0.37478705281090291 0 8 0 8 0 0 3010 16 425 3988008 55680 222.75173950195312 1.4306000000000001 397.553 20160 12623 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14488778716 19943352 1 0 4 3 3 2 4 983040 737280 737280 491686 998400 25 25 26 221 128 0 0 0 4 12 0 0 0 0 0 +758 1783880602277235900 REFRESH 37 0 0.71852010808410505 0.8356047700170357 1 12 1 12 0 0 1124 23 407 3988949 56640 221.82109069824219 1.4342999999999999 354.83609999999999 13440 9667 0 0 0.0038589041579628232 0.32869605532234936 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14489502080 20666716 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 47 285 0 1 0 0 22 0 0 0 0 0 +759 1783880604731564200 DEPTH 56 1 0.73506522152538634 0.17206132879045993 2 4 2 4 0 0 4096 48 2564 23677441 81600 1286.1761322021484 8.5888999999999989 2401.3771000000002 120960 55865 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 14493976268 25140904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 310 150 176 906 1022 12 0 1 0 35 0 0 0 0 0 +760 1783880607208207500 DEPTH 42 1 0.74285726115080986 0 0 4 0 4 1 0 4096 21 2572 23678149 81600 1292.6082153320312 8.5846999999999998 2423.4106999999999 120960 60529 1 0 0 0.0051476782271835837 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 14498458616 29623252 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 341 150 396 1148 537 0 0 0 0 21 0 0 0 0 1 +761 1783880609530975500 DEPTH 31 1 0.72226550232741138 0.26575809199318562 2 5 2 5 0 0 3553 69 2550 23677450 81600 1292.0555725097656 8.5823 2321.6183999999998 120960 58121 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 14502918524 34083160 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 174 397 1679 0 0 4 0 65 0 0 0 0 0 +762 1783880612000724500 DEPTH 48 1 0.72227880796855404 0.26575809199318562 2 5 2 5 0 0 2980 40 2553 23677384 81600 1288.6643218994141 8.6866000000000003 2350.0003999999999 120960 56786 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 14507381492 38546128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 150 384 1719 0 0 5 0 35 0 0 0 0 0 +763 1783880614397815600 DEPTH 9 1 0.72229665538322141 0.27342419080068137 1 6 1 6 0 0 3793 89 2530 23677365 81600 1290.3087005615234 8.5879999999999992 2333.3434000000002 120960 64069 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 14511821000 42985636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 179 404 1647 0 0 1 0 88 0 0 0 0 0 +764 1783880616751734600 DEPTH 13 1 0.72231448735084625 0.27342419080068137 1 6 1 6 0 0 4096 52 2541 23677394 81600 1285.7507934570312 8.617700000000001 2352.8355000000001 120960 57369 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 14516271728 47436364 1 0 4 3 3 3 3 5898240 4423680 4423680 4426354 4492800 150 150 156 593 1492 0 0 1 0 51 0 0 0 0 0 +765 1783880619006865100 DEPTH 8 1 0.72183169817492554 0.26575809199318562 2 5 2 5 1 0 2649 40 2541 23688941 93120 1292.1926422119141 8.5794999999999995 2253.8661999999999 100800 46501 1 0 0.021444666976105958 0.093765866793864922 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 14520722456 51887092 1 0 4 3 3 3 3 5898240 3686400 4423680 4426456 5241600 150 150 164 794 1283 0 0 1 2 37 0 0 0 0 1 +766 1783880621506909300 DEPTH 17 1 0.72140679252686146 0.28109028960817717 0 7 0 7 0 0 4096 44 2571 23687388 92160 1278.8593139648438 8.5996000000000006 2383.4602 120960 57602 1 0 0 0.05386738446057495 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 14525203784 56368420 1 0 4 3 3 3 3 5898240 4423680 4423680 3688627 5241600 150 150 155 983 1133 0 0 2 0 42 0 0 0 0 0 +767 1783880623946663200 DEPTH 52 1 0.71642264766491692 0.36712095400340705 1 7 1 7 0 0 2746 45 2564 23699444 103680 1279.9211730957031 8.5902999999999992 2327.5351000000001 120960 62532 1 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 14529677972 60842608 1 0 4 3 2 3 4 5898240 4423680 2949120 4426468 5990400 150 150 164 573 1527 0 0 9 2 34 0 0 0 0 0 +768 1783880626124547500 DEPTH 16 1 0.71631000507504106 0.3594548551959113 2 6 2 6 0 0 3912 102 2521 23699389 103680 1289.5601501464844 9.7606999999999999 2123.5372000000002 80640 38824 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 14534108300 65272936 1 0 4 2 3 3 4 5898240 2949120 4423680 4426395 5990400 150 150 150 252 1819 0 0 0 8 94 0 0 0 0 0 +769 1783880629680715400 DEPTH 11 1 0.71632027594740877 0.37478705281090291 0 8 0 8 0 0 3077 46 2547 23698515 103680 1280.4690856933594 8.6112999999999982 3389.1804999999999 120960 68036 1 0 0 0.64819162914413719 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 14538565228 2621760 1 0 4 3 3 2 4 5898240 4423680 4423680 2950976 5990400 150 150 151 716 1380 1 1 3 0 41 0 0 0 0 0 +770 1783880632082381600 DEPTH 44 1 0.71633480205624434 0.36712095400340705 1 7 1 7 0 0 2852 42 2616 23698432 103680 1282.9001770019531 8.5924999999999994 2347.9094 120960 67862 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2616 1920 0 384 1 14543092456 7148988 1 0 4 3 3 2 4 5898240 4423680 4423680 2950894 5990400 150 150 150 712 1454 0 0 0 3 39 0 0 0 0 0 +771 1783880634545913600 DEPTH 27 1 0.71606150341838748 0.4608177172061329 1 8 1 8 0 0 4096 43 2568 23720505 125760 1285.7847137451172 8.5899000000000001 2409.5617999999999 80640 40211 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 14547570724 11627256 1 0 4 2 3 2 5 5898240 2949120 4423680 2950884 7488000 155 150 150 535 1578 0 0 0 5 38 0 0 0 0 0 +772 1783880636875193200 DEPTH 50 1 0.71488436698400082 0.64054514480408853 2 9 2 9 0 0 1128 37 2601 23742650 147840 1271.2602233886719 8.5663 2275.9985000000001 80640 45137 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2601 1920 0 384 1 14552082652 16139184 1 0 4 2 2 2 6 5898240 2949120 2949120 2950954 8985600 150 150 169 170 1962 0 0 1 0 36 0 0 0 0 0 +773 1783880639252253700 DEPTH 33 1 0.71477174077145023 0.36712095400340705 1 7 1 7 0 0 4073 28 2571 23699396 103680 1287.695556640625 8.5955000000000013 2325.9942999999998 80640 39535 1 0 0.00024165034904502245 0.29694989293667745 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 14556563980 20620512 1 0 4 2 3 3 4 5898240 2949120 4423680 4426405 5990400 150 150 150 1025 1096 0 0 0 1 27 0 0 0 0 0 +774 1783880641592304100 DEPTH 21 1 0.71447976278060943 0.56218057921635434 0 10 0 10 0 0 3000 39 2562 23720558 125760 1276.9066925048828 8.5840999999999994 2287.7465999999999 120960 70433 1 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 14561036128 25092660 1 0 4 3 2 2 5 5898240 4423680 2949120 2950944 7488000 150 150 150 627 1485 1 0 0 1 37 0 0 0 0 0 +775 1783880643979756700 DEPTH 42 1 0.78158904085190983 0 0 4 0 4 0 0 4096 21 2581 23677922 81600 1283.9147491455078 8.599499999999999 2386.0934999999999 120960 49790 1 0 0 0.0051476782271835837 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 14565527656 29584188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426308 4492800 330 150 383 1203 515 0 0 0 0 21 0 0 0 0 0 +776 1783880646392176500 DEPTH 57 1 0.72143385264468463 0.27342419080068137 1 6 1 6 0 0 4096 50 2536 23691120 96000 1286.3385467529297 8.5886999999999993 2357.6957000000002 120960 68723 1 0 0.00075051410247620697 0.29489497589250807 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 14569973284 34029816 1 0 4 3 3 3 3 5898240 4423680 4423680 3442770 5491200 150 150 150 812 1274 0 0 0 3 47 0 0 0 0 0 +777 1783880648783689400 DEPTH 45 1 0.71646285861336056 0.45315161839863699 2 7 2 7 0 0 2554 31 2579 23720572 125760 1282.9122619628906 8.5846999999999998 2339.0855000000001 120960 68040 1 0 0.37746142733162075 1.2035736239565262 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 14574462772 38519304 1 0 4 3 2 2 5 5898240 4423680 2949120 2950959 7488000 150 150 150 678 1451 0 0 0 0 31 0 0 0 0 0 +778 1783880651091081500 DEPTH 3 1 0.71440993616941784 0.64054514480408853 2 9 2 9 1 0 1308 34 2532 23742736 147840 1271.3840942382812 8.5856999999999992 2255.8112000000001 80640 44648 1 0 0.0081530752692971203 0.21650694744718907 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 14578904320 42960852 1 0 4 2 2 2 6 5898240 2949120 2949120 2951042 8985600 150 150 150 193 1889 0 0 0 0 34 0 0 0 0 2 +779 1783880653414577400 DEPTH 40 1 0.71442871044608247 0.64821124361158422 1 10 1 10 0 0 2074 48 2553 23742609 147840 1273.1781158447266 8.5849000000000011 2272.2161999999998 80640 44594 1 1 0.078694659344276413 0.46137713255528728 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 14583367288 47423820 1 0 4 2 2 2 6 5898240 2949120 2949120 2950916 8985600 150 150 150 162 1941 1 0 0 6 40 0 0 0 0 0 +780 1783880655838793600 DEPTH 25 1 0.71443417878983817 0.4608177172061329 1 8 1 8 0 0 2665 34 2547 23720674 125760 1315.8719177246094 8.5829000000000004 2372.5091000000002 120960 70244 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 14587824136 51880668 1 0 4 3 2 2 5 5898240 4423680 2949120 2951056 7488000 150 150 150 716 1381 0 0 1 0 33 0 0 0 0 0 +781 1783880657959703600 DEPTH 58 1 0.71435454841345514 0.92163543441226559 2 12 2 12 0 0 571 19 2526 23742647 147840 1290.925048828125 8.5827000000000009 2070.9333999999999 60480 36669 1 0 0.0095430491934861868 1.5827371062351756 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 14592259564 56316096 1 0 4 2 2 2 6 6635520 2211840 2949120 2950953 8985600 150 150 150 153 1923 0 0 0 0 19 0 0 0 0 0 +782 1783880660267005500 DEPTH 12 1 0.71434610739534787 0.54684838160136284 2 8 2 8 0 0 2190 51 2563 23720567 125760 1283.3546295166016 8.5855999999999995 2199.0936000000002 80640 44980 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 14596732732 60789264 1 0 5 2 2 2 5 7372800 2949120 2949120 2950954 7488000 150 150 150 306 1807 0 1 0 4 46 0 0 0 0 0 +783 1783880662714477700 DEPTH 56 1 0.72168114899035496 0.17206132879045993 2 4 2 4 0 0 4096 63 2573 23677545 81600 1290.0774688720703 8.6141999999999985 2386.7017000000001 120960 44519 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 14601216100 65272632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 318 150 176 1041 888 17 0 4 0 42 0 0 0 0 0 +784 1783880666166819800 DEPTH 20 1 0.71598418464874714 0.26575809199318562 2 5 2 5 0 0 2404 27 2581 23677376 81600 1296.362548828125 8.607899999999999 3401.0763000000002 120960 57667 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 14605707708 2655420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 162 432 1687 4 0 1 0 22 0 0 0 0 0 +785 1783880668392603800 DEPTH 14 1 0.71454747144103647 0.65587734241908002 0 11 0 11 0 0 1990 81 2502 23742634 147840 1297.4796752929688 8.5924999999999994 2167.0635000000002 80640 43730 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 14610118656 7066368 1 0 4 2 2 2 6 5898240 2949120 2949120 2950934 8985600 156 151 164 156 1875 0 0 5 0 76 0 0 0 0 0 +786 1783880670697848300 DEPTH 26 1 0.71446263572130597 0.55451448040885853 1 9 1 9 1 0 2426 73 2552 23720527 125760 1285.2811889648438 8.5790000000000006 2246.5790000000002 120960 67784 1 0 0.00075884775909900728 0.25534957531696156 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 14614580604 11528316 1 0 4 3 2 2 5 5898240 4423680 2949120 2950913 7488000 150 150 150 275 1827 0 0 1 3 69 0 0 0 0 2 +787 1783880672950755200 DEPTH 43 1 0.71444354352614892 0.55451448040885853 1 9 1 9 0 0 3874 86 2495 23720506 125760 1292.0640106201172 8.5824999999999996 2196.2035999999998 120960 68432 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2495 1920 0 384 1 14618984412 15932124 1 0 4 3 2 2 5 5898240 4423680 2949120 2950892 7488000 150 150 150 182 1863 0 0 0 4 82 0 0 0 0 0 +788 1783880675214861200 DEPTH 38 1 0.71446298110058293 0.55451448040885853 1 9 1 9 1 0 2366 37 2536 23727520 132480 1281.3396148681641 8.6430000000000007 2207.9151000000002 107520 52334 1 0 0.1248322231089211 2.3259311992693896 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 14623430040 20377752 1 0 4 3 2 2 5 5898240 3932160 2949120 2950998 7987200 150 150 157 629 1450 0 0 4 4 29 0 0 0 0 1 +789 1783880677582874900 DEPTH 41 1 0.71448240218810555 0.55451448040885853 1 9 1 9 0 0 2763 49 2559 23720663 125760 1288.0160217285156 8.5964000000000009 2310.8507 120960 69873 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 14627899128 24846840 1 0 4 3 2 2 5 5898240 4423680 2949120 2951045 7488000 150 150 150 340 1769 0 0 2 2 45 0 0 0 0 0 +790 1783880679740566700 DEPTH 10 1 0.71374705951460349 0.64821124361158422 1 10 1 10 0 0 1422 35 2552 23742641 147840 1287.6003875732422 8.702300000000001 2098.3132999999998 80640 44586 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 14632361076 29308788 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 150 150 162 1940 0 0 0 1 34 0 0 0 0 0 +791 1783880680104826900 REFRESH 43 0 0.49930057578066267 0.55451448040885853 1 9 1 9 0 0 3885 24 406 3988460 56160 224.43724060058594 1.4299999999999999 363.00999999999999 20160 14764 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 14633083420 30031132 1 0 4 3 2 2 5 983040 737280 491520 491660 1248000 25 25 25 136 195 0 0 0 3 21 0 0 0 0 0 +792 1783880680537459700 REFRESH 48 0 0.71859659389975983 0.26575809199318562 2 5 2 5 0 0 2984 20 418 3987596 55200 226.50880432128906 1.4305000000000001 377.51549999999997 20160 11971 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14633818004 30765716 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 26 145 197 0 0 2 4 14 0 0 0 0 0 +793 1783880680903539700 REFRESH 38 0 0.50934851650346191 0.55451448040885853 1 9 1 9 0 0 2369 21 417 3988467 56160 223.0067138671875 1.4266000000000001 364.68520000000001 20160 15003 0 0 0.1248322231089211 2.3259311992693896 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14634551568 31499280 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 178 164 0 0 0 8 13 0 0 0 0 0 +794 1783880681299202700 REFRESH 35 0 0.71305567385146873 0.8279386712095399 2 11 2 11 0 0 1222 7 402 3988874 56640 222.40786743164062 1.429 342.79880000000003 13440 9126 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 14635269832 32217544 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 26 25 25 31 295 0 0 0 0 7 0 0 0 0 0 +795 1783880681670460500 REFRESH 40 0 0.61924261589829099 0.64821124361158422 1 10 1 10 0 0 2086 34 409 3988950 56640 221.38983154296875 1.4276 370.15159999999997 13440 8126 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 14635995236 32942948 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 31 303 0 0 0 3 31 0 0 0 0 0 +796 1783880682026735400 REFRESH 10 0 0.51845074758247811 0.64821124361158422 1 10 1 10 0 0 1432 29 420 3988960 56640 222.44454956054688 1.4285000000000001 355.041 13440 8150 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14636731860 33679572 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 25 25 27 318 0 0 0 0 29 0 0 0 0 0 +797 1783880682424643100 REFRESH 24 0 0.71342599205169532 1 4 11 4 11 0 0 509 10 398 3988947 56640 223.70509338378906 1.4307000000000001 344.53370000000001 6720 4754 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 398 320 0 64 0 14637446044 34393756 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 26 25 25 31 291 0 1 0 0 9 0 0 0 0 0 +798 1783880682847971800 REFRESH 33 0 0.71083231077692899 0.36712095400340705 1 7 1 7 0 0 4096 46 416 3988053 55680 223.42349243164062 1.4297 368.73669999999998 13440 8227 0 0 0.00024165034904502245 0.29694989293667745 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14638178588 35126300 1 0 4 2 3 3 4 983040 491520 737280 737490 998400 25 25 25 57 284 0 0 0 6 40 0 0 0 0 0 +799 1783880683251716600 REFRESH 15 0 0.71033532343899464 0.91396933560476989 3 11 3 11 0 0 331 5 412 3988942 56640 222.30117797851562 1.4332 350.58640000000003 6720 4949 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14638907052 35854764 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 25 25 33 304 0 0 0 0 5 0 0 0 0 0 +800 1783880683681831500 REFRESH 26 0 0.59954525603238706 0.55451448040885853 1 9 1 9 0 0 2437 37 414 3988482 56160 223.13880920410156 1.4301999999999999 372.86860000000001 20160 12369 0 0 0.00075884775909900728 0.25534957531696156 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14639637556 36585268 1 0 4 3 2 2 5 983040 737280 491520 491682 1248000 25 25 25 141 198 0 0 0 12 25 0 0 0 0 0 +801 1783880684133013400 REFRESH 39 0 0.71375483280764151 0.55451448040885853 1 9 1 9 0 0 1728 9 417 3988964 56640 221.39596557617188 1.4274 399.24250000000001 13440 9677 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14640371120 37318832 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 25 25 25 52 290 0 0 0 0 9 0 0 0 0 0 +802 1783880684565237500 REFRESH 57 0 0.71778256591267453 0.27342419080068137 1 6 1 6 0 0 4096 23 404 3987598 55200 225.57490539550781 1.4282999999999999 382.26999999999998 20160 12649 0 0 0.00075051410247620697 0.29489497589250807 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 14641091424 38039136 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 25 131 198 0 0 0 4 19 0 0 0 0 0 +803 1783880684971170500 REFRESH 28 0 0.71203257968131417 0.8279386712095399 2 11 2 11 0 0 702 10 401 3988974 56640 223.76856994628906 1.4393 352.43759999999997 13440 9232 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 14641808668 38756380 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 25 25 300 0 0 0 0 10 0 0 0 0 0 +804 1783880685414186900 REFRESH 11 0 0.71239805556789682 0.37478705281090291 0 8 0 8 1 0 3079 14 424 3987986 55680 223.52000427246094 1.4297 389.28980000000001 20160 12519 0 0 0 0.64708044592029246 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14642549372 39497084 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 25 25 28 214 132 1 0 0 0 13 0 0 0 0 1 +805 1783880685829027800 REFRESH 49 0 0.71172865908314753 0.4454855195911413 3 6 3 6 0 0 1944 15 422 3988474 56160 223.46240234375 1.4318 359.7226 20160 13796 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14643288036 40235748 1 0 4 3 2 2 5 983040 737280 491520 491674 1248000 25 25 25 215 132 0 0 0 4 11 0 0 0 0 0 +806 1783880686249236400 REFRESH 3 0 0.70946287663714613 0.64054514480408853 2 9 2 9 0 0 1314 26 407 3988960 56640 221.02528381347656 1.4281999999999999 360.69729999999998 13440 8129 0 0 0.0081530752692971203 0.21650694744718907 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14644011400 40959112 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 48 284 0 0 0 2 24 0 0 0 0 0 +807 1783880686654282600 REFRESH 7 0 0.71331843096282432 0.8356047700170357 1 12 1 12 0 0 984 14 405 3988965 56640 222.73945617675781 1.4301999999999999 351.91090000000003 13440 9203 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14644732724 41680436 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 26 25 32 297 0 0 1 0 13 0 0 0 0 0 +808 1783880687028704500 REFRESH 41 0 0.64962016602677131 0.55451448040885853 1 9 1 9 0 0 2767 25 414 3988445 56160 223.15315246582031 1.4259999999999999 373.27370000000002 20160 13994 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14645463228 42410940 1 0 4 3 2 2 5 983040 737280 491520 491645 1248000 25 25 25 107 232 0 0 0 10 15 0 0 0 0 0 +809 1783880687426469700 REFRESH 36 0 0.71336465147911587 0.82027257240204421 3 10 3 10 1 0 1422 34 403 3988963 56640 222.93606567382812 1.4271 344.97210000000001 13440 9056 0 0 0.086511988468663273 0.11912197799773534 4096 2048 64 1 16 60 12 4 0 403 320 0 64 0 14646182512 43130224 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 25 34 293 0 0 0 0 34 0 0 0 0 1 +810 1783880687830407000 REFRESH 34 0 0.71206646176265487 0.8356047700170357 1 12 1 12 0 0 866 18 413 3988881 56640 220.85232543945312 1.4272 349.94779999999997 13440 9761 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14646911996 43859708 1 0 5 2 2 1 6 1228800 491520 491520 245841 1497600 25 25 25 57 281 0 0 0 0 18 0 0 0 0 0 +811 1783880688266546900 REFRESH 27 0 0.7118381917077472 0.4608177172061329 1 8 1 8 0 0 4096 34 417 3988488 56160 223.82695007324219 1.4263999999999999 384.51990000000001 13440 8141 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14647645560 44593272 1 0 4 2 3 2 5 983040 491520 737280 491686 1248000 26 25 25 216 125 0 0 0 21 13 0 0 0 0 0 +812 1783880688682904500 REFRESH 32 0 0.7120444450100496 0.4608177172061329 1 8 1 8 0 0 3575 13 423 3988468 56160 225.06086730957031 1.4288000000000001 365.93579999999997 20160 12426 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14648385244 45332956 1 0 4 3 2 2 5 983040 737280 491520 491667 1248000 25 25 25 216 132 0 0 0 3 10 0 0 0 0 0 +813 1783880689082274100 REFRESH 55 0 0.71335712822254138 0.64054514480408853 2 9 2 9 0 0 1173 13 405 3988950 56640 224.0552978515625 1.427 350.2636 13440 8965 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 14649106568 46054280 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 48 27 280 0 0 0 0 13 0 0 0 0 0 +814 1783880689480475200 REFRESH 29 0 0.71345873553125205 0.82027257240204421 3 10 3 10 0 0 1304 12 413 3988923 56640 221.91719055175781 1.4334 349.08969999999999 13440 9552 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14649836052 46783764 1 0 4 2 2 2 6 983040 491520 491520 491643 1497600 25 25 25 35 303 0 0 0 0 12 0 0 0 0 0 +815 1783880689930844500 REFRESH 45 0 0.71216839103037388 0.45315161839863699 2 7 2 7 0 0 2555 9 423 3988490 56160 224.12287902832031 1.4305000000000001 401.4085 20160 12435 0 0 0.37746142733162075 1.2035736239565262 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14650575736 47523448 1 0 4 3 2 2 5 983040 737280 491520 491689 1248000 25 25 25 258 90 0 0 0 3 6 0 0 0 0 0 +816 1783880690374815700 REFRESH 1 0 0.71282893576016182 0.36712095400340705 1 7 1 7 0 0 4056 11 427 3987989 55680 224.37785339355469 1.4426000000000001 393.11059999999998 20160 12684 0 0 0.033099964129757194 0.81500277267769694 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14651319500 48267212 1 0 4 3 3 2 4 983040 737280 737280 491668 998400 25 25 25 238 114 0 0 0 2 9 0 0 0 0 0 +817 1783880690816119600 REFRESH 13 0 0.71901906799785387 0.27342419080068137 1 6 1 6 0 0 4096 24 416 3987559 55200 223.53919982910156 1.4297 390.37349999999998 20160 12290 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14652052044 48999756 1 0 4 3 3 3 3 983040 737280 737280 737471 748800 25 25 26 159 181 0 0 0 2 22 0 0 0 0 0 +818 1783880691253610000 REFRESH 46 0 0.71349680717420272 0.37478705281090291 0 8 0 8 0 0 3015 17 420 3988013 55680 224.45465087890625 1.4302999999999999 385.1087 20160 12599 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14652788668 49736380 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 25 246 99 0 0 0 5 12 0 0 0 0 0 +819 1783880691698567100 REFRESH 44 0 0.71265639847727003 0.36712095400340705 1 7 1 7 0 0 2854 13 436 3987964 55680 226.11772155761719 1.4298999999999999 394.00189999999998 20160 12563 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 436 320 0 64 0 14653541612 50489324 1 0 4 3 3 2 4 983040 737280 737280 491643 998400 25 25 25 216 145 0 0 0 5 8 0 0 0 0 0 +820 1783880692091453800 REFRESH 37 0 0.71359635129186605 0.8356047700170357 1 12 1 12 0 0 1128 27 407 3988964 56640 222.32780456542969 1.4309000000000001 343.12909999999999 13440 9619 0 0 0.0038589041579628232 0.32869605532234936 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14654264976 51212688 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 25 25 25 43 289 1 0 0 0 26 0 0 0 0 0 +821 1783880692538048100 REFRESH 25 0 0.71039953485310403 0.4608177172061329 1 8 1 8 0 0 2666 10 425 3988442 56160 225.04856872558594 1.4277 394.49900000000002 20160 13785 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14655006700 51954412 1 0 4 3 2 2 5 983040 737280 491520 491642 1248000 25 25 25 176 174 0 0 0 2 8 0 0 0 0 0 +822 1783880692955755300 REFRESH 50 0 0.71057659958963415 0.64054514480408853 2 9 2 9 0 0 1128 9 418 3988975 56640 220.68325805664062 1.4339 366.20330000000001 13440 8476 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14655741284 52688996 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 26 25 37 37 293 0 0 1 0 8 0 0 0 0 0 +823 1783880693410383500 REFRESH 53 0 0.71293871708989753 0.37478705281090291 0 8 0 8 0 0 4096 11 420 3988490 56160 222.0052490234375 1.4315 404.6857 13440 8127 0 0 0 0.076141977976436764 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14656477908 53425620 1 0 4 2 3 2 5 983040 491520 737280 491685 1248000 25 25 25 266 79 0 0 0 2 9 0 0 0 0 0 +824 1783880693880269800 REFRESH 42 0 0.88072033404600614 0 0 4 0 4 1 0 4096 6 426 3987713 55200 223.97660827636719 1.4353 418.68799999999999 20160 13119 0 0 0 0.0020976619931286026 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14657220652 54168364 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 61 25 71 188 81 0 0 0 0 6 0 0 0 0 1 +825 1783880694273574400 REFRESH 20 0 0.71313704811357259 0.26575809199318562 2 5 2 5 0 0 2406 14 427 3987582 55200 224.29405212402344 1.4272 392.16390000000001 20160 12104 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 427 320 0 64 0 14657964416 54912128 1 0 4 3 3 3 3 983040 737280 737280 737496 748800 25 25 29 140 208 0 0 0 0 14 0 0 0 0 0 +826 1783880694718860900 REFRESH 21 0 0.71021502566726502 0.56218057921635434 0 10 0 10 0 0 3002 16 421 3988494 56160 223.91091918945312 1.4307000000000001 394.30610000000001 20160 14034 0 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14658702060 55649772 1 0 4 3 2 2 5 983040 737280 491520 491694 1248000 25 25 25 243 103 0 0 0 4 12 0 0 0 0 0 +827 1783880695118942600 REFRESH 18 0 0.71387113116489487 0.92163543441226559 2 12 2 12 0 0 473 8 411 3988956 56640 223.1910400390625 1.4306000000000001 351.60570000000001 6720 4662 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14659429504 56377216 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 26 310 0 0 0 0 8 0 0 0 0 0 +828 1783880695534971600 REFRESH 31 0 0.71920629103940459 0.26575809199318562 2 5 2 5 0 0 3568 31 418 3987609 55200 225.39878845214844 1.4320999999999999 365.34690000000001 20160 11985 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14660164088 57111800 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 30 127 211 0 0 0 2 29 0 0 0 0 0 +829 1783880695959081100 REFRESH 9 0 0.71921875473352204 0.27342419080068137 1 6 1 6 0 0 3820 46 412 3987555 55200 224.44749450683594 1.4297 371.13830000000002 20160 11948 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14660892552 57840264 1 0 4 3 3 3 3 983040 737280 737280 737471 748800 25 25 31 134 197 0 0 0 9 37 0 0 0 0 0 +830 1783880696402614300 REFRESH 4 0 0.70814271232437265 0.8356047700170357 1 12 1 12 0 0 305 6 421 3988881 56640 220.63717651367188 1.4298 347.13690000000003 13440 9559 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14661630196 58577908 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 25 25 25 50 296 0 0 1 0 5 0 0 0 0 0 +831 1783880696834256000 REFRESH 54 0 0.71397393814579835 0.4608177172061329 1 8 1 8 0 0 1379 20 413 3988481 56160 223.05996704101562 1.4287000000000001 381.64170000000001 13440 8154 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14662359680 59307392 1 0 4 2 3 2 5 983040 491520 737280 491679 1248000 25 25 25 35 303 0 0 0 1 19 0 0 0 0 0 +832 1783880697223677500 REFRESH 0 0 0.71181580265975364 0.8279386712095399 2 11 2 11 0 0 1001 12 414 3988390 56160 222.46502685546875 1.4436 340.61709999999999 13440 9750 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 14663090184 60037896 1 0 6 2 2 1 5 1474560 491520 491520 245830 1248000 26 26 27 70 265 0 0 0 0 12 0 0 0 0 0 +833 1783880697627487700 REFRESH 16 0 0.7129088409651706 0.3594548551959113 2 6 2 6 0 0 3921 33 416 3988066 55680 226.04595947265625 1.4314 352.85660000000001 13440 8219 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14663822728 60770440 1 0 4 2 3 3 4 983040 491520 737280 737501 998400 25 25 25 83 258 0 0 0 8 25 0 0 0 0 0 +834 1783880698060993700 REFRESH 2 0 0.71225858059746483 0.45315161839863699 2 7 2 7 0 0 4096 16 416 3988473 56160 222.75276184082031 1.4318 381.54910000000001 13440 8262 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14664555272 61502984 1 0 4 2 3 2 5 983040 491520 737280 491669 1248000 25 25 25 194 147 0 0 0 2 14 0 0 0 0 0 +835 1783880698453298100 REFRESH 5 0 0.71388255766106945 0.8279386712095399 2 11 2 11 0 0 1019 16 416 3988953 56640 222.10456848144531 1.4294 343.74919999999997 13440 9722 0 0 0.0022798964505263688 0.40163915809239625 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14665287816 62235528 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 56 285 0 0 1 1 14 0 0 0 0 0 +836 1783880698850372400 REFRESH 51 0 0.71416007836422879 0.91396933560476989 3 11 3 11 0 0 577 12 397 3988878 56640 222.21311950683594 1.4315 347.82049999999998 13440 9588 0 0 0.04522712750814354 0.26895799829731232 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 14666000980 62948692 1 0 5 2 2 1 6 1228800 491520 491520 245838 1497600 25 25 25 27 295 0 0 0 0 12 0 0 0 0 0 +837 1783880699244049800 REFRESH 47 0 0.71239371913357841 0.8279386712095399 2 11 2 11 0 0 768 15 410 3988966 56640 222.65446472167969 1.4326000000000001 343.85719999999998 13440 9672 0 0 0.014120308326235348 1.6344851170877133 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14666727404 63675116 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 31 304 0 0 0 0 15 0 0 0 0 0 +838 1783880699644335300 REFRESH 14 0 0.71005724549902627 0.65587734241908002 0 11 0 11 0 0 1992 27 412 3988940 56640 225.84422302246094 1.4286000000000001 350.38440000000003 13440 8471 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14667455868 64403580 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 56 26 279 0 0 2 0 25 0 0 0 0 0 +839 1783880700110266700 REFRESH 56 0 0.72889544445216636 0.17206132879045993 2 4 2 4 0 0 4096 30 422 3987630 55200 224.93798828125 1.4728000000000001 411.55950000000001 20160 12067 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14668194532 65142244 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 68 25 32 190 107 6 0 1 2 21 0 0 0 0 0 +840 1783880700514204800 REFRESH 58 0 0.70952773270816061 0.92163543441226559 2 12 2 12 0 0 571 19 410 3988969 56640 222.72000122070312 1.4303999999999999 351.81229999999999 13440 9432 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14668920956 65868668 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 25 25 25 28 307 0 0 0 0 19 0 0 0 0 0 +841 1783880700969228000 REFRESH 19 0 0.71399236568696145 0.8279386712095399 2 11 2 11 0 0 957 12 410 3988874 56640 221.51679992675781 1.4305000000000001 349.4221 13440 9123 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14669647380 66595092 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 26 25 25 34 300 0 0 0 1 11 0 0 0 0 0 +842 1783880702430204000 REFRESH 23 0 0.71153094673527006 0.74190800681430991 1 11 1 11 0 0 3682 20 408 3988974 56640 223.65414428710938 1.4255 1406.7834 13440 8539 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14670371844 211584 1 0 4 2 2 2 6 983040 491520 491520 491694 1497600 26 25 25 28 304 0 0 0 0 20 0 0 0 0 0 +843 1783880702837546200 REFRESH 8 0 0.71899892956742883 0.26575809199318562 2 5 2 5 0 0 2653 15 408 3987574 55200 225.5677490234375 1.4346000000000001 356.78070000000002 20160 14869 0 0 0.021444666976105958 0.093765866793864922 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14671096228 935968 1 0 4 3 3 3 3 983040 737280 737280 737490 748800 25 25 25 82 251 0 0 0 3 12 0 0 0 0 0 +844 1783880703333919000 REFRESH 52 0 0.71321468872099658 0.36712095400340705 1 7 1 7 0 0 2749 19 426 3988092 55680 224.6297607421875 1.4305000000000001 383.71730000000002 20160 11940 0 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14671838972 1678712 1 0 4 3 2 3 4 983040 737280 491520 737530 998400 25 25 30 206 140 0 0 2 8 9 0 0 0 0 0 +845 1783880703743977500 REFRESH 12 0 0.71030033439774076 0.54684838160136284 2 8 2 8 0 0 2200 27 423 3988478 56160 223.90374755859375 1.4278999999999999 356.87479999999999 20160 14068 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14672578656 2418396 1 0 4 3 2 2 5 983040 737280 491520 491677 1248000 25 25 25 160 188 0 0 0 11 16 0 0 0 0 0 +846 1783880704220147500 REFRESH 17 0 0.71864931822049205 0.28109028960817717 0 7 0 7 0 0 4096 24 419 3987588 55200 224.91136169433594 1.4301999999999999 417.61110000000002 20160 11879 0 0 0 0.05386738446057495 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 14673314260 3154000 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 29 186 154 0 0 0 6 18 0 0 0 0 0 +847 1783880704637688900 REFRESH 22 0 0.71062893187699405 0.91396933560476989 3 11 3 11 0 0 531 14 410 3988947 56640 224.92568969726562 1.4291 361.95830000000001 13440 9174 0 0 0.0084545273381526394 0.77132763056342224 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14674040684 3880424 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 26 309 0 0 0 0 14 0 0 0 0 0 +848 1783880705044504500 REFRESH 6 0 0.71129195211992302 0.91396933560476989 3 11 3 11 0 0 394 11 416 3988959 56640 221.64991760253906 1.4300999999999999 353.17239999999998 6720 4949 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14674773228 4612968 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 25 25 25 38 303 0 0 0 0 11 0 0 0 0 0 +849 1783880705538332200 REFRESH 30 0 0.71254874157014836 0.4608177172061329 1 8 1 8 0 0 4096 17 423 3988487 56160 223.6600341796875 1.4282999999999999 386.86939999999998 13440 8166 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14675512912 5352652 1 0 4 2 3 2 5 983040 491520 737280 491687 1248000 25 26 25 194 153 0 0 0 2 15 0 0 0 0 0 +850 1783880708035436900 DEPTH 42 1 0.87550130342050281 0 0 4 0 4 0 0 4096 9 2582 23677990 81600 1302.6048126220703 8.5743000000000009 2442.1999999999998 120960 63034 1 0 0 0.0020976619931286026 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 14680005460 9845200 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 336 150 401 1173 522 0 0 0 0 9 0 0 0 0 0 +851 1783880710465840700 DEPTH 48 1 0.71550209031788792 0.26575809199318562 2 5 2 5 0 0 2992 51 2565 23677435 81600 1302.5281677246094 8.5785 2376.9823999999999 120960 56925 1 1 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14684480668 14320408 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 150 552 1563 1 0 4 0 45 0 0 0 0 0 +852 1783880712877651900 DEPTH 13 1 0.71551805507778976 0.27342419080068137 1 6 1 6 0 0 4096 45 2557 23677437 81600 1296.5255279541016 8.5820000000000007 2351.1759999999999 120960 57317 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 14688947716 18787456 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 159 759 1339 0 0 1 0 44 0 0 0 0 0 +853 1783880715324027400 DEPTH 57 1 0.71464833446217635 0.27342419080068137 1 6 1 6 1 0 4096 40 2533 23677291 81600 1301.0176086425781 8.5884 2387.9940000000001 120960 63744 1 0 0.00072704292337801338 0.29479870694170524 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 14693390284 23230024 1 0 4 3 3 3 3 5898240 4423680 4423680 4426376 4492800 150 150 150 408 1675 0 0 0 0 40 0 0 0 0 1 +854 1783880717676513800 DEPTH 20 1 0.71013611845198121 0.26575809199318562 2 5 2 5 0 0 2411 30 2583 23677474 81600 1305.3235015869141 8.5891999999999999 2351.3742999999999 120960 57347 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 14697883852 27723592 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 162 582 1539 0 0 5 0 25 0 0 0 0 0 +855 1783880720010383200 DEPTH 46 1 0.70993642505012478 0.37478705281090291 0 8 0 8 0 0 3022 39 2553 23698478 103680 1296.3401947021484 8.573599999999999 2332.5450999999998 120960 62457 1 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 14702346820 32186560 1 0 4 3 3 2 4 5898240 4423680 4423680 2950943 5990400 150 150 150 1072 1031 0 0 0 0 39 0 0 0 0 0 +856 1783880722518766700 DEPTH 39 1 0.7092107391224155 0.55451448040885853 1 9 1 9 0 0 1734 40 2580 23742663 147840 1287.3943023681641 8.604099999999999 2337.3712999999998 80640 46545 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 14706837328 36677068 1 0 4 2 2 2 6 5898240 2949120 2949120 2950966 8985600 150 150 150 172 1958 0 1 0 0 39 0 0 0 0 0 +857 1783880724993077000 DEPTH 1 1 0.70911092801778608 0.36712095400340705 1 7 1 7 0 0 4067 39 2601 23694821 99840 1293.6038360595703 8.5785999999999998 2366.9405000000002 120960 63061 1 0 0.033099964129757194 0.81500277267769694 4096 2048 384 12 96 360 72 24 0 2601 1920 0 384 1 14711349256 41188996 1 0 4 3 3 3 3 5898240 4423680 4423680 3196870 5740800 150 150 150 1028 1123 1 0 0 0 38 0 0 0 0 0 +858 1783880727428723800 DEPTH 31 1 0.71561726519678159 0.26575809199318562 2 5 2 5 0 0 3582 69 2556 23677400 81600 1299.56689453125 8.5738000000000003 2322.8629999999998 120960 56947 1 0 0.038936988723796265 1.1279054507249475 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 14715815284 45655024 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 150 150 180 604 1472 0 0 2 0 67 0 0 0 0 0 +859 1783880729817066800 DEPTH 9 1 0.7156294488375281 0.27342419080068137 1 6 1 6 0 0 3830 58 2541 23677401 81600 1300.0080718994141 8.5823 2327.1642000000002 120960 58673 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 14720266012 50105752 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 186 537 1518 0 0 0 1 57 0 0 0 0 0 +860 1783880732196405200 DEPTH 54 1 0.70981983287967676 0.4608177172061329 1 8 1 8 0 0 1382 27 2545 23720616 125760 1286.2515258789062 8.6099999999999994 2321.8701999999998 114240 51829 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 14724720820 54560560 1 0 4 3 2 2 5 5898240 4177920 3194880 2950999 7488000 150 150 150 305 1790 0 0 0 0 27 0 0 0 0 0 +861 1783880734617175900 DEPTH 53 1 0.70916633856478706 0.37478705281090291 0 8 0 8 0 0 4096 33 2527 23701364 106560 1280.2601165771484 8.6275999999999993 2364.9225000000001 114240 47884 1 0 0 0.076141977976436764 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 14729157268 58997008 1 0 4 3 3 2 4 5898240 4177920 4423680 2950918 6240000 150 150 150 1313 764 0 0 2 0 31 0 0 0 0 0 +862 1783880736842038000 DEPTH 16 1 0.70900088448931564 0.3594548551959113 2 6 2 6 0 0 3932 75 2524 23691676 96000 1297.90771484375 8.5998999999999999 2170.7037999999998 94080 44348 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 14733590656 63430396 1 0 4 3 3 3 3 5898240 3440640 4423680 4426361 5491200 150 150 152 430 1642 0 0 0 8 67 0 0 0 0 0 +863 1783880740304504200 DEPTH 11 1 0.70901333279926226 0.37478705281090291 0 8 0 8 0 0 3090 40 2542 23698560 103680 1289.2078094482422 8.5732999999999997 3406.2440000000001 120960 62487 1 0 0 0.64708044592029246 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 14738042484 773952 1 0 4 3 3 2 4 5898240 4423680 4423680 2951013 5990400 150 150 156 935 1151 0 2 8 0 30 0 0 0 0 0 +864 1783880742697096700 DEPTH 44 1 0.70902387503187425 0.36712095400340705 1 7 1 7 0 0 2863 49 2634 23687419 92160 1296.0667266845703 8.5774000000000008 2336.9457000000002 120960 62713 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 360 72 24 0 2634 1920 0 384 1 14742588072 5319540 1 0 4 3 3 3 3 5898240 4423680 4423680 3688681 5241600 150 150 150 1074 1110 0 0 0 0 49 0 0 0 0 0 +865 1783880744839806200 DEPTH 55 1 0.70898659609940318 0.64054514480408853 2 9 2 9 0 0 1180 61 2521 23742704 147840 1300.2907409667969 8.6059999999999999 2088.6759999999999 80640 43727 1 0 0.10610032731418205 0.62450675493366981 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 14747018400 9749868 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 150 150 168 162 1891 0 1 1 0 59 0 0 0 0 0 +866 1783880747268708400 DEPTH 42 1 0.78350806308048015 0 0 4 0 4 1 0 4096 17 2577 23685359 89280 1292.2400512695312 8.5737000000000005 2427.6936999999998 120960 52185 1 0 0 0.00210303155049236 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 14751505848 14237316 1 0 4 3 3 3 3 5898240 4423680 4423680 3934634 4992000 338 150 399 1132 558 0 0 0 0 17 0 0 0 0 2 +867 1783880749737765800 DEPTH 56 1 0.7257504488557861 0.17206132879045993 2 4 2 4 0 0 4096 64 2565 23677533 81600 1298.5261993408203 8.5778999999999996 2408.5237999999999 120960 55961 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14755981056 18712524 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 308 150 173 1020 914 13 0 4 1 46 0 0 0 0 0 +868 1783880751853162300 DEPTH 51 1 0.70887307745449113 0.91396933560476989 3 11 3 11 1 0 578 14 2510 23742587 147840 1282.329833984375 8.8397000000000006 2066.2386999999999 60480 36540 1 0 0.045173217832498953 0.26957161600298651 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 14760400164 23131632 1 0 4 2 2 2 6 6635520 2211840 2949120 2950893 8985600 150 150 150 150 1910 0 0 0 2 12 0 0 0 0 1 +869 1783880753976883000 DEPTH 24 1 0.70872351197812089 1 4 11 4 11 0 0 510 39 2509 23742658 147840 1284.7728424072266 8.5751000000000008 2071.4254000000001 67200 39583 1 0 0.027869521123281102 1.4468046609733554 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 14764818252 27549720 1 0 4 2 2 2 6 6389760 2457600 2949120 2950962 8985600 156 150 150 151 1902 0 2 0 0 37 0 0 0 0 0 +870 1783880756160300000 DEPTH 37 1 0.70870166682265945 0.8356047700170357 1 12 1 12 1 0 1129 31 2554 23742672 147840 1283.4345855712891 8.5804999999999989 2069.0120000000002 80640 46758 1 0 0.0038499446600468007 0.32779416058590172 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 14769282240 32013708 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 150 150 150 175 1929 0 1 0 1 29 0 0 0 0 1 +871 1783880758268030800 DEPTH 5 1 0.70871104904005389 0.8279386712095399 2 11 2 11 1 0 1023 42 2568 23742627 147840 1283.1221618652344 8.5998999999999981 2050.9771999999998 80640 47246 1 0 0.0022620206129065545 0.40144345592853958 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 14773760508 36491976 1 0 4 2 2 2 6 5898240 2949120 2949120 2950932 8985600 150 150 150 289 1829 0 1 1 1 39 0 0 0 0 1 +872 1783880760379861000 DEPTH 36 1 0.70872870014244704 0.82027257240204421 3 10 3 10 0 0 1423 27 2539 23742706 147840 1285.2033233642578 8.5762 2060.6846999999998 80640 45234 1 0 0.086511988468663273 0.11912197799773534 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 14778209196 40940664 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 156 150 150 151 1932 0 0 0 0 27 0 0 0 0 0 +873 1783880762488858600 DEPTH 29 1 0.70874123237482611 0.82027257240204421 3 10 3 10 0 0 1311 73 2595 23742590 147840 1282.8344879150391 8.5910999999999991 2052.7629000000002 80640 47248 1 0 0.16516741445186056 1.0133634692658928 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 14782715004 45446472 1 0 4 2 2 2 6 5898240 2949120 2949120 2950897 8985600 150 150 150 156 1989 0 0 0 3 70 0 0 0 0 0 +874 1783880764763252900 DEPTH 8 1 0.71546076848746276 0.26575809199318562 2 5 2 5 0 0 2656 40 2516 23677383 81600 1301.4192199707031 8.5776000000000003 2218.9036999999998 120960 69869 1 0 0.021444666976105958 0.093765866793864922 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 14787140232 49871700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 150 355 1711 0 0 0 1 39 0 0 0 0 0 +875 1783880767203343400 DEPTH 17 1 0.71511764643450704 0.28109028960817717 0 7 0 7 0 0 4096 54 2562 23677438 81600 1294.529541015625 8.5766000000000009 2381.6727000000001 120960 55682 1 0 0 0.05386738446057495 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 14791612380 54343848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 162 686 1414 0 0 2 2 50 0 0 0 0 0 +876 1783880769577404200 DEPTH 52 1 0.70933581957981517 0.36712095400340705 1 7 1 7 0 0 2761 47 2579 23677523 81600 1292.5419616699219 8.5754999999999999 2317.3957 120960 57644 1 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 14796101868 58833336 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 173 1046 1060 0 0 6 0 41 0 0 0 0 0 +877 1783880771687640800 DEPTH 19 1 0.70881538357969198 0.8279386712095399 2 11 2 11 0 0 963 38 2554 23742698 147840 1282.7709503173828 8.5728000000000009 2056.6925000000001 80640 42947 1 0 0.030524511601939662 0.37748740839804101 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 14800565856 63297324 1 0 4 2 2 2 6 5898240 2949120 2949120 2951001 8985600 160 150 150 170 1924 0 0 0 3 35 0 0 0 0 0 +878 1783880774845066700 DEPTH 7 1 0.70883388467188846 0.8356047700170357 1 12 1 12 0 0 985 46 2532 23742659 147840 1282.6205749511719 8.6098999999999997 3103.6743000000001 80640 45122 1 0 0.00026819310007664712 0.68460147353777145 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 14805007484 630268 1 0 4 2 2 2 6 5898240 2949120 2949120 2950964 8985600 150 150 150 156 1926 0 0 1 0 45 0 0 0 0 0 +879 1783880777223033900 DEPTH 32 1 0.70842675942725775 0.4608177172061329 1 8 1 8 0 0 3588 39 2577 23701368 106560 1287.5663452148438 8.6489000000000011 2326.6001000000001 120960 62269 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 14809494932 5117716 1 0 4 3 3 2 4 5898240 4423680 4177920 2950946 6240000 150 150 150 1102 1025 0 0 4 1 34 0 0 0 0 0 +880 1783880779652705000 DEPTH 30 1 0.70830075807993031 0.4608177172061329 1 8 1 8 0 0 4096 30 2565 23709587 114240 1292.2964172363281 8.5769000000000002 2376.2357999999999 80640 39163 1 0 0.0010333068606564353 1.5278069806092593 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14813970140 9592924 1 0 4 2 3 3 4 5898240 2949120 4423680 3688750 6739200 150 156 150 945 1164 0 0 0 3 27 0 0 0 0 0 +881 1783880782051915500 DEPTH 2 1 0.70829620029333995 0.45315161839863699 2 7 2 7 0 0 4096 56 2551 23709541 114240 1288.8916625976562 8.5689000000000011 2343.6695 80640 39837 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 14818431068 14053852 1 0 4 2 3 3 4 5898240 2949120 4423680 3688708 6739200 150 150 150 708 1393 0 0 0 11 45 0 0 0 0 0 +882 1783880782427118200 REFRESH 52 0 0.51518222125474278 0.36712095400340705 1 7 1 7 0 0 2773 29 420 3987656 55200 224.45773315429688 1.4422999999999999 373.91320000000002 20160 12075 0 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14819167692 14790476 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 108 237 0 0 0 6 23 0 0 0 0 0 +883 1783880782814772500 REFRESH 4 0 0.70012450848395302 0.8356047700170357 1 12 1 12 0 0 306 8 417 3988886 56640 220.78874206542969 1.4325000000000001 338.5419 13440 9549 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14819901256 15524040 1 0 5 2 2 1 6 1228800 491520 491520 245845 1497600 25 25 25 45 297 0 0 0 0 8 0 0 0 0 0 +884 1783880783208491500 REFRESH 6 0 0.70661757293219996 0.91396933560476989 3 11 3 11 0 0 394 10 416 3988957 56640 220.44671630859375 1.4311 345.1182 6720 4865 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14820633800 16256584 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 25 25 25 42 299 0 0 0 0 10 0 0 0 0 0 +885 1783880783624041300 REFRESH 40 0 0.70565696354284291 0.64821124361158422 1 10 1 10 0 0 2098 23 411 3988964 56640 222.36381530761719 1.4347000000000001 365.81299999999999 13440 8189 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 14821361244 16984028 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 31 305 0 0 0 2 21 0 0 0 0 0 +886 1783880784026150900 REFRESH 49 0 0.70837527120360066 0.4454855195911413 3 6 3 6 0 0 1950 21 400 3987991 55680 225.10797119140625 1.4294 347.31900000000002 20160 13704 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 14822077468 17700252 1 0 4 3 3 2 4 983040 737280 737280 491671 998400 25 25 25 40 285 0 0 0 4 17 0 0 0 0 0 +887 1783880784461730700 REFRESH 27 0 0.70839204078108131 0.4608177172061329 1 8 1 8 0 0 4096 19 425 3988490 56160 223.20947265625 1.7007000000000001 384.61009999999999 13440 8151 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14822819192 18441976 1 0 4 2 3 2 5 983040 491520 737280 491689 1248000 26 25 25 244 105 0 0 0 6 13 0 0 0 0 0 +888 1783880784877716200 REFRESH 33 0 0.70810291577407747 0.36712095400340705 1 7 1 7 0 0 4096 41 420 3988094 55680 223.0118408203125 1.4330000000000001 360.60730000000001 13440 8286 0 0 0.00024165034904502245 0.29694989293667745 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14823555816 19178600 1 0 4 2 3 3 4 983040 491520 737280 737530 998400 25 25 25 59 286 0 0 0 4 37 0 0 0 0 0 +889 1783880785320481800 REFRESH 44 0 0.70518852672189092 0.36712095400340705 1 7 1 7 0 0 2879 35 420 3987604 55200 225.48786926269531 1.4298 385.84890000000001 20160 11897 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14824292440 19915224 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 26 52 292 0 0 0 2 33 0 0 0 0 0 +890 1783880785702550300 REFRESH 2 0 0.54385787575024314 0.45315161839863699 2 7 2 7 0 0 4096 37 413 3988070 55680 222.58073425292969 1.4316 380.83109999999999 13440 8172 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14825021924 20644708 1 0 4 2 3 3 4 983040 491520 737280 737508 998400 25 25 25 115 223 0 0 0 12 25 0 0 0 0 0 +891 1783880786102412400 REFRESH 47 0 0.70770477403465892 0.8279386712095399 2 11 2 11 0 0 768 21 410 3988954 56640 223.28012084960938 1.4475 346.04599999999999 13440 9550 0 0 0.014120308326235348 1.6344851170877133 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14825748348 21371132 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 25 31 304 0 0 0 0 21 0 0 0 0 0 +892 1783880786447443200 REFRESH 5 0 0.66354873922931179 0.8279386712095399 2 11 2 11 0 0 1026 16 424 3988940 56640 222.46099853515625 1.4293 343.79820000000001 13440 8987 0 0 0.0022620206129065545 0.40144345592853958 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14826489052 22111836 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 70 279 0 1 0 4 11 0 0 0 0 0 +893 1783880786789226400 REFRESH 19 0 0.61355996293521509 0.8279386712095399 2 11 2 11 0 0 966 18 406 3988947 56640 221.65606689453125 1.4312 340.60770000000002 13440 9891 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 14827211396 22834180 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 26 25 25 36 294 0 0 0 0 18 0 0 0 0 0 +894 1783880787240821400 REFRESH 11 0 0.70527254918036419 0.37478705281090291 0 8 0 8 0 0 3092 10 425 3988010 55680 225.07212829589844 1.4278 395.40649999999999 20160 11893 0 0 0 0.64708044592029246 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14827953120 23575904 1 0 4 3 3 2 4 983040 737280 737280 491689 998400 25 25 27 225 123 1 0 2 1 6 0 0 0 0 0 +895 1783880787638099800 REFRESH 24 0 0.70341718175742562 1 4 11 4 11 0 0 510 11 391 3988955 56640 222.77938842773438 1.4339 342.60719999999998 13440 9344 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 391 320 0 64 0 14828660164 24282948 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 25 32 283 0 0 0 0 11 0 0 0 0 0 +896 1783880787988591900 REFRESH 29 0 0.6836134088950373 0.82027257240204421 3 10 3 10 0 0 1313 9 422 3988944 56640 223.204345703125 1.4331 349.28739999999999 13440 8849 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14829398828 25021612 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 38 309 0 0 0 3 6 0 0 0 0 0 +897 1783880788423926100 REFRESH 8 0 0.691909438138265 0.26575809199318562 2 5 2 5 0 0 2660 16 408 3987596 55200 225.14175415039062 1.4392 377.26740000000001 20160 13912 0 0 0.021444666976105958 0.093765866793864922 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14830123212 25745996 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 25 106 227 0 0 0 1 15 0 0 0 0 0 +898 1783880788831300000 REFRESH 12 0 0.70622472611996989 0.54684838160136284 2 8 2 8 0 0 2203 11 425 3988485 56160 222.27558898925781 1.4312 354.54790000000003 20160 13811 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14830864936 26487720 1 0 4 3 2 2 5 983040 737280 491520 491685 1248000 25 25 25 119 231 0 0 0 0 11 0 0 0 0 0 +899 1783880789252945000 REFRESH 50 0 0.70593852977209226 0.64054514480408853 2 9 2 9 0 0 1130 15 418 3988471 56160 223.92729187011719 1.4311 365.95479999999998 20160 14966 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14831599520 27222304 1 0 4 3 2 2 5 983040 737280 491520 491671 1248000 25 25 25 32 311 0 0 0 1 14 0 0 0 0 0 +900 1783880789698519700 REFRESH 39 0 0.70567876029888521 0.55451448040885853 1 9 1 9 0 0 1735 8 422 3988935 56640 221.96429443359375 1.4349000000000001 390.73540000000003 13440 8833 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14832338184 27960968 1 0 4 2 2 2 6 983040 491520 491520 491654 1497600 25 25 25 56 291 0 0 1 0 7 0 0 0 0 0 +901 1783880790114362900 REFRESH 51 0 0.70390654038007705 0.91396933560476989 3 11 3 11 0 0 578 13 394 3988942 56640 222.25920104980469 1.4258 351.03149999999999 13440 9960 0 0 0.045173217832498953 0.26957161600298651 4096 2048 64 1 16 60 12 4 0 394 320 0 64 0 14833048288 28671072 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 25 25 30 289 0 0 0 0 13 0 0 0 0 0 +902 1783880790537580200 REFRESH 3 0 0.70596099884924124 0.64054514480408853 2 9 2 9 0 0 1315 17 410 3988951 56640 221.73081970214844 1.8467 366.76760000000002 13440 8252 0 0 0.0081530752692971203 0.21650694744718907 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14833774712 29397496 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 25 51 284 0 0 0 2 15 0 0 0 0 0 +903 1783880790967202300 REFRESH 9 0 0.71236476860128839 0.27342419080068137 1 6 1 6 0 0 3842 27 413 3987626 55200 225.29023742675781 1.4255 372.2679 20160 11933 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 14834504196 30126980 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 32 139 192 0 0 0 6 21 0 0 0 0 0 +904 1783880791374871900 REFRESH 36 0 0.70376075963116069 0.82027257240204421 3 10 3 10 0 0 1424 17 408 3988954 56640 221.50143432617188 1.4271 351.56900000000002 13440 8518 0 0 0.086511988468663273 0.11912197799773534 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14835228580 30851364 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 25 37 295 0 0 0 1 16 0 0 0 0 0 +905 1783880791829647200 REFRESH 45 0 0.70792339195923093 0.45315161839863699 2 7 2 7 0 0 2555 8 429 3988469 56160 223.8773193359375 1.4291 398.37 20160 12311 0 0 0.37746142733162075 1.2035736239565262 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 14835974384 31597168 1 0 4 3 2 2 5 983040 737280 491520 491668 1248000 25 25 25 240 114 0 0 0 0 8 0 0 0 0 0 +906 1783880792264442800 REFRESH 43 0 0.70636011741027183 0.55451448040885853 1 9 1 9 0 0 3889 17 407 3988476 56160 225.31993103027344 1.6852 377.41579999999999 20160 14608 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14836697748 32320532 1 0 4 3 2 2 5 983040 737280 491520 491676 1248000 25 25 25 137 195 0 0 0 1 16 0 0 0 0 0 +907 1783880792746828000 REFRESH 1 0 0.70565253805843753 0.36712095400340705 1 7 1 7 0 0 4096 70 412 3987624 55200 225.31788635253906 1.4293 374.36059999999998 20160 11813 0 0 0.033099964129757194 0.81500277267769694 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14837426212 33048996 1 0 4 3 3 3 3 983040 737280 737280 737542 748800 25 25 25 59 278 0 0 0 6 64 0 0 0 0 0 +908 1783880793181616500 REFRESH 31 0 0.71244324522835178 0.26575809199318562 2 5 2 5 0 0 3599 29 415 3987594 55200 226.18623352050781 1.4271 379.0548 20160 12088 0 0 0.038936988723796265 1.1279054507249475 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14838157736 33780520 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 30 144 191 0 0 0 4 25 0 0 0 0 0 +909 1783880793626138100 REFRESH 13 0 0.71245491896185364 0.27342419080068137 1 6 1 6 0 0 4096 28 415 3987572 55200 224.97894287109375 1.4301999999999999 388.17380000000003 20160 12139 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 14838889260 34512044 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 27 180 158 0 0 0 4 24 0 0 0 0 0 +910 1783880794024460500 REFRESH 18 0 0.70756706140988368 0.92163543441226559 2 12 2 12 0 0 473 7 410 3988955 56640 223.42880249023438 1.4302999999999999 345.87009999999998 6720 4589 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14839615684 35238468 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 26 309 0 0 0 0 7 0 0 0 0 0 +911 1783880794454429800 REFRESH 41 0 0.70644431119751627 0.55451448040885853 1 9 1 9 0 0 2783 32 418 3988461 56160 222.88485717773438 1.4326000000000001 375.91489999999999 20160 13749 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14840350268 35973052 1 0 4 3 2 2 5 983040 737280 491520 491660 1248000 25 25 25 139 204 0 0 0 3 29 0 0 0 0 0 +912 1783880794846698500 REFRESH 7 0 0.70389635527757688 0.8356047700170357 1 12 1 12 0 0 988 16 404 3988951 56640 221.73081970214844 1.4323999999999999 340.5684 13440 8606 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 14841070572 36693356 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 26 25 27 301 0 0 0 0 16 0 0 0 0 0 +913 1783880795283874000 REFRESH 54 0 0.7062198800870918 0.4608177172061329 1 8 1 8 0 0 1386 16 421 3988010 55680 224.47923278808594 1.4268000000000001 382.1506 20160 15087 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 14841808216 37431000 1 0 4 3 3 2 4 983040 737280 737280 491690 998400 25 25 31 116 224 0 0 1 1 14 0 0 0 0 0 +914 1783880795696824600 REFRESH 28 0 0.70840556887943651 0.8279386712095399 2 11 2 11 0 0 705 16 410 3988958 56640 224.49372863769531 1.4273 357.37009999999998 13440 9185 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14842534640 38157424 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 25 25 309 0 0 0 0 16 0 0 0 0 0 +915 1783880796113154700 REFRESH 38 0 0.70652052595056669 0.55451448040885853 1 9 1 9 0 0 2370 18 423 3988482 56160 223.27398681640625 1.4297 359.66489999999999 20160 14697 0 0 0.1248322231089211 2.3259311992693896 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 14843274324 38897108 1 0 4 3 2 2 5 983040 737280 491520 491682 1248000 25 25 25 184 164 0 0 0 5 13 0 0 0 0 0 +916 1783880796548492900 REFRESH 57 0 0.71176260710044315 0.27342419080068137 1 6 1 6 1 0 4096 23 417 3987583 55200 225.56979370117188 1.4357 378.7835 20160 11909 0 0 0.00072745160714816242 0.25517034831030827 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14844007888 39630672 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 25 173 169 0 0 0 9 14 0 0 0 0 1 +917 1783880796930569400 REFRESH 30 0 0.70431493234587994 0.4608177172061329 1 8 1 8 0 0 4096 35 422 3988080 55680 222.95654296875 1.4303999999999999 380.70330000000001 13440 8091 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14844746552 40369336 1 0 4 2 3 3 4 983040 491520 737280 737516 998400 25 26 25 120 226 0 0 0 11 24 0 0 0 0 0 +918 1783880797336700700 REFRESH 23 0 0.70737014561642897 0.74190800681430991 1 11 1 11 0 0 3692 27 412 3988967 56640 225.35682678222656 1.4320999999999999 349.46359999999999 13440 8491 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14845475016 41097800 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 25 26 310 0 0 0 0 27 0 0 0 0 0 +919 1783880797745051500 REFRESH 55 0 0.70483272251771156 0.64054514480408853 2 9 2 9 0 0 1181 9 407 3988961 56640 223.38150024414062 1.4292 355.15089999999998 13440 8400 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 14846198380 41821164 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 49 26 282 0 0 1 0 8 0 0 0 0 0 +920 1783880798173961600 REFRESH 25 0 0.70748016124091673 0.4608177172061329 1 8 1 8 0 0 2687 37 408 3988001 55680 225.52371215820312 1.4296 374.59469999999999 20160 13603 0 0 8.159044023305312e-05 1.6948230691725725 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14846922764 42545548 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 25 51 282 0 0 0 9 28 0 0 0 0 0 +921 1783880798583350500 REFRESH 0 0 0.70781587478763508 0.8279386712095399 2 11 2 11 0 0 1002 12 422 3988395 56160 225.42131042480469 1.4316 355.92489999999998 20160 14979 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 14847661428 43284212 1 0 6 3 1 1 5 1474560 737280 245760 245834 1248000 26 26 29 74 267 0 0 2 1 9 0 0 0 0 0 +922 1783880799037547700 REFRESH 46 0 0.70695184139604095 0.37478705281090291 0 8 0 8 0 0 3022 9 424 3987990 55680 223.99591064453125 1.4287000000000001 399.46159999999998 20160 11846 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14848402132 44024916 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 25 266 83 0 0 0 1 8 0 0 0 0 0 +923 1783880799458957000 REFRESH 26 0 0.70671248151802069 0.55451448040885853 1 9 1 9 0 0 2441 19 418 3988465 56160 223.11935424804688 1.4280999999999999 366.65910000000002 20160 12255 0 0 0.00075884775909900728 0.25534957531696156 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14849136716 44759500 1 0 4 3 2 2 5 983040 737280 491520 491665 1248000 25 25 25 114 229 0 0 0 2 17 0 0 0 0 0 +924 1783880799921819600 REFRESH 16 0 0.70574220856419045 0.3594548551959113 2 6 2 6 0 0 3938 30 410 3987588 55200 225.02400207519531 1.4289000000000001 355.30090000000001 20160 14881 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14849863140 45485924 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 25 57 278 0 0 0 6 24 0 0 0 0 0 +925 1783880800329309000 REFRESH 34 0 0.70850632318437412 0.8356047700170357 1 12 1 12 0 0 873 23 416 3988889 56640 222.72615051269531 1.4300999999999999 353.94510000000002 13440 9759 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14850595684 46218468 1 0 5 2 2 1 6 1228800 491520 491520 245848 1497600 25 25 25 61 280 0 0 0 0 23 0 0 0 0 0 +926 1783880800704046000 REFRESH 32 0 0.70458742234808569 0.4608177172061329 1 8 1 8 0 0 3595 26 426 3987987 55680 224.22425842285156 1.4294 373.61430000000001 20160 11966 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 14851338428 46961212 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 25 25 25 202 149 0 0 0 9 17 0 0 0 0 0 +927 1783880801153736900 REFRESH 21 0 0.70694680272300725 0.56218057921635434 0 10 0 10 0 0 3003 14 425 3988465 56160 223.95904541015625 1.4289000000000001 396.19130000000001 20160 13820 0 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14852080152 47702936 1 0 4 3 2 2 5 983040 737280 491520 491664 1248000 25 25 25 248 102 0 0 0 3 11 0 0 0 0 0 +928 1783880801569778800 REFRESH 14 0 0.70639745946326582 0.65587734241908002 0 11 0 11 0 0 1997 29 410 3988966 56640 225.56877136230469 1.4293 359.90660000000003 13440 8490 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14852806576 48429360 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 43 26 290 0 0 1 0 28 0 0 0 0 0 +929 1783880802071503300 REFRESH 17 0 0.71206475108668554 0.28109028960817717 0 7 0 7 1 0 4096 13 420 3987593 55200 223.67231750488281 1.4285000000000001 394.80180000000001 20160 12047 0 0 2.0071641968164342e-05 0.056584447696690687 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 14853543200 49165984 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 27 210 133 0 0 1 0 12 0 0 0 0 1 +930 1783880802475125400 REFRESH 58 0 0.70550298382607579 0.92163543441226559 2 12 2 12 0 0 572 10 408 3988948 56640 222.10252380371094 1.4303999999999999 353.68169999999998 13440 9300 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 14854267584 49890368 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 25 27 306 0 0 0 0 10 0 0 0 0 0 +931 1783880802881248600 REFRESH 35 0 0.70679403715508149 0.8279386712095399 2 11 2 11 0 0 1225 11 401 3988952 56640 222.05644226074219 1.4341999999999999 353.7559 13440 9802 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 14854984828 50607612 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 26 25 25 30 295 0 0 0 0 11 0 0 0 0 0 +932 1783880803275027300 REFRESH 15 0 0.70259527790994625 0.91396933560476989 3 11 3 11 0 0 332 6 412 3988954 56640 223.68666076660156 1.4277 343.09879999999998 6720 4924 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 14855713292 51336076 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 25 25 25 35 302 1 0 0 0 5 0 0 0 0 0 +933 1783880803740026900 REFRESH 42 0 0.8731568851050846 0 0 4 0 4 0 0 4096 10 424 3987694 55200 225.48275756835938 1.4305000000000001 410.94319999999999 20160 12810 0 0 0 0.00210303155049236 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 14856453996 52076780 1 0 4 3 3 3 3 983040 737280 737280 737508 748800 78 25 104 130 87 0 0 0 1 9 0 0 0 0 0 +934 1783880804194349700 REFRESH 53 0 0.7060588954535405 0.37478705281090291 0 8 0 8 0 0 4096 18 416 3988004 55680 225.1673583984375 1.4287000000000001 398.60969999999998 20160 14825 0 0 0 0.076141977976436764 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 14857186540 52809324 1 0 4 3 3 2 4 983040 737280 737280 491681 998400 25 25 25 248 93 0 0 0 5 13 0 0 0 0 0 +935 1783880804658887000 REFRESH 56 0 0.72325297142329548 0.17206132879045993 2 4 2 4 0 0 4096 25 425 3987632 55200 225.5657958984375 1.4283999999999999 407.36079999999998 20160 12003 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 14857928264 53551048 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 57 25 32 195 116 2 0 0 4 19 0 0 0 0 0 +936 1783880805123825200 REFRESH 37 0 0.70433051702927119 0.8356047700170357 1 12 1 12 0 0 1131 21 404 3988960 56640 222.30015563964844 1.4286000000000001 354.54880000000003 13440 8980 0 0 0.0038499446600468007 0.32779416058590172 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 14858648568 54271352 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 25 25 25 43 286 0 0 0 1 20 0 0 0 0 0 +937 1783880805563094800 REFRESH 48 0 0.71287016049265417 0.26575809199318562 2 5 2 5 0 0 2996 22 418 3987610 55200 225.26771545410156 1.4309000000000001 384.90210000000002 20160 12086 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 14859383152 55005936 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 27 173 168 0 0 0 4 18 0 0 0 0 0 +938 1783880805960580900 REFRESH 22 0 0.70651283546923016 0.91396933560476989 3 11 3 11 0 0 531 10 410 3988938 56640 223.86073303222656 1.4326000000000001 345.53980000000001 13440 9124 0 0 0.0084545273381526394 0.77132763056342224 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 14860109576 55732360 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 26 25 25 26 308 0 0 0 0 10 0 0 0 0 0 +939 1783880806421474800 REFRESH 20 0 0.70802703780602272 0.26575809199318562 2 5 2 5 0 0 2413 14 430 3987605 55200 225.01478576660156 1.431 406.57350000000002 20160 12053 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 14860856400 56479184 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 29 176 175 0 0 0 3 11 0 0 0 0 0 +940 1783880806832104700 REFRESH 10 0 0.70587106648599729 0.64821124361158422 1 10 1 10 0 0 1439 29 417 3988946 56640 222.05030822753906 1.4319999999999999 355.96460000000002 13440 8237 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 14861589964 57212748 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 27 315 0 0 0 0 29 0 0 0 0 0 +941 1783880809218851800 DEPTH 31 1 0.70910368828778858 0.26575809199318562 2 5 2 5 1 0 3613 62 2572 23677393 81600 1297.6037750244141 8.5762 2332.7714999999998 120960 56758 1 0 0.039555140524043839 1.1233366979559045 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 14866072312 61695096 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 180 547 1545 0 0 3 0 59 0 0 0 0 1 +942 1783880811627202100 DEPTH 9 1 0.70911507477316604 0.27342419080068137 1 6 1 6 0 0 3855 69 2534 23677679 81600 1306.3669586181641 8.5787000000000013 2353.9924000000001 120960 58056 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 14870515900 66138684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 192 615 1427 0 0 0 2 67 0 0 0 0 0 +943 1783880815100647900 DEPTH 13 1 0.70912944041183978 0.27342419080068137 1 6 1 6 0 0 4096 56 2565 23677401 81600 1295.9221801757812 8.6668000000000003 3417.8524000000002 120960 57294 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14874991188 3505264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 170 854 1241 0 0 1 0 55 0 0 0 0 0 +944 1783880817312668600 DEPTH 8 1 0.70881551226781658 0.26575809199318562 2 5 2 5 1 0 2662 34 2508 23677383 81600 1303.3913421630859 8.5882000000000005 2210.9268999999999 120960 69180 1 0 0.021444625597274097 0.090837739951928065 4096 2048 384 12 96 360 72 24 0 2508 1920 0 384 1 14879408256 7922332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 150 463 1595 0 0 0 1 33 0 0 0 0 1 +945 1783880819703519200 DEPTH 57 1 0.70853288960661409 0.27342419080068137 1 6 1 6 1 0 4096 50 2539 23677422 81600 1301.2746276855469 8.5998000000000001 2389.6675 120960 58293 1 0 0.00072858761013786498 0.27056711459694599 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 14883856944 12371020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 670 1419 0 0 0 0 50 0 0 0 0 1 +946 1783880822160803500 DEPTH 33 1 0.70488861416373938 0.36712095400340705 1 7 1 7 0 0 4096 48 2531 23691824 96000 1300.1471862792969 8.5840999999999994 2339.5695999999998 94080 45103 1 0 0.00024165034904502245 0.29694989293667745 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 14888297472 16811548 1 0 4 3 3 3 3 5898240 3440640 4423680 4426437 5491200 150 150 150 331 1750 0 0 2 1 45 0 0 0 0 0 +947 1783880824450837900 DEPTH 49 1 0.70476708385414355 0.4454855195911413 3 6 3 6 0 0 1958 65 2532 23698531 103680 1296.4423675537109 8.5772999999999993 2111.2582000000002 120960 68730 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 14892739020 21253096 1 0 4 3 3 2 4 5898240 4423680 4423680 2950998 5990400 150 150 150 211 1871 0 0 0 8 57 0 0 0 0 0 +948 1783880827005901500 DEPTH 27 1 0.70478276142195306 0.4608177172061329 1 8 1 8 0 0 4096 40 2575 23701420 106560 1296.5652618408203 8.5803999999999991 2390.6604000000002 114240 49211 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 14897224428 25738504 1 0 4 3 3 2 4 5898240 4177920 4423680 2950938 6240000 151 150 155 1079 1040 0 0 1 3 36 0 0 0 0 0 +949 1783880829416116900 DEPTH 42 1 0.78211852190601006 0 0 4 0 4 1 0 4096 21 2585 23678089 81600 1302.1040649414062 8.5836000000000006 2408.9105 120960 62443 1 0 0 0.002104983295057134 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 14901720036 30234112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426524 4492800 424 150 523 804 684 0 0 0 0 21 0 0 0 0 1 +950 1783880831523863400 DEPTH 28 1 0.70357828310775905 0.8279386712095399 2 11 2 11 0 0 707 35 2503 23742687 147840 1297.0071411132812 8.5878999999999994 2057.3341999999998 80640 44995 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 360 72 24 0 2503 1920 0 384 1 14906132004 34646080 1 0 4 2 2 2 6 5898240 2949120 2949120 2950991 8985600 156 150 150 150 1897 0 0 0 0 35 0 0 0 0 0 +951 1783880833972521200 DEPTH 25 1 0.70351752346463292 0.4608177172061329 1 8 1 8 0 0 2693 30 2529 23698529 103680 1295.8249664306641 8.5754000000000001 2338.7964999999999 120960 67812 1 0 8.159044023305312e-05 1.6948230691725725 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 14910570492 39084568 1 0 4 3 3 2 4 5898240 4423680 4423680 2950992 5990400 150 150 150 323 1756 0 0 0 0 30 0 0 0 0 0 +952 1783880836098408600 DEPTH 47 1 0.70335723334519151 0.8279386712095399 2 11 2 11 1 0 769 24 2559 23742672 147840 1287.61865234375 8.6051000000000002 2072.9926999999998 80640 47124 1 0 0.012186730339149725 1.4558528412566996 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 14915039580 43553656 1 0 4 2 2 2 6 5898240 2949120 2949120 2950977 8985600 150 150 150 150 1959 0 0 0 0 24 0 0 0 0 1 +953 1783880838213386300 DEPTH 0 1 0.70298574563833616 0.8279386712095399 2 11 2 11 0 0 1007 43 2567 23708087 114240 1291.8712463378906 8.5861999999999998 2060.5616 127680 76673 1 0 0.0001442316467257171 2.2553238703365661 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 14919516828 48030904 1 0 6 4 1 1 4 8847360 4669440 1966080 1475433 6739200 156 150 179 444 1638 0 0 9 0 34 0 0 0 0 0 +954 1783880840327770900 DEPTH 6 1 0.7028211887295257 0.91396933560476989 3 11 3 11 0 0 401 38 2536 23742657 147840 1283.818603515625 8.5731999999999999 2060.3126000000002 40320 23317 1 1 0.078372516761692129 0.14712613673895217 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 14923962456 52476532 1 0 5 1 2 2 6 7372800 1474560 2949120 2950963 8985600 150 150 150 150 1936 1 0 5 0 31 0 0 0 0 0 +955 1783880842459297800 DEPTH 23 1 0.70271581437014619 0.74190800681430991 1 11 1 11 0 0 3700 37 2533 23742782 147840 1298.9552612304688 8.5907999999999998 2078.8045999999999 80640 42081 1 0 0.019300844193410726 0.74534664091034986 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 14928405024 56919100 1 0 4 2 2 2 6 5898240 2949120 2949120 2951000 8985600 156 150 150 156 1921 0 0 0 3 34 0 0 0 0 0 +956 1783880844835828800 DEPTH 54 1 0.70256451756154847 0.4608177172061329 1 8 1 8 0 0 1396 33 2566 23698518 103680 1289.3952026367188 8.5772000000000013 2319.0154000000002 120960 69163 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14932881252 61395328 1 0 4 3 3 2 4 5898240 4423680 4423680 2950985 5990400 150 150 202 831 1233 0 0 8 0 25 0 0 0 0 0 +957 1783880847281603900 DEPTH 17 1 0.70871552922232306 0.28109028960817717 0 7 0 7 1 0 4096 43 2564 23677465 81600 1294.0584869384766 8.5927000000000007 2388.4283 120960 55580 1 1 2.0243336635618543e-05 0.057532978394359231 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 14937355440 65869516 1 0 4 3 3 3 3 5898240 4423680 4423680 4426489 4492800 150 150 162 710 1392 0 0 5 0 37 0 0 0 0 1 +958 1783880850445705200 DEPTH 34 1 0.70362788001185106 0.8356047700170357 1 12 1 12 0 0 878 33 2585 23727023 132480 1282.6635284423828 8.5803999999999991 3114.5221000000001 80640 47148 1 0 0.00020804344036005055 1.7473031373488448 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 14941851128 3256384 1 0 5 2 2 2 5 7372800 2949120 2949120 2459166 7987200 150 150 150 624 1511 0 0 0 0 33 0 0 0 0 0 +959 1783880852780996400 DEPTH 21 1 0.70263487672341762 0.56218057921635434 0 10 0 10 0 0 3015 39 2565 23720586 125760 1284.2292327880859 8.6034000000000006 2281.1471999999999 120960 68609 1 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14946326336 7731592 1 0 4 3 2 2 5 5898240 4423680 2949120 2950970 7488000 150 150 150 799 1316 0 0 0 0 39 0 0 0 0 0 +960 1783880855164599800 DEPTH 46 1 0.70257700778211563 0.37478705281090291 0 8 0 8 0 0 3029 30 2566 23687460 92160 1294.8254852294922 8.5876000000000001 2331.0645 120960 57662 1 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 14950802564 12207820 1 0 4 3 3 3 3 5898240 4423680 4423680 3688648 5241600 150 150 150 1292 824 0 0 0 0 30 0 0 0 0 0 +961 1783880857463086400 DEPTH 26 1 0.7025155459819028 0.55451448040885853 1 9 1 9 0 0 2455 69 2555 23720539 125760 1288.3333129882812 8.5826999999999991 2245.2386999999999 120960 60984 1 0 0.00075884775909900728 0.25534957531696156 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 14955267572 16672828 1 0 4 3 2 2 5 5898240 4423680 2949120 2950925 7488000 150 150 150 390 1715 0 0 2 0 67 0 0 0 0 0 +962 1783880859788144200 DEPTH 38 1 0.70247888177703488 0.55451448040885853 1 9 1 9 0 0 2374 31 2557 23720594 125760 1327.9324188232422 8.5951000000000004 2274.3649 120960 70292 1 0 0.1248322231089211 2.3259311992693896 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 14959734620 21139876 1 0 4 3 2 2 5 5898240 4423680 2949120 2950978 7488000 150 150 150 883 1224 0 0 2 1 28 0 0 0 0 0 +963 1783880862015855000 DEPTH 12 1 0.70248651980854482 0.54684838160136284 2 8 2 8 0 0 2215 50 2562 23716757 121920 1277.1163482666016 8.5836000000000006 2175.6999000000001 120960 67217 1 0 0.13705454265994943 0.28561677288931575 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 14964206768 25612024 1 0 4 3 3 2 4 5898240 4423680 3194880 2950980 7238400 150 150 151 374 1737 0 0 2 3 45 0 0 0 0 0 +964 1783880864251879100 DEPTH 43 1 0.70250233024527686 0.55451448040885853 1 9 1 9 0 0 3911 67 2505 23716751 121920 1283.9923248291016 8.7452000000000005 2183.4113000000002 120960 70726 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2505 1920 0 384 1 14968620776 30026032 1 0 4 3 3 2 4 5898240 4423680 3194880 2950971 7238400 150 150 150 329 1726 0 1 1 4 61 0 0 0 0 0 +965 1783880866686991100 DEPTH 42 1 0.78102569123690901 0 0 4 0 4 1 0 4096 22 2584 23685544 89280 1286.0678863525391 8.5768000000000004 2381.9076 120960 51910 1 0 0 0.0021053083991361761 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 14973115364 34520620 1 0 4 3 3 2 4 5898240 4423680 4423680 3934636 4992000 404 150 482 943 605 0 0 0 0 22 0 0 0 0 1 +966 1783880869109322100 DEPTH 56 1 0.72029986587106087 0.17206132879045993 2 4 2 4 0 0 4096 53 2584 23677704 81600 1290.8440856933594 8.6340999999999983 2366.9652999999998 120960 57114 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 14977609952 39015208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426570 4492800 330 150 174 1057 873 17 0 1 1 34 0 0 0 0 0 +967 1783880871507781800 DEPTH 48 1 0.70947099977416173 0.26575809199318562 2 5 2 5 0 0 3000 37 2565 23677388 81600 1290.3846588134766 8.5826999999999991 2345.5282000000002 120960 57019 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 14982085160 43490416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426411 4492800 150 150 150 579 1536 0 0 2 0 35 0 0 0 0 0 +968 1783880873913641700 DEPTH 20 1 0.70509989880295931 0.26575809199318562 2 5 2 5 0 0 2418 32 2590 23677441 81600 1290.1171417236328 8.5960999999999999 2354.1223 120960 57594 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 14986585868 47991124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 163 645 1482 1 0 2 0 29 0 0 0 0 0 +969 1783880876252805400 DEPTH 41 1 0.70258120644762556 0.55451448040885853 1 9 1 9 0 0 2795 58 2585 23716703 121920 1276.1057281494141 8.5987999999999989 2282.2325999999998 120960 68417 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 14991081476 52486732 1 0 4 3 3 2 4 5898240 4423680 3194880 2950928 7238400 150 150 151 466 1668 0 1 2 1 54 0 0 0 0 0 +970 1783880878642033600 DEPTH 1 1 0.70248040616091423 0.36712095400340705 1 7 1 7 0 0 4096 97 2549 23677358 81600 1289.7914886474609 8.5909000000000013 2324.5913 120960 57843 1 0 0.033099964129757194 0.81500277267769694 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 14995540364 56945620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 251 1848 0 0 0 4 93 0 0 0 0 0 +971 1783880881039504500 DEPTH 53 1 0.70248649520336648 0.37478705281090291 0 8 0 8 1 0 4096 51 2523 23698557 103680 1278.9278869628906 8.5833999999999993 2337.7449000000001 120960 69359 1 0 0 0.080748559285997654 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 14999972732 61377988 1 0 4 3 3 2 4 5898240 4423680 4423680 2951009 5990400 150 150 150 1302 771 0 0 0 4 47 0 0 0 0 1 +972 1783880883429822600 DEPTH 45 1 0.70246408560527662 0.45315161839863699 2 7 2 7 0 0 2562 38 2586 23698536 103680 1282.2344055175781 8.5899000000000001 2332.3483000000001 120960 60916 1 0 0.37746142733162075 1.2035736239565262 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 15004469360 65874616 1 0 4 3 3 2 4 5898240 4423680 4423680 2951001 5990400 150 150 150 995 1141 0 0 0 1 37 0 0 0 0 0 +973 1783880883809674300 REFRESH 46 0 0.5790287372607047 0.37478705281090291 0 8 0 8 0 0 3036 17 406 3987596 55200 223.8760986328125 1.4348000000000001 378.3082 20160 11980 0 0 8.0409718189301868e-06 0.28364737445045052 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 15005191704 66596960 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 30 152 174 0 0 0 2 15 0 0 0 0 0 +974 1783880885358842800 REFRESH 2 0 0.70075698492495642 0.45315161839863699 2 7 2 7 0 0 4096 35 416 3988077 55680 221.34271240234375 1.4375 1441.1316999999999 13440 7971 0 0 0.26574559598420427 1.4366036146259098 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15005924328 220764 1 0 4 2 3 3 4 983040 491520 737280 737511 998400 25 25 25 127 214 0 0 0 6 29 0 0 0 0 0 +975 1783880885757490800 REFRESH 24 0 0.69932136089570451 1 4 11 4 11 0 0 511 12 397 3988957 56640 220.06886291503906 1.4314 348.76260000000002 13440 9189 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 60 12 4 0 397 320 0 64 0 15006637492 933928 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 25 34 287 0 0 0 0 12 0 0 0 0 0 +976 1783880886157118500 REFRESH 23 0 0.65801489526540369 0.74190800681430991 1 11 1 11 0 0 3705 24 412 3988960 56640 222.89202880859375 1.4327000000000001 348.23160000000001 13440 8231 0 0 0.019300844193410726 0.74534664091034986 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 15007365956 1662392 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 25 25 26 310 0 0 0 0 24 0 0 0 0 0 +977 1783880886562174000 REFRESH 55 0 0.69989859912395846 0.64054514480408853 2 9 2 9 0 0 1182 9 408 3988950 56640 224.46797180175781 1.4318 353.39159999999998 13440 8340 0 0 0.10610032731418205 0.62450675493366981 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 15008090340 2386776 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 49 26 283 0 0 0 0 9 0 0 0 0 0 +978 1783880887009594500 REFRESH 44 0 0.70243282705204702 0.36712095400340705 1 7 1 7 0 0 2901 38 422 3987605 55200 224.42291259765625 1.5210999999999999 390.49799999999999 20160 11704 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15008829004 3125440 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 26 69 277 0 0 0 3 35 0 0 0 0 0 +979 1783880887411477500 REFRESH 18 0 0.70039432703016358 0.92163543441226559 2 12 2 12 0 0 473 8 416 3988972 56640 221.27513122558594 1.4319999999999999 348.48180000000002 6720 4613 0 0 0.0029941425525071893 0.92661218102623089 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15009561548 3857984 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 25 25 25 26 315 0 0 0 0 8 0 0 0 0 0 +980 1783880887802240500 REFRESH 51 0 0.69997438582451288 0.91396933560476989 3 11 3 11 0 0 578 14 393 3988926 56640 219.62342834472656 1.4306000000000001 337.85000000000002 13440 9711 0 0 0.045173217832498953 0.26957161600298651 4096 2048 64 1 16 60 12 4 0 393 320 0 64 0 15010270632 4567068 1 0 4 2 2 2 6 983040 491520 491520 491645 1497600 25 25 25 29 289 0 0 0 0 14 0 0 0 0 0 +981 1783880888247680200 REFRESH 13 0 0.7059546580156999 0.27342419080068137 1 6 1 6 0 0 4096 33 415 3987595 55200 223.3753662109375 1.4321999999999999 390.6499 20160 11989 0 0 0.02278690992206886 0.11957287663934041 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15011002156 5298592 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 31 176 158 0 0 0 4 29 0 0 0 0 0 +982 1783880888667657400 REFRESH 8 0 0.70568010369080791 0.26575809199318562 2 5 2 5 0 0 2663 10 410 3987600 55200 224.61030578613281 1.4277 367.01729999999998 20160 12637 0 0 0.021444625597274097 0.090837739951928065 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 15011728580 6025016 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 103 232 0 0 0 2 8 0 0 0 0 0 +983 1783880889063588600 REFRESH 19 0 0.69981126262268378 0.8279386712095399 2 11 2 11 0 0 970 21 412 3988968 56640 219.97261047363281 1.4287000000000001 341.24880000000002 13440 9668 0 0 0.030524511601939662 0.37748740839804101 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 15012457044 6753480 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 26 25 25 37 299 0 0 0 1 20 0 0 0 0 0 +984 1783880889476096800 REFRESH 14 0 0.70228064459125683 0.65587734241908002 0 11 0 11 0 0 2002 29 410 3988981 56640 222.13632202148438 1.4331 361.005 13440 8427 0 0 1.671973767486666e-05 0.71770855065080708 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 15013183468 7479904 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 50 26 283 0 0 0 0 29 0 0 0 0 0 +985 1783880889865809400 REFRESH 7 0 0.69984379317572154 0.8356047700170357 1 12 1 12 0 0 988 16 402 3988951 56640 220.10060119628906 1.4282999999999999 337.5172 13440 8441 0 0 0.00026819310007664712 0.68460147353777145 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 15013901732 8198168 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 26 25 29 297 0 0 0 0 16 0 0 0 0 0 +986 1783880890294563300 REFRESH 52 0 0.70264234773678291 0.36712095400340705 1 7 1 7 0 0 2783 27 417 3987679 55200 223.92933654785156 1.4292 376.60849999999999 20160 12217 0 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15014635296 8931732 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 25 113 229 0 0 0 2 25 0 0 0 0 0 +987 1783880890720066500 REFRESH 40 0 0.70232926696494669 0.64821124361158422 1 10 1 10 0 0 2102 14 410 3988961 56640 221.19526672363281 1.4321999999999999 373.64780000000002 13440 8044 0 0 0.078694659344276413 0.46137713255528728 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 15015361720 9658156 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 25 29 306 0 0 0 1 13 0 0 0 0 0 +988 1783880891133648100 REFRESH 34 0 0.69893590590128463 0.8356047700170357 1 12 1 12 0 0 878 5 414 3988469 56160 219.91322326660156 1.4351 361.23680000000002 13440 9075 0 0 0.00020804344036005055 1.7473031373488448 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 15016092224 10388660 1 0 5 2 2 2 5 1228800 491520 491520 491668 1248000 25 25 25 134 205 0 0 0 0 5 0 0 0 0 0 +989 1783880891553882800 REFRESH 21 0 0.69846327333455172 0.56218057921635434 0 10 0 10 0 0 3019 29 416 3987997 55680 223.15213012695312 1.4298 367.4898 20160 12427 0 0 9.4839875804634047e-05 0.63752380430829114 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15016824768 11121204 1 0 4 3 3 2 4 983040 737280 737280 491677 998400 25 25 27 135 204 0 0 0 5 24 0 0 0 0 0 +990 1783880891947034200 REFRESH 53 0 0.63877362678160154 0.37478705281090291 0 8 0 8 1 0 4096 10 415 3987988 55680 222.72102355957031 1.4317 391.87189999999998 20160 14108 0 0 0 0.060528357431590962 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15017556292 11852728 1 0 4 3 3 2 4 983040 737280 737280 491664 998400 25 25 25 259 81 0 0 0 1 9 0 0 0 0 1 +991 1783880892347650100 REFRESH 38 0 0.69831047684088321 0.55451448040885853 1 9 1 9 0 0 2383 39 411 3987990 55680 221.85983276367188 1.4325000000000001 346.88209999999998 20160 13844 0 0 0.1248322231089211 2.3259311992693896 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 15018283736 12580172 1 0 4 3 3 2 4 983040 737280 737280 491670 998400 25 25 27 113 221 0 0 0 6 33 0 0 0 0 0 +992 1783880892771066700 REFRESH 32 0 0.70115955936936292 0.4608177172061329 1 8 1 8 0 0 3598 19 424 3988002 55680 223.89657592773438 1.4294 372.04109999999997 20160 11724 0 0 0.0052342961375565714 1.6057829682795486 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 15019024440 13320876 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 25 219 130 0 0 0 5 14 0 0 0 0 0 +993 1783880893219471500 REFRESH 17 0 0.70559694131783979 0.28109028960817717 0 7 0 7 0 0 4096 6 420 3987602 55200 223.17465209960938 1.4369000000000001 397.30029999999999 20160 11950 0 0 2.0243336635618543e-05 0.057532978394359231 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15019761064 14057500 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 27 220 123 0 0 0 2 4 0 0 0 0 0 +994 1783880893588912300 REFRESH 41 0 0.69834860198106186 0.55451448040885853 1 9 1 9 0 0 2808 38 423 3987999 55680 223.39788818359375 1.4512 368.30860000000001 20160 12432 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 15020500748 14797184 1 0 4 3 3 2 4 983040 737280 737280 491676 998400 25 25 26 147 200 0 0 0 16 22 0 0 0 0 0 +995 1783880893949578900 REFRESH 1 0 0.69885034793508827 0.36712095400340705 1 7 1 7 0 0 4096 38 408 3987624 55200 222.84710693359375 1.4286000000000001 359.53489999999999 20160 11937 0 0 0.033099964129757194 0.81500277267769694 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 15021225132 15521568 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 25 114 219 0 0 0 6 32 0 0 0 0 0 +996 1783880894343624100 REFRESH 35 0 0.70262669217672902 0.8279386712095399 2 11 2 11 0 0 1228 15 405 3988942 56640 221.03245544433594 1.4316 345.68099999999998 13440 9754 0 0 0.11941958772771655 1.1137643156850541 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 15021946456 16242892 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 26 25 25 31 298 0 0 0 0 15 0 0 0 0 0 +997 1783880894734140900 REFRESH 15 0 0.69513581322416262 0.91396933560476989 3 11 3 11 0 0 333 8 416 3988949 56640 221.29971313476562 1.4297 341.8811 6720 4905 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15022679000 16975436 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 25 39 302 0 0 0 1 7 0 0 0 0 0 +998 1783880895139661200 REFRESH 16 0 0.70272831081657694 0.3594548551959113 2 6 2 6 0 0 3945 20 407 3987599 55200 223.47264099121094 1.4389000000000001 351.3152 20160 14648 0 0 0.0052387284943205886 0.36580846878981438 4096 2048 64 1 16 60 12 4 0 407 320 0 64 0 15023402364 17698800 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 84 248 0 0 0 2 18 0 0 0 0 0 +999 1783880895566392700 REFRESH 57 0 0.70568094057385822 0.27342419080068137 1 6 1 6 0 0 4096 20 417 3987589 55200 223.65286254882812 1.4286000000000001 376.0539 20160 11862 0 0 0.00072858761013786498 0.27056711459694599 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15024135928 18432364 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 25 209 133 0 0 0 10 10 0 0 0 0 0 +1000 1783880895958428500 REFRESH 28 0 0.69920759307079872 0.8279386712095399 2 11 2 11 0 0 708 10 412 3988973 56640 221.79533386230469 1.4300999999999999 342.27910000000003 13440 8416 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 15024864392 19160828 1 0 4 2 2 2 6 983040 491520 491520 491692 1497600 26 25 25 25 311 0 0 2 0 8 0 0 0 0 0 +1001 1783880896348111500 REFRESH 37 0 0.70011693941253295 0.8356047700170357 1 12 1 12 0 0 1135 23 402 3988968 56640 220.943359375 1.4326000000000001 339.78489999999999 13440 8767 0 0 0.0038499446600468007 0.32779416058590172 4096 2048 64 1 16 60 12 4 0 402 320 0 64 0 15025582656 19879092 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 47 280 0 0 0 0 23 0 0 0 0 0 +1002 1783880896754680100 REFRESH 56 0 0.71748931908347346 0.17206132879045993 2 4 2 4 0 0 4096 15 421 3987624 55200 224.20480346679688 1.4333 405.1413 20160 12081 0 0 0.0032910877200216584 0.27003338750489914 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15026320300 20616736 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 65 25 31 201 99 2 0 1 6 6 0 0 0 0 0 +1003 1783880897167572300 REFRESH 22 0 0.70210459197014874 0.91396933560476989 3 11 3 11 0 0 531 9 409 3988976 56640 221.8209228515625 1.4482999999999999 362.62959999999998 13440 9094 0 0 0.0084545273381526394 0.77132763056342224 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 15027045704 21342140 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 25 26 307 0 0 0 0 9 0 0 0 0 0 +1004 1783880897548777300 REFRESH 48 0 0.70626786395459651 0.26575809199318562 2 5 2 5 0 0 3005 20 415 3987619 55200 223.74298095703125 1.4263999999999999 380.04309999999998 20160 12002 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15027777228 22073664 1 0 4 3 3 3 3 983040 737280 737280 737524 748800 25 25 27 185 153 0 0 1 5 14 0 0 0 0 0 +1005 1783880897997474000 REFRESH 11 0 0.7028247366687661 0.37478705281090291 0 8 0 8 0 0 3094 12 420 3987994 55680 222.10354614257812 1.4314 396.76179999999999 20160 11856 0 0 0 0.64708044592029246 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15028513852 22810288 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 27 235 108 1 0 1 1 9 0 0 0 0 0 +1006 1783880898426867100 REFRESH 27 0 0.7012296579789683 0.4608177172061329 1 8 1 8 0 0 4096 26 422 3987989 55680 222.70463562011719 1.4319999999999999 379.39769999999999 20160 14827 0 0 0.085217573921660891 0.68181035969046377 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15029252516 23548952 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 25 218 129 0 0 0 16 10 0 0 0 0 0 +1007 1783880898815129100 REFRESH 58 0 0.70138880427932515 0.92163543441226559 2 12 2 12 0 0 576 18 409 3988932 56640 221.23008728027344 1.4340999999999999 338.32990000000001 13440 9139 0 0 0.0095430491934861868 1.5827371062351756 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 15029977920 24274356 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 25 25 25 27 307 0 0 0 0 18 0 0 0 0 0 +1008 1783880899272683200 REFRESH 5 0 0.70022046090028423 0.8279386712095399 2 11 2 11 0 0 1029 18 418 3988950 56640 219.97465515136719 1.4384999999999999 358.4778 13440 8799 0 0 0.0022620206129065545 0.40144345592853958 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 15030712504 25008940 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 25 80 263 0 0 0 6 12 0 0 0 0 0 +1009 1783880899717976400 REFRESH 39 0 0.70131105177912889 0.55451448040885853 1 9 1 9 0 0 1735 13 424 3988962 56640 220.90751647949219 1.4320999999999999 392.71390000000002 13440 8692 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 15031453208 25749644 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 25 59 290 0 0 0 0 13 0 0 0 0 0 +1010 1783880900142735900 REFRESH 9 0 0.70634871305659397 0.27342419080068137 1 6 1 6 0 0 3865 33 415 3987605 55200 223.52383422851562 1.4368000000000001 371.3931 20160 12363 0 0 0.00031252798000265059 0.1439131274848795 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 15032184732 26481168 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 34 150 181 0 0 0 10 23 0 0 0 0 0 +1011 1783880900526719400 REFRESH 45 0 0.69888085013010415 0.45315161839863699 2 7 2 7 0 0 2565 21 421 3987978 55680 223.98054504394531 1.4312 382.70729999999998 20160 11816 0 0 0.37746142733162075 1.2035736239565262 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15032922376 27218812 1 0 4 3 3 2 4 983040 737280 737280 491653 998400 25 25 25 150 196 0 0 0 9 12 0 0 0 0 0 +1012 1783880900964400700 REFRESH 54 0 0.69920889479919413 0.4608177172061329 1 8 1 8 0 0 1396 5 430 3988011 55680 222.887939453125 1.4346000000000001 386.37509999999997 20160 13938 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 60 12 4 0 430 320 0 64 0 15033669200 27965636 1 0 4 3 3 2 4 983040 737280 737280 491691 998400 25 25 36 256 88 0 0 0 0 5 0 0 0 0 0 +1013 1783880901359220300 REFRESH 4 0 0.69599816772477263 0.8356047700170357 1 12 1 12 0 0 306 7 422 3988862 56640 219.46163940429688 1.4356 342.5548 13440 9420 0 0 0.035638772600901605 0.86033560651257768 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 15034407864 28704300 1 0 5 2 2 1 6 1228800 491520 491520 245822 1497600 25 25 25 47 300 0 0 0 0 7 0 0 0 0 0 +1014 1783880901806990600 REFRESH 0 0 0.69885219900267204 0.8279386712095399 2 11 2 11 0 0 1010 15 424 3987925 55680 222.42201232910156 1.4292 343.17219999999998 20160 14894 0 0 0.0001442316467257171 2.2553238703365661 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 15035148568 29445004 1 0 6 3 2 1 4 1474560 737280 491520 245845 998400 26 25 74 132 167 0 0 0 4 11 0 0 0 0 0 +1015 1783880902210259400 REFRESH 6 0 0.69901079404253275 0.91396933560476989 3 11 3 11 0 0 402 8 419 3988961 56640 220.12007141113281 1.4276 349.28789999999998 6720 4754 0 0 0.078372516761692129 0.14712613673895217 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 15035884172 30180608 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 45 299 1 0 0 0 7 0 0 0 0 0 +1016 1783880902641945900 REFRESH 30 0 0.70139774000405364 0.4608177172061329 1 8 1 8 0 0 4096 42 423 3988049 55680 223.67333984375 1.4315 377.23020000000002 13440 8072 0 0 0.0010333068606564353 1.5278069806092593 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 15036623856 30920292 1 0 4 2 3 3 4 983040 491520 737280 737487 998400 25 26 25 131 216 0 0 0 9 33 0 0 0 0 0 +1017 1783880903045853900 REFRESH 3 0 0.70280740907661854 0.64054514480408853 2 9 2 9 0 0 1318 18 406 3988970 56640 219.54150390625 1.4287000000000001 349.62439999999998 13440 8116 0 0 0.0081530752692971203 0.21650694744718907 4096 2048 64 1 16 60 12 4 0 406 320 0 64 0 15037346200 31642636 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 50 281 0 0 0 1 17 0 0 0 0 0 +1018 1783880903459096500 REFRESH 49 0 0.70140558651515528 0.4454855195911413 3 6 3 6 0 0 1965 25 417 3987986 55680 222.44863891601562 1.4349000000000001 358.90010000000001 20160 12404 0 0 0.00021651220389442272 2.2207205596559891 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15038079764 32376200 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 25 25 25 106 236 0 0 0 4 21 0 0 0 0 0 +1019 1783880903849962900 REFRESH 20 0 0.70252265345332954 0.26575809199318562 2 5 2 5 0 0 2419 8 429 3987593 55200 224.16896057128906 1.4312 389.60210000000001 20160 12016 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 15038825568 33122004 1 0 4 3 3 3 3 983040 737280 737280 737501 748800 25 25 28 191 160 1 0 0 1 6 0 0 0 0 0 +1020 1783880904322058200 REFRESH 31 0 0.70666099330085541 0.26575809199318562 2 5 2 5 0 0 3637 46 417 3987633 55200 223.28218078613281 1.4321999999999999 365.03179999999998 20160 12089 0 0 0.039555140524043839 1.1233366979559045 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15039559132 33855568 1 0 4 3 3 3 3 983040 737280 737280 737528 748800 25 25 31 169 167 0 0 1 9 36 0 0 0 0 0 +1021 1783880904745780900 REFRESH 50 0 0.70321594387144959 0.64054514480408853 2 9 2 9 0 0 1130 11 416 3988460 56160 221.73695373535156 1.4314 369.96199999999999 20160 14719 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15040291676 34588112 1 0 4 3 2 2 5 983040 737280 491520 491659 1248000 25 25 25 43 298 0 0 0 0 11 0 0 0 0 0 +1022 1783880905161990800 REFRESH 12 0 0.6987684509451948 0.54684838160136284 2 8 2 8 0 0 2225 28 416 3987990 55680 222.52134704589844 1.4285000000000001 360.60000000000002 20160 13249 0 0 0.13705454265994943 0.28561677288931575 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 15041024220 35320656 1 0 4 3 3 2 4 983040 737280 737280 491669 998400 25 25 26 107 233 0 0 0 11 17 0 0 0 0 0 +1023 1783880905571179400 REFRESH 43 0 0.69878328977828441 0.55451448040885853 1 9 1 9 0 0 3923 25 405 3987977 55680 223.05075073242188 1.4269000000000001 355.78379999999999 20160 13646 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 405 320 0 64 0 15041745544 36041980 1 0 4 3 3 2 4 983040 737280 737280 491657 998400 25 25 25 124 206 0 0 1 8 16 0 0 0 0 0 +1024 1783880905977425800 REFRESH 47 0 0.69958419653064463 0.8279386712095399 2 11 2 11 0 0 773 15 409 3988950 56640 222.18547058105469 1.4293 352.73919999999998 13440 8840 0 0 0.012186730339149725 1.4558528412566996 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 15042470948 36767384 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 25 25 25 32 302 0 0 0 0 15 0 0 0 0 0 +1025 1783880906425761900 REFRESH 36 0 0.70048946865090778 0.82027257240204421 3 10 3 10 0 0 1429 24 404 3988966 56640 220.0526123046875 1.474 342.07330000000002 13440 8368 0 0 0.086511988468663273 0.11912197799773534 4096 2048 64 1 16 60 12 4 0 404 320 0 64 0 15043191252 37487688 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 26 25 25 37 291 0 0 0 1 23 0 0 0 0 0 +1026 1783880906856103800 REFRESH 25 0 0.7003410537974164 0.4608177172061329 1 8 1 8 1 0 2694 18 411 3987978 55680 222.89932250976562 1.4302999999999999 376.90809999999999 20160 12439 0 0 0.00040362281829984858 1.6599121868606033 4096 2048 64 1 16 60 12 4 0 411 320 0 64 0 15043918696 38215132 1 0 4 3 3 2 4 983040 737280 737280 491657 998400 25 25 25 140 196 0 0 0 7 11 0 0 0 0 1 +1027 1783880907284690000 REFRESH 33 0 0.70206809550200533 0.36712095400340705 1 7 1 7 0 0 4096 50 410 3987602 55200 223.64569091796875 1.4331 370.98739999999998 20160 14958 0 0 0.00024165034904502245 0.29694989293667745 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 15044645120 38941556 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 56 279 0 0 0 7 43 0 0 0 0 0 +1028 1783880907682167800 REFRESH 29 0 0.6995318938446673 0.82027257240204421 3 10 3 10 0 0 1313 9 417 3988966 56640 220.72525024414062 1.4643999999999999 347.12040000000002 13440 8793 0 0 0.16516741445186056 1.0133634692658928 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 15045378684 39675120 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 25 37 305 0 0 0 0 9 0 0 0 0 0 +1029 1783880908084025800 REFRESH 10 0 0.70232882675641972 0.64821124361158422 1 10 1 10 0 0 1442 14 418 3988953 56640 220.60543823242188 1.4390000000000001 351.36340000000001 13440 8059 0 0 0.20882534987808973 1.4198349398842149 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 15046113268 40409704 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 32 311 0 0 0 0 14 0 0 0 0 0 +1030 1783880908508197200 REFRESH 26 0 0.6989414799501561 0.55451448040885853 1 9 1 9 0 0 2458 29 420 3988462 56160 221.43589782714844 1.4346000000000001 365.54410000000001 20160 11796 0 0 0.00075884775909900728 0.25534957531696156 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 15046849892 41146328 1 0 4 3 2 2 5 983040 737280 491520 491661 1248000 25 25 26 114 230 0 0 2 5 22 0 0 0 0 0 +1031 1783880909018717500 REFRESH 42 0 0.87041787725678832 0 0 4 0 4 0 0 4096 5 426 3987726 55200 225.21037292480469 1.4307000000000001 405.74869999999999 20160 13225 0 0 0 0.0021053083991361761 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 15047592636 41889072 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 77 25 107 126 91 0 0 0 0 5 0 0 0 0 0 +1032 1783880911470942200 DEPTH 56 1 0.71467621242565793 0.17206132879045993 2 4 2 4 0 0 4096 65 2587 23677618 81600 1290.5933074951172 8.5953999999999997 2398.5967000000001 120960 57072 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 15052090284 46386720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 322 150 180 1069 866 15 0 6 2 42 0 0 0 0 0 +1033 1783880913862920600 DEPTH 48 1 0.7030493125669437 0.26575809199318562 2 5 2 5 0 0 3010 33 2569 23677433 81600 1288.8002624511719 8.5907999999999998 2337.0911000000001 120960 56458 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 15056569572 50866008 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 152 640 1477 0 0 1 0 32 0 0 0 0 0 +1034 1783880916211733600 DEPTH 13 1 0.70306232607739938 0.27342419080068137 1 6 1 6 0 0 4096 44 2562 23677526 81600 1287.6492309570312 8.5797000000000008 2347.7552000000001 120960 57082 1 0 0.02278690992206886 0.11957287663934041 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 15061041720 55338156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426532 4492800 150 150 180 831 1251 0 0 2 0 42 0 0 0 0 0 +1035 1783880918492142700 DEPTH 8 1 0.70281587679550372 0.26575809199318562 2 5 2 5 0 0 2669 33 2521 23677409 81600 1291.9037017822266 8.6540999999999997 2222.9283 120960 63875 1 0 0.021444625597274097 0.090837739951928065 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 15065472048 59768484 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 150 475 1596 0 0 0 1 32 0 0 0 0 0 +1036 1783880920902076800 DEPTH 57 1 0.70262097290777992 0.27342419080068137 1 6 1 6 1 0 4096 43 2548 23677469 81600 1292.945556640625 8.5869 2354.2350999999999 120960 56371 1 0 0.00072817730926164254 0.2704690478512991 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 15069929916 64226352 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 150 754 1344 0 0 0 2 41 0 0 0 0 1 +1037 1783880924335667900 DEPTH 52 1 0.6993689591046125 0.36712095400340705 1 7 1 7 0 0 2790 46 2557 23677349 81600 1285.5552062988281 8.5934999999999988 3374.9398999999999 120960 57919 1 0 6.6891345134150568e-05 1.6843904251798398 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 15074397044 1586012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 150 352 1755 0 0 0 0 46 0 0 0 0 0 +1038 1783880926597019900 DEPTH 16 1 0.69930515443546426 0.3594548551959113 2 6 2 6 0 0 3960 87 2510 23677425 81600 1291.9510498046875 8.5877999999999997 2147.4978999999998 120960 69648 1 0 0.0052387284943205886 0.36580846878981438 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 15078816152 6005120 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 150 432 1628 0 0 0 11 76 0 0 0 0 0 +1039 1783880928988210500 DEPTH 11 1 0.69931587972905174 0.37478705281090291 0 8 0 8 0 0 3105 49 2558 23677402 81600 1280.8253479003906 8.5850000000000009 2332.8418000000001 120960 56632 1 0 0 0.64708044592029246 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 15083284220 10473188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426352 4492800 150 150 156 1287 815 2 0 6 0 41 0 0 0 0 0 +1040 1783880931519890800 DEPTH 42 1 0.7041584011023746 0 0 4 0 4 0 0 4096 17 2579 23678118 81600 1294.0665588378906 8.5869999999999997 2472.0596 120960 64102 1 0 0 0.0021053083991361761 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 15087773708 14962676 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 428 150 538 742 721 0 0 0 0 17 0 0 0 0 0 +1041 1783880933997287300 DEPTH 9 1 0.70315316314031295 0.27342419080068137 1 6 1 6 0 0 3872 52 2527 23677399 81600 1289.9010620117188 8.6077000000000012 2363.3998000000001 120960 58151 1 0 0.00031252798000265059 0.1439131274848795 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 15092210156 19399124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 198 579 1450 0 0 1 1 50 0 0 0 0 0 +1042 1783880936400471300 DEPTH 44 1 0.69935241091282985 0.36712095400340705 1 7 1 7 1 0 2910 59 2596 23677485 81600 1293.0203552246094 8.5853000000000002 2344.4758000000002 120960 56736 1 0 0.068838102659276465 0.40302520908812678 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 15096716984 23905952 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 182 1964 4 0 0 2 53 0 0 0 0 1 +1043 1783880938823147100 DEPTH 17 1 0.69870942887358833 0.28109028960817717 0 7 0 7 0 0 4096 48 2577 23677483 81600 1284.1328887939453 8.5927000000000007 2365.2755999999999 120960 55856 1 0 2.0243336635618543e-05 0.057532978394359231 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 15101204432 28393400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 162 864 1251 0 0 1 0 47 0 0 0 0 0 +1044 1783880941258635000 DEPTH 40 1 0.6983741840283213 0.64821124361158422 1 10 1 10 0 0 2110 37 2564 23731122 136320 1274.1132659912109 8.5853000000000002 2325.1947 80640 40113 1 0 0.078694659344276413 0.46137713255528728 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 15105678620 32867588 1 0 4 2 3 2 5 5898240 2949120 3686400 2950925 8236800 150 150 150 213 1901 0 0 1 3 33 0 0 0 0 0 +1045 1783880943491839000 DEPTH 14 1 0.69838823800677374 0.65587734241908002 0 11 0 11 0 0 2006 66 2515 23731262 136320 1290.5392303466797 8.5999999999999996 2175.8166999999999 80640 41479 1 0 1.671973767486666e-05 0.71770855065080708 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 15110102828 37291796 1 0 4 2 3 2 5 5898240 2949120 3686400 2951023 8236800 156 150 167 301 1741 0 0 0 5 61 0 0 0 0 0 +1046 1783880945630352000 DEPTH 35 1 0.69838370594985943 0.8279386712095399 2 11 2 11 0 0 1234 68 2482 23742630 147840 1278.9466094970703 8.5891000000000002 2080.4445999999998 80640 45956 1 0 0.11941958772771655 1.1137643156850541 4096 2048 384 12 96 360 72 24 0 2482 1920 0 384 1 15114493376 41682344 1 0 4 2 2 2 6 5898240 2949120 2949120 2950935 8985600 161 150 150 156 1865 0 0 0 0 68 0 0 0 0 0 +1047 1783880947990747100 DEPTH 39 1 0.69801857723354599 0.55451448040885853 1 9 1 9 0 0 1743 30 2583 23742675 147840 1272.1963195800781 8.5815999999999999 2304.8890000000001 80640 43844 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 15118986944 46175912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 150 150 150 184 1949 0 0 0 0 30 0 0 0 0 0 +1048 1783880950371994500 DEPTH 31 1 0.70340402741264074 0.26575809199318562 2 5 2 5 0 0 3650 62 2570 23677353 81600 1289.3415985107422 8.5930999999999997 2325.5859 120960 56645 1 0 0.039555140524043839 1.1233366979559045 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 15123467252 50656220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426362 4492800 150 150 182 645 1443 0 0 4 0 58 0 0 0 0 0 +1049 1783880952712346400 DEPTH 50 1 0.69905589481820507 0.64054514480408853 2 9 2 9 0 0 1135 30 2589 23720486 125760 1275.6407165527344 8.5852000000000004 2286.4805999999999 120960 68640 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 15127966940 55155908 1 0 4 3 2 2 5 5898240 4423680 2949120 2950871 7488000 150 150 150 255 1884 0 2 0 0 28 0 0 0 0 0 +1050 1783880955011487100 DEPTH 3 1 0.6984698902023958 0.64054514480408853 2 9 2 9 1 0 1326 43 2531 23742730 147840 1266.9074249267578 8.6052 2243.0073000000002 80640 39777 1 0 0.0080826760903077825 0.21650160573883681 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 15132407468 59596436 1 0 4 2 2 2 6 5898240 2949120 2949120 2951003 8985600 150 150 150 199 1882 0 0 0 0 43 0 0 0 0 1 +1051 1783880957429348400 DEPTH 20 1 0.69773014281598122 0.26575809199318562 2 5 2 5 0 0 2426 38 2591 23677358 81600 1288.8403472900391 8.6081000000000003 2361.7435999999998 120960 57156 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 15136909196 64098164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 167 821 1303 0 0 4 2 32 0 0 0 0 0 +1052 1783880960876534800 DEPTH 32 1 0.69773188790448104 0.4608177172061329 1 8 1 8 0 0 3602 37 2573 23698646 103680 1286.3508453369141 8.5698000000000008 3391.415 120960 57462 1 0 0.0052342961375565714 1.6057829682795486 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 15141392644 1473052 1 0 4 3 3 2 4 5898240 4423680 4423680 2950940 5990400 150 150 150 654 1469 0 0 0 1 36 0 0 0 0 0 +1053 1783880963306788100 DEPTH 30 1 0.69764171912661666 0.4608177172061329 1 8 1 8 0 0 4096 40 2543 23699418 103680 1286.3549499511719 8.5910000000000011 2373.7730000000001 80640 38277 1 0 0.0010333068606564353 1.5278069806092593 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 15145845412 5925820 1 0 4 2 3 3 4 5898240 2949120 4423680 4426425 5990400 150 156 150 736 1351 0 0 0 3 37 0 0 0 0 0 +1054 1783880965760756500 DEPTH 2 1 0.69764008263436872 0.45315161839863699 2 7 2 7 0 0 4096 83 2542 23699387 103680 1284.6315612792969 8.6159999999999997 2391.2543999999998 80640 38909 1 0 0.26574559598420427 1.4366036146259098 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15150297160 10377568 1 0 4 2 3 3 4 5898240 2949120 4423680 4426390 5990400 150 150 150 542 1550 0 0 0 0 83 0 0 0 0 0 +1055 1783880967899534000 DEPTH 49 1 0.69765041492667135 0.4454855195911413 3 6 3 6 0 0 1971 39 2519 23698435 103680 1284.3735046386719 8.6097999999999999 2079.8587000000002 120960 61988 1 0 0.00021651220389442272 2.2207205596559891 4096 2048 384 12 96 360 72 24 0 2519 1920 0 384 1 15154725448 14805856 1 0 4 3 3 2 4 5898240 4423680 4423680 2950891 5990400 150 150 150 385 1684 0 0 0 4 35 0 0 0 0 0 +1056 1783880970310157200 DEPTH 42 1 0.77344169833113419 0 0 4 0 4 0 0 4096 13 2598 23677952 81600 1284.7923736572266 8.5864000000000011 2409.4721 120960 52695 1 0 0 0.0021053083991361761 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 15159234316 19314724 1 0 4 3 3 3 3 5898240 4423680 4423680 4426382 4492800 400 150 499 929 620 0 0 0 0 13 0 0 0 0 0 +1057 1783880972800938900 DEPTH 56 1 0.71187760923501786 0.17206132879045993 2 4 2 4 0 0 4096 55 2571 23677630 81600 1280.8397064208984 8.5914999999999999 2378.5279999999998 120960 46028 1 0 0.0032910877200216584 0.27003338750489914 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 15163715644 23796052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 302 150 178 1169 772 11 1 0 0 43 0 0 0 0 0 +1058 1783880975118783600 DEPTH 33 1 0.69861297904121655 0.36712095400340705 1 7 1 7 1 0 4096 77 2515 23677397 81600 1294.5392761230469 8.5900999999999996 2260.7894000000001 120960 69798 1 0 0.00024447762968124594 0.27853884857149086 4096 2048 384 12 96 360 72 24 0 2515 1920 0 384 1 15168139852 28220260 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 150 234 1831 0 0 0 6 71 0 0 0 0 1 +1059 1783880977260908300 DEPTH 10 1 0.69800539834247144 0.64821124361158422 1 10 1 10 0 0 1452 40 2542 23731153 136320 1277.1481628417969 8.5975000000000001 2087.2773000000002 80640 39573 1 0 0.20882534987808973 1.4198349398842149 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 15172591600 32672008 1 0 4 2 3 2 5 5898240 2949120 3686400 2950952 8236800 150 150 150 208 1884 4 0 0 3 33 0 0 0 0 0 +1060 1783880979713808600 DEPTH 27 1 0.69772006559244337 0.4608177172061329 1 8 1 8 0 0 4096 27 2569 23698543 103680 1288.4970550537109 8.5983999999999998 2396.1136000000001 120960 70052 1 0 0.085217573921660891 0.68181035969046377 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 15177070888 37151296 1 0 4 3 3 2 4 5898240 4423680 4423680 2951005 5990400 150 150 150 690 1429 0 0 0 2 25 0 0 0 0 0 +1061 1783880981818933500 DEPTH 58 1 0.69706628431191353 0.92163543441226559 2 12 2 12 0 0 576 19 2533 23742586 147840 1276.6597290039062 8.5945999999999998 2049.4998999999998 80640 45063 1 0 0.0095430491934861868 1.5827371062351756 4096 2048 384 12 96 360 72 24 0 2533 1920 0 384 1 15181513456 41593864 1 0 4 2 2 2 6 5898240 2949120 2949120 2950891 8985600 150 150 150 156 1927 0 0 0 0 19 0 0 0 0 0 +1062 1783880984218316400 DEPTH 25 1 0.69681775552464154 0.4608177172061329 1 8 1 8 1 0 2696 27 2554 23698459 103680 1287.742431640625 8.6031999999999993 2344.4045999999998 120960 61874 1 0 0.0003933139295856771 1.5840018171326171 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 15185977444 46057852 1 0 4 3 3 2 4 5898240 4423680 4423680 2950913 5990400 150 150 150 615 1489 0 0 0 1 26 0 0 0 0 2 +1063 1783880986331261600 DEPTH 22 1 0.6968002843015717 0.91396933560476989 3 11 3 11 1 0 531 44 2532 23742691 147840 1286.3160400390625 8.5792000000000002 2058.8305 80640 44577 1 0 0.0083293444300489312 0.75589278332636578 4096 2048 384 12 96 360 72 24 0 2532 1920 0 384 1 15190418992 50499400 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 150 150 150 156 1926 0 0 0 0 44 0 0 0 0 3 +1064 1783880986775344600 REFRESH 44 0 0.66648874834144878 0.36712095400340705 1 7 1 7 0 0 2922 29 421 3987686 55200 227.92294311523438 1.4277 389.15929999999997 20160 12358 0 0 0.068838102659276465 0.40302520908812678 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 15191156636 51237044 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 25 85 261 1 0 0 1 27 0 0 0 0 0 +1065 1783880987189968700 REFRESH 26 0 0.6949866618507996 0.55451448040885853 1 9 1 9 0 0 2468 29 423 3988482 56160 224.23756408691406 1.4312 359.41930000000002 20160 11863 0 0 0.00075884775909900728 0.25534957531696156 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 15191896320 51976728 1 0 4 3 2 2 5 983040 737280 491520 491668 1248000 25 25 26 124 223 0 0 1 1 27 0 0 0 0 0 diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/run.tsv b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/run.tsv new file mode 100644 index 00000000..0bb717f3 --- /dev/null +++ b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/run.tsv @@ -0,0 +1,58 @@ +format szilassi-global-search-v5 +run_id 99c1d7dc-0363-429a-8b1b-1bf851872653 +node_id LOOKICH +seed 192007509 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +transformer_enabled 1 +transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83 +transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker +transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64 +transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 12858234384 +training_neural_model_reserve_bytes 265316868 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000001_3d4e9160.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000001_3d4e9160.szar new file mode 100644 index 00000000..b97f1f4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000001_3d4e9160.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000002_04bafffb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000002_04bafffb.szar new file mode 100644 index 00000000..85297eb3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000002_04bafffb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000003_21db7af3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000003_21db7af3.szar new file mode 100644 index 00000000..a1695747 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000003_21db7af3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000004_a6ef8cc5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000004_a6ef8cc5.szar new file mode 100644 index 00000000..b9bf6627 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000004_a6ef8cc5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000005_35cd32e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000005_35cd32e2.szar new file mode 100644 index 00000000..daa4c71a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000005_35cd32e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000006_cfb85dd3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000006_cfb85dd3.szar new file mode 100644 index 00000000..1c6356af Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000006_cfb85dd3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000007_34898463.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000007_34898463.szar new file mode 100644 index 00000000..c53fdbfe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000007_34898463.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000008_81a1c696.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000008_81a1c696.szar new file mode 100644 index 00000000..5a6e04ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000008_81a1c696.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000009_fa95fde9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000009_fa95fde9.szar new file mode 100644 index 00000000..df3586b3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000009_fa95fde9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000010_85e81954.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000010_85e81954.szar new file mode 100644 index 00000000..25dfe829 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000010_85e81954.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000011_70509e4d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000011_70509e4d.szar new file mode 100644 index 00000000..6a4cc9c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000011_70509e4d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000012_5334bda5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000012_5334bda5.szar new file mode 100644 index 00000000..560b617a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000012_5334bda5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000013_86f6b8cf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000013_86f6b8cf.szar new file mode 100644 index 00000000..dfa0f490 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000013_86f6b8cf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000014_6ee71adb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000014_6ee71adb.szar new file mode 100644 index 00000000..63bc5fef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/archive/delta_00000000000000000014_6ee71adb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000001_48edad22.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000001_48edad22.szcp new file mode 100644 index 00000000..7fd3b408 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000001_48edad22.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000002_c65e4199.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000002_c65e4199.szcp new file mode 100644 index 00000000..c4a557f6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000002_c65e4199.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000003_80cc4fb6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000003_80cc4fb6.szcp new file mode 100644 index 00000000..184c337e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000003_80cc4fb6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000004_9dad819e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000004_9dad819e.szcp new file mode 100644 index 00000000..30e262c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000004_9dad819e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000005_6ac3081d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000005_6ac3081d.szcp new file mode 100644 index 00000000..dc0594ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000005_6ac3081d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000006_4824e1aa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000006_4824e1aa.szcp new file mode 100644 index 00000000..86336c78 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000006_4824e1aa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000007_ea179355.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000007_ea179355.szcp new file mode 100644 index 00000000..ec55da09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000007_ea179355.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000008_6f16023d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000008_6f16023d.szcp new file mode 100644 index 00000000..68f739c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000008_6f16023d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000009_ceb1fe5a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000009_ceb1fe5a.szcp new file mode 100644 index 00000000..115351e5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000009_ceb1fe5a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000010_40b452e5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000010_40b452e5.szcp new file mode 100644 index 00000000..558d90d3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000010_40b452e5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000011_75c3157b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000011_75c3157b.szcp new file mode 100644 index 00000000..cef40d0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000011_75c3157b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000012_94fbe704.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000012_94fbe704.szcp new file mode 100644 index 00000000..6d0a056f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000012_94fbe704.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000013_88ba6ba8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000013_88ba6ba8.szcp new file mode 100644 index 00000000..c21f1504 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000013_88ba6ba8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000014_9476f307.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000014_9476f307.szcp new file mode 100644 index 00000000..dbbe8e40 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_000/checkpoints/checkpoint_00000000000000000014_9476f307.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000001_8ae96c26.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000001_8ae96c26.szar new file mode 100644 index 00000000..fac93c1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000001_8ae96c26.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000002_b044898a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000002_b044898a.szar new file mode 100644 index 00000000..ce32ed82 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000002_b044898a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000003_626483ef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000003_626483ef.szar new file mode 100644 index 00000000..f9b7e220 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000003_626483ef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000004_27af02bb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000004_27af02bb.szar new file mode 100644 index 00000000..1c268840 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000004_27af02bb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000005_8b87d3ca.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000005_8b87d3ca.szar new file mode 100644 index 00000000..1997793e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000005_8b87d3ca.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000006_fff8ead8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000006_fff8ead8.szar new file mode 100644 index 00000000..8c81230d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000006_fff8ead8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000007_978d92d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000007_978d92d0.szar new file mode 100644 index 00000000..1ceabfb0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000007_978d92d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000008_ed8e9b12.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000008_ed8e9b12.szar new file mode 100644 index 00000000..a5d14c21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000008_ed8e9b12.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000009_5a8f9a39.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000009_5a8f9a39.szar new file mode 100644 index 00000000..82dbf48f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000009_5a8f9a39.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000010_1dd54864.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000010_1dd54864.szar new file mode 100644 index 00000000..0ee6366a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000010_1dd54864.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000011_4de69f05.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000011_4de69f05.szar new file mode 100644 index 00000000..0fedcf62 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000011_4de69f05.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000012_c25b27c8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000012_c25b27c8.szar new file mode 100644 index 00000000..98b0b0c2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000012_c25b27c8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000013_44a04911.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000013_44a04911.szar new file mode 100644 index 00000000..c4e50287 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000013_44a04911.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000014_c57ceb35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000014_c57ceb35.szar new file mode 100644 index 00000000..82f98784 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000014_c57ceb35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000015_d489a915.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000015_d489a915.szar new file mode 100644 index 00000000..fa2becda Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000015_d489a915.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000016_203fb504.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000016_203fb504.szar new file mode 100644 index 00000000..cd0f32a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000016_203fb504.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000017_616ec645.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000017_616ec645.szar new file mode 100644 index 00000000..3443e39b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000017_616ec645.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000018_25f57113.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000018_25f57113.szar new file mode 100644 index 00000000..8f3b05d7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000018_25f57113.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000019_57f5cb82.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000019_57f5cb82.szar new file mode 100644 index 00000000..c20df312 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000019_57f5cb82.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000020_16f545bf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000020_16f545bf.szar new file mode 100644 index 00000000..121619d6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000020_16f545bf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000021_6dfdbf83.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000021_6dfdbf83.szar new file mode 100644 index 00000000..1fd18355 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/archive/delta_00000000000000000021_6dfdbf83.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000001_5a543f98.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000001_5a543f98.szcp new file mode 100644 index 00000000..575b5014 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000001_5a543f98.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000002_e7bc96b0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000002_e7bc96b0.szcp new file mode 100644 index 00000000..731c6d08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000002_e7bc96b0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000003_09ba58e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000003_09ba58e1.szcp new file mode 100644 index 00000000..907883b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000003_09ba58e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000004_818fbe6b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000004_818fbe6b.szcp new file mode 100644 index 00000000..493e7cde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000004_818fbe6b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000005_b6f498b9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000005_b6f498b9.szcp new file mode 100644 index 00000000..fdceb51b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000005_b6f498b9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000006_5083f25a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000006_5083f25a.szcp new file mode 100644 index 00000000..cfabbfef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000006_5083f25a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000007_45edd0ef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000007_45edd0ef.szcp new file mode 100644 index 00000000..e47b53ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000007_45edd0ef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000008_690d019f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000008_690d019f.szcp new file mode 100644 index 00000000..9dedb5c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000008_690d019f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000009_fcf48233.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000009_fcf48233.szcp new file mode 100644 index 00000000..19f80bb0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000009_fcf48233.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000010_91884def.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000010_91884def.szcp new file mode 100644 index 00000000..f1f3949c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000010_91884def.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000011_449d5e23.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000011_449d5e23.szcp new file mode 100644 index 00000000..f150887f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000011_449d5e23.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000012_3c0034ff.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000012_3c0034ff.szcp new file mode 100644 index 00000000..3207f006 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000012_3c0034ff.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000013_5fd758d7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000013_5fd758d7.szcp new file mode 100644 index 00000000..a1c79a96 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000013_5fd758d7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000014_bb1f76aa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000014_bb1f76aa.szcp new file mode 100644 index 00000000..79e1df83 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000014_bb1f76aa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000015_c9e05616.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000015_c9e05616.szcp new file mode 100644 index 00000000..d78c933f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000015_c9e05616.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000016_eae211d6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000016_eae211d6.szcp new file mode 100644 index 00000000..2347bb58 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000016_eae211d6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000017_3a29b45c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000017_3a29b45c.szcp new file mode 100644 index 00000000..94b95c7d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000017_3a29b45c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000018_ac02c96a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000018_ac02c96a.szcp new file mode 100644 index 00000000..239d0beb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000018_ac02c96a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000019_2acb5966.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000019_2acb5966.szcp new file mode 100644 index 00000000..bef7c333 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000019_2acb5966.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000020_cf478ea8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000020_cf478ea8.szcp new file mode 100644 index 00000000..3c085b5d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000020_cf478ea8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000021_2864b687.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000021_2864b687.szcp new file mode 100644 index 00000000..156d05a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_001/checkpoints/checkpoint_00000000000000000021_2864b687.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000001_faab45b3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000001_faab45b3.szar new file mode 100644 index 00000000..a264ebef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000001_faab45b3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000002_b2cfd915.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000002_b2cfd915.szar new file mode 100644 index 00000000..a4bdae3c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000002_b2cfd915.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000003_dc568977.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000003_dc568977.szar new file mode 100644 index 00000000..9217c350 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000003_dc568977.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000004_10fb3e9d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000004_10fb3e9d.szar new file mode 100644 index 00000000..6e6ff94c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000004_10fb3e9d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000005_878b0863.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000005_878b0863.szar new file mode 100644 index 00000000..97ecf7a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000005_878b0863.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000006_7a3935df.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000006_7a3935df.szar new file mode 100644 index 00000000..349566ed Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000006_7a3935df.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000007_ada83dab.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000007_ada83dab.szar new file mode 100644 index 00000000..939c6fc0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000007_ada83dab.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000008_4424a66e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000008_4424a66e.szar new file mode 100644 index 00000000..0726cd20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000008_4424a66e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000009_01064f0f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000009_01064f0f.szar new file mode 100644 index 00000000..dc8f5cd0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000009_01064f0f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000010_4f088579.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000010_4f088579.szar new file mode 100644 index 00000000..48f25a6b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000010_4f088579.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000011_eb39ddd9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000011_eb39ddd9.szar new file mode 100644 index 00000000..6be2add7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000011_eb39ddd9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000012_8e8babf2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000012_8e8babf2.szar new file mode 100644 index 00000000..ed471570 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000012_8e8babf2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000013_329c020a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000013_329c020a.szar new file mode 100644 index 00000000..9bb31267 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000013_329c020a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000014_f272e7d7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000014_f272e7d7.szar new file mode 100644 index 00000000..a36c2cd8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000014_f272e7d7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000015_43cc5528.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000015_43cc5528.szar new file mode 100644 index 00000000..cf887d03 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000015_43cc5528.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000016_4c21b79d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000016_4c21b79d.szar new file mode 100644 index 00000000..35382e76 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000016_4c21b79d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000017_296dbe0e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000017_296dbe0e.szar new file mode 100644 index 00000000..1c1750d5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000017_296dbe0e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000018_4d6824e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000018_4d6824e2.szar new file mode 100644 index 00000000..a2543188 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000018_4d6824e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000019_ac3a4a28.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000019_ac3a4a28.szar new file mode 100644 index 00000000..73008e56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/archive/delta_00000000000000000019_ac3a4a28.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000001_f5d7f8a7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000001_f5d7f8a7.szcp new file mode 100644 index 00000000..c4d2d6c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000001_f5d7f8a7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000002_7438fa31.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000002_7438fa31.szcp new file mode 100644 index 00000000..97cdd07e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000002_7438fa31.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000003_123fcb0d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000003_123fcb0d.szcp new file mode 100644 index 00000000..63e01b24 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000003_123fcb0d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000004_0f3fd672.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000004_0f3fd672.szcp new file mode 100644 index 00000000..790b2a91 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000004_0f3fd672.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000005_dced4f1c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000005_dced4f1c.szcp new file mode 100644 index 00000000..b7a055c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000005_dced4f1c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000006_d358b8f8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000006_d358b8f8.szcp new file mode 100644 index 00000000..40dbaafa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000006_d358b8f8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000007_be77ef1f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000007_be77ef1f.szcp new file mode 100644 index 00000000..100b98a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000007_be77ef1f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000008_b702b637.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000008_b702b637.szcp new file mode 100644 index 00000000..ca16fbd7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000008_b702b637.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000009_13fa7248.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000009_13fa7248.szcp new file mode 100644 index 00000000..498498d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000009_13fa7248.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000010_0a5096d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000010_0a5096d5.szcp new file mode 100644 index 00000000..e9f6688c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000010_0a5096d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000011_f226106c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000011_f226106c.szcp new file mode 100644 index 00000000..e6f36126 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000011_f226106c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000012_b7f38685.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000012_b7f38685.szcp new file mode 100644 index 00000000..156ca3a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000012_b7f38685.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000013_ce6e3b69.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000013_ce6e3b69.szcp new file mode 100644 index 00000000..43c2e954 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000013_ce6e3b69.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000014_0e1efd9b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000014_0e1efd9b.szcp new file mode 100644 index 00000000..23bdc1f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000014_0e1efd9b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000015_42c9e4e3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000015_42c9e4e3.szcp new file mode 100644 index 00000000..79979e7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000015_42c9e4e3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000016_edff4e75.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000016_edff4e75.szcp new file mode 100644 index 00000000..433876cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000016_edff4e75.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000017_f63bb115.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000017_f63bb115.szcp new file mode 100644 index 00000000..e4fedf4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000017_f63bb115.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000018_3e1da1b3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000018_3e1da1b3.szcp new file mode 100644 index 00000000..b17578d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000018_3e1da1b3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000019_5f4c1140.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000019_5f4c1140.szcp new file mode 100644 index 00000000..9de0e397 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_002/checkpoints/checkpoint_00000000000000000019_5f4c1140.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000001_2a091e20.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000001_2a091e20.szar new file mode 100644 index 00000000..2aaec05b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000001_2a091e20.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000002_5c67e52a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000002_5c67e52a.szar new file mode 100644 index 00000000..4f0956c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000002_5c67e52a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000003_0df6180f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000003_0df6180f.szar new file mode 100644 index 00000000..5dd597fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000003_0df6180f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000004_c57d24ce.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000004_c57d24ce.szar new file mode 100644 index 00000000..769028dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000004_c57d24ce.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000005_67ea1a58.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000005_67ea1a58.szar new file mode 100644 index 00000000..b2831164 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000005_67ea1a58.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000006_b4da63a7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000006_b4da63a7.szar new file mode 100644 index 00000000..59b5c651 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000006_b4da63a7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000007_7838da9b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000007_7838da9b.szar new file mode 100644 index 00000000..5ca44f71 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000007_7838da9b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000008_c6cb431a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000008_c6cb431a.szar new file mode 100644 index 00000000..d3b62b2b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000008_c6cb431a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000009_c4e3533e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000009_c4e3533e.szar new file mode 100644 index 00000000..e388a123 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000009_c4e3533e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000010_f0543992.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000010_f0543992.szar new file mode 100644 index 00000000..c6039833 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000010_f0543992.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000011_b9c59c04.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000011_b9c59c04.szar new file mode 100644 index 00000000..b4564c58 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000011_b9c59c04.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000012_4df1ed1f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000012_4df1ed1f.szar new file mode 100644 index 00000000..6ea9cf6d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000012_4df1ed1f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000013_0417e444.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000013_0417e444.szar new file mode 100644 index 00000000..313812d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000013_0417e444.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000014_10cff4d4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000014_10cff4d4.szar new file mode 100644 index 00000000..8803bfc0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000014_10cff4d4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000015_895b2403.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000015_895b2403.szar new file mode 100644 index 00000000..7d385e98 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000015_895b2403.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000016_92cf320e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000016_92cf320e.szar new file mode 100644 index 00000000..fcba3065 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/archive/delta_00000000000000000016_92cf320e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000001_90487f23.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000001_90487f23.szcp new file mode 100644 index 00000000..f3397139 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000001_90487f23.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000002_14e53214.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000002_14e53214.szcp new file mode 100644 index 00000000..58ad8972 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000002_14e53214.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000003_b7f989a3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000003_b7f989a3.szcp new file mode 100644 index 00000000..8ea90d2b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000003_b7f989a3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000004_20e1d0cf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000004_20e1d0cf.szcp new file mode 100644 index 00000000..14eec4eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000004_20e1d0cf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000005_326ed1d8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000005_326ed1d8.szcp new file mode 100644 index 00000000..05200e23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000005_326ed1d8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000006_8d51ea06.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000006_8d51ea06.szcp new file mode 100644 index 00000000..00b0b122 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000006_8d51ea06.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000007_c56120dd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000007_c56120dd.szcp new file mode 100644 index 00000000..55cfb4dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000007_c56120dd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000008_426276ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000008_426276ce.szcp new file mode 100644 index 00000000..af39c666 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000008_426276ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000009_753e7137.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000009_753e7137.szcp new file mode 100644 index 00000000..3c4202e3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000009_753e7137.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000010_d266da83.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000010_d266da83.szcp new file mode 100644 index 00000000..7322f5a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000010_d266da83.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000011_8552bcb9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000011_8552bcb9.szcp new file mode 100644 index 00000000..1c1d7658 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000011_8552bcb9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000012_b777f52d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000012_b777f52d.szcp new file mode 100644 index 00000000..bb7a48e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000012_b777f52d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000013_d60fc3ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000013_d60fc3ce.szcp new file mode 100644 index 00000000..76d38d61 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000013_d60fc3ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000014_cb30758b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000014_cb30758b.szcp new file mode 100644 index 00000000..2fb1a4e9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000014_cb30758b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000015_92ac899a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000015_92ac899a.szcp new file mode 100644 index 00000000..d151fa02 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000015_92ac899a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000016_3e4f92d9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000016_3e4f92d9.szcp new file mode 100644 index 00000000..43993f1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_003/checkpoints/checkpoint_00000000000000000016_3e4f92d9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000001_e0991b11.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000001_e0991b11.szar new file mode 100644 index 00000000..dbe887cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000001_e0991b11.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000002_d0ad7a54.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000002_d0ad7a54.szar new file mode 100644 index 00000000..2bb51f0c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000002_d0ad7a54.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000003_86a9a530.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000003_86a9a530.szar new file mode 100644 index 00000000..fa003199 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000003_86a9a530.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000004_42c17bd5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000004_42c17bd5.szar new file mode 100644 index 00000000..fdad7ead Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000004_42c17bd5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000005_0074f68c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000005_0074f68c.szar new file mode 100644 index 00000000..ec817926 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000005_0074f68c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000006_c7690c5f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000006_c7690c5f.szar new file mode 100644 index 00000000..ecd30353 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000006_c7690c5f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000007_307d646e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000007_307d646e.szar new file mode 100644 index 00000000..409f8d63 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000007_307d646e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000008_3c366374.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000008_3c366374.szar new file mode 100644 index 00000000..18595948 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000008_3c366374.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000009_cc0c25a6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000009_cc0c25a6.szar new file mode 100644 index 00000000..0aeabff4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000009_cc0c25a6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000010_9ea2db3e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000010_9ea2db3e.szar new file mode 100644 index 00000000..c2b8b903 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000010_9ea2db3e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000011_014649d5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000011_014649d5.szar new file mode 100644 index 00000000..9feb0cd7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000011_014649d5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000012_b94eae71.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000012_b94eae71.szar new file mode 100644 index 00000000..77621452 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/archive/delta_00000000000000000012_b94eae71.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000001_2b4597a0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000001_2b4597a0.szcp new file mode 100644 index 00000000..d9130656 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000001_2b4597a0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000002_84e31276.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000002_84e31276.szcp new file mode 100644 index 00000000..01beba45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000002_84e31276.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000003_6db60f4f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000003_6db60f4f.szcp new file mode 100644 index 00000000..eee9aebe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000003_6db60f4f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000004_ce235c9d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000004_ce235c9d.szcp new file mode 100644 index 00000000..aebeb28a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000004_ce235c9d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000005_dc39a746.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000005_dc39a746.szcp new file mode 100644 index 00000000..ee49e7f6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000005_dc39a746.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000006_5bf4267e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000006_5bf4267e.szcp new file mode 100644 index 00000000..721579f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000006_5bf4267e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000007_2bc2c5ea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000007_2bc2c5ea.szcp new file mode 100644 index 00000000..beeae7e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000007_2bc2c5ea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000008_154b8762.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000008_154b8762.szcp new file mode 100644 index 00000000..73cbbf09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000008_154b8762.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000009_f8d2f12c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000009_f8d2f12c.szcp new file mode 100644 index 00000000..db73d072 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000009_f8d2f12c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000010_18407d72.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000010_18407d72.szcp new file mode 100644 index 00000000..5b72fa9a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000010_18407d72.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000011_7c650608.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000011_7c650608.szcp new file mode 100644 index 00000000..47b3fc4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000011_7c650608.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000012_0082cf88.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000012_0082cf88.szcp new file mode 100644 index 00000000..4a57e6e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_004/checkpoints/checkpoint_00000000000000000012_0082cf88.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000001_696ec395.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000001_696ec395.szar new file mode 100644 index 00000000..ae033569 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000001_696ec395.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000002_bf940e38.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000002_bf940e38.szar new file mode 100644 index 00000000..e3e00777 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000002_bf940e38.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000003_a37c48e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000003_a37c48e9.szar new file mode 100644 index 00000000..5cca7aaf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000003_a37c48e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000004_0b4f1882.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000004_0b4f1882.szar new file mode 100644 index 00000000..836f4f35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000004_0b4f1882.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000005_f7ac9cb1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000005_f7ac9cb1.szar new file mode 100644 index 00000000..9254d377 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000005_f7ac9cb1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000006_9f15db48.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000006_9f15db48.szar new file mode 100644 index 00000000..da4bf34e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000006_9f15db48.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000007_cf841c73.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000007_cf841c73.szar new file mode 100644 index 00000000..a790d314 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000007_cf841c73.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000008_9d8fedae.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000008_9d8fedae.szar new file mode 100644 index 00000000..752be51c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000008_9d8fedae.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000009_ffa18a7e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000009_ffa18a7e.szar new file mode 100644 index 00000000..14215638 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000009_ffa18a7e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000010_8dc98ef5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000010_8dc98ef5.szar new file mode 100644 index 00000000..b15d441c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000010_8dc98ef5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000011_34bb1121.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000011_34bb1121.szar new file mode 100644 index 00000000..3f5fb99b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000011_34bb1121.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000012_2320ae16.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000012_2320ae16.szar new file mode 100644 index 00000000..3b7fb5a5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000012_2320ae16.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000013_f07059b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000013_f07059b0.szar new file mode 100644 index 00000000..7e2f25c6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000013_f07059b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000014_0b07f3f7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000014_0b07f3f7.szar new file mode 100644 index 00000000..99c4ada8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/archive/delta_00000000000000000014_0b07f3f7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000001_30d39cce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000001_30d39cce.szcp new file mode 100644 index 00000000..678251f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000001_30d39cce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000002_4b4a1d05.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000002_4b4a1d05.szcp new file mode 100644 index 00000000..704e6108 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000002_4b4a1d05.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000003_a5793181.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000003_a5793181.szcp new file mode 100644 index 00000000..10ff42e6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000003_a5793181.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000004_e10029bd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000004_e10029bd.szcp new file mode 100644 index 00000000..96b413ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000004_e10029bd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000005_f4b7d63c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000005_f4b7d63c.szcp new file mode 100644 index 00000000..212612d5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000005_f4b7d63c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000006_6b3baa2f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000006_6b3baa2f.szcp new file mode 100644 index 00000000..710589b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000006_6b3baa2f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000007_e1f8dd51.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000007_e1f8dd51.szcp new file mode 100644 index 00000000..da6ebe7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000007_e1f8dd51.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000008_7b2d312e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000008_7b2d312e.szcp new file mode 100644 index 00000000..136d39a3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000008_7b2d312e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000009_180cdaa5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000009_180cdaa5.szcp new file mode 100644 index 00000000..8af75150 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000009_180cdaa5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000010_140a8415.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000010_140a8415.szcp new file mode 100644 index 00000000..a8334334 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000010_140a8415.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000011_c5988dc4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000011_c5988dc4.szcp new file mode 100644 index 00000000..b88bdaf0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000011_c5988dc4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000012_618c692f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000012_618c692f.szcp new file mode 100644 index 00000000..9896b9f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000012_618c692f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000013_8cef1fa9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000013_8cef1fa9.szcp new file mode 100644 index 00000000..55570ca4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000013_8cef1fa9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000014_fd663af2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000014_fd663af2.szcp new file mode 100644 index 00000000..ccefad60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_005/checkpoints/checkpoint_00000000000000000014_fd663af2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000001_f1265cab.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000001_f1265cab.szar new file mode 100644 index 00000000..a219fd4a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000001_f1265cab.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000002_8f51ed60.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000002_8f51ed60.szar new file mode 100644 index 00000000..69ef9d20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000002_8f51ed60.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000003_16ed796c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000003_16ed796c.szar new file mode 100644 index 00000000..44001796 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000003_16ed796c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000004_65ed4f53.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000004_65ed4f53.szar new file mode 100644 index 00000000..8e79394f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000004_65ed4f53.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000005_229dbe0c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000005_229dbe0c.szar new file mode 100644 index 00000000..4815345e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000005_229dbe0c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000006_3ee4bcf6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000006_3ee4bcf6.szar new file mode 100644 index 00000000..aff3208d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000006_3ee4bcf6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000007_54d2a068.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000007_54d2a068.szar new file mode 100644 index 00000000..1a0886f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000007_54d2a068.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000008_cee1820e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000008_cee1820e.szar new file mode 100644 index 00000000..68032ce3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000008_cee1820e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000009_bee2979d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000009_bee2979d.szar new file mode 100644 index 00000000..42fe7e20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000009_bee2979d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000010_34c2708e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000010_34c2708e.szar new file mode 100644 index 00000000..e19a1528 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000010_34c2708e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000011_ad95461a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000011_ad95461a.szar new file mode 100644 index 00000000..febd84fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000011_ad95461a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000012_e8064a9f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000012_e8064a9f.szar new file mode 100644 index 00000000..4484970e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/archive/delta_00000000000000000012_e8064a9f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000001_a4b5a026.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000001_a4b5a026.szcp new file mode 100644 index 00000000..e63fee04 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000001_a4b5a026.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000002_8d47bfb9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000002_8d47bfb9.szcp new file mode 100644 index 00000000..0aea0fdb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000002_8d47bfb9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000003_8ec5d17e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000003_8ec5d17e.szcp new file mode 100644 index 00000000..f3c03b13 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000003_8ec5d17e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000004_00a00cd0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000004_00a00cd0.szcp new file mode 100644 index 00000000..93051dff Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000004_00a00cd0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000005_0a337558.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000005_0a337558.szcp new file mode 100644 index 00000000..56f53d08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000005_0a337558.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000006_c3be467a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000006_c3be467a.szcp new file mode 100644 index 00000000..4b7b397f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000006_c3be467a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000007_568d47ef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000007_568d47ef.szcp new file mode 100644 index 00000000..e14e0942 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000007_568d47ef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000008_f287ab42.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000008_f287ab42.szcp new file mode 100644 index 00000000..f60b075a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000008_f287ab42.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000009_74c6bbe2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000009_74c6bbe2.szcp new file mode 100644 index 00000000..1e7a88bc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000009_74c6bbe2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000010_675b9a66.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000010_675b9a66.szcp new file mode 100644 index 00000000..0438019e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000010_675b9a66.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000011_9baeb36e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000011_9baeb36e.szcp new file mode 100644 index 00000000..31834529 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000011_9baeb36e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000012_b4b0332d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000012_b4b0332d.szcp new file mode 100644 index 00000000..e9d0eb2f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_006/checkpoints/checkpoint_00000000000000000012_b4b0332d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000001_47458e1d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000001_47458e1d.szar new file mode 100644 index 00000000..9cc4993b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000001_47458e1d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000002_4d626e10.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000002_4d626e10.szar new file mode 100644 index 00000000..cb9d89c2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000002_4d626e10.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000003_08a2987e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000003_08a2987e.szar new file mode 100644 index 00000000..1dd29e0c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000003_08a2987e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000004_6d5591ff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000004_6d5591ff.szar new file mode 100644 index 00000000..c591ab0a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000004_6d5591ff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000005_09685a91.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000005_09685a91.szar new file mode 100644 index 00000000..93988f73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000005_09685a91.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000006_f184eb01.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000006_f184eb01.szar new file mode 100644 index 00000000..4d1b8341 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000006_f184eb01.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000007_782786fd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000007_782786fd.szar new file mode 100644 index 00000000..2ee80f3b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000007_782786fd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000008_881375b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000008_881375b0.szar new file mode 100644 index 00000000..22c5d143 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000008_881375b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000009_bd26d739.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000009_bd26d739.szar new file mode 100644 index 00000000..b91e50fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000009_bd26d739.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000010_ab91c462.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000010_ab91c462.szar new file mode 100644 index 00000000..da5c5599 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000010_ab91c462.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000011_8667ed57.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000011_8667ed57.szar new file mode 100644 index 00000000..92f0ba1b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000011_8667ed57.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000012_f98ad340.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000012_f98ad340.szar new file mode 100644 index 00000000..8ad5f2e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000012_f98ad340.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000013_774c6616.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000013_774c6616.szar new file mode 100644 index 00000000..7f72343d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000013_774c6616.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000014_6313464f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000014_6313464f.szar new file mode 100644 index 00000000..21c8b6b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/archive/delta_00000000000000000014_6313464f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000001_6cdf0663.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000001_6cdf0663.szcp new file mode 100644 index 00000000..3a9cf012 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000001_6cdf0663.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000002_c20fbc78.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000002_c20fbc78.szcp new file mode 100644 index 00000000..21f10aac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000002_c20fbc78.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000003_28a1e144.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000003_28a1e144.szcp new file mode 100644 index 00000000..2ba9791e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000003_28a1e144.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000004_a4e6fe78.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000004_a4e6fe78.szcp new file mode 100644 index 00000000..a28eba29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000004_a4e6fe78.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000005_9424ba14.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000005_9424ba14.szcp new file mode 100644 index 00000000..d7b0c8f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000005_9424ba14.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000006_aeaa5bd6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000006_aeaa5bd6.szcp new file mode 100644 index 00000000..c99a676d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000006_aeaa5bd6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000007_febe1570.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000007_febe1570.szcp new file mode 100644 index 00000000..55cc0599 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000007_febe1570.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000008_659dbe7d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000008_659dbe7d.szcp new file mode 100644 index 00000000..43cb18c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000008_659dbe7d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000009_385866aa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000009_385866aa.szcp new file mode 100644 index 00000000..4c89cc10 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000009_385866aa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000010_0602c09e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000010_0602c09e.szcp new file mode 100644 index 00000000..1e4e92e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000010_0602c09e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000011_be47b6eb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000011_be47b6eb.szcp new file mode 100644 index 00000000..5fd9d663 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000011_be47b6eb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000012_ee75f6d8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000012_ee75f6d8.szcp new file mode 100644 index 00000000..df1a88c5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000012_ee75f6d8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000013_94eee45d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000013_94eee45d.szcp new file mode 100644 index 00000000..25b59e60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000013_94eee45d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000014_e6e6de8b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000014_e6e6de8b.szcp new file mode 100644 index 00000000..e53afd14 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_007/checkpoints/checkpoint_00000000000000000014_e6e6de8b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000001_fbd5dbe2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000001_fbd5dbe2.szar new file mode 100644 index 00000000..0b4af230 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000001_fbd5dbe2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000002_b30d577d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000002_b30d577d.szar new file mode 100644 index 00000000..35bec8ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000002_b30d577d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000003_eb59f0ce.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000003_eb59f0ce.szar new file mode 100644 index 00000000..2f506afa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000003_eb59f0ce.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000004_f29356b2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000004_f29356b2.szar new file mode 100644 index 00000000..670b23ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000004_f29356b2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000005_186bbf8f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000005_186bbf8f.szar new file mode 100644 index 00000000..dbc8300a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000005_186bbf8f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000006_e2ea947a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000006_e2ea947a.szar new file mode 100644 index 00000000..e2fadbd7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000006_e2ea947a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000007_994449c7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000007_994449c7.szar new file mode 100644 index 00000000..411a5b1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000007_994449c7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000008_16666092.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000008_16666092.szar new file mode 100644 index 00000000..0d2085aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000008_16666092.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000009_7bdb3cfa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000009_7bdb3cfa.szar new file mode 100644 index 00000000..baf97d7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000009_7bdb3cfa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000010_c6fe6399.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000010_c6fe6399.szar new file mode 100644 index 00000000..5c2b244f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000010_c6fe6399.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000011_4eee06db.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000011_4eee06db.szar new file mode 100644 index 00000000..0823053f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000011_4eee06db.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000012_a55df8ef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000012_a55df8ef.szar new file mode 100644 index 00000000..0d1f67d0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000012_a55df8ef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000013_0bf5d36c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000013_0bf5d36c.szar new file mode 100644 index 00000000..2a00ea23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000013_0bf5d36c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000014_81fa3566.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000014_81fa3566.szar new file mode 100644 index 00000000..6a21c0c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000014_81fa3566.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000015_4d9f3a77.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000015_4d9f3a77.szar new file mode 100644 index 00000000..a3237b0a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000015_4d9f3a77.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000016_fb9389c9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000016_fb9389c9.szar new file mode 100644 index 00000000..8eb52945 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000016_fb9389c9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000017_6191e583.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000017_6191e583.szar new file mode 100644 index 00000000..e6a99d84 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000017_6191e583.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000018_abbfda87.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000018_abbfda87.szar new file mode 100644 index 00000000..0f55f817 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000018_abbfda87.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000019_ad05e06e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000019_ad05e06e.szar new file mode 100644 index 00000000..83430500 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000019_ad05e06e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000020_8c5acad9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000020_8c5acad9.szar new file mode 100644 index 00000000..72aac74f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000020_8c5acad9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000021_f6f42627.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000021_f6f42627.szar new file mode 100644 index 00000000..562d5121 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000021_f6f42627.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000022_c3c6f353.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000022_c3c6f353.szar new file mode 100644 index 00000000..5e00c9c8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000022_c3c6f353.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000023_1b6feb72.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000023_1b6feb72.szar new file mode 100644 index 00000000..af60ac0c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000023_1b6feb72.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000024_a1832bbf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000024_a1832bbf.szar new file mode 100644 index 00000000..a393bcd1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/archive/delta_00000000000000000024_a1832bbf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000001_65d3c3e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000001_65d3c3e1.szcp new file mode 100644 index 00000000..11706c6a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000001_65d3c3e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000002_0a3a87bc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000002_0a3a87bc.szcp new file mode 100644 index 00000000..30a9a140 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000002_0a3a87bc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000003_a46d5ef3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000003_a46d5ef3.szcp new file mode 100644 index 00000000..4869f07b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000003_a46d5ef3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000004_802af733.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000004_802af733.szcp new file mode 100644 index 00000000..8f4ff98a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000004_802af733.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000005_190da0ea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000005_190da0ea.szcp new file mode 100644 index 00000000..4b401cda Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000005_190da0ea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000006_dda33c80.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000006_dda33c80.szcp new file mode 100644 index 00000000..e65d27ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000006_dda33c80.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000007_68cbaddc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000007_68cbaddc.szcp new file mode 100644 index 00000000..1a42bbea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000007_68cbaddc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000008_fe0727fc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000008_fe0727fc.szcp new file mode 100644 index 00000000..f64834b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000008_fe0727fc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000009_d54dee15.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000009_d54dee15.szcp new file mode 100644 index 00000000..40b391f7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000009_d54dee15.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000010_b696a426.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000010_b696a426.szcp new file mode 100644 index 00000000..e415cc63 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000010_b696a426.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000011_005ad5ab.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000011_005ad5ab.szcp new file mode 100644 index 00000000..0fdc5ae6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000011_005ad5ab.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000012_d9b84622.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000012_d9b84622.szcp new file mode 100644 index 00000000..3ef6cc9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000012_d9b84622.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000013_34276ff0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000013_34276ff0.szcp new file mode 100644 index 00000000..78db6dc7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000013_34276ff0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000014_f084efb3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000014_f084efb3.szcp new file mode 100644 index 00000000..010dac04 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000014_f084efb3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000015_104a58c3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000015_104a58c3.szcp new file mode 100644 index 00000000..cf173d75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000015_104a58c3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000016_62adf78b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000016_62adf78b.szcp new file mode 100644 index 00000000..1b6bf7b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000016_62adf78b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000017_e9b32caf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000017_e9b32caf.szcp new file mode 100644 index 00000000..dfe1d66b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000017_e9b32caf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000018_2691db30.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000018_2691db30.szcp new file mode 100644 index 00000000..93e938c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000018_2691db30.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000019_a1e37b90.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000019_a1e37b90.szcp new file mode 100644 index 00000000..eca43355 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000019_a1e37b90.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000020_97d824b8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000020_97d824b8.szcp new file mode 100644 index 00000000..0db83f50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000020_97d824b8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000021_daefc77e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000021_daefc77e.szcp new file mode 100644 index 00000000..2c59b2bc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000021_daefc77e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000022_610af844.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000022_610af844.szcp new file mode 100644 index 00000000..267eefb4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000022_610af844.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000023_b4e033d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000023_b4e033d5.szcp new file mode 100644 index 00000000..1787dbca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000023_b4e033d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000024_cc4f401d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000024_cc4f401d.szcp new file mode 100644 index 00000000..d880ee27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_008/checkpoints/checkpoint_00000000000000000024_cc4f401d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000001_d8f06301.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000001_d8f06301.szar new file mode 100644 index 00000000..3d7d3709 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000001_d8f06301.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000002_88bf33e1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000002_88bf33e1.szar new file mode 100644 index 00000000..4558e768 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000002_88bf33e1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000003_d334398e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000003_d334398e.szar new file mode 100644 index 00000000..e41afb12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000003_d334398e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000004_59186cfd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000004_59186cfd.szar new file mode 100644 index 00000000..56d0fd4d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000004_59186cfd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000005_5a52fec7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000005_5a52fec7.szar new file mode 100644 index 00000000..0d99676a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000005_5a52fec7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000006_78a8ac54.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000006_78a8ac54.szar new file mode 100644 index 00000000..20e0b609 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000006_78a8ac54.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000007_8f132220.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000007_8f132220.szar new file mode 100644 index 00000000..f9d1254b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000007_8f132220.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000008_ca093e96.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000008_ca093e96.szar new file mode 100644 index 00000000..9de7ce75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000008_ca093e96.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000009_cc78c1c9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000009_cc78c1c9.szar new file mode 100644 index 00000000..65819ec7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000009_cc78c1c9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000010_2cdebc24.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000010_2cdebc24.szar new file mode 100644 index 00000000..7aebcf0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000010_2cdebc24.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000011_f18a9757.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000011_f18a9757.szar new file mode 100644 index 00000000..2e3c031f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000011_f18a9757.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000012_04d36132.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000012_04d36132.szar new file mode 100644 index 00000000..cfbb70bb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000012_04d36132.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000013_539289ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000013_539289ac.szar new file mode 100644 index 00000000..8013848e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000013_539289ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000014_56a8bfec.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000014_56a8bfec.szar new file mode 100644 index 00000000..aa363b05 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000014_56a8bfec.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000015_c7d54776.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000015_c7d54776.szar new file mode 100644 index 00000000..4e767fbf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000015_c7d54776.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000016_22bc898e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000016_22bc898e.szar new file mode 100644 index 00000000..fe3a15bb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000016_22bc898e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000017_8685dd70.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000017_8685dd70.szar new file mode 100644 index 00000000..b0195845 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000017_8685dd70.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000018_c287f4d3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000018_c287f4d3.szar new file mode 100644 index 00000000..148a5b81 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000018_c287f4d3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000019_986b90b3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000019_986b90b3.szar new file mode 100644 index 00000000..dfe33a71 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000019_986b90b3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000020_3a6053dd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000020_3a6053dd.szar new file mode 100644 index 00000000..209e9de6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000020_3a6053dd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000021_d9ca738e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000021_d9ca738e.szar new file mode 100644 index 00000000..f57250c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000021_d9ca738e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000022_b15d30cb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000022_b15d30cb.szar new file mode 100644 index 00000000..bdaa4d8e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000022_b15d30cb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000023_c88e97f7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000023_c88e97f7.szar new file mode 100644 index 00000000..b2c58034 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000023_c88e97f7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000024_5ce6e9a4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000024_5ce6e9a4.szar new file mode 100644 index 00000000..6db640bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/archive/delta_00000000000000000024_5ce6e9a4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000001_00909448.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000001_00909448.szcp new file mode 100644 index 00000000..3a5bb21f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000001_00909448.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000002_fdbcef35.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000002_fdbcef35.szcp new file mode 100644 index 00000000..10c051d6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000002_fdbcef35.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000003_1ba8d6fb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000003_1ba8d6fb.szcp new file mode 100644 index 00000000..28b23d42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000003_1ba8d6fb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000004_1ec68ee0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000004_1ec68ee0.szcp new file mode 100644 index 00000000..2f43ab42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000004_1ec68ee0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000005_7864d34a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000005_7864d34a.szcp new file mode 100644 index 00000000..673574cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000005_7864d34a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000006_8bdf2f0b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000006_8bdf2f0b.szcp new file mode 100644 index 00000000..05715b55 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000006_8bdf2f0b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000007_580586d0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000007_580586d0.szcp new file mode 100644 index 00000000..a7725086 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000007_580586d0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000008_470dfe8f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000008_470dfe8f.szcp new file mode 100644 index 00000000..1993e4c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000008_470dfe8f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000009_42fe1bc1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000009_42fe1bc1.szcp new file mode 100644 index 00000000..713be335 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000009_42fe1bc1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000010_ce521b4a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000010_ce521b4a.szcp new file mode 100644 index 00000000..d9f17de3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000010_ce521b4a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000011_5afbf3f1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000011_5afbf3f1.szcp new file mode 100644 index 00000000..4d8cc0ed Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000011_5afbf3f1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000012_58f3a0bd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000012_58f3a0bd.szcp new file mode 100644 index 00000000..5a14168e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000012_58f3a0bd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000013_ff672727.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000013_ff672727.szcp new file mode 100644 index 00000000..571d9f92 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000013_ff672727.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000014_9d0d58c6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000014_9d0d58c6.szcp new file mode 100644 index 00000000..8f33a35a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000014_9d0d58c6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000015_760cd810.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000015_760cd810.szcp new file mode 100644 index 00000000..cf378624 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000015_760cd810.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000016_901d8f0d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000016_901d8f0d.szcp new file mode 100644 index 00000000..7e8ae3f7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000016_901d8f0d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000017_a0d48f9b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000017_a0d48f9b.szcp new file mode 100644 index 00000000..5445fc3e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000017_a0d48f9b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000018_e55ffa02.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000018_e55ffa02.szcp new file mode 100644 index 00000000..a99a680c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000018_e55ffa02.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000019_1b31a9c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000019_1b31a9c8.szcp new file mode 100644 index 00000000..633c3ca3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000019_1b31a9c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000020_7a9a8527.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000020_7a9a8527.szcp new file mode 100644 index 00000000..f53b0e4a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000020_7a9a8527.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000021_73381b42.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000021_73381b42.szcp new file mode 100644 index 00000000..37209e95 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000021_73381b42.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000022_0351d462.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000022_0351d462.szcp new file mode 100644 index 00000000..6c9903ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000022_0351d462.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000023_db3e797f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000023_db3e797f.szcp new file mode 100644 index 00000000..aa178831 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000023_db3e797f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000024_930ab690.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000024_930ab690.szcp new file mode 100644 index 00000000..983bc6ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_009/checkpoints/checkpoint_00000000000000000024_930ab690.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000001_23a0f80c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000001_23a0f80c.szar new file mode 100644 index 00000000..5fc4ab9f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000001_23a0f80c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000002_c610f5b1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000002_c610f5b1.szar new file mode 100644 index 00000000..57e6b8d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000002_c610f5b1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000003_d297c65a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000003_d297c65a.szar new file mode 100644 index 00000000..195cbcd7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000003_d297c65a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000004_6f48e0e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000004_6f48e0e2.szar new file mode 100644 index 00000000..ac323e25 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000004_6f48e0e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000005_33f914c4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000005_33f914c4.szar new file mode 100644 index 00000000..e4dafe89 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000005_33f914c4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000006_3c595cbe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000006_3c595cbe.szar new file mode 100644 index 00000000..90fe3513 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000006_3c595cbe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000007_e29de502.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000007_e29de502.szar new file mode 100644 index 00000000..58c1d1d7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000007_e29de502.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000008_c1dd0abc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000008_c1dd0abc.szar new file mode 100644 index 00000000..c56468b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000008_c1dd0abc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000009_e21708d8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000009_e21708d8.szar new file mode 100644 index 00000000..4d9608a4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000009_e21708d8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000010_c04aa401.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000010_c04aa401.szar new file mode 100644 index 00000000..2558f0c5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000010_c04aa401.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000011_f94d70f6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000011_f94d70f6.szar new file mode 100644 index 00000000..4244e326 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000011_f94d70f6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000012_d07f9cb9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000012_d07f9cb9.szar new file mode 100644 index 00000000..5c2a3737 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000012_d07f9cb9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000013_ed75b1aa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000013_ed75b1aa.szar new file mode 100644 index 00000000..af1b9980 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000013_ed75b1aa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000014_a04cacb1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000014_a04cacb1.szar new file mode 100644 index 00000000..c97c6668 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000014_a04cacb1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000015_575645ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000015_575645ac.szar new file mode 100644 index 00000000..c3c39edb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000015_575645ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000016_156cd7a1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000016_156cd7a1.szar new file mode 100644 index 00000000..354fbc85 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/archive/delta_00000000000000000016_156cd7a1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000001_7dc9d09a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000001_7dc9d09a.szcp new file mode 100644 index 00000000..483b5b13 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000001_7dc9d09a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000002_6c674a4a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000002_6c674a4a.szcp new file mode 100644 index 00000000..a666c9a3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000002_6c674a4a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000003_cde13b08.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000003_cde13b08.szcp new file mode 100644 index 00000000..4b289ef6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000003_cde13b08.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000004_cfe66bb9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000004_cfe66bb9.szcp new file mode 100644 index 00000000..71e56381 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000004_cfe66bb9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000005_59cc7e90.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000005_59cc7e90.szcp new file mode 100644 index 00000000..81bfa4ea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000005_59cc7e90.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000006_950d174e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000006_950d174e.szcp new file mode 100644 index 00000000..693031e7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000006_950d174e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000007_b176068d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000007_b176068d.szcp new file mode 100644 index 00000000..437bc490 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000007_b176068d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000008_32bd1608.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000008_32bd1608.szcp new file mode 100644 index 00000000..5569504b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000008_32bd1608.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000009_71bbb871.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000009_71bbb871.szcp new file mode 100644 index 00000000..e1d106ff Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000009_71bbb871.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000010_e081940b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000010_e081940b.szcp new file mode 100644 index 00000000..4a4ec019 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000010_e081940b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000011_7adcfa15.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000011_7adcfa15.szcp new file mode 100644 index 00000000..144f5133 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000011_7adcfa15.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000012_8f6f4977.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000012_8f6f4977.szcp new file mode 100644 index 00000000..1310ef6e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000012_8f6f4977.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000013_b29b0a56.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000013_b29b0a56.szcp new file mode 100644 index 00000000..796a8047 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000013_b29b0a56.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000014_7ed4381b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000014_7ed4381b.szcp new file mode 100644 index 00000000..7488ae8d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000014_7ed4381b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000015_1dd24b62.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000015_1dd24b62.szcp new file mode 100644 index 00000000..139988bc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000015_1dd24b62.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000016_6bf99d29.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000016_6bf99d29.szcp new file mode 100644 index 00000000..92e3e142 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_010/checkpoints/checkpoint_00000000000000000016_6bf99d29.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000001_d7582ac0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000001_d7582ac0.szar new file mode 100644 index 00000000..f3774495 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000001_d7582ac0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000002_bc967c2f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000002_bc967c2f.szar new file mode 100644 index 00000000..2ca963cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000002_bc967c2f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000003_631a67d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000003_631a67d0.szar new file mode 100644 index 00000000..5c5cf525 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000003_631a67d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000004_28c2d80a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000004_28c2d80a.szar new file mode 100644 index 00000000..21d516bc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000004_28c2d80a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000005_4c595fe8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000005_4c595fe8.szar new file mode 100644 index 00000000..b6402261 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000005_4c595fe8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000006_4a74594d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000006_4a74594d.szar new file mode 100644 index 00000000..52f24c4f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000006_4a74594d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000007_d25e0ad0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000007_d25e0ad0.szar new file mode 100644 index 00000000..5a1819b9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000007_d25e0ad0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000008_61d4b700.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000008_61d4b700.szar new file mode 100644 index 00000000..aeff0e73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000008_61d4b700.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000009_b65d151f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000009_b65d151f.szar new file mode 100644 index 00000000..a2c6144b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000009_b65d151f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000010_cd8ff082.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000010_cd8ff082.szar new file mode 100644 index 00000000..3d714a57 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000010_cd8ff082.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000011_ed587340.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000011_ed587340.szar new file mode 100644 index 00000000..a8a3af15 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000011_ed587340.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000012_c3cf0d82.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000012_c3cf0d82.szar new file mode 100644 index 00000000..3ba31567 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000012_c3cf0d82.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000013_7b953ef2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000013_7b953ef2.szar new file mode 100644 index 00000000..6130beb9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000013_7b953ef2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000014_51c1979c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000014_51c1979c.szar new file mode 100644 index 00000000..0f6aaedd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000014_51c1979c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000015_0f8594d6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000015_0f8594d6.szar new file mode 100644 index 00000000..93375132 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000015_0f8594d6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000016_d0cf046f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000016_d0cf046f.szar new file mode 100644 index 00000000..1eb5b03b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000016_d0cf046f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000017_07e02c35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000017_07e02c35.szar new file mode 100644 index 00000000..0e6fa3fa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000017_07e02c35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000018_52f9ae6f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000018_52f9ae6f.szar new file mode 100644 index 00000000..f829cfa2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000018_52f9ae6f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000019_9719e758.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000019_9719e758.szar new file mode 100644 index 00000000..a8edc6d9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000019_9719e758.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000020_a189f3b8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000020_a189f3b8.szar new file mode 100644 index 00000000..59e83fa1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000020_a189f3b8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000021_a7fbd164.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000021_a7fbd164.szar new file mode 100644 index 00000000..f2bdeff6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/archive/delta_00000000000000000021_a7fbd164.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000001_b2560c47.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000001_b2560c47.szcp new file mode 100644 index 00000000..9030a615 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000001_b2560c47.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000002_2551dc69.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000002_2551dc69.szcp new file mode 100644 index 00000000..72c9b4a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000002_2551dc69.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000003_c563feb5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000003_c563feb5.szcp new file mode 100644 index 00000000..fd4aa271 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000003_c563feb5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000004_dfd2c1ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000004_dfd2c1ce.szcp new file mode 100644 index 00000000..1548ef60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000004_dfd2c1ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000005_6c24ac02.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000005_6c24ac02.szcp new file mode 100644 index 00000000..c26f4a14 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000005_6c24ac02.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000006_db53e6d8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000006_db53e6d8.szcp new file mode 100644 index 00000000..c4b98569 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000006_db53e6d8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000007_81c63868.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000007_81c63868.szcp new file mode 100644 index 00000000..c3c18d88 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000007_81c63868.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000008_ef37ecdc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000008_ef37ecdc.szcp new file mode 100644 index 00000000..c44fe785 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000008_ef37ecdc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000009_9cc5bec2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000009_9cc5bec2.szcp new file mode 100644 index 00000000..22990d24 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000009_9cc5bec2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000010_40e84bb5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000010_40e84bb5.szcp new file mode 100644 index 00000000..0a1cc14c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000010_40e84bb5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000011_1dee4af4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000011_1dee4af4.szcp new file mode 100644 index 00000000..8c9a7f6b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000011_1dee4af4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000012_5e80d5f5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000012_5e80d5f5.szcp new file mode 100644 index 00000000..8afbfd17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000012_5e80d5f5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000013_1238c4b0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000013_1238c4b0.szcp new file mode 100644 index 00000000..6c6422bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000013_1238c4b0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000014_2177f247.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000014_2177f247.szcp new file mode 100644 index 00000000..ac470b70 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000014_2177f247.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000015_85650e01.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000015_85650e01.szcp new file mode 100644 index 00000000..5f5aa209 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000015_85650e01.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000016_6c911d30.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000016_6c911d30.szcp new file mode 100644 index 00000000..f3b646ea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000016_6c911d30.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000017_ece41ea9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000017_ece41ea9.szcp new file mode 100644 index 00000000..18410fe6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000017_ece41ea9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000018_6c5d7b90.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000018_6c5d7b90.szcp new file mode 100644 index 00000000..d44e4039 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000018_6c5d7b90.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000019_e1fdbb84.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000019_e1fdbb84.szcp new file mode 100644 index 00000000..a55cee68 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000019_e1fdbb84.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000020_f6e3a9b9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000020_f6e3a9b9.szcp new file mode 100644 index 00000000..9df1bfd0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000020_f6e3a9b9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000021_fd7f683d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000021_fd7f683d.szcp new file mode 100644 index 00000000..a500dd5f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_011/checkpoints/checkpoint_00000000000000000021_fd7f683d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000001_964b479d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000001_964b479d.szar new file mode 100644 index 00000000..83476cde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000001_964b479d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000002_323d2ed5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000002_323d2ed5.szar new file mode 100644 index 00000000..456789dc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000002_323d2ed5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000003_2c677f09.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000003_2c677f09.szar new file mode 100644 index 00000000..24ab80dc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000003_2c677f09.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000004_69bcd1e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000004_69bcd1e2.szar new file mode 100644 index 00000000..254addc6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000004_69bcd1e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000005_8deea4fe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000005_8deea4fe.szar new file mode 100644 index 00000000..61078d43 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000005_8deea4fe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000006_b41b2829.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000006_b41b2829.szar new file mode 100644 index 00000000..49343c69 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000006_b41b2829.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000007_f6629b35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000007_f6629b35.szar new file mode 100644 index 00000000..71f72b28 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000007_f6629b35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000008_8ef7bfeb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000008_8ef7bfeb.szar new file mode 100644 index 00000000..aaacfd0b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000008_8ef7bfeb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000009_126dc529.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000009_126dc529.szar new file mode 100644 index 00000000..070809e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000009_126dc529.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000010_e89b3d6d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000010_e89b3d6d.szar new file mode 100644 index 00000000..088c48b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000010_e89b3d6d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000011_f7f49b38.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000011_f7f49b38.szar new file mode 100644 index 00000000..2e52ed90 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000011_f7f49b38.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000012_035f996f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000012_035f996f.szar new file mode 100644 index 00000000..0affe752 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000012_035f996f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000013_019ceb4a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000013_019ceb4a.szar new file mode 100644 index 00000000..3b1486f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000013_019ceb4a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000014_3c581d94.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000014_3c581d94.szar new file mode 100644 index 00000000..93ea0a08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000014_3c581d94.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000015_42c4965f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000015_42c4965f.szar new file mode 100644 index 00000000..1c4defe1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000015_42c4965f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000016_f65eb9a1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000016_f65eb9a1.szar new file mode 100644 index 00000000..f1d2af08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000016_f65eb9a1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000017_1d7689ef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000017_1d7689ef.szar new file mode 100644 index 00000000..ce59ecc2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/archive/delta_00000000000000000017_1d7689ef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000001_5e3dd518.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000001_5e3dd518.szcp new file mode 100644 index 00000000..542db1a4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000001_5e3dd518.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000002_08046672.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000002_08046672.szcp new file mode 100644 index 00000000..dec678b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000002_08046672.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000003_8e445bd5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000003_8e445bd5.szcp new file mode 100644 index 00000000..cbbb9043 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000003_8e445bd5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000004_73a70456.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000004_73a70456.szcp new file mode 100644 index 00000000..8252ac7b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000004_73a70456.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000005_44ec3f97.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000005_44ec3f97.szcp new file mode 100644 index 00000000..a258396f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000005_44ec3f97.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000006_d82266c4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000006_d82266c4.szcp new file mode 100644 index 00000000..67fb1312 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000006_d82266c4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000007_d55414cc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000007_d55414cc.szcp new file mode 100644 index 00000000..ad866774 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000007_d55414cc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000008_807b0f7c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000008_807b0f7c.szcp new file mode 100644 index 00000000..35a02174 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000008_807b0f7c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000009_3ecda922.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000009_3ecda922.szcp new file mode 100644 index 00000000..a4923b85 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000009_3ecda922.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000010_6b78e1fd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000010_6b78e1fd.szcp new file mode 100644 index 00000000..f606c4e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000010_6b78e1fd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000011_e639b2a2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000011_e639b2a2.szcp new file mode 100644 index 00000000..c59b7b7a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000011_e639b2a2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000012_b885188b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000012_b885188b.szcp new file mode 100644 index 00000000..4d47bec0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000012_b885188b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000013_4faee4ef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000013_4faee4ef.szcp new file mode 100644 index 00000000..d3043f95 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000013_4faee4ef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000014_45544ede.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000014_45544ede.szcp new file mode 100644 index 00000000..c3d6a1cc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000014_45544ede.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000015_8be71ab8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000015_8be71ab8.szcp new file mode 100644 index 00000000..4fd8806e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000015_8be71ab8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000016_119e3606.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000016_119e3606.szcp new file mode 100644 index 00000000..6074dc11 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000016_119e3606.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000017_a28eddaa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000017_a28eddaa.szcp new file mode 100644 index 00000000..ab58d52e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_012/checkpoints/checkpoint_00000000000000000017_a28eddaa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000001_a380b42c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000001_a380b42c.szar new file mode 100644 index 00000000..fb0cacf3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000001_a380b42c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000002_92910e31.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000002_92910e31.szar new file mode 100644 index 00000000..11a1a657 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000002_92910e31.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000003_979305c5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000003_979305c5.szar new file mode 100644 index 00000000..33cb4af7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000003_979305c5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000004_2a1b7442.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000004_2a1b7442.szar new file mode 100644 index 00000000..15c2c18c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000004_2a1b7442.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000005_6b5a316d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000005_6b5a316d.szar new file mode 100644 index 00000000..aa90f533 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000005_6b5a316d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000006_7d5935ef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000006_7d5935ef.szar new file mode 100644 index 00000000..c5d6b86c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000006_7d5935ef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000007_6ec9abcd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000007_6ec9abcd.szar new file mode 100644 index 00000000..9e34f020 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000007_6ec9abcd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000008_244227f0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000008_244227f0.szar new file mode 100644 index 00000000..914985eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000008_244227f0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000009_cf3abf64.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000009_cf3abf64.szar new file mode 100644 index 00000000..f6069101 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000009_cf3abf64.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000010_b51750af.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000010_b51750af.szar new file mode 100644 index 00000000..9391d50a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000010_b51750af.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000011_3dd3eb77.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000011_3dd3eb77.szar new file mode 100644 index 00000000..fd2edb4d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000011_3dd3eb77.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000012_19c119a2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000012_19c119a2.szar new file mode 100644 index 00000000..097073a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000012_19c119a2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000013_8df2ce66.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000013_8df2ce66.szar new file mode 100644 index 00000000..de56e7a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000013_8df2ce66.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000014_c3295ec8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000014_c3295ec8.szar new file mode 100644 index 00000000..3bb73add Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000014_c3295ec8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000015_e543d41a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000015_e543d41a.szar new file mode 100644 index 00000000..c8e43f5d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000015_e543d41a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000016_7665f8e3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000016_7665f8e3.szar new file mode 100644 index 00000000..e1bd63a5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000016_7665f8e3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000017_339d4924.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000017_339d4924.szar new file mode 100644 index 00000000..07f3045c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000017_339d4924.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000018_8e5f7c61.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000018_8e5f7c61.szar new file mode 100644 index 00000000..d0256827 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000018_8e5f7c61.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000019_885e5019.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000019_885e5019.szar new file mode 100644 index 00000000..0a0b5f27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000019_885e5019.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000020_065e97e3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000020_065e97e3.szar new file mode 100644 index 00000000..b5583738 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000020_065e97e3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000021_4aab6144.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000021_4aab6144.szar new file mode 100644 index 00000000..cf1d4c0e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000021_4aab6144.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000022_76f2abc0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000022_76f2abc0.szar new file mode 100644 index 00000000..da750893 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000022_76f2abc0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000023_524e2474.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000023_524e2474.szar new file mode 100644 index 00000000..33217338 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000023_524e2474.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000024_365761e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000024_365761e9.szar new file mode 100644 index 00000000..8277b021 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/archive/delta_00000000000000000024_365761e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000001_98e0fc97.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000001_98e0fc97.szcp new file mode 100644 index 00000000..550419f0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000001_98e0fc97.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000002_29bf962e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000002_29bf962e.szcp new file mode 100644 index 00000000..e39e0e6f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000002_29bf962e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000003_ba7afed8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000003_ba7afed8.szcp new file mode 100644 index 00000000..d0c2b15a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000003_ba7afed8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000004_619d1b45.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000004_619d1b45.szcp new file mode 100644 index 00000000..2be973b0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000004_619d1b45.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000005_ac600f8b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000005_ac600f8b.szcp new file mode 100644 index 00000000..32147688 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000005_ac600f8b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000006_6ac2b34d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000006_6ac2b34d.szcp new file mode 100644 index 00000000..7316f86f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000006_6ac2b34d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000007_20e6cb1e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000007_20e6cb1e.szcp new file mode 100644 index 00000000..4cc26076 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000007_20e6cb1e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000008_ba5c95c3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000008_ba5c95c3.szcp new file mode 100644 index 00000000..70f3a4cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000008_ba5c95c3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000009_05f6b512.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000009_05f6b512.szcp new file mode 100644 index 00000000..c75f21fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000009_05f6b512.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000010_7ed14e8c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000010_7ed14e8c.szcp new file mode 100644 index 00000000..f0c806ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000010_7ed14e8c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000011_4c3b32e7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000011_4c3b32e7.szcp new file mode 100644 index 00000000..19d76a1d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000011_4c3b32e7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000012_644ea6be.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000012_644ea6be.szcp new file mode 100644 index 00000000..e51d4e8e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000012_644ea6be.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000013_87d2e6a6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000013_87d2e6a6.szcp new file mode 100644 index 00000000..8862c77e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000013_87d2e6a6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000014_2fe5f9e2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000014_2fe5f9e2.szcp new file mode 100644 index 00000000..fb706b00 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000014_2fe5f9e2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000015_a1db7380.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000015_a1db7380.szcp new file mode 100644 index 00000000..4f685579 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000015_a1db7380.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000016_a035a25a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000016_a035a25a.szcp new file mode 100644 index 00000000..6112f775 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000016_a035a25a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000017_028d97ee.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000017_028d97ee.szcp new file mode 100644 index 00000000..8785c685 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000017_028d97ee.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000018_c69adad4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000018_c69adad4.szcp new file mode 100644 index 00000000..8a088827 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000018_c69adad4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000019_5eed9b14.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000019_5eed9b14.szcp new file mode 100644 index 00000000..071b6a76 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000019_5eed9b14.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000020_c9c91e8f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000020_c9c91e8f.szcp new file mode 100644 index 00000000..4bc41e95 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000020_c9c91e8f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000021_2b49d095.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000021_2b49d095.szcp new file mode 100644 index 00000000..1e57cc6b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000021_2b49d095.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000022_91242019.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000022_91242019.szcp new file mode 100644 index 00000000..a892039f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000022_91242019.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000023_dca7ec53.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000023_dca7ec53.szcp new file mode 100644 index 00000000..6c97d653 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000023_dca7ec53.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000024_4189ef5b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000024_4189ef5b.szcp new file mode 100644 index 00000000..6cce8943 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_013/checkpoints/checkpoint_00000000000000000024_4189ef5b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000001_d4fba4cd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000001_d4fba4cd.szar new file mode 100644 index 00000000..266d85c6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000001_d4fba4cd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000002_8d4841cb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000002_8d4841cb.szar new file mode 100644 index 00000000..35d085eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000002_8d4841cb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000003_b0043ce9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000003_b0043ce9.szar new file mode 100644 index 00000000..a64e089c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000003_b0043ce9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000004_8d9c10d5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000004_8d9c10d5.szar new file mode 100644 index 00000000..ef3b655a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000004_8d9c10d5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000005_51b56e52.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000005_51b56e52.szar new file mode 100644 index 00000000..54ef235f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000005_51b56e52.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000006_a676c564.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000006_a676c564.szar new file mode 100644 index 00000000..701ca90d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000006_a676c564.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000007_8378b456.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000007_8378b456.szar new file mode 100644 index 00000000..87635c23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000007_8378b456.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000008_3b292336.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000008_3b292336.szar new file mode 100644 index 00000000..109179b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000008_3b292336.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000009_99ff5d3e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000009_99ff5d3e.szar new file mode 100644 index 00000000..90ea8af7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000009_99ff5d3e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000010_9f10ce3d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000010_9f10ce3d.szar new file mode 100644 index 00000000..6a68cb6c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000010_9f10ce3d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000011_d7b85051.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000011_d7b85051.szar new file mode 100644 index 00000000..1065edd4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000011_d7b85051.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000012_0f35a1dc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000012_0f35a1dc.szar new file mode 100644 index 00000000..747176a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000012_0f35a1dc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000013_a89c92f6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000013_a89c92f6.szar new file mode 100644 index 00000000..26f62d50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000013_a89c92f6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000014_cfbacddb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000014_cfbacddb.szar new file mode 100644 index 00000000..362f0243 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000014_cfbacddb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000015_134a9ea1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000015_134a9ea1.szar new file mode 100644 index 00000000..386c860e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000015_134a9ea1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000016_40114952.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000016_40114952.szar new file mode 100644 index 00000000..54a385e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/archive/delta_00000000000000000016_40114952.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000001_b3741f58.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000001_b3741f58.szcp new file mode 100644 index 00000000..ad3c46d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000001_b3741f58.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000002_5c5f6a42.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000002_5c5f6a42.szcp new file mode 100644 index 00000000..7dba134e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000002_5c5f6a42.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000003_f5dccb43.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000003_f5dccb43.szcp new file mode 100644 index 00000000..fd72a3b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000003_f5dccb43.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000004_fd31c7c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000004_fd31c7c8.szcp new file mode 100644 index 00000000..3e93cc74 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000004_fd31c7c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000005_cc4b2eb0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000005_cc4b2eb0.szcp new file mode 100644 index 00000000..e14c0e5c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000005_cc4b2eb0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000006_2518bc7b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000006_2518bc7b.szcp new file mode 100644 index 00000000..2a149df1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000006_2518bc7b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000007_3c384c2e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000007_3c384c2e.szcp new file mode 100644 index 00000000..33413834 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000007_3c384c2e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000008_16be5488.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000008_16be5488.szcp new file mode 100644 index 00000000..1590f432 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000008_16be5488.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000009_517013f1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000009_517013f1.szcp new file mode 100644 index 00000000..30a85dc8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000009_517013f1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000010_b927756f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000010_b927756f.szcp new file mode 100644 index 00000000..8fcc5aa4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000010_b927756f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000011_7fb1fad9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000011_7fb1fad9.szcp new file mode 100644 index 00000000..1d4ca66e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000011_7fb1fad9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000012_37145ebe.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000012_37145ebe.szcp new file mode 100644 index 00000000..7922aa20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000012_37145ebe.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000013_5b0cad6e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000013_5b0cad6e.szcp new file mode 100644 index 00000000..64b1d2ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000013_5b0cad6e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000014_71741c87.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000014_71741c87.szcp new file mode 100644 index 00000000..33a888c8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000014_71741c87.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000015_55cd2369.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000015_55cd2369.szcp new file mode 100644 index 00000000..564b8197 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000015_55cd2369.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000016_4be925b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000016_4be925b1.szcp new file mode 100644 index 00000000..8807ca9f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_014/checkpoints/checkpoint_00000000000000000016_4be925b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000001_0d4e5596.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000001_0d4e5596.szar new file mode 100644 index 00000000..30a377da Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000001_0d4e5596.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000002_11c3f383.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000002_11c3f383.szar new file mode 100644 index 00000000..29be45e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000002_11c3f383.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000003_e6b56e89.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000003_e6b56e89.szar new file mode 100644 index 00000000..858340ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000003_e6b56e89.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000004_d5ddf73a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000004_d5ddf73a.szar new file mode 100644 index 00000000..c13a7a65 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000004_d5ddf73a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000005_975e3e0c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000005_975e3e0c.szar new file mode 100644 index 00000000..7cf01ce6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000005_975e3e0c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000006_ee2ca6f2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000006_ee2ca6f2.szar new file mode 100644 index 00000000..45096cbc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000006_ee2ca6f2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000007_7639c0ec.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000007_7639c0ec.szar new file mode 100644 index 00000000..6ad578a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000007_7639c0ec.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000008_adad0d3b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000008_adad0d3b.szar new file mode 100644 index 00000000..c9d6457c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000008_adad0d3b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000009_e2929b4b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000009_e2929b4b.szar new file mode 100644 index 00000000..27576c66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000009_e2929b4b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000010_cf831324.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000010_cf831324.szar new file mode 100644 index 00000000..6a492a73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000010_cf831324.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000011_e653a991.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000011_e653a991.szar new file mode 100644 index 00000000..20285726 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/archive/delta_00000000000000000011_e653a991.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000001_68af77b0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000001_68af77b0.szcp new file mode 100644 index 00000000..f529e8a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000001_68af77b0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000002_2311390a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000002_2311390a.szcp new file mode 100644 index 00000000..dfe9081f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000002_2311390a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000003_f127751c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000003_f127751c.szcp new file mode 100644 index 00000000..cde17c70 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000003_f127751c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000004_28546ae0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000004_28546ae0.szcp new file mode 100644 index 00000000..2d83611c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000004_28546ae0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000005_c1a227f0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000005_c1a227f0.szcp new file mode 100644 index 00000000..737b0685 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000005_c1a227f0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000006_8e12f9ee.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000006_8e12f9ee.szcp new file mode 100644 index 00000000..3dd27c42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000006_8e12f9ee.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000007_18a8c5d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000007_18a8c5d3.szcp new file mode 100644 index 00000000..f549d8c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000007_18a8c5d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000008_4f8ca9b9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000008_4f8ca9b9.szcp new file mode 100644 index 00000000..1e6a3ba8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000008_4f8ca9b9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000009_e3b36444.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000009_e3b36444.szcp new file mode 100644 index 00000000..ff23325f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000009_e3b36444.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000010_007faaa1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000010_007faaa1.szcp new file mode 100644 index 00000000..8f2f3993 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000010_007faaa1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000011_6dc45442.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000011_6dc45442.szcp new file mode 100644 index 00000000..dd069a7a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_015/checkpoints/checkpoint_00000000000000000011_6dc45442.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000001_c7b2eb7a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000001_c7b2eb7a.szar new file mode 100644 index 00000000..1ba40b53 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000001_c7b2eb7a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000002_f02611d9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000002_f02611d9.szar new file mode 100644 index 00000000..a2d97840 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000002_f02611d9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000003_d5c2edf0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000003_d5c2edf0.szar new file mode 100644 index 00000000..280cb17b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000003_d5c2edf0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000004_eb4d6a02.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000004_eb4d6a02.szar new file mode 100644 index 00000000..e13d3e6b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000004_eb4d6a02.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000005_19e94536.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000005_19e94536.szar new file mode 100644 index 00000000..506a3c5f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000005_19e94536.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000006_9d6b80e3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000006_9d6b80e3.szar new file mode 100644 index 00000000..18342c57 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000006_9d6b80e3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000007_8807920c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000007_8807920c.szar new file mode 100644 index 00000000..beae87be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000007_8807920c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000008_b457d15d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000008_b457d15d.szar new file mode 100644 index 00000000..5f609d16 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000008_b457d15d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000009_0b43e895.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000009_0b43e895.szar new file mode 100644 index 00000000..b041c137 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000009_0b43e895.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000010_7bd8a1a2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000010_7bd8a1a2.szar new file mode 100644 index 00000000..1970a6b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000010_7bd8a1a2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000011_7aca68bb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000011_7aca68bb.szar new file mode 100644 index 00000000..566b8a4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000011_7aca68bb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000012_a56a7c33.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000012_a56a7c33.szar new file mode 100644 index 00000000..9f43d4cf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000012_a56a7c33.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000013_9c1fefec.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000013_9c1fefec.szar new file mode 100644 index 00000000..b328b88d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000013_9c1fefec.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000014_f43dddf0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000014_f43dddf0.szar new file mode 100644 index 00000000..0b31af09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000014_f43dddf0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000015_7098697c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000015_7098697c.szar new file mode 100644 index 00000000..446c71aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000015_7098697c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000016_b19b9655.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000016_b19b9655.szar new file mode 100644 index 00000000..a26c7ac3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000016_b19b9655.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000017_ebae9dd2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000017_ebae9dd2.szar new file mode 100644 index 00000000..53830fb2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000017_ebae9dd2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000018_3c157333.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000018_3c157333.szar new file mode 100644 index 00000000..ef81803e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000018_3c157333.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000019_e69bf029.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000019_e69bf029.szar new file mode 100644 index 00000000..024faa31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000019_e69bf029.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000020_4149b793.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000020_4149b793.szar new file mode 100644 index 00000000..842f631d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000020_4149b793.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000021_6fd5d026.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000021_6fd5d026.szar new file mode 100644 index 00000000..1a4617ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/archive/delta_00000000000000000021_6fd5d026.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000001_e30abdf8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000001_e30abdf8.szcp new file mode 100644 index 00000000..70c120c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000001_e30abdf8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000002_e86c2907.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000002_e86c2907.szcp new file mode 100644 index 00000000..de7bd7b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000002_e86c2907.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000003_a577f457.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000003_a577f457.szcp new file mode 100644 index 00000000..290de39b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000003_a577f457.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000004_370fb140.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000004_370fb140.szcp new file mode 100644 index 00000000..dbdfe5ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000004_370fb140.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000005_caa0f593.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000005_caa0f593.szcp new file mode 100644 index 00000000..d7adfe67 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000005_caa0f593.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000006_e752313d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000006_e752313d.szcp new file mode 100644 index 00000000..36d4ecd7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000006_e752313d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000007_b60a49e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000007_b60a49e1.szcp new file mode 100644 index 00000000..ff1abdeb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000007_b60a49e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000008_851f90f1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000008_851f90f1.szcp new file mode 100644 index 00000000..bbcf53c8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000008_851f90f1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000009_e85c044b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000009_e85c044b.szcp new file mode 100644 index 00000000..75e80322 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000009_e85c044b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000010_f799e567.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000010_f799e567.szcp new file mode 100644 index 00000000..2a22885b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000010_f799e567.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000011_590cbecf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000011_590cbecf.szcp new file mode 100644 index 00000000..9ac8687a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000011_590cbecf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000012_4d0287c6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000012_4d0287c6.szcp new file mode 100644 index 00000000..a52abf79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000012_4d0287c6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000013_abead336.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000013_abead336.szcp new file mode 100644 index 00000000..0af9febb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000013_abead336.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000014_c4dd0e08.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000014_c4dd0e08.szcp new file mode 100644 index 00000000..48ff4597 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000014_c4dd0e08.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000015_acc09b84.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000015_acc09b84.szcp new file mode 100644 index 00000000..914ec934 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000015_acc09b84.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000016_61f8fc0e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000016_61f8fc0e.szcp new file mode 100644 index 00000000..6c174acd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000016_61f8fc0e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000017_81ce0604.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000017_81ce0604.szcp new file mode 100644 index 00000000..7baaece7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000017_81ce0604.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000018_fa7189aa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000018_fa7189aa.szcp new file mode 100644 index 00000000..d877d52c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000018_fa7189aa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000019_de9e985a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000019_de9e985a.szcp new file mode 100644 index 00000000..65079fdd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000019_de9e985a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000020_6a585022.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000020_6a585022.szcp new file mode 100644 index 00000000..7a8f5a80 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000020_6a585022.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000021_5246e598.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000021_5246e598.szcp new file mode 100644 index 00000000..89d4f8f7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_016/checkpoints/checkpoint_00000000000000000021_5246e598.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000001_640eabfe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000001_640eabfe.szar new file mode 100644 index 00000000..939cdd4a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000001_640eabfe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000002_20c67af7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000002_20c67af7.szar new file mode 100644 index 00000000..138c4e5c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000002_20c67af7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000003_8fc1af96.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000003_8fc1af96.szar new file mode 100644 index 00000000..2ab2773b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000003_8fc1af96.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000004_3cfb8b06.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000004_3cfb8b06.szar new file mode 100644 index 00000000..7e87d192 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000004_3cfb8b06.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000005_e828e081.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000005_e828e081.szar new file mode 100644 index 00000000..85998283 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000005_e828e081.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000006_1de3e620.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000006_1de3e620.szar new file mode 100644 index 00000000..8b6843e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000006_1de3e620.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000007_1fcd780d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000007_1fcd780d.szar new file mode 100644 index 00000000..081d27b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000007_1fcd780d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000008_874590df.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000008_874590df.szar new file mode 100644 index 00000000..21abdf78 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000008_874590df.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000009_7132e58f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000009_7132e58f.szar new file mode 100644 index 00000000..d95a0e0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000009_7132e58f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000010_9b7e600c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000010_9b7e600c.szar new file mode 100644 index 00000000..8d348d95 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000010_9b7e600c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000011_5971c283.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000011_5971c283.szar new file mode 100644 index 00000000..12c1fb49 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000011_5971c283.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000012_fa12e725.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000012_fa12e725.szar new file mode 100644 index 00000000..a8903813 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000012_fa12e725.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000013_631ff6fc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000013_631ff6fc.szar new file mode 100644 index 00000000..828e39e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000013_631ff6fc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000014_3141ae45.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000014_3141ae45.szar new file mode 100644 index 00000000..c5354893 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000014_3141ae45.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000015_4e2a1511.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000015_4e2a1511.szar new file mode 100644 index 00000000..453d91c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000015_4e2a1511.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000016_a07cdbe4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000016_a07cdbe4.szar new file mode 100644 index 00000000..279cd9e5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000016_a07cdbe4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000017_cceb80a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000017_cceb80a3.szar new file mode 100644 index 00000000..121f0730 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000017_cceb80a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000018_0ba26c37.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000018_0ba26c37.szar new file mode 100644 index 00000000..74a40d44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000018_0ba26c37.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000019_604c6cee.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000019_604c6cee.szar new file mode 100644 index 00000000..8ac210e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000019_604c6cee.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000020_d3b7d723.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000020_d3b7d723.szar new file mode 100644 index 00000000..fc19aaed Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000020_d3b7d723.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000021_9ba487dc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000021_9ba487dc.szar new file mode 100644 index 00000000..308f35ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000021_9ba487dc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000022_637c4336.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000022_637c4336.szar new file mode 100644 index 00000000..f7135d5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000022_637c4336.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000023_a1d42b80.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000023_a1d42b80.szar new file mode 100644 index 00000000..02e6ee3f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000023_a1d42b80.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000024_16342431.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000024_16342431.szar new file mode 100644 index 00000000..e49d8254 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/archive/delta_00000000000000000024_16342431.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000001_7f852a88.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000001_7f852a88.szcp new file mode 100644 index 00000000..39c08e82 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000001_7f852a88.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000002_3c9f156a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000002_3c9f156a.szcp new file mode 100644 index 00000000..5a2b2305 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000002_3c9f156a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000003_f41b1f43.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000003_f41b1f43.szcp new file mode 100644 index 00000000..34f8f12e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000003_f41b1f43.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000004_633147c5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000004_633147c5.szcp new file mode 100644 index 00000000..b9469de1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000004_633147c5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000005_26e92f97.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000005_26e92f97.szcp new file mode 100644 index 00000000..02689a3a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000005_26e92f97.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000006_959a149a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000006_959a149a.szcp new file mode 100644 index 00000000..a28f6d79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000006_959a149a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000007_77c51b20.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000007_77c51b20.szcp new file mode 100644 index 00000000..6fc437ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000007_77c51b20.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000008_5d027bd2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000008_5d027bd2.szcp new file mode 100644 index 00000000..b360da23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000008_5d027bd2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000009_76aa8ae5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000009_76aa8ae5.szcp new file mode 100644 index 00000000..bcbb5020 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000009_76aa8ae5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000010_1cfbb0ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000010_1cfbb0ce.szcp new file mode 100644 index 00000000..a3e6ccf9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000010_1cfbb0ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000011_7671b2a2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000011_7671b2a2.szcp new file mode 100644 index 00000000..44fea083 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000011_7671b2a2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000012_7bf1edef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000012_7bf1edef.szcp new file mode 100644 index 00000000..680ff38e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000012_7bf1edef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000013_6b6204fc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000013_6b6204fc.szcp new file mode 100644 index 00000000..e2ccfdad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000013_6b6204fc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000014_257ab40e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000014_257ab40e.szcp new file mode 100644 index 00000000..5ca6963e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000014_257ab40e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000015_f1e2011a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000015_f1e2011a.szcp new file mode 100644 index 00000000..af226603 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000015_f1e2011a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000016_16bdd65d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000016_16bdd65d.szcp new file mode 100644 index 00000000..fadb8102 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000016_16bdd65d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000017_c954ee00.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000017_c954ee00.szcp new file mode 100644 index 00000000..34f72138 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000017_c954ee00.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000018_2f3a6d8f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000018_2f3a6d8f.szcp new file mode 100644 index 00000000..c0b7d0b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000018_2f3a6d8f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000019_c06bd415.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000019_c06bd415.szcp new file mode 100644 index 00000000..929ef3bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000019_c06bd415.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000020_021387fa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000020_021387fa.szcp new file mode 100644 index 00000000..a60d99d4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000020_021387fa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000021_3087f33d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000021_3087f33d.szcp new file mode 100644 index 00000000..098c8456 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000021_3087f33d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000022_e433a98e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000022_e433a98e.szcp new file mode 100644 index 00000000..3cbb4429 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000022_e433a98e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000023_12185e6d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000023_12185e6d.szcp new file mode 100644 index 00000000..2a900325 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000023_12185e6d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000024_31c55f74.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000024_31c55f74.szcp new file mode 100644 index 00000000..0147bb54 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_017/checkpoints/checkpoint_00000000000000000024_31c55f74.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000001_9eb2a486.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000001_9eb2a486.szar new file mode 100644 index 00000000..11b901ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000001_9eb2a486.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000002_30c679bc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000002_30c679bc.szar new file mode 100644 index 00000000..1e5b4652 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000002_30c679bc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000003_aab6a879.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000003_aab6a879.szar new file mode 100644 index 00000000..ba1489fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000003_aab6a879.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000004_35e77cca.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000004_35e77cca.szar new file mode 100644 index 00000000..5359fe68 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000004_35e77cca.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000005_a95dcc85.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000005_a95dcc85.szar new file mode 100644 index 00000000..f4333bd6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000005_a95dcc85.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000006_a799b60b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000006_a799b60b.szar new file mode 100644 index 00000000..ce1d2e61 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000006_a799b60b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000007_30f61cf8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000007_30f61cf8.szar new file mode 100644 index 00000000..237c0c6d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000007_30f61cf8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000008_6fb6073e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000008_6fb6073e.szar new file mode 100644 index 00000000..450d7355 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000008_6fb6073e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000009_0945e140.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000009_0945e140.szar new file mode 100644 index 00000000..952e836b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000009_0945e140.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000010_6f043030.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000010_6f043030.szar new file mode 100644 index 00000000..5cdab8eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000010_6f043030.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000011_aef8b628.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000011_aef8b628.szar new file mode 100644 index 00000000..ab478a8f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000011_aef8b628.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000012_58d80f65.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000012_58d80f65.szar new file mode 100644 index 00000000..d7e558a8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/archive/delta_00000000000000000012_58d80f65.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000001_c1a05288.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000001_c1a05288.szcp new file mode 100644 index 00000000..5103233f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000001_c1a05288.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000002_c491a545.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000002_c491a545.szcp new file mode 100644 index 00000000..3b6417ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000002_c491a545.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000003_dcec5f19.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000003_dcec5f19.szcp new file mode 100644 index 00000000..7eec24f8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000003_dcec5f19.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000004_398c2a34.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000004_398c2a34.szcp new file mode 100644 index 00000000..961b687b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000004_398c2a34.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000005_9126d492.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000005_9126d492.szcp new file mode 100644 index 00000000..a4270816 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000005_9126d492.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000006_af3f1d3c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000006_af3f1d3c.szcp new file mode 100644 index 00000000..82a48b15 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000006_af3f1d3c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000007_af7e447d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000007_af7e447d.szcp new file mode 100644 index 00000000..2df29a22 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000007_af7e447d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000008_9ea76d57.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000008_9ea76d57.szcp new file mode 100644 index 00000000..f8363699 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000008_9ea76d57.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000009_62d16138.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000009_62d16138.szcp new file mode 100644 index 00000000..7648859f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000009_62d16138.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000010_664d8df0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000010_664d8df0.szcp new file mode 100644 index 00000000..38328944 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000010_664d8df0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000011_47d2401e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000011_47d2401e.szcp new file mode 100644 index 00000000..828b2fb4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000011_47d2401e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000012_3083e92c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000012_3083e92c.szcp new file mode 100644 index 00000000..8f999f73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_018/checkpoints/checkpoint_00000000000000000012_3083e92c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000001_432a32f0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000001_432a32f0.szar new file mode 100644 index 00000000..05c74876 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000001_432a32f0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000002_f5a6e69f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000002_f5a6e69f.szar new file mode 100644 index 00000000..f628b78a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000002_f5a6e69f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000003_cf703ddc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000003_cf703ddc.szar new file mode 100644 index 00000000..8dadb796 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000003_cf703ddc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000004_27395d61.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000004_27395d61.szar new file mode 100644 index 00000000..eb7a6e57 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000004_27395d61.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000005_d43944ff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000005_d43944ff.szar new file mode 100644 index 00000000..277b186a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000005_d43944ff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000006_707711a7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000006_707711a7.szar new file mode 100644 index 00000000..22870901 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000006_707711a7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000007_8b3774df.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000007_8b3774df.szar new file mode 100644 index 00000000..76b369bc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000007_8b3774df.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000008_54abc48a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000008_54abc48a.szar new file mode 100644 index 00000000..32e2c4a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000008_54abc48a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000009_21d7d0ba.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000009_21d7d0ba.szar new file mode 100644 index 00000000..e16b448f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000009_21d7d0ba.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000010_c610c599.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000010_c610c599.szar new file mode 100644 index 00000000..bba938ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000010_c610c599.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000011_358e8dc9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000011_358e8dc9.szar new file mode 100644 index 00000000..bb56255e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000011_358e8dc9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000012_9341d82d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000012_9341d82d.szar new file mode 100644 index 00000000..1fc3afc7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000012_9341d82d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000013_66011b4a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000013_66011b4a.szar new file mode 100644 index 00000000..7b3a48a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000013_66011b4a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000014_c42fc6b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000014_c42fc6b0.szar new file mode 100644 index 00000000..19ad9308 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/archive/delta_00000000000000000014_c42fc6b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000001_61606c25.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000001_61606c25.szcp new file mode 100644 index 00000000..c2c25662 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000001_61606c25.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000002_2a12fbdf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000002_2a12fbdf.szcp new file mode 100644 index 00000000..0503a9db Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000002_2a12fbdf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000003_e2603fbd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000003_e2603fbd.szcp new file mode 100644 index 00000000..db57c6ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000003_e2603fbd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000004_6f0893c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000004_6f0893c8.szcp new file mode 100644 index 00000000..48245c71 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000004_6f0893c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000005_17f294c6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000005_17f294c6.szcp new file mode 100644 index 00000000..cd3e9239 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000005_17f294c6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000006_ca90e46e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000006_ca90e46e.szcp new file mode 100644 index 00000000..2397d64e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000006_ca90e46e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000007_d22e6b0e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000007_d22e6b0e.szcp new file mode 100644 index 00000000..58f142fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000007_d22e6b0e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000008_cd52b7d4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000008_cd52b7d4.szcp new file mode 100644 index 00000000..fb184d29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000008_cd52b7d4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000009_d355be55.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000009_d355be55.szcp new file mode 100644 index 00000000..8737ed11 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000009_d355be55.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000010_4d5a9d8e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000010_4d5a9d8e.szcp new file mode 100644 index 00000000..0f4bff77 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000010_4d5a9d8e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000011_a3364e08.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000011_a3364e08.szcp new file mode 100644 index 00000000..77b8653b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000011_a3364e08.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000012_b2dbbd6c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000012_b2dbbd6c.szcp new file mode 100644 index 00000000..46f4d2a4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000012_b2dbbd6c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000013_89022be9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000013_89022be9.szcp new file mode 100644 index 00000000..0586d44b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000013_89022be9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000014_a74bcf2e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000014_a74bcf2e.szcp new file mode 100644 index 00000000..21391ce4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_019/checkpoints/checkpoint_00000000000000000014_a74bcf2e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000001_540f6850.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000001_540f6850.szar new file mode 100644 index 00000000..b12b4b07 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000001_540f6850.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000002_9ad55f5a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000002_9ad55f5a.szar new file mode 100644 index 00000000..76c20aa3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000002_9ad55f5a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000003_2f403e75.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000003_2f403e75.szar new file mode 100644 index 00000000..f1c1db04 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000003_2f403e75.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000004_07f2cc5e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000004_07f2cc5e.szar new file mode 100644 index 00000000..182388d0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000004_07f2cc5e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000005_e897e6b4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000005_e897e6b4.szar new file mode 100644 index 00000000..4e8f7595 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000005_e897e6b4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000006_ac34cc9c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000006_ac34cc9c.szar new file mode 100644 index 00000000..88a48a08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000006_ac34cc9c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000007_415f1744.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000007_415f1744.szar new file mode 100644 index 00000000..21689706 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000007_415f1744.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000008_49d394ce.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000008_49d394ce.szar new file mode 100644 index 00000000..cf366fee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000008_49d394ce.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000009_3b44e255.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000009_3b44e255.szar new file mode 100644 index 00000000..75f4e8f9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000009_3b44e255.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000010_29193ca9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000010_29193ca9.szar new file mode 100644 index 00000000..d7c63266 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000010_29193ca9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000011_46f39a25.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000011_46f39a25.szar new file mode 100644 index 00000000..f8cdb68e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000011_46f39a25.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000012_88ec4f35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000012_88ec4f35.szar new file mode 100644 index 00000000..0e5a6ff4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000012_88ec4f35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000013_1032047c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000013_1032047c.szar new file mode 100644 index 00000000..e38d686a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000013_1032047c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000014_67db6558.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000014_67db6558.szar new file mode 100644 index 00000000..08702313 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000014_67db6558.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000015_10faafb6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000015_10faafb6.szar new file mode 100644 index 00000000..57da9c72 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000015_10faafb6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000016_00c8425b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000016_00c8425b.szar new file mode 100644 index 00000000..6e6d3230 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000016_00c8425b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000017_4d731d81.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000017_4d731d81.szar new file mode 100644 index 00000000..47add2d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000017_4d731d81.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000018_64c27264.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000018_64c27264.szar new file mode 100644 index 00000000..02952339 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000018_64c27264.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000019_19a07c2d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000019_19a07c2d.szar new file mode 100644 index 00000000..8c1f2d15 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000019_19a07c2d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000020_a244ac25.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000020_a244ac25.szar new file mode 100644 index 00000000..d86ba3c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000020_a244ac25.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000021_a692153d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000021_a692153d.szar new file mode 100644 index 00000000..469b1a11 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000021_a692153d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000022_f0f75863.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000022_f0f75863.szar new file mode 100644 index 00000000..0f6ca3a3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000022_f0f75863.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000023_4244742e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000023_4244742e.szar new file mode 100644 index 00000000..483a074f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000023_4244742e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000024_b01ecba3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000024_b01ecba3.szar new file mode 100644 index 00000000..0ca5f02b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/archive/delta_00000000000000000024_b01ecba3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000001_46f94747.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000001_46f94747.szcp new file mode 100644 index 00000000..4b4331d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000001_46f94747.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000002_9a323962.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000002_9a323962.szcp new file mode 100644 index 00000000..8d9638f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000002_9a323962.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000003_367511a3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000003_367511a3.szcp new file mode 100644 index 00000000..4be4682f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000003_367511a3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000004_013cfce0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000004_013cfce0.szcp new file mode 100644 index 00000000..db2f0e5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000004_013cfce0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000005_a488a989.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000005_a488a989.szcp new file mode 100644 index 00000000..70e0eaa9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000005_a488a989.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000006_558f0e64.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000006_558f0e64.szcp new file mode 100644 index 00000000..b112535a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000006_558f0e64.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000007_6a6ba127.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000007_6a6ba127.szcp new file mode 100644 index 00000000..5930de58 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000007_6a6ba127.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000008_21f32ab6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000008_21f32ab6.szcp new file mode 100644 index 00000000..eff4f7fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000008_21f32ab6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000009_bee15dfb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000009_bee15dfb.szcp new file mode 100644 index 00000000..9dd77c9a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000009_bee15dfb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000010_324d4b59.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000010_324d4b59.szcp new file mode 100644 index 00000000..7c0246ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000010_324d4b59.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000011_29674fb1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000011_29674fb1.szcp new file mode 100644 index 00000000..2841bd90 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000011_29674fb1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000012_5bb03eb3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000012_5bb03eb3.szcp new file mode 100644 index 00000000..afcee3fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000012_5bb03eb3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000013_aea792d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000013_aea792d5.szcp new file mode 100644 index 00000000..d48e74c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000013_aea792d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000014_b34bf39c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000014_b34bf39c.szcp new file mode 100644 index 00000000..33fe84cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000014_b34bf39c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000015_dadda82e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000015_dadda82e.szcp new file mode 100644 index 00000000..3b2c53ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000015_dadda82e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000016_a5cb73d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000016_a5cb73d3.szcp new file mode 100644 index 00000000..f63967b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000016_a5cb73d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000017_3d4d2eb2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000017_3d4d2eb2.szcp new file mode 100644 index 00000000..a5ce71cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000017_3d4d2eb2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000018_d25743f4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000018_d25743f4.szcp new file mode 100644 index 00000000..5c823fbc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000018_d25743f4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000019_09b78876.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000019_09b78876.szcp new file mode 100644 index 00000000..6f9ad0e9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000019_09b78876.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000020_dfd69f91.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000020_dfd69f91.szcp new file mode 100644 index 00000000..0808826e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000020_dfd69f91.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000021_44cd1d1a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000021_44cd1d1a.szcp new file mode 100644 index 00000000..bcc43a0c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000021_44cd1d1a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000022_5a3a1e88.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000022_5a3a1e88.szcp new file mode 100644 index 00000000..3c0587cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000022_5a3a1e88.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000023_c4d43b3d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000023_c4d43b3d.szcp new file mode 100644 index 00000000..f8f84f57 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000023_c4d43b3d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000024_e8408773.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000024_e8408773.szcp new file mode 100644 index 00000000..47e6fec9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_020/checkpoints/checkpoint_00000000000000000024_e8408773.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000001_6a228510.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000001_6a228510.szar new file mode 100644 index 00000000..b4643bdd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000001_6a228510.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000002_ed1d6b72.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000002_ed1d6b72.szar new file mode 100644 index 00000000..fedbf4ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000002_ed1d6b72.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000003_773500f5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000003_773500f5.szar new file mode 100644 index 00000000..bb40a70c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000003_773500f5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000004_49c566f7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000004_49c566f7.szar new file mode 100644 index 00000000..74746e46 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000004_49c566f7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000005_f17dd016.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000005_f17dd016.szar new file mode 100644 index 00000000..4c9cf154 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000005_f17dd016.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000006_c1d8c27c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000006_c1d8c27c.szar new file mode 100644 index 00000000..a60b00b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000006_c1d8c27c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000007_779e6bcf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000007_779e6bcf.szar new file mode 100644 index 00000000..aa43cc45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000007_779e6bcf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000008_809d0e87.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000008_809d0e87.szar new file mode 100644 index 00000000..eb8c36ea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000008_809d0e87.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000009_5560838a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000009_5560838a.szar new file mode 100644 index 00000000..509fc035 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000009_5560838a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000010_03dad2c3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000010_03dad2c3.szar new file mode 100644 index 00000000..bfb50f22 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000010_03dad2c3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000011_405afdd4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000011_405afdd4.szar new file mode 100644 index 00000000..02904d5a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000011_405afdd4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000012_e4e2bb72.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000012_e4e2bb72.szar new file mode 100644 index 00000000..baf2ef68 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000012_e4e2bb72.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000013_c5f73b98.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000013_c5f73b98.szar new file mode 100644 index 00000000..ab899d20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000013_c5f73b98.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000014_3883d67e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000014_3883d67e.szar new file mode 100644 index 00000000..de2f2bf8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000014_3883d67e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000015_f67caabc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000015_f67caabc.szar new file mode 100644 index 00000000..795aa368 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000015_f67caabc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000016_f352bf8e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000016_f352bf8e.szar new file mode 100644 index 00000000..0dc60c59 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000016_f352bf8e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000017_c4961faf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000017_c4961faf.szar new file mode 100644 index 00000000..29b8b0e4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/archive/delta_00000000000000000017_c4961faf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000001_5ca7ac90.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000001_5ca7ac90.szcp new file mode 100644 index 00000000..c154ef32 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000001_5ca7ac90.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000002_06f44fbc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000002_06f44fbc.szcp new file mode 100644 index 00000000..a9aa9614 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000002_06f44fbc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000003_9874915e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000003_9874915e.szcp new file mode 100644 index 00000000..cbf0f3eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000003_9874915e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000004_9a2ecd0b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000004_9a2ecd0b.szcp new file mode 100644 index 00000000..01a23d5f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000004_9a2ecd0b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000005_c847147d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000005_c847147d.szcp new file mode 100644 index 00000000..e423ce7d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000005_c847147d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000006_baab7eb4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000006_baab7eb4.szcp new file mode 100644 index 00000000..397acaf4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000006_baab7eb4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000007_f8974a5e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000007_f8974a5e.szcp new file mode 100644 index 00000000..c07bdce8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000007_f8974a5e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000008_059ae9c5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000008_059ae9c5.szcp new file mode 100644 index 00000000..8cfcd1be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000008_059ae9c5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000009_6fa7472f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000009_6fa7472f.szcp new file mode 100644 index 00000000..e267ca0e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000009_6fa7472f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000010_0699de63.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000010_0699de63.szcp new file mode 100644 index 00000000..a64d2cd3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000010_0699de63.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000011_33300320.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000011_33300320.szcp new file mode 100644 index 00000000..43547a66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000011_33300320.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000012_169cf37d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000012_169cf37d.szcp new file mode 100644 index 00000000..68fd51c5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000012_169cf37d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000013_fccd0ccc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000013_fccd0ccc.szcp new file mode 100644 index 00000000..fb323101 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000013_fccd0ccc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000014_9d26c5fc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000014_9d26c5fc.szcp new file mode 100644 index 00000000..dabe1332 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000014_9d26c5fc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000015_965178f2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000015_965178f2.szcp new file mode 100644 index 00000000..7ca2ff4e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000015_965178f2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000016_5f5cceda.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000016_5f5cceda.szcp new file mode 100644 index 00000000..f78db936 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000016_5f5cceda.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000017_23974f72.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000017_23974f72.szcp new file mode 100644 index 00000000..bdf514d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_021/checkpoints/checkpoint_00000000000000000017_23974f72.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000001_95de855c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000001_95de855c.szar new file mode 100644 index 00000000..a215cd39 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000001_95de855c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000002_7de82c4e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000002_7de82c4e.szar new file mode 100644 index 00000000..bf3db660 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000002_7de82c4e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000003_6cf34f23.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000003_6cf34f23.szar new file mode 100644 index 00000000..cb454d9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000003_6cf34f23.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000004_bcb9d63e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000004_bcb9d63e.szar new file mode 100644 index 00000000..071511fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000004_bcb9d63e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000005_33ad0385.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000005_33ad0385.szar new file mode 100644 index 00000000..9d80ace3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000005_33ad0385.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000006_80bf5533.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000006_80bf5533.szar new file mode 100644 index 00000000..3c61400a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000006_80bf5533.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000007_c6c3d6e0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000007_c6c3d6e0.szar new file mode 100644 index 00000000..34c24438 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000007_c6c3d6e0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000008_2e543bdc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000008_2e543bdc.szar new file mode 100644 index 00000000..af73a64b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000008_2e543bdc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000009_c5eea943.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000009_c5eea943.szar new file mode 100644 index 00000000..d6cd8981 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000009_c5eea943.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000010_d68f27a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000010_d68f27a3.szar new file mode 100644 index 00000000..855e4f8b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000010_d68f27a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000011_0db4e9fe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000011_0db4e9fe.szar new file mode 100644 index 00000000..1b4e57cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000011_0db4e9fe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000012_d9cb7493.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000012_d9cb7493.szar new file mode 100644 index 00000000..a1cd1fba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000012_d9cb7493.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000013_050bca7f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000013_050bca7f.szar new file mode 100644 index 00000000..c4ea0bc1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000013_050bca7f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000014_5653b904.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000014_5653b904.szar new file mode 100644 index 00000000..7295b895 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/archive/delta_00000000000000000014_5653b904.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000001_7d36ec31.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000001_7d36ec31.szcp new file mode 100644 index 00000000..b46a1da6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000001_7d36ec31.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000002_5fc074d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000002_5fc074d3.szcp new file mode 100644 index 00000000..472dbd9e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000002_5fc074d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000003_e5785dc3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000003_e5785dc3.szcp new file mode 100644 index 00000000..a28b6e3d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000003_e5785dc3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000004_bc1fc4d9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000004_bc1fc4d9.szcp new file mode 100644 index 00000000..5dc2b0b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000004_bc1fc4d9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000005_8028d80d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000005_8028d80d.szcp new file mode 100644 index 00000000..1673deb7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000005_8028d80d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000006_0bb180ea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000006_0bb180ea.szcp new file mode 100644 index 00000000..52779d1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000006_0bb180ea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000007_e1fe2cd5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000007_e1fe2cd5.szcp new file mode 100644 index 00000000..fa8a4321 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000007_e1fe2cd5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000008_79af7e04.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000008_79af7e04.szcp new file mode 100644 index 00000000..dcb993b0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000008_79af7e04.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000009_30a07dd9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000009_30a07dd9.szcp new file mode 100644 index 00000000..a310b21b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000009_30a07dd9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000010_95114723.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000010_95114723.szcp new file mode 100644 index 00000000..14c5a8a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000010_95114723.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000011_f6247533.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000011_f6247533.szcp new file mode 100644 index 00000000..a63e6d7f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000011_f6247533.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000012_3a54d083.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000012_3a54d083.szcp new file mode 100644 index 00000000..690a2114 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000012_3a54d083.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000013_68665c04.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000013_68665c04.szcp new file mode 100644 index 00000000..a7d68408 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000013_68665c04.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000014_310fffc9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000014_310fffc9.szcp new file mode 100644 index 00000000..ec876f8b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_022/checkpoints/checkpoint_00000000000000000014_310fffc9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000001_1c61175d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000001_1c61175d.szar new file mode 100644 index 00000000..0e72c89c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000001_1c61175d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000002_abe4e8a1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000002_abe4e8a1.szar new file mode 100644 index 00000000..26ef0c33 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000002_abe4e8a1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000003_9bfc6884.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000003_9bfc6884.szar new file mode 100644 index 00000000..6b92e625 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000003_9bfc6884.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000004_c240fad1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000004_c240fad1.szar new file mode 100644 index 00000000..ad42686a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000004_c240fad1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000005_48089226.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000005_48089226.szar new file mode 100644 index 00000000..b9cd4d4c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000005_48089226.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000006_99338651.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000006_99338651.szar new file mode 100644 index 00000000..39618e3c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000006_99338651.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000007_423b2b6a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000007_423b2b6a.szar new file mode 100644 index 00000000..ec0d5d75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000007_423b2b6a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000008_313c788e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000008_313c788e.szar new file mode 100644 index 00000000..93c718a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000008_313c788e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000009_12417caf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000009_12417caf.szar new file mode 100644 index 00000000..0df32e1f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000009_12417caf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000010_8444fbaa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000010_8444fbaa.szar new file mode 100644 index 00000000..fb534e47 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000010_8444fbaa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000011_69c0368b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000011_69c0368b.szar new file mode 100644 index 00000000..ef6c4c49 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000011_69c0368b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000012_9fbf6a67.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000012_9fbf6a67.szar new file mode 100644 index 00000000..b23e6117 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000012_9fbf6a67.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000013_4617e7bf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000013_4617e7bf.szar new file mode 100644 index 00000000..b3e25900 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000013_4617e7bf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000014_3a162f5f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000014_3a162f5f.szar new file mode 100644 index 00000000..958f4f8d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000014_3a162f5f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000015_56b4620a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000015_56b4620a.szar new file mode 100644 index 00000000..348c42e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/archive/delta_00000000000000000015_56b4620a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000001_6d5d7007.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000001_6d5d7007.szcp new file mode 100644 index 00000000..fa3425f3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000001_6d5d7007.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000002_902bfe42.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000002_902bfe42.szcp new file mode 100644 index 00000000..9cd5fb1b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000002_902bfe42.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000003_79f51336.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000003_79f51336.szcp new file mode 100644 index 00000000..032065c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000003_79f51336.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000004_c6703f6c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000004_c6703f6c.szcp new file mode 100644 index 00000000..067140f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000004_c6703f6c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000005_053e8f01.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000005_053e8f01.szcp new file mode 100644 index 00000000..6b463ad0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000005_053e8f01.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000006_df862567.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000006_df862567.szcp new file mode 100644 index 00000000..ae9d3307 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000006_df862567.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000007_5d50155d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000007_5d50155d.szcp new file mode 100644 index 00000000..8bef1f75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000007_5d50155d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000008_556c2339.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000008_556c2339.szcp new file mode 100644 index 00000000..ce9eb670 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000008_556c2339.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000009_4aade632.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000009_4aade632.szcp new file mode 100644 index 00000000..7779fe76 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000009_4aade632.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000010_60beb642.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000010_60beb642.szcp new file mode 100644 index 00000000..c4ccb570 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000010_60beb642.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000011_8f2a3461.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000011_8f2a3461.szcp new file mode 100644 index 00000000..41c38ca6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000011_8f2a3461.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000012_c3eaef85.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000012_c3eaef85.szcp new file mode 100644 index 00000000..3444af31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000012_c3eaef85.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000013_89ff9058.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000013_89ff9058.szcp new file mode 100644 index 00000000..16655bbb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000013_89ff9058.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000014_18d9e70e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000014_18d9e70e.szcp new file mode 100644 index 00000000..72a5cefe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000014_18d9e70e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000015_a64b5a94.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000015_a64b5a94.szcp new file mode 100644 index 00000000..425373f4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_023/checkpoints/checkpoint_00000000000000000015_a64b5a94.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000001_d879037f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000001_d879037f.szar new file mode 100644 index 00000000..03922370 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000001_d879037f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000002_d1d8453d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000002_d1d8453d.szar new file mode 100644 index 00000000..26fd4118 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000002_d1d8453d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000003_823d9de6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000003_823d9de6.szar new file mode 100644 index 00000000..e8eb28e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000003_823d9de6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000004_6805e8ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000004_6805e8ac.szar new file mode 100644 index 00000000..e8213ec9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000004_6805e8ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000005_f995eb34.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000005_f995eb34.szar new file mode 100644 index 00000000..38289964 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000005_f995eb34.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000006_8d4e53c9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000006_8d4e53c9.szar new file mode 100644 index 00000000..83e043c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000006_8d4e53c9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000007_78deb618.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000007_78deb618.szar new file mode 100644 index 00000000..63b99fc9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000007_78deb618.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000008_db84cc10.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000008_db84cc10.szar new file mode 100644 index 00000000..7feade40 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000008_db84cc10.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000009_666cb125.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000009_666cb125.szar new file mode 100644 index 00000000..a54fe25e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000009_666cb125.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000010_bd6a40ff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000010_bd6a40ff.szar new file mode 100644 index 00000000..b25d1113 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000010_bd6a40ff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000011_9b75d765.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000011_9b75d765.szar new file mode 100644 index 00000000..87d3e6ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000011_9b75d765.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000012_ea48464e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000012_ea48464e.szar new file mode 100644 index 00000000..cf1d702d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000012_ea48464e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000013_0e059f58.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000013_0e059f58.szar new file mode 100644 index 00000000..1bcfce2b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/archive/delta_00000000000000000013_0e059f58.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000001_c8504ad2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000001_c8504ad2.szcp new file mode 100644 index 00000000..07118712 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000001_c8504ad2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000002_5c43566a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000002_5c43566a.szcp new file mode 100644 index 00000000..90e8fc0b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000002_5c43566a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000003_e8263df8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000003_e8263df8.szcp new file mode 100644 index 00000000..1cdc16bb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000003_e8263df8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000004_e0caa913.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000004_e0caa913.szcp new file mode 100644 index 00000000..bdd32e95 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000004_e0caa913.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000005_459b601a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000005_459b601a.szcp new file mode 100644 index 00000000..92d72e0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000005_459b601a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000006_654dfc34.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000006_654dfc34.szcp new file mode 100644 index 00000000..b02fa365 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000006_654dfc34.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000007_97620f13.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000007_97620f13.szcp new file mode 100644 index 00000000..3d78077f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000007_97620f13.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000008_0a5ec0df.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000008_0a5ec0df.szcp new file mode 100644 index 00000000..d5f8c02a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000008_0a5ec0df.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000009_3dbedf2f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000009_3dbedf2f.szcp new file mode 100644 index 00000000..1557caee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000009_3dbedf2f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000010_c394f8e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000010_c394f8e1.szcp new file mode 100644 index 00000000..0e8ad6ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000010_c394f8e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000011_f7b97d56.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000011_f7b97d56.szcp new file mode 100644 index 00000000..b606331a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000011_f7b97d56.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000012_b4298ba0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000012_b4298ba0.szcp new file mode 100644 index 00000000..4776b24c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000012_b4298ba0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000013_d2448e81.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000013_d2448e81.szcp new file mode 100644 index 00000000..4c071f86 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_024/checkpoints/checkpoint_00000000000000000013_d2448e81.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000001_162addd5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000001_162addd5.szar new file mode 100644 index 00000000..4ab97b83 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000001_162addd5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000002_2d232000.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000002_2d232000.szar new file mode 100644 index 00000000..f4515750 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000002_2d232000.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000003_16830f9f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000003_16830f9f.szar new file mode 100644 index 00000000..78300638 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000003_16830f9f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000004_86a9d02c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000004_86a9d02c.szar new file mode 100644 index 00000000..c3259577 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000004_86a9d02c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000005_e31a649b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000005_e31a649b.szar new file mode 100644 index 00000000..d63cde7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000005_e31a649b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000006_1bab0472.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000006_1bab0472.szar new file mode 100644 index 00000000..28c0ad09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000006_1bab0472.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000007_4a6f6708.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000007_4a6f6708.szar new file mode 100644 index 00000000..7f483b6e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000007_4a6f6708.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000008_6771beff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000008_6771beff.szar new file mode 100644 index 00000000..b86c64db Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000008_6771beff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000009_9db381e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000009_9db381e2.szar new file mode 100644 index 00000000..e22d80a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000009_9db381e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000010_345b32c1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000010_345b32c1.szar new file mode 100644 index 00000000..4a3c15ee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000010_345b32c1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000011_9b9914cf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000011_9b9914cf.szar new file mode 100644 index 00000000..3dd8f709 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000011_9b9914cf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000012_95ff4dcc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000012_95ff4dcc.szar new file mode 100644 index 00000000..2ab5af56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000012_95ff4dcc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000013_b5797b8f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000013_b5797b8f.szar new file mode 100644 index 00000000..fdfdd79a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000013_b5797b8f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000014_a600b45f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000014_a600b45f.szar new file mode 100644 index 00000000..a2c395bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000014_a600b45f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000015_da3edd23.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000015_da3edd23.szar new file mode 100644 index 00000000..5d2764d9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000015_da3edd23.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000016_9e27cf1c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000016_9e27cf1c.szar new file mode 100644 index 00000000..1a8aca12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000016_9e27cf1c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000017_bf707758.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000017_bf707758.szar new file mode 100644 index 00000000..7fd3a9b0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000017_bf707758.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000018_38c6a7b8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000018_38c6a7b8.szar new file mode 100644 index 00000000..c74fcb9c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000018_38c6a7b8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000019_e784e743.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000019_e784e743.szar new file mode 100644 index 00000000..11213238 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/archive/delta_00000000000000000019_e784e743.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000001_1a5a06e3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000001_1a5a06e3.szcp new file mode 100644 index 00000000..80849168 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000001_1a5a06e3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000002_d0a412fc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000002_d0a412fc.szcp new file mode 100644 index 00000000..73734be6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000002_d0a412fc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000003_2d6d5f01.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000003_2d6d5f01.szcp new file mode 100644 index 00000000..06a76a73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000003_2d6d5f01.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000004_8a9f0ed0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000004_8a9f0ed0.szcp new file mode 100644 index 00000000..342775cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000004_8a9f0ed0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000005_ec97e914.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000005_ec97e914.szcp new file mode 100644 index 00000000..e5ba536c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000005_ec97e914.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000006_69083e73.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000006_69083e73.szcp new file mode 100644 index 00000000..dd1ec3ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000006_69083e73.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000007_8d5430e5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000007_8d5430e5.szcp new file mode 100644 index 00000000..72bb750b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000007_8d5430e5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000008_a1ad04be.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000008_a1ad04be.szcp new file mode 100644 index 00000000..62dc4878 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000008_a1ad04be.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000009_839a3fda.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000009_839a3fda.szcp new file mode 100644 index 00000000..69f872bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000009_839a3fda.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000010_29740d96.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000010_29740d96.szcp new file mode 100644 index 00000000..4536ac48 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000010_29740d96.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000011_f87f9ad7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000011_f87f9ad7.szcp new file mode 100644 index 00000000..3d5a1140 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000011_f87f9ad7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000012_cef994f9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000012_cef994f9.szcp new file mode 100644 index 00000000..f955644c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000012_cef994f9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000013_c21c7578.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000013_c21c7578.szcp new file mode 100644 index 00000000..2f6255a5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000013_c21c7578.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000014_37f70133.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000014_37f70133.szcp new file mode 100644 index 00000000..dea500cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000014_37f70133.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000015_888fb600.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000015_888fb600.szcp new file mode 100644 index 00000000..1738afaa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000015_888fb600.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000016_45d26ed7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000016_45d26ed7.szcp new file mode 100644 index 00000000..3cba07b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000016_45d26ed7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000017_2eb4c5c7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000017_2eb4c5c7.szcp new file mode 100644 index 00000000..ee21a5e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000017_2eb4c5c7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000018_7f49e8b8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000018_7f49e8b8.szcp new file mode 100644 index 00000000..00e3b0ed Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000018_7f49e8b8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000019_3403ecea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000019_3403ecea.szcp new file mode 100644 index 00000000..0c52d8fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_025/checkpoints/checkpoint_00000000000000000019_3403ecea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000001_23f2f874.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000001_23f2f874.szar new file mode 100644 index 00000000..c8f4d18d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000001_23f2f874.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000002_70c43b0f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000002_70c43b0f.szar new file mode 100644 index 00000000..abcbf572 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000002_70c43b0f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000003_bba305de.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000003_bba305de.szar new file mode 100644 index 00000000..f0cc52d4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000003_bba305de.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000004_c0ad7b8a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000004_c0ad7b8a.szar new file mode 100644 index 00000000..2690e593 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000004_c0ad7b8a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000005_5542062d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000005_5542062d.szar new file mode 100644 index 00000000..ac6eba48 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000005_5542062d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000006_0d7eca08.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000006_0d7eca08.szar new file mode 100644 index 00000000..1dfdd74c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000006_0d7eca08.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000007_54663b7d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000007_54663b7d.szar new file mode 100644 index 00000000..e713b9a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000007_54663b7d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000008_f2792993.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000008_f2792993.szar new file mode 100644 index 00000000..f33077f3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000008_f2792993.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000009_4e807f5c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000009_4e807f5c.szar new file mode 100644 index 00000000..0b2ba09d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000009_4e807f5c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000010_9d2aef01.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000010_9d2aef01.szar new file mode 100644 index 00000000..3da9fd36 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000010_9d2aef01.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000011_34d2d5b5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000011_34d2d5b5.szar new file mode 100644 index 00000000..647b55e4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000011_34d2d5b5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000012_be84a43c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000012_be84a43c.szar new file mode 100644 index 00000000..f4a7774c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000012_be84a43c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000013_f77c34d9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000013_f77c34d9.szar new file mode 100644 index 00000000..8ecfbf79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000013_f77c34d9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000014_67c32cbf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000014_67c32cbf.szar new file mode 100644 index 00000000..267e08ee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000014_67c32cbf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000015_3aa62f24.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000015_3aa62f24.szar new file mode 100644 index 00000000..005d9b0c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000015_3aa62f24.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000016_636fe43f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000016_636fe43f.szar new file mode 100644 index 00000000..21edfec4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000016_636fe43f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000017_6b669ec5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000017_6b669ec5.szar new file mode 100644 index 00000000..a562fdfc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000017_6b669ec5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000018_40bd2f41.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000018_40bd2f41.szar new file mode 100644 index 00000000..48043d49 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/archive/delta_00000000000000000018_40bd2f41.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000001_0ecbb838.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000001_0ecbb838.szcp new file mode 100644 index 00000000..d57474fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000001_0ecbb838.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000002_df98a5a1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000002_df98a5a1.szcp new file mode 100644 index 00000000..961e1c3a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000002_df98a5a1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000003_87670de8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000003_87670de8.szcp new file mode 100644 index 00000000..fed52972 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000003_87670de8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000004_53a166a5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000004_53a166a5.szcp new file mode 100644 index 00000000..56c6e624 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000004_53a166a5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000005_d5e64e0e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000005_d5e64e0e.szcp new file mode 100644 index 00000000..8dd4b103 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000005_d5e64e0e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000006_b9b6955b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000006_b9b6955b.szcp new file mode 100644 index 00000000..b577b188 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000006_b9b6955b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000007_f27dc94b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000007_f27dc94b.szcp new file mode 100644 index 00000000..96c107d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000007_f27dc94b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000008_fdcdd46d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000008_fdcdd46d.szcp new file mode 100644 index 00000000..f13bce80 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000008_fdcdd46d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000009_6acf3007.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000009_6acf3007.szcp new file mode 100644 index 00000000..aaa16374 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000009_6acf3007.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000010_01294998.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000010_01294998.szcp new file mode 100644 index 00000000..f1501413 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000010_01294998.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000011_6327d872.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000011_6327d872.szcp new file mode 100644 index 00000000..1743b091 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000011_6327d872.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000012_f83ab37e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000012_f83ab37e.szcp new file mode 100644 index 00000000..260b11b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000012_f83ab37e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000013_2a05430f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000013_2a05430f.szcp new file mode 100644 index 00000000..b13eff45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000013_2a05430f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000014_e43ac7c3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000014_e43ac7c3.szcp new file mode 100644 index 00000000..fe546d01 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000014_e43ac7c3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000015_4ae45bdd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000015_4ae45bdd.szcp new file mode 100644 index 00000000..52403e93 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000015_4ae45bdd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000016_89aec74f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000016_89aec74f.szcp new file mode 100644 index 00000000..dfec9a1b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000016_89aec74f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000017_b386d303.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000017_b386d303.szcp new file mode 100644 index 00000000..79b0f768 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000017_b386d303.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000018_cf1c180e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000018_cf1c180e.szcp new file mode 100644 index 00000000..488fa5fa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_026/checkpoints/checkpoint_00000000000000000018_cf1c180e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000001_67e236e0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000001_67e236e0.szar new file mode 100644 index 00000000..4f582f42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000001_67e236e0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000002_df4a6d0d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000002_df4a6d0d.szar new file mode 100644 index 00000000..a8eeb206 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000002_df4a6d0d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000003_4ad8c48e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000003_4ad8c48e.szar new file mode 100644 index 00000000..e56efac3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000003_4ad8c48e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000004_9d3381e1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000004_9d3381e1.szar new file mode 100644 index 00000000..819172a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000004_9d3381e1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000005_d220aff4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000005_d220aff4.szar new file mode 100644 index 00000000..5e4fdcb3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000005_d220aff4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000006_a60179f7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000006_a60179f7.szar new file mode 100644 index 00000000..51016563 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000006_a60179f7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000007_1e26ff58.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000007_1e26ff58.szar new file mode 100644 index 00000000..bd554dc8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000007_1e26ff58.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000008_3e5d8ffc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000008_3e5d8ffc.szar new file mode 100644 index 00000000..a721bd84 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000008_3e5d8ffc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000009_f45b96aa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000009_f45b96aa.szar new file mode 100644 index 00000000..97b03b45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000009_f45b96aa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000010_1fc74763.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000010_1fc74763.szar new file mode 100644 index 00000000..d15308ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000010_1fc74763.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000011_075345fd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000011_075345fd.szar new file mode 100644 index 00000000..55788153 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000011_075345fd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000012_473a91c5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000012_473a91c5.szar new file mode 100644 index 00000000..b404d63f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000012_473a91c5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000013_41633fd1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000013_41633fd1.szar new file mode 100644 index 00000000..4203ea45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000013_41633fd1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000014_d5d841a1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000014_d5d841a1.szar new file mode 100644 index 00000000..75f74b09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000014_d5d841a1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000015_7d8a5f44.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000015_7d8a5f44.szar new file mode 100644 index 00000000..a90abfb8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000015_7d8a5f44.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000016_5820ac46.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000016_5820ac46.szar new file mode 100644 index 00000000..d42e4aa5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000016_5820ac46.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000017_fbc15b30.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000017_fbc15b30.szar new file mode 100644 index 00000000..0a3f1ade Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000017_fbc15b30.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000018_006218e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000018_006218e9.szar new file mode 100644 index 00000000..f3631b9a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000018_006218e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000019_29be2504.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000019_29be2504.szar new file mode 100644 index 00000000..568685f0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/archive/delta_00000000000000000019_29be2504.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000001_9a9dd1f0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000001_9a9dd1f0.szcp new file mode 100644 index 00000000..e9af89fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000001_9a9dd1f0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000002_81d7f51f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000002_81d7f51f.szcp new file mode 100644 index 00000000..ac86e9dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000002_81d7f51f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000003_ed7375b3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000003_ed7375b3.szcp new file mode 100644 index 00000000..cfe3868b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000003_ed7375b3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000004_1c30b383.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000004_1c30b383.szcp new file mode 100644 index 00000000..3cf87556 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000004_1c30b383.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000005_ae81c8e8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000005_ae81c8e8.szcp new file mode 100644 index 00000000..d290ada8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000005_ae81c8e8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000006_b9b0bc81.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000006_b9b0bc81.szcp new file mode 100644 index 00000000..6ba380ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000006_b9b0bc81.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000007_afea083c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000007_afea083c.szcp new file mode 100644 index 00000000..27556a33 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000007_afea083c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000008_61703e8c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000008_61703e8c.szcp new file mode 100644 index 00000000..486ff2c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000008_61703e8c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000009_3e86be46.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000009_3e86be46.szcp new file mode 100644 index 00000000..7d79b766 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000009_3e86be46.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000010_0252bf63.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000010_0252bf63.szcp new file mode 100644 index 00000000..9df60948 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000010_0252bf63.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000011_a1f1aa5b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000011_a1f1aa5b.szcp new file mode 100644 index 00000000..8d0faebd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000011_a1f1aa5b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000012_80fdc5f1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000012_80fdc5f1.szcp new file mode 100644 index 00000000..00bb9df1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000012_80fdc5f1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000013_adb907a3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000013_adb907a3.szcp new file mode 100644 index 00000000..ca2f7da4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000013_adb907a3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000014_90e332a4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000014_90e332a4.szcp new file mode 100644 index 00000000..25cd2290 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000014_90e332a4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000015_ab64eeb9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000015_ab64eeb9.szcp new file mode 100644 index 00000000..3750ec66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000015_ab64eeb9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000016_ffc5b62f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000016_ffc5b62f.szcp new file mode 100644 index 00000000..684a5b20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000016_ffc5b62f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000017_b575b314.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000017_b575b314.szcp new file mode 100644 index 00000000..dc4065ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000017_b575b314.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000018_6b043f44.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000018_6b043f44.szcp new file mode 100644 index 00000000..9ccb557e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000018_6b043f44.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000019_c06da8da.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000019_c06da8da.szcp new file mode 100644 index 00000000..90fa9670 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_027/checkpoints/checkpoint_00000000000000000019_c06da8da.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000001_1c90e7d5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000001_1c90e7d5.szar new file mode 100644 index 00000000..af2c7357 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000001_1c90e7d5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000002_86178842.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000002_86178842.szar new file mode 100644 index 00000000..6e5298e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000002_86178842.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000003_a6075ae9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000003_a6075ae9.szar new file mode 100644 index 00000000..f9259ac9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000003_a6075ae9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000004_4a2ed21c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000004_4a2ed21c.szar new file mode 100644 index 00000000..342c6e17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000004_4a2ed21c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000005_f9cf7cd0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000005_f9cf7cd0.szar new file mode 100644 index 00000000..12310e77 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000005_f9cf7cd0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000006_676e832b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000006_676e832b.szar new file mode 100644 index 00000000..cb6f2099 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000006_676e832b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000007_00bb859a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000007_00bb859a.szar new file mode 100644 index 00000000..0291f826 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000007_00bb859a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000008_58af7a46.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000008_58af7a46.szar new file mode 100644 index 00000000..c5170256 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000008_58af7a46.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000009_18d0befe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000009_18d0befe.szar new file mode 100644 index 00000000..dc0099bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000009_18d0befe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000010_9ef66a25.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000010_9ef66a25.szar new file mode 100644 index 00000000..27513787 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000010_9ef66a25.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000011_482740ed.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000011_482740ed.szar new file mode 100644 index 00000000..081c6131 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000011_482740ed.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000012_1c384bee.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000012_1c384bee.szar new file mode 100644 index 00000000..a741fe3d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000012_1c384bee.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000013_03b34b3b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000013_03b34b3b.szar new file mode 100644 index 00000000..fc686061 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000013_03b34b3b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000014_f2bbe14b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000014_f2bbe14b.szar new file mode 100644 index 00000000..fa44b864 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/archive/delta_00000000000000000014_f2bbe14b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000001_6c3a5fb7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000001_6c3a5fb7.szcp new file mode 100644 index 00000000..d85a9603 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000001_6c3a5fb7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000002_9cf368f7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000002_9cf368f7.szcp new file mode 100644 index 00000000..c0fb8abf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000002_9cf368f7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000003_81c37141.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000003_81c37141.szcp new file mode 100644 index 00000000..818cf904 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000003_81c37141.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000004_8f7da67d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000004_8f7da67d.szcp new file mode 100644 index 00000000..5cd39f2b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000004_8f7da67d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000005_7b13714f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000005_7b13714f.szcp new file mode 100644 index 00000000..a0732dbb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000005_7b13714f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000006_1d052de3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000006_1d052de3.szcp new file mode 100644 index 00000000..1b678d36 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000006_1d052de3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000007_6784b8d6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000007_6784b8d6.szcp new file mode 100644 index 00000000..bfbd171c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000007_6784b8d6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000008_d5fd81ea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000008_d5fd81ea.szcp new file mode 100644 index 00000000..3514038f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000008_d5fd81ea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000009_5dec12f2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000009_5dec12f2.szcp new file mode 100644 index 00000000..501a4b35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000009_5dec12f2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000010_36864411.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000010_36864411.szcp new file mode 100644 index 00000000..52de01d7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000010_36864411.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000011_d057d0c2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000011_d057d0c2.szcp new file mode 100644 index 00000000..27edea50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000011_d057d0c2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000012_f35c30e9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000012_f35c30e9.szcp new file mode 100644 index 00000000..6f6c92cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000012_f35c30e9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000013_4b7aa1d9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000013_4b7aa1d9.szcp new file mode 100644 index 00000000..dab2f402 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000013_4b7aa1d9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000014_9e6c5833.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000014_9e6c5833.szcp new file mode 100644 index 00000000..a9982806 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_028/checkpoints/checkpoint_00000000000000000014_9e6c5833.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000001_56dbf93f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000001_56dbf93f.szar new file mode 100644 index 00000000..33fd44d3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000001_56dbf93f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000002_b71a1973.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000002_b71a1973.szar new file mode 100644 index 00000000..102fb9f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000002_b71a1973.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000003_977a1e9e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000003_977a1e9e.szar new file mode 100644 index 00000000..4b4b7389 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000003_977a1e9e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000004_6f3052c6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000004_6f3052c6.szar new file mode 100644 index 00000000..fd647a39 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000004_6f3052c6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000005_bb2a7ebd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000005_bb2a7ebd.szar new file mode 100644 index 00000000..0b0b7c1d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000005_bb2a7ebd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000006_beb5036c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000006_beb5036c.szar new file mode 100644 index 00000000..8373ea47 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000006_beb5036c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000007_1b1bb0fe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000007_1b1bb0fe.szar new file mode 100644 index 00000000..147446ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000007_1b1bb0fe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000008_7eda72e3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000008_7eda72e3.szar new file mode 100644 index 00000000..d1802d5b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000008_7eda72e3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000009_7f4dec26.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000009_7f4dec26.szar new file mode 100644 index 00000000..34ddd1c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000009_7f4dec26.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000010_8cb70e07.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000010_8cb70e07.szar new file mode 100644 index 00000000..e4ce0c21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000010_8cb70e07.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000011_9bd31e4d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000011_9bd31e4d.szar new file mode 100644 index 00000000..0a4188cc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000011_9bd31e4d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000012_8db82ea7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000012_8db82ea7.szar new file mode 100644 index 00000000..9b79f617 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000012_8db82ea7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000013_3dd9b05b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000013_3dd9b05b.szar new file mode 100644 index 00000000..e1f7e61d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000013_3dd9b05b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000014_bfe0412e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000014_bfe0412e.szar new file mode 100644 index 00000000..0199d750 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/archive/delta_00000000000000000014_bfe0412e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000001_7d658a0d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000001_7d658a0d.szcp new file mode 100644 index 00000000..b425dda4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000001_7d658a0d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000002_ed90cbea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000002_ed90cbea.szcp new file mode 100644 index 00000000..1ecb63d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000002_ed90cbea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000003_395c2163.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000003_395c2163.szcp new file mode 100644 index 00000000..ca4eaa22 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000003_395c2163.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000004_aca32db1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000004_aca32db1.szcp new file mode 100644 index 00000000..e9a57519 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000004_aca32db1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000005_3cb9d8c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000005_3cb9d8c8.szcp new file mode 100644 index 00000000..80d6d5e9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000005_3cb9d8c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000006_0cac8792.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000006_0cac8792.szcp new file mode 100644 index 00000000..e753a674 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000006_0cac8792.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000007_b8faef3a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000007_b8faef3a.szcp new file mode 100644 index 00000000..ffe33218 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000007_b8faef3a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000008_80545ad4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000008_80545ad4.szcp new file mode 100644 index 00000000..b49b1c47 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000008_80545ad4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000009_77fbeb39.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000009_77fbeb39.szcp new file mode 100644 index 00000000..d290f556 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000009_77fbeb39.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000010_52f9f0fc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000010_52f9f0fc.szcp new file mode 100644 index 00000000..3be88c27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000010_52f9f0fc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000011_9738b705.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000011_9738b705.szcp new file mode 100644 index 00000000..d4e576a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000011_9738b705.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000012_168c2110.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000012_168c2110.szcp new file mode 100644 index 00000000..1bab2c0d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000012_168c2110.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000013_02b75323.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000013_02b75323.szcp new file mode 100644 index 00000000..ec6087f0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000013_02b75323.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000014_90d4b59e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000014_90d4b59e.szcp new file mode 100644 index 00000000..c673bcf7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_029/checkpoints/checkpoint_00000000000000000014_90d4b59e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000001_503a8269.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000001_503a8269.szar new file mode 100644 index 00000000..41bc2cf3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000001_503a8269.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000002_a163ea58.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000002_a163ea58.szar new file mode 100644 index 00000000..029e2272 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000002_a163ea58.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000003_a560a0d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000003_a560a0d0.szar new file mode 100644 index 00000000..378cb298 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000003_a560a0d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000004_c223fa5c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000004_c223fa5c.szar new file mode 100644 index 00000000..8df8da07 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000004_c223fa5c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000005_8646a76e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000005_8646a76e.szar new file mode 100644 index 00000000..2aeddc78 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000005_8646a76e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000006_6d8479a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000006_6d8479a3.szar new file mode 100644 index 00000000..ad837b51 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000006_6d8479a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000007_65879691.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000007_65879691.szar new file mode 100644 index 00000000..39d984a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000007_65879691.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000008_b3f05056.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000008_b3f05056.szar new file mode 100644 index 00000000..5cbc7085 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000008_b3f05056.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000009_6ec0c304.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000009_6ec0c304.szar new file mode 100644 index 00000000..68767452 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000009_6ec0c304.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000010_678ee2d7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000010_678ee2d7.szar new file mode 100644 index 00000000..e92c5615 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000010_678ee2d7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000011_5a6f4e8b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000011_5a6f4e8b.szar new file mode 100644 index 00000000..aac461b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000011_5a6f4e8b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000012_13c33621.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000012_13c33621.szar new file mode 100644 index 00000000..c72c80aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000012_13c33621.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000013_b24cd08b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000013_b24cd08b.szar new file mode 100644 index 00000000..f99ec02d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000013_b24cd08b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000014_ab29daef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000014_ab29daef.szar new file mode 100644 index 00000000..70cf63a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000014_ab29daef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000015_963403b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000015_963403b0.szar new file mode 100644 index 00000000..9d3b6368 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000015_963403b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000016_b2965d32.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000016_b2965d32.szar new file mode 100644 index 00000000..dff7d908 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000016_b2965d32.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000017_2faa5318.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000017_2faa5318.szar new file mode 100644 index 00000000..da79de60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000017_2faa5318.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000018_bfae2e9c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000018_bfae2e9c.szar new file mode 100644 index 00000000..04a5c9e9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000018_bfae2e9c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000019_456e3c73.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000019_456e3c73.szar new file mode 100644 index 00000000..13f1e2f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/archive/delta_00000000000000000019_456e3c73.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000001_b0e7d626.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000001_b0e7d626.szcp new file mode 100644 index 00000000..9096d084 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000001_b0e7d626.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000002_530e145d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000002_530e145d.szcp new file mode 100644 index 00000000..b2b4a89a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000002_530e145d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000003_544b3b10.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000003_544b3b10.szcp new file mode 100644 index 00000000..39dae289 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000003_544b3b10.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000004_9dfda2e5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000004_9dfda2e5.szcp new file mode 100644 index 00000000..fefe32f9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000004_9dfda2e5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000005_90f0802b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000005_90f0802b.szcp new file mode 100644 index 00000000..6a1da488 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000005_90f0802b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000006_f0aedd57.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000006_f0aedd57.szcp new file mode 100644 index 00000000..caab9cab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000006_f0aedd57.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000007_9b4577b5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000007_9b4577b5.szcp new file mode 100644 index 00000000..aed5965d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000007_9b4577b5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000008_aabc9cb6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000008_aabc9cb6.szcp new file mode 100644 index 00000000..cf261e74 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000008_aabc9cb6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000009_42b61778.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000009_42b61778.szcp new file mode 100644 index 00000000..acee1b85 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000009_42b61778.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000010_a4095916.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000010_a4095916.szcp new file mode 100644 index 00000000..e1dd45b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000010_a4095916.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000011_27451033.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000011_27451033.szcp new file mode 100644 index 00000000..4f093df2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000011_27451033.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000012_29051f8e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000012_29051f8e.szcp new file mode 100644 index 00000000..1bfa1149 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000012_29051f8e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000013_03fc8736.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000013_03fc8736.szcp new file mode 100644 index 00000000..1fb4d42e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000013_03fc8736.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000014_56360ea7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000014_56360ea7.szcp new file mode 100644 index 00000000..58573d44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000014_56360ea7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000015_ef8a3a36.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000015_ef8a3a36.szcp new file mode 100644 index 00000000..1ca86233 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000015_ef8a3a36.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000016_8150bddb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000016_8150bddb.szcp new file mode 100644 index 00000000..27643899 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000016_8150bddb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000017_c558d9af.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000017_c558d9af.szcp new file mode 100644 index 00000000..0cac66bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000017_c558d9af.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000018_29f3a525.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000018_29f3a525.szcp new file mode 100644 index 00000000..7b2c555c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000018_29f3a525.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000019_82a3f3e4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000019_82a3f3e4.szcp new file mode 100644 index 00000000..5b07d9b6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_030/checkpoints/checkpoint_00000000000000000019_82a3f3e4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000001_82bbb2e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000001_82bbb2e9.szar new file mode 100644 index 00000000..e34b39ea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000001_82bbb2e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000002_65b9c452.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000002_65b9c452.szar new file mode 100644 index 00000000..2b6761c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000002_65b9c452.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000003_f13c0d36.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000003_f13c0d36.szar new file mode 100644 index 00000000..243a1cd6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000003_f13c0d36.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000004_d3592009.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000004_d3592009.szar new file mode 100644 index 00000000..5539d0eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000004_d3592009.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000005_d1c4c80d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000005_d1c4c80d.szar new file mode 100644 index 00000000..9008347c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000005_d1c4c80d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000006_ed4222d7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000006_ed4222d7.szar new file mode 100644 index 00000000..bcb0994f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000006_ed4222d7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000007_c0ef6683.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000007_c0ef6683.szar new file mode 100644 index 00000000..95d6af90 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000007_c0ef6683.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000008_d24853cb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000008_d24853cb.szar new file mode 100644 index 00000000..cb3986ee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000008_d24853cb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000009_75444934.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000009_75444934.szar new file mode 100644 index 00000000..f9a123ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000009_75444934.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000010_ca6c6a14.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000010_ca6c6a14.szar new file mode 100644 index 00000000..8bb63994 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000010_ca6c6a14.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000011_086bdf38.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000011_086bdf38.szar new file mode 100644 index 00000000..15cc6f7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000011_086bdf38.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000012_7e868e9f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000012_7e868e9f.szar new file mode 100644 index 00000000..39d8c66f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000012_7e868e9f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000013_4cdce528.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000013_4cdce528.szar new file mode 100644 index 00000000..9f3d6a51 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000013_4cdce528.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000014_e257197e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000014_e257197e.szar new file mode 100644 index 00000000..f3bf40ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000014_e257197e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000015_0fb6e6f0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000015_0fb6e6f0.szar new file mode 100644 index 00000000..d678fd26 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000015_0fb6e6f0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000016_bb2e76e1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000016_bb2e76e1.szar new file mode 100644 index 00000000..0223ff90 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000016_bb2e76e1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000017_8d50fd4f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000017_8d50fd4f.szar new file mode 100644 index 00000000..07b6e92d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000017_8d50fd4f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000018_080f942a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000018_080f942a.szar new file mode 100644 index 00000000..77675343 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000018_080f942a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000019_8a2b3766.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000019_8a2b3766.szar new file mode 100644 index 00000000..4f7ce5ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000019_8a2b3766.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000020_f6641368.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000020_f6641368.szar new file mode 100644 index 00000000..b3194343 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000020_f6641368.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000021_fe1aee35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000021_fe1aee35.szar new file mode 100644 index 00000000..371df2ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000021_fe1aee35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000022_a2cc535d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000022_a2cc535d.szar new file mode 100644 index 00000000..ed719fd1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000022_a2cc535d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000023_3b7eb872.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000023_3b7eb872.szar new file mode 100644 index 00000000..d034f3c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000023_3b7eb872.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000024_a69c6767.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000024_a69c6767.szar new file mode 100644 index 00000000..1468aea0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/archive/delta_00000000000000000024_a69c6767.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000001_82d6b788.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000001_82d6b788.szcp new file mode 100644 index 00000000..2e50f9dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000001_82d6b788.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000002_bd08e81e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000002_bd08e81e.szcp new file mode 100644 index 00000000..9a67436e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000002_bd08e81e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000003_24b96d11.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000003_24b96d11.szcp new file mode 100644 index 00000000..a6a80331 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000003_24b96d11.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000004_ebcd9fe5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000004_ebcd9fe5.szcp new file mode 100644 index 00000000..27c2ebb0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000004_ebcd9fe5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000005_4e6923e2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000005_4e6923e2.szcp new file mode 100644 index 00000000..f11db28a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000005_4e6923e2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000006_838128a5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000006_838128a5.szcp new file mode 100644 index 00000000..72ba3a4c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000006_838128a5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000007_5ed10d29.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000007_5ed10d29.szcp new file mode 100644 index 00000000..bf1e5161 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000007_5ed10d29.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000008_c20bf1a8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000008_c20bf1a8.szcp new file mode 100644 index 00000000..8defe2c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000008_c20bf1a8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000009_7c29e40e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000009_7c29e40e.szcp new file mode 100644 index 00000000..b61a0285 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000009_7c29e40e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000010_e721757c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000010_e721757c.szcp new file mode 100644 index 00000000..39b040a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000010_e721757c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000011_f53e4ee1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000011_f53e4ee1.szcp new file mode 100644 index 00000000..fb6d528b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000011_f53e4ee1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000012_e10b0d9b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000012_e10b0d9b.szcp new file mode 100644 index 00000000..c081818e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000012_e10b0d9b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000013_ab82de64.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000013_ab82de64.szcp new file mode 100644 index 00000000..0371e996 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000013_ab82de64.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000014_576a9b44.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000014_576a9b44.szcp new file mode 100644 index 00000000..7b2024d9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000014_576a9b44.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000015_802ea906.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000015_802ea906.szcp new file mode 100644 index 00000000..dd7f7152 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000015_802ea906.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000016_da7fa1e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000016_da7fa1e1.szcp new file mode 100644 index 00000000..54b66374 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000016_da7fa1e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000017_9a61f225.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000017_9a61f225.szcp new file mode 100644 index 00000000..1a2f3dcb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000017_9a61f225.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000018_0444a3a8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000018_0444a3a8.szcp new file mode 100644 index 00000000..4eb1d31c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000018_0444a3a8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000019_c34fc0a1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000019_c34fc0a1.szcp new file mode 100644 index 00000000..55dff75f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000019_c34fc0a1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000020_3083f231.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000020_3083f231.szcp new file mode 100644 index 00000000..b7fed7a8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000020_3083f231.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000021_a26f7854.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000021_a26f7854.szcp new file mode 100644 index 00000000..8b78b88a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000021_a26f7854.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000022_9c515272.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000022_9c515272.szcp new file mode 100644 index 00000000..28867e5b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000022_9c515272.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000023_768609e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000023_768609e1.szcp new file mode 100644 index 00000000..5c4e6d7c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000023_768609e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000024_7b4c3b0a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000024_7b4c3b0a.szcp new file mode 100644 index 00000000..ae6fc704 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_031/checkpoints/checkpoint_00000000000000000024_7b4c3b0a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000001_6775dc57.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000001_6775dc57.szar new file mode 100644 index 00000000..0dcfb313 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000001_6775dc57.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000002_3e2173b9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000002_3e2173b9.szar new file mode 100644 index 00000000..26a14935 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000002_3e2173b9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000003_b6d04b0d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000003_b6d04b0d.szar new file mode 100644 index 00000000..9e802e12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000003_b6d04b0d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000004_f847b1d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000004_f847b1d0.szar new file mode 100644 index 00000000..309dbab0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000004_f847b1d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000005_a3acd855.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000005_a3acd855.szar new file mode 100644 index 00000000..bb37d2a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000005_a3acd855.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000006_ae6aee50.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000006_ae6aee50.szar new file mode 100644 index 00000000..2c4bcce6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000006_ae6aee50.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000007_82e7a678.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000007_82e7a678.szar new file mode 100644 index 00000000..05be6489 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000007_82e7a678.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000008_7954fb26.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000008_7954fb26.szar new file mode 100644 index 00000000..b98233c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000008_7954fb26.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000009_0c0341a0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000009_0c0341a0.szar new file mode 100644 index 00000000..be73fa6e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000009_0c0341a0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000010_edda389d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000010_edda389d.szar new file mode 100644 index 00000000..fa4912e5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000010_edda389d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000011_915dcfe3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000011_915dcfe3.szar new file mode 100644 index 00000000..67c5966c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000011_915dcfe3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000012_ffca83cf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000012_ffca83cf.szar new file mode 100644 index 00000000..97b97ee3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000012_ffca83cf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000013_5335317c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000013_5335317c.szar new file mode 100644 index 00000000..6168d775 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000013_5335317c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000014_1d5b8a6d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000014_1d5b8a6d.szar new file mode 100644 index 00000000..cdd1a03c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000014_1d5b8a6d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000015_1ebdcfb8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000015_1ebdcfb8.szar new file mode 100644 index 00000000..b07d2d72 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000015_1ebdcfb8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000016_5f0fe8fc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000016_5f0fe8fc.szar new file mode 100644 index 00000000..381862d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000016_5f0fe8fc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000017_ac030eac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000017_ac030eac.szar new file mode 100644 index 00000000..5617ec83 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000017_ac030eac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000018_029af753.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000018_029af753.szar new file mode 100644 index 00000000..a54fff8a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000018_029af753.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000019_4fa43b54.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000019_4fa43b54.szar new file mode 100644 index 00000000..09d1fceb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/archive/delta_00000000000000000019_4fa43b54.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000001_1205b05c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000001_1205b05c.szcp new file mode 100644 index 00000000..286bac43 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000001_1205b05c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000002_3fca2238.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000002_3fca2238.szcp new file mode 100644 index 00000000..5f16f666 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000002_3fca2238.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000003_051b693f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000003_051b693f.szcp new file mode 100644 index 00000000..37630b42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000003_051b693f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000004_d56b85b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000004_d56b85b1.szcp new file mode 100644 index 00000000..cb9c19cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000004_d56b85b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000005_fecf8ef4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000005_fecf8ef4.szcp new file mode 100644 index 00000000..32709d37 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000005_fecf8ef4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000006_d3da9bb7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000006_d3da9bb7.szcp new file mode 100644 index 00000000..11ca84f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000006_d3da9bb7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000007_5ba092ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000007_5ba092ce.szcp new file mode 100644 index 00000000..ee4e667a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000007_5ba092ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000008_0243ee1c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000008_0243ee1c.szcp new file mode 100644 index 00000000..c33708b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000008_0243ee1c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000009_f08cd50e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000009_f08cd50e.szcp new file mode 100644 index 00000000..a858d73e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000009_f08cd50e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000010_5e2448ba.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000010_5e2448ba.szcp new file mode 100644 index 00000000..9727882f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000010_5e2448ba.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000011_9895f4b7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000011_9895f4b7.szcp new file mode 100644 index 00000000..fbc51a32 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000011_9895f4b7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000012_4e14cd7b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000012_4e14cd7b.szcp new file mode 100644 index 00000000..bbb116e0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000012_4e14cd7b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000013_d4f2dbeb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000013_d4f2dbeb.szcp new file mode 100644 index 00000000..f93bc913 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000013_d4f2dbeb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000014_7d14a0e2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000014_7d14a0e2.szcp new file mode 100644 index 00000000..f9d97665 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000014_7d14a0e2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000015_7a9f8f8d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000015_7a9f8f8d.szcp new file mode 100644 index 00000000..75f5608a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000015_7a9f8f8d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000016_fbca1869.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000016_fbca1869.szcp new file mode 100644 index 00000000..13b1b968 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000016_fbca1869.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000017_cf429fcf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000017_cf429fcf.szcp new file mode 100644 index 00000000..05232ab3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000017_cf429fcf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000018_e6f55bc3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000018_e6f55bc3.szcp new file mode 100644 index 00000000..4c6be642 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000018_e6f55bc3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000019_a61bc318.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000019_a61bc318.szcp new file mode 100644 index 00000000..5cc457aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_032/checkpoints/checkpoint_00000000000000000019_a61bc318.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000001_d3444ed1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000001_d3444ed1.szar new file mode 100644 index 00000000..84a16ff0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000001_d3444ed1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000002_92661101.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000002_92661101.szar new file mode 100644 index 00000000..57f2092a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000002_92661101.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000003_457398ef.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000003_457398ef.szar new file mode 100644 index 00000000..03249626 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000003_457398ef.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000004_f1753e0e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000004_f1753e0e.szar new file mode 100644 index 00000000..a27777d6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000004_f1753e0e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000005_ff52be4b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000005_ff52be4b.szar new file mode 100644 index 00000000..8b6f86e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000005_ff52be4b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000006_03fbe533.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000006_03fbe533.szar new file mode 100644 index 00000000..96056f57 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000006_03fbe533.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000007_b7e50ac2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000007_b7e50ac2.szar new file mode 100644 index 00000000..24c89a31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000007_b7e50ac2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000008_3b7cc0ae.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000008_3b7cc0ae.szar new file mode 100644 index 00000000..bb0d5cb3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000008_3b7cc0ae.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000009_14571416.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000009_14571416.szar new file mode 100644 index 00000000..205ab593 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000009_14571416.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000010_8d605e7c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000010_8d605e7c.szar new file mode 100644 index 00000000..ad45807b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000010_8d605e7c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000011_927b077b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000011_927b077b.szar new file mode 100644 index 00000000..a7bf52f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000011_927b077b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000012_d967c62c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000012_d967c62c.szar new file mode 100644 index 00000000..d330f7c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000012_d967c62c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000013_49618813.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000013_49618813.szar new file mode 100644 index 00000000..40d30ca9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000013_49618813.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000014_f4bad70b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000014_f4bad70b.szar new file mode 100644 index 00000000..08cf8bef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000014_f4bad70b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000015_a4a94ee3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000015_a4a94ee3.szar new file mode 100644 index 00000000..2864e46f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000015_a4a94ee3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000016_c0677343.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000016_c0677343.szar new file mode 100644 index 00000000..0637bc56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000016_c0677343.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000017_283b343f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000017_283b343f.szar new file mode 100644 index 00000000..1cada704 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000017_283b343f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000018_5b821a09.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000018_5b821a09.szar new file mode 100644 index 00000000..d6b072bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000018_5b821a09.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000019_dd7022e5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000019_dd7022e5.szar new file mode 100644 index 00000000..9403e729 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000019_dd7022e5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000020_5e71365c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000020_5e71365c.szar new file mode 100644 index 00000000..1757d1bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000020_5e71365c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000021_f66eaf67.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000021_f66eaf67.szar new file mode 100644 index 00000000..89db0dcf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/archive/delta_00000000000000000021_f66eaf67.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000001_5aee6708.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000001_5aee6708.szcp new file mode 100644 index 00000000..ebe4e5db Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000001_5aee6708.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000002_0896117d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000002_0896117d.szcp new file mode 100644 index 00000000..9649dae3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000002_0896117d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000003_508ee620.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000003_508ee620.szcp new file mode 100644 index 00000000..b169181a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000003_508ee620.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000004_60decfc5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000004_60decfc5.szcp new file mode 100644 index 00000000..2c727094 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000004_60decfc5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000005_403fab62.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000005_403fab62.szcp new file mode 100644 index 00000000..32198110 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000005_403fab62.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000006_fd7216b0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000006_fd7216b0.szcp new file mode 100644 index 00000000..f29efc2b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000006_fd7216b0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000007_d29c2ac5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000007_d29c2ac5.szcp new file mode 100644 index 00000000..b017e7c6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000007_d29c2ac5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000008_d326ab05.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000008_d326ab05.szcp new file mode 100644 index 00000000..730d1302 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000008_d326ab05.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000009_f9987573.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000009_f9987573.szcp new file mode 100644 index 00000000..76664948 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000009_f9987573.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000010_a821764a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000010_a821764a.szcp new file mode 100644 index 00000000..a5a04db3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000010_a821764a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000011_ef1e203d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000011_ef1e203d.szcp new file mode 100644 index 00000000..feea87e3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000011_ef1e203d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000012_8613045e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000012_8613045e.szcp new file mode 100644 index 00000000..448eacde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000012_8613045e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000013_4f580c04.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000013_4f580c04.szcp new file mode 100644 index 00000000..17e90600 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000013_4f580c04.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000014_1d98cb9e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000014_1d98cb9e.szcp new file mode 100644 index 00000000..a01b8486 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000014_1d98cb9e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000015_d6dc842d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000015_d6dc842d.szcp new file mode 100644 index 00000000..ba089705 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000015_d6dc842d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000016_920a36af.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000016_920a36af.szcp new file mode 100644 index 00000000..2093d2aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000016_920a36af.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000017_346fde15.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000017_346fde15.szcp new file mode 100644 index 00000000..9c6e1ba8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000017_346fde15.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000018_b16b66a8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000018_b16b66a8.szcp new file mode 100644 index 00000000..47fe7b0e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000018_b16b66a8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000019_5001a407.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000019_5001a407.szcp new file mode 100644 index 00000000..6f102107 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000019_5001a407.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000020_f62a5768.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000020_f62a5768.szcp new file mode 100644 index 00000000..9657f619 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000020_f62a5768.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000021_094e39a1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000021_094e39a1.szcp new file mode 100644 index 00000000..3c7ee639 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_033/checkpoints/checkpoint_00000000000000000021_094e39a1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000001_4f8044be.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000001_4f8044be.szar new file mode 100644 index 00000000..0084bb20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000001_4f8044be.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000002_0f32e28c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000002_0f32e28c.szar new file mode 100644 index 00000000..62c219f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000002_0f32e28c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000003_fec9589c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000003_fec9589c.szar new file mode 100644 index 00000000..158866cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000003_fec9589c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000004_70d3988c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000004_70d3988c.szar new file mode 100644 index 00000000..1520032a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000004_70d3988c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000005_cdae818e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000005_cdae818e.szar new file mode 100644 index 00000000..ecf9221e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000005_cdae818e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000006_67c12709.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000006_67c12709.szar new file mode 100644 index 00000000..f0b9ceda Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000006_67c12709.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000007_28ba5ee4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000007_28ba5ee4.szar new file mode 100644 index 00000000..95165f1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000007_28ba5ee4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000008_697a12ea.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000008_697a12ea.szar new file mode 100644 index 00000000..492868d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000008_697a12ea.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000009_8576cedf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000009_8576cedf.szar new file mode 100644 index 00000000..4f9a6cab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000009_8576cedf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000010_a16c3e7b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000010_a16c3e7b.szar new file mode 100644 index 00000000..d37cbb35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000010_a16c3e7b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000011_d799bb62.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000011_d799bb62.szar new file mode 100644 index 00000000..13c8d0d0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000011_d799bb62.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000012_ca63d2ed.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000012_ca63d2ed.szar new file mode 100644 index 00000000..77dea5c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000012_ca63d2ed.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000013_5f15320f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000013_5f15320f.szar new file mode 100644 index 00000000..2a6e52b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000013_5f15320f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000014_a6f39769.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000014_a6f39769.szar new file mode 100644 index 00000000..fef64e44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/archive/delta_00000000000000000014_a6f39769.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000001_4f4745f5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000001_4f4745f5.szcp new file mode 100644 index 00000000..b7ccdbcb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000001_4f4745f5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000002_b2f7e91d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000002_b2f7e91d.szcp new file mode 100644 index 00000000..50eded2c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000002_b2f7e91d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000003_91e376a1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000003_91e376a1.szcp new file mode 100644 index 00000000..70ea81b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000003_91e376a1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000004_a82ad77f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000004_a82ad77f.szcp new file mode 100644 index 00000000..37a53851 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000004_a82ad77f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000005_c0d34223.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000005_c0d34223.szcp new file mode 100644 index 00000000..5e0eda17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000005_c0d34223.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000006_6291ec89.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000006_6291ec89.szcp new file mode 100644 index 00000000..376c3e04 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000006_6291ec89.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000007_3f2e9288.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000007_3f2e9288.szcp new file mode 100644 index 00000000..e4ddfdca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000007_3f2e9288.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000008_5251280a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000008_5251280a.szcp new file mode 100644 index 00000000..904c296f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000008_5251280a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000009_3eeba7b9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000009_3eeba7b9.szcp new file mode 100644 index 00000000..3d312279 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000009_3eeba7b9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000010_c91b7118.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000010_c91b7118.szcp new file mode 100644 index 00000000..095d7e69 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000010_c91b7118.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000011_e8d6f504.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000011_e8d6f504.szcp new file mode 100644 index 00000000..3db3644a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000011_e8d6f504.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000012_358ecc14.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000012_358ecc14.szcp new file mode 100644 index 00000000..da4f261d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000012_358ecc14.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000013_c648d065.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000013_c648d065.szcp new file mode 100644 index 00000000..bab78986 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000013_c648d065.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000014_4430f011.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000014_4430f011.szcp new file mode 100644 index 00000000..1ade60a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_034/checkpoints/checkpoint_00000000000000000014_4430f011.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000001_a2619fb8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000001_a2619fb8.szar new file mode 100644 index 00000000..0d275adb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000001_a2619fb8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000002_a986c262.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000002_a986c262.szar new file mode 100644 index 00000000..0188ac60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000002_a986c262.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000003_95a0816c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000003_95a0816c.szar new file mode 100644 index 00000000..487eccc2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000003_95a0816c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000004_6b95e5ca.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000004_6b95e5ca.szar new file mode 100644 index 00000000..dad81b05 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000004_6b95e5ca.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000005_72caa478.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000005_72caa478.szar new file mode 100644 index 00000000..9847e99d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000005_72caa478.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000006_eb519846.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000006_eb519846.szar new file mode 100644 index 00000000..8d02922b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000006_eb519846.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000007_81d3cf62.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000007_81d3cf62.szar new file mode 100644 index 00000000..3d16ca6f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000007_81d3cf62.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000008_87f0f8c1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000008_87f0f8c1.szar new file mode 100644 index 00000000..40e1a715 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000008_87f0f8c1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000009_926712cf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000009_926712cf.szar new file mode 100644 index 00000000..c477337e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000009_926712cf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000010_77549e57.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000010_77549e57.szar new file mode 100644 index 00000000..5e9b4849 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000010_77549e57.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000011_b54e04d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000011_b54e04d0.szar new file mode 100644 index 00000000..9b45d03e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000011_b54e04d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000012_df73c48d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000012_df73c48d.szar new file mode 100644 index 00000000..3e5ece21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000012_df73c48d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000013_5c5ceb20.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000013_5c5ceb20.szar new file mode 100644 index 00000000..a1bad64e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000013_5c5ceb20.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000014_3e3fb4b2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000014_3e3fb4b2.szar new file mode 100644 index 00000000..e7a9b262 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/archive/delta_00000000000000000014_3e3fb4b2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000001_612269a3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000001_612269a3.szcp new file mode 100644 index 00000000..be52756b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000001_612269a3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000002_eded8fb8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000002_eded8fb8.szcp new file mode 100644 index 00000000..19f8db58 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000002_eded8fb8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000003_7ef83cfc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000003_7ef83cfc.szcp new file mode 100644 index 00000000..8d61c20f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000003_7ef83cfc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000004_4338c5c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000004_4338c5c8.szcp new file mode 100644 index 00000000..d78575a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000004_4338c5c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000005_135a3cd9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000005_135a3cd9.szcp new file mode 100644 index 00000000..298cf1d4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000005_135a3cd9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000006_866ae440.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000006_866ae440.szcp new file mode 100644 index 00000000..9552a412 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000006_866ae440.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000007_1ac28287.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000007_1ac28287.szcp new file mode 100644 index 00000000..048f961a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000007_1ac28287.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000008_69342435.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000008_69342435.szcp new file mode 100644 index 00000000..a466fe12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000008_69342435.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000009_306a3f45.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000009_306a3f45.szcp new file mode 100644 index 00000000..ba998b4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000009_306a3f45.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000010_27de0963.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000010_27de0963.szcp new file mode 100644 index 00000000..7795f863 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000010_27de0963.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000011_8a885ccc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000011_8a885ccc.szcp new file mode 100644 index 00000000..55843407 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000011_8a885ccc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000012_178f7fd8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000012_178f7fd8.szcp new file mode 100644 index 00000000..860a5c56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000012_178f7fd8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000013_8793e611.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000013_8793e611.szcp new file mode 100644 index 00000000..38f986c4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000013_8793e611.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000014_d2e45849.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000014_d2e45849.szcp new file mode 100644 index 00000000..60234b1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_035/checkpoints/checkpoint_00000000000000000014_d2e45849.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000001_7bbc7672.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000001_7bbc7672.szar new file mode 100644 index 00000000..e9fb9149 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000001_7bbc7672.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000002_94d79714.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000002_94d79714.szar new file mode 100644 index 00000000..23e095ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000002_94d79714.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000003_22ca906a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000003_22ca906a.szar new file mode 100644 index 00000000..7f9bcce8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000003_22ca906a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000004_3dc6459b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000004_3dc6459b.szar new file mode 100644 index 00000000..972499b9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000004_3dc6459b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000005_2eb5b1b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000005_2eb5b1b0.szar new file mode 100644 index 00000000..24fdb895 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000005_2eb5b1b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000006_535e58b8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000006_535e58b8.szar new file mode 100644 index 00000000..33c181e4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000006_535e58b8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000007_a2953fc1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000007_a2953fc1.szar new file mode 100644 index 00000000..71af2ff2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000007_a2953fc1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000008_00688889.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000008_00688889.szar new file mode 100644 index 00000000..dfbda877 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000008_00688889.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000009_36a70b7f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000009_36a70b7f.szar new file mode 100644 index 00000000..e9da8b9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000009_36a70b7f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000010_1b236ca3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000010_1b236ca3.szar new file mode 100644 index 00000000..75aa930b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000010_1b236ca3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000011_4d1c53bd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000011_4d1c53bd.szar new file mode 100644 index 00000000..bcd58a04 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000011_4d1c53bd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000012_d2632799.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000012_d2632799.szar new file mode 100644 index 00000000..162a6d4a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000012_d2632799.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000013_1283980a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000013_1283980a.szar new file mode 100644 index 00000000..7284e055 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000013_1283980a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000014_aef6638d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000014_aef6638d.szar new file mode 100644 index 00000000..1caaaa48 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/archive/delta_00000000000000000014_aef6638d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000001_833c1748.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000001_833c1748.szcp new file mode 100644 index 00000000..80d769bb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000001_833c1748.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000002_0e38cbcc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000002_0e38cbcc.szcp new file mode 100644 index 00000000..2779fbd8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000002_0e38cbcc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000003_bd720f37.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000003_bd720f37.szcp new file mode 100644 index 00000000..925d40fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000003_bd720f37.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000004_5f283ded.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000004_5f283ded.szcp new file mode 100644 index 00000000..2dcf4c65 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000004_5f283ded.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000005_e87d67ae.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000005_e87d67ae.szcp new file mode 100644 index 00000000..3daa9b0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000005_e87d67ae.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000006_11d910e4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000006_11d910e4.szcp new file mode 100644 index 00000000..6e893bea Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000006_11d910e4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000007_b67d933e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000007_b67d933e.szcp new file mode 100644 index 00000000..423237da Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000007_b67d933e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000008_d1eaa995.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000008_d1eaa995.szcp new file mode 100644 index 00000000..9085f218 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000008_d1eaa995.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000009_20aa4fe5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000009_20aa4fe5.szcp new file mode 100644 index 00000000..5ace49dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000009_20aa4fe5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000010_85d8e5ac.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000010_85d8e5ac.szcp new file mode 100644 index 00000000..0f9e2ee2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000010_85d8e5ac.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000011_6cad51bf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000011_6cad51bf.szcp new file mode 100644 index 00000000..7a7961f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000011_6cad51bf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000012_e82b5736.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000012_e82b5736.szcp new file mode 100644 index 00000000..e09e781b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000012_e82b5736.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000013_c5e57960.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000013_c5e57960.szcp new file mode 100644 index 00000000..1e349020 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000013_c5e57960.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000014_c2294e0d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000014_c2294e0d.szcp new file mode 100644 index 00000000..58878e29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_036/checkpoints/checkpoint_00000000000000000014_c2294e0d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000001_fafd56ca.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000001_fafd56ca.szar new file mode 100644 index 00000000..ffe4e30b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000001_fafd56ca.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000002_82992d60.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000002_82992d60.szar new file mode 100644 index 00000000..831e0a61 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000002_82992d60.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000003_e4ab5361.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000003_e4ab5361.szar new file mode 100644 index 00000000..65bbf4e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000003_e4ab5361.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000004_42d56b94.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000004_42d56b94.szar new file mode 100644 index 00000000..559c5902 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000004_42d56b94.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000005_51b7436a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000005_51b7436a.szar new file mode 100644 index 00000000..98560a32 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000005_51b7436a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000006_f20ec391.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000006_f20ec391.szar new file mode 100644 index 00000000..e48c739f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000006_f20ec391.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000007_0c6b2c95.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000007_0c6b2c95.szar new file mode 100644 index 00000000..50185a20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000007_0c6b2c95.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000008_dada4d82.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000008_dada4d82.szar new file mode 100644 index 00000000..016f64d5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000008_dada4d82.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000009_5055e320.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000009_5055e320.szar new file mode 100644 index 00000000..2d501868 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000009_5055e320.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000010_170c70e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000010_170c70e2.szar new file mode 100644 index 00000000..4365715a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000010_170c70e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000011_ac8633f1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000011_ac8633f1.szar new file mode 100644 index 00000000..ac0216fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000011_ac8633f1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000012_ab6d4f9a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000012_ab6d4f9a.szar new file mode 100644 index 00000000..dd42067f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000012_ab6d4f9a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000013_3b058896.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000013_3b058896.szar new file mode 100644 index 00000000..f7e6a0be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000013_3b058896.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000014_32cf685b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000014_32cf685b.szar new file mode 100644 index 00000000..f76dafe7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/archive/delta_00000000000000000014_32cf685b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000001_4f5b9551.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000001_4f5b9551.szcp new file mode 100644 index 00000000..07f973ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000001_4f5b9551.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000002_81cda2b0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000002_81cda2b0.szcp new file mode 100644 index 00000000..065c6298 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000002_81cda2b0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000003_881f88bc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000003_881f88bc.szcp new file mode 100644 index 00000000..bd2a7e9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000003_881f88bc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000004_e4ef20d8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000004_e4ef20d8.szcp new file mode 100644 index 00000000..b3cc9913 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000004_e4ef20d8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000005_0a8e95f8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000005_0a8e95f8.szcp new file mode 100644 index 00000000..0c0c3789 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000005_0a8e95f8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000006_ef0467b7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000006_ef0467b7.szcp new file mode 100644 index 00000000..a0c9e73b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000006_ef0467b7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000007_d096ee6f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000007_d096ee6f.szcp new file mode 100644 index 00000000..b6d5ced8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000007_d096ee6f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000008_d12076f0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000008_d12076f0.szcp new file mode 100644 index 00000000..0b68f85a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000008_d12076f0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000009_0f6f1fd2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000009_0f6f1fd2.szcp new file mode 100644 index 00000000..49d86d0d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000009_0f6f1fd2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000010_b480b473.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000010_b480b473.szcp new file mode 100644 index 00000000..c8b67fd4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000010_b480b473.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000011_bc3ec15a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000011_bc3ec15a.szcp new file mode 100644 index 00000000..e45279a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000011_bc3ec15a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000012_c83bfd1a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000012_c83bfd1a.szcp new file mode 100644 index 00000000..e8bc7c35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000012_c83bfd1a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000013_2e3ccec6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000013_2e3ccec6.szcp new file mode 100644 index 00000000..6bd3325e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000013_2e3ccec6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000014_e0a1bf07.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000014_e0a1bf07.szcp new file mode 100644 index 00000000..0134a15e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_037/checkpoints/checkpoint_00000000000000000014_e0a1bf07.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000001_9abdc8f2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000001_9abdc8f2.szar new file mode 100644 index 00000000..516a64a8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000001_9abdc8f2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000002_a9e6171a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000002_a9e6171a.szar new file mode 100644 index 00000000..ce585f12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000002_a9e6171a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000003_13b0e0fe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000003_13b0e0fe.szar new file mode 100644 index 00000000..259bf119 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000003_13b0e0fe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000004_c4859a35.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000004_c4859a35.szar new file mode 100644 index 00000000..e745cf0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000004_c4859a35.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000005_04f251d5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000005_04f251d5.szar new file mode 100644 index 00000000..936f83bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000005_04f251d5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000006_e29282bc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000006_e29282bc.szar new file mode 100644 index 00000000..29bea01d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000006_e29282bc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000007_1a8d5985.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000007_1a8d5985.szar new file mode 100644 index 00000000..ae1769b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000007_1a8d5985.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000008_e6ef1066.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000008_e6ef1066.szar new file mode 100644 index 00000000..06047e33 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000008_e6ef1066.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000009_643be88f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000009_643be88f.szar new file mode 100644 index 00000000..f9f8c63e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000009_643be88f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000010_0fd24f2a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000010_0fd24f2a.szar new file mode 100644 index 00000000..72459af3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000010_0fd24f2a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000011_4fa6073b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000011_4fa6073b.szar new file mode 100644 index 00000000..05a074fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000011_4fa6073b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000012_26d87729.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000012_26d87729.szar new file mode 100644 index 00000000..bab54291 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000012_26d87729.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000013_379cb088.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000013_379cb088.szar new file mode 100644 index 00000000..a9c9945d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000013_379cb088.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000014_928fbdf5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000014_928fbdf5.szar new file mode 100644 index 00000000..a8d8ba82 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000014_928fbdf5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000015_5dc871e3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000015_5dc871e3.szar new file mode 100644 index 00000000..bf996478 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000015_5dc871e3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000016_148acb2b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000016_148acb2b.szar new file mode 100644 index 00000000..d6c68545 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000016_148acb2b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000017_7cd28d9b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000017_7cd28d9b.szar new file mode 100644 index 00000000..c33745a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/archive/delta_00000000000000000017_7cd28d9b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000001_41d0a601.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000001_41d0a601.szcp new file mode 100644 index 00000000..579cbd64 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000001_41d0a601.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000002_d38cd243.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000002_d38cd243.szcp new file mode 100644 index 00000000..1e2c3521 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000002_d38cd243.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000003_2085dacc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000003_2085dacc.szcp new file mode 100644 index 00000000..a34d2ab7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000003_2085dacc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000004_208edf63.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000004_208edf63.szcp new file mode 100644 index 00000000..65542777 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000004_208edf63.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000005_6815c1dc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000005_6815c1dc.szcp new file mode 100644 index 00000000..cee56446 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000005_6815c1dc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000006_326c1d6b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000006_326c1d6b.szcp new file mode 100644 index 00000000..dae61938 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000006_326c1d6b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000007_e90e603a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000007_e90e603a.szcp new file mode 100644 index 00000000..6192ac34 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000007_e90e603a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000008_c192244e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000008_c192244e.szcp new file mode 100644 index 00000000..688fd808 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000008_c192244e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000009_0125f70f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000009_0125f70f.szcp new file mode 100644 index 00000000..7f7efd86 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000009_0125f70f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000010_4f98b679.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000010_4f98b679.szcp new file mode 100644 index 00000000..6f6abc44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000010_4f98b679.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000011_629dd695.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000011_629dd695.szcp new file mode 100644 index 00000000..5c6b5438 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000011_629dd695.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000012_9ecfe11c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000012_9ecfe11c.szcp new file mode 100644 index 00000000..5fe6d047 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000012_9ecfe11c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000013_adae6206.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000013_adae6206.szcp new file mode 100644 index 00000000..552f0311 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000013_adae6206.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000014_f680533b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000014_f680533b.szcp new file mode 100644 index 00000000..3b8bd768 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000014_f680533b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000015_417216cc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000015_417216cc.szcp new file mode 100644 index 00000000..dba85b49 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000015_417216cc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000016_d9482cc0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000016_d9482cc0.szcp new file mode 100644 index 00000000..6445cedc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000016_d9482cc0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000017_4ed87383.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000017_4ed87383.szcp new file mode 100644 index 00000000..9182a7ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_038/checkpoints/checkpoint_00000000000000000017_4ed87383.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000001_ea6d41e4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000001_ea6d41e4.szar new file mode 100644 index 00000000..70a1bef7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000001_ea6d41e4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000002_c55e631f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000002_c55e631f.szar new file mode 100644 index 00000000..42d5da75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000002_c55e631f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000003_83d9d515.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000003_83d9d515.szar new file mode 100644 index 00000000..5b7ea343 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000003_83d9d515.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000004_0dd77f3c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000004_0dd77f3c.szar new file mode 100644 index 00000000..70e12a61 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000004_0dd77f3c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000005_e1d32b8c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000005_e1d32b8c.szar new file mode 100644 index 00000000..3bd7995f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000005_e1d32b8c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000006_af606c53.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000006_af606c53.szar new file mode 100644 index 00000000..836b1671 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000006_af606c53.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000007_53382b46.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000007_53382b46.szar new file mode 100644 index 00000000..0ae87ada Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000007_53382b46.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000008_cb080277.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000008_cb080277.szar new file mode 100644 index 00000000..0077e7bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000008_cb080277.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000009_ef38b135.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000009_ef38b135.szar new file mode 100644 index 00000000..33538c3f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000009_ef38b135.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000010_60daba80.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000010_60daba80.szar new file mode 100644 index 00000000..886d12e7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000010_60daba80.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000011_95b0bd7d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000011_95b0bd7d.szar new file mode 100644 index 00000000..c581c2db Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000011_95b0bd7d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000012_ebf4b9d2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000012_ebf4b9d2.szar new file mode 100644 index 00000000..ca8ff8a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000012_ebf4b9d2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000013_760681b2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000013_760681b2.szar new file mode 100644 index 00000000..fcbdca66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000013_760681b2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000014_a754088b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000014_a754088b.szar new file mode 100644 index 00000000..0f7107d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000014_a754088b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000015_b7ad68d9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000015_b7ad68d9.szar new file mode 100644 index 00000000..e64fd17e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/archive/delta_00000000000000000015_b7ad68d9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000001_ab47f313.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000001_ab47f313.szcp new file mode 100644 index 00000000..6c12f4e6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000001_ab47f313.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000002_c9a52ef2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000002_c9a52ef2.szcp new file mode 100644 index 00000000..362f5097 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000002_c9a52ef2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000003_5b769fa1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000003_5b769fa1.szcp new file mode 100644 index 00000000..42ba4b12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000003_5b769fa1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000004_0ec85fe5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000004_0ec85fe5.szcp new file mode 100644 index 00000000..9c05aadc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000004_0ec85fe5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000005_306028f7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000005_306028f7.szcp new file mode 100644 index 00000000..02ed8d08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000005_306028f7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000006_ab3ca0d2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000006_ab3ca0d2.szcp new file mode 100644 index 00000000..1aac1519 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000006_ab3ca0d2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000007_7b409b46.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000007_7b409b46.szcp new file mode 100644 index 00000000..9f3884ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000007_7b409b46.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000008_a4a33680.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000008_a4a33680.szcp new file mode 100644 index 00000000..339b536c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000008_a4a33680.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000009_dcf0c9dc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000009_dcf0c9dc.szcp new file mode 100644 index 00000000..713b7b60 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000009_dcf0c9dc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000010_032f29f7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000010_032f29f7.szcp new file mode 100644 index 00000000..9c09a915 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000010_032f29f7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000011_c690ca53.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000011_c690ca53.szcp new file mode 100644 index 00000000..5d46f4b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000011_c690ca53.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000012_da1935f4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000012_da1935f4.szcp new file mode 100644 index 00000000..ebc559c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000012_da1935f4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000013_b3bdc760.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000013_b3bdc760.szcp new file mode 100644 index 00000000..469b86f8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000013_b3bdc760.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000014_6a436c17.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000014_6a436c17.szcp new file mode 100644 index 00000000..b6870e12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000014_6a436c17.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000015_ed394c96.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000015_ed394c96.szcp new file mode 100644 index 00000000..faa7a527 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_039/checkpoints/checkpoint_00000000000000000015_ed394c96.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000001_12f4412a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000001_12f4412a.szar new file mode 100644 index 00000000..b16e4a4d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000001_12f4412a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000002_88fb7ca5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000002_88fb7ca5.szar new file mode 100644 index 00000000..8db6819a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000002_88fb7ca5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000003_5bb3b1dd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000003_5bb3b1dd.szar new file mode 100644 index 00000000..b3261a38 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000003_5bb3b1dd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000004_1f7d28a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000004_1f7d28a3.szar new file mode 100644 index 00000000..9d7d305b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000004_1f7d28a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000005_9c18f172.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000005_9c18f172.szar new file mode 100644 index 00000000..d8113db7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000005_9c18f172.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000006_287c25b2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000006_287c25b2.szar new file mode 100644 index 00000000..cd311217 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000006_287c25b2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000007_71e827d1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000007_71e827d1.szar new file mode 100644 index 00000000..417cac85 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000007_71e827d1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000008_8d7dda1e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000008_8d7dda1e.szar new file mode 100644 index 00000000..c57855d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000008_8d7dda1e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000009_35b82f85.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000009_35b82f85.szar new file mode 100644 index 00000000..22fb676e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000009_35b82f85.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000010_de255fa6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000010_de255fa6.szar new file mode 100644 index 00000000..b11b22e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000010_de255fa6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000011_66bc0e34.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000011_66bc0e34.szar new file mode 100644 index 00000000..c3afbdd1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000011_66bc0e34.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000012_941cc858.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000012_941cc858.szar new file mode 100644 index 00000000..50cd4f7b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000012_941cc858.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000013_361c3bd3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000013_361c3bd3.szar new file mode 100644 index 00000000..9f084adb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000013_361c3bd3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000014_891a16bd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000014_891a16bd.szar new file mode 100644 index 00000000..f55d4cb4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000014_891a16bd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000015_9ff34668.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000015_9ff34668.szar new file mode 100644 index 00000000..f95522d9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000015_9ff34668.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000016_5796239d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000016_5796239d.szar new file mode 100644 index 00000000..b96a41a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/archive/delta_00000000000000000016_5796239d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000001_76964e9f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000001_76964e9f.szcp new file mode 100644 index 00000000..300b2df2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000001_76964e9f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000002_2749518e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000002_2749518e.szcp new file mode 100644 index 00000000..c36be1fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000002_2749518e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000003_2bf302f9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000003_2bf302f9.szcp new file mode 100644 index 00000000..3d826582 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000003_2bf302f9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000004_a250d107.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000004_a250d107.szcp new file mode 100644 index 00000000..0ccbdfb0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000004_a250d107.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000005_d95121d6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000005_d95121d6.szcp new file mode 100644 index 00000000..9f1e665a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000005_d95121d6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000006_fe18014c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000006_fe18014c.szcp new file mode 100644 index 00000000..e2e9701a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000006_fe18014c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000007_ac54b14e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000007_ac54b14e.szcp new file mode 100644 index 00000000..fdd9c05f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000007_ac54b14e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000008_428a79d8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000008_428a79d8.szcp new file mode 100644 index 00000000..e1dc1c4e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000008_428a79d8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000009_b6736824.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000009_b6736824.szcp new file mode 100644 index 00000000..955ec61f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000009_b6736824.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000010_c58170b8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000010_c58170b8.szcp new file mode 100644 index 00000000..de4bef66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000010_c58170b8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000011_8706fe7b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000011_8706fe7b.szcp new file mode 100644 index 00000000..ccb0afe6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000011_8706fe7b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000012_fb61f7d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000012_fb61f7d3.szcp new file mode 100644 index 00000000..edee1cb6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000012_fb61f7d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000013_c0cad37a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000013_c0cad37a.szcp new file mode 100644 index 00000000..5cd16984 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000013_c0cad37a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000014_cda6cd08.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000014_cda6cd08.szcp new file mode 100644 index 00000000..73080394 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000014_cda6cd08.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000015_78e51e29.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000015_78e51e29.szcp new file mode 100644 index 00000000..63624860 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000015_78e51e29.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000016_5cd76f36.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000016_5cd76f36.szcp new file mode 100644 index 00000000..dcc437e6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_040/checkpoints/checkpoint_00000000000000000016_5cd76f36.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000001_33268e08.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000001_33268e08.szar new file mode 100644 index 00000000..0076d96e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000001_33268e08.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000002_4d95d653.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000002_4d95d653.szar new file mode 100644 index 00000000..270e1677 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000002_4d95d653.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000003_41c7a2f5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000003_41c7a2f5.szar new file mode 100644 index 00000000..a69ea5f3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000003_41c7a2f5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000004_928f45d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000004_928f45d0.szar new file mode 100644 index 00000000..273d701b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000004_928f45d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000005_d2770143.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000005_d2770143.szar new file mode 100644 index 00000000..dad7e152 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000005_d2770143.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000006_fe5122fd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000006_fe5122fd.szar new file mode 100644 index 00000000..dc6d39b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000006_fe5122fd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000007_d8822b98.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000007_d8822b98.szar new file mode 100644 index 00000000..61156e66 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000007_d8822b98.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000008_8d7b4600.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000008_8d7b4600.szar new file mode 100644 index 00000000..9c7c42a4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000008_8d7b4600.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000009_f327fb07.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000009_f327fb07.szar new file mode 100644 index 00000000..af6a232a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000009_f327fb07.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000010_639bf702.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000010_639bf702.szar new file mode 100644 index 00000000..486e53ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000010_639bf702.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000011_86bc59be.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000011_86bc59be.szar new file mode 100644 index 00000000..7c09904d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000011_86bc59be.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000012_1b37691d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000012_1b37691d.szar new file mode 100644 index 00000000..bef50e1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000012_1b37691d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000013_b076977e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000013_b076977e.szar new file mode 100644 index 00000000..302b2793 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000013_b076977e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000014_67cee9e4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000014_67cee9e4.szar new file mode 100644 index 00000000..a63d5a54 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000014_67cee9e4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000015_474bee49.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000015_474bee49.szar new file mode 100644 index 00000000..6943a75a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000015_474bee49.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000016_f9cba6a7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000016_f9cba6a7.szar new file mode 100644 index 00000000..92aece22 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000016_f9cba6a7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000017_d3ab14be.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000017_d3ab14be.szar new file mode 100644 index 00000000..52af9442 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/archive/delta_00000000000000000017_d3ab14be.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000001_cb505ccd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000001_cb505ccd.szcp new file mode 100644 index 00000000..df6c2479 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000001_cb505ccd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000002_b92d392f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000002_b92d392f.szcp new file mode 100644 index 00000000..d490ebd9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000002_b92d392f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000003_2e79626a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000003_2e79626a.szcp new file mode 100644 index 00000000..376058cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000003_2e79626a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000004_8e04354a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000004_8e04354a.szcp new file mode 100644 index 00000000..b3f254e6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000004_8e04354a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000005_b592b3ac.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000005_b592b3ac.szcp new file mode 100644 index 00000000..383e0537 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000005_b592b3ac.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000006_e0db7dbd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000006_e0db7dbd.szcp new file mode 100644 index 00000000..7513563a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000006_e0db7dbd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000007_5f0798a2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000007_5f0798a2.szcp new file mode 100644 index 00000000..297caf21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000007_5f0798a2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000008_c0015198.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000008_c0015198.szcp new file mode 100644 index 00000000..b5daff6a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000008_c0015198.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000009_084bbf81.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000009_084bbf81.szcp new file mode 100644 index 00000000..7edee31a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000009_084bbf81.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000010_bbc7f0ec.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000010_bbc7f0ec.szcp new file mode 100644 index 00000000..87dfc31d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000010_bbc7f0ec.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000011_e71fcfe8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000011_e71fcfe8.szcp new file mode 100644 index 00000000..f4aba2dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000011_e71fcfe8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000012_097f3fcd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000012_097f3fcd.szcp new file mode 100644 index 00000000..0465844f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000012_097f3fcd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000013_2f9c72a4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000013_2f9c72a4.szcp new file mode 100644 index 00000000..8a841aec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000013_2f9c72a4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000014_2cd9c5be.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000014_2cd9c5be.szcp new file mode 100644 index 00000000..87a209bb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000014_2cd9c5be.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000015_4ee6dd34.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000015_4ee6dd34.szcp new file mode 100644 index 00000000..2893f7b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000015_4ee6dd34.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000016_d84dd5e9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000016_d84dd5e9.szcp new file mode 100644 index 00000000..5bb654a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000016_d84dd5e9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000017_848dd85e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000017_848dd85e.szcp new file mode 100644 index 00000000..74c1fdba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_041/checkpoints/checkpoint_00000000000000000017_848dd85e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000001_d0e390bc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000001_d0e390bc.szar new file mode 100644 index 00000000..0399256e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000001_d0e390bc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000002_ec00cadb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000002_ec00cadb.szar new file mode 100644 index 00000000..39ddfec0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000002_ec00cadb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000003_25a64e43.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000003_25a64e43.szar new file mode 100644 index 00000000..dddaeeec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000003_25a64e43.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000004_719e3b81.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000004_719e3b81.szar new file mode 100644 index 00000000..5ffc3e8c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000004_719e3b81.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000005_af6af003.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000005_af6af003.szar new file mode 100644 index 00000000..f98a746c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000005_af6af003.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000006_1bb9fb2e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000006_1bb9fb2e.szar new file mode 100644 index 00000000..f79183c2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000006_1bb9fb2e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000007_6048baaa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000007_6048baaa.szar new file mode 100644 index 00000000..e4237f80 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000007_6048baaa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000008_71d5a40b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000008_71d5a40b.szar new file mode 100644 index 00000000..20ef18d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000008_71d5a40b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000009_bc02e60b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000009_bc02e60b.szar new file mode 100644 index 00000000..b7d9312d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000009_bc02e60b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000010_ebef2be8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000010_ebef2be8.szar new file mode 100644 index 00000000..3a6caf99 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000010_ebef2be8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000011_0f09b382.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000011_0f09b382.szar new file mode 100644 index 00000000..5019857b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000011_0f09b382.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000012_b11f2927.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000012_b11f2927.szar new file mode 100644 index 00000000..20b3c372 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000012_b11f2927.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000013_33e0aef0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000013_33e0aef0.szar new file mode 100644 index 00000000..86541fa6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000013_33e0aef0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000014_137d0022.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000014_137d0022.szar new file mode 100644 index 00000000..218cb682 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000014_137d0022.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000015_a45f578c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000015_a45f578c.szar new file mode 100644 index 00000000..1c865094 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000015_a45f578c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000016_555aa445.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000016_555aa445.szar new file mode 100644 index 00000000..88a5186a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000016_555aa445.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000017_a21a225d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000017_a21a225d.szar new file mode 100644 index 00000000..fd5f54ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000017_a21a225d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000018_1e9ef703.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000018_1e9ef703.szar new file mode 100644 index 00000000..d249f98d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000018_1e9ef703.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000019_6fcb1d5c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000019_6fcb1d5c.szar new file mode 100644 index 00000000..10a8cab6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000019_6fcb1d5c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000020_e9c9c219.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000020_e9c9c219.szar new file mode 100644 index 00000000..fd03ee34 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000020_e9c9c219.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000021_66a83e36.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000021_66a83e36.szar new file mode 100644 index 00000000..d706d914 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000021_66a83e36.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000022_67483c48.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000022_67483c48.szar new file mode 100644 index 00000000..9c28a3cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000022_67483c48.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000023_428a9467.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000023_428a9467.szar new file mode 100644 index 00000000..9fb87e55 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000023_428a9467.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000024_f799cc9e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000024_f799cc9e.szar new file mode 100644 index 00000000..36279642 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000024_f799cc9e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000025_7db8a108.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000025_7db8a108.szar new file mode 100644 index 00000000..905be327 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000025_7db8a108.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000026_d6d475e2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000026_d6d475e2.szar new file mode 100644 index 00000000..9a7d280c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000026_d6d475e2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000027_f8dc8558.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000027_f8dc8558.szar new file mode 100644 index 00000000..58c0a027 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000027_f8dc8558.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000028_ac59b95c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000028_ac59b95c.szar new file mode 100644 index 00000000..e9b341c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000028_ac59b95c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000029_bcb254bb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000029_bcb254bb.szar new file mode 100644 index 00000000..567556c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000029_bcb254bb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000030_0f6b523a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000030_0f6b523a.szar new file mode 100644 index 00000000..108d6603 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000030_0f6b523a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000031_fa3643c5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000031_fa3643c5.szar new file mode 100644 index 00000000..1ba850ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000031_fa3643c5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000032_75cc4b20.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000032_75cc4b20.szar new file mode 100644 index 00000000..dd4f1907 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000032_75cc4b20.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000033_3336a226.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000033_3336a226.szar new file mode 100644 index 00000000..e44bd585 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000033_3336a226.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000034_21ee9548.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000034_21ee9548.szar new file mode 100644 index 00000000..a6f331ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000034_21ee9548.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000035_c9422083.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000035_c9422083.szar new file mode 100644 index 00000000..e94ad399 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000035_c9422083.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000036_33df4a57.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000036_33df4a57.szar new file mode 100644 index 00000000..aa52c434 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000036_33df4a57.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000037_01be0c2c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000037_01be0c2c.szar new file mode 100644 index 00000000..6ff989a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000037_01be0c2c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000038_b915e6a5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000038_b915e6a5.szar new file mode 100644 index 00000000..ce50072c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/archive/delta_00000000000000000038_b915e6a5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000001_9f8a2f1b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000001_9f8a2f1b.szcp new file mode 100644 index 00000000..91eee522 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000001_9f8a2f1b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000002_b3dbc913.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000002_b3dbc913.szcp new file mode 100644 index 00000000..9615dc3b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000002_b3dbc913.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000003_b5647dac.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000003_b5647dac.szcp new file mode 100644 index 00000000..96e1a77e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000003_b5647dac.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000004_863be3b9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000004_863be3b9.szcp new file mode 100644 index 00000000..fdd4b21f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000004_863be3b9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000005_8c27f7e1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000005_8c27f7e1.szcp new file mode 100644 index 00000000..aba13ab2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000005_8c27f7e1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000006_fef947b2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000006_fef947b2.szcp new file mode 100644 index 00000000..c0c638fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000006_fef947b2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000007_5415a1fd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000007_5415a1fd.szcp new file mode 100644 index 00000000..c3dda804 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000007_5415a1fd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000008_ac90f07e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000008_ac90f07e.szcp new file mode 100644 index 00000000..b16bc11a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000008_ac90f07e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000009_f85538bf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000009_f85538bf.szcp new file mode 100644 index 00000000..9c1cb81d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000009_f85538bf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000010_e0167eda.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000010_e0167eda.szcp new file mode 100644 index 00000000..654b8d91 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000010_e0167eda.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000011_45e96db6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000011_45e96db6.szcp new file mode 100644 index 00000000..911d345c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000011_45e96db6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000012_a89b180c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000012_a89b180c.szcp new file mode 100644 index 00000000..2deb1ac5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000012_a89b180c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000013_4ce2b104.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000013_4ce2b104.szcp new file mode 100644 index 00000000..881f7fae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000013_4ce2b104.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000014_6f072cd2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000014_6f072cd2.szcp new file mode 100644 index 00000000..fab52c0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000014_6f072cd2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000015_19b780cb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000015_19b780cb.szcp new file mode 100644 index 00000000..d2467261 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000015_19b780cb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000016_3e50a60b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000016_3e50a60b.szcp new file mode 100644 index 00000000..7c4141e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000016_3e50a60b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000017_969b0f2b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000017_969b0f2b.szcp new file mode 100644 index 00000000..bfedcd09 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000017_969b0f2b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000018_ecb3691f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000018_ecb3691f.szcp new file mode 100644 index 00000000..fc5fe99b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000018_ecb3691f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000019_a7a57fdc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000019_a7a57fdc.szcp new file mode 100644 index 00000000..55124daf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000019_a7a57fdc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000020_ce2095ac.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000020_ce2095ac.szcp new file mode 100644 index 00000000..270e4e3b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000020_ce2095ac.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000021_05f1b603.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000021_05f1b603.szcp new file mode 100644 index 00000000..775e0c28 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000021_05f1b603.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000022_4f3edf79.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000022_4f3edf79.szcp new file mode 100644 index 00000000..e951be1f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000022_4f3edf79.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000023_6b608c97.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000023_6b608c97.szcp new file mode 100644 index 00000000..4b6ab267 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000023_6b608c97.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000024_65134048.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000024_65134048.szcp new file mode 100644 index 00000000..753b053d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000024_65134048.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000025_e23f7157.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000025_e23f7157.szcp new file mode 100644 index 00000000..eaf49c08 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000025_e23f7157.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000026_3edb7e4f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000026_3edb7e4f.szcp new file mode 100644 index 00000000..817d96fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000026_3edb7e4f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000027_c861551f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000027_c861551f.szcp new file mode 100644 index 00000000..d81f8e8b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000027_c861551f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000028_8af586cc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000028_8af586cc.szcp new file mode 100644 index 00000000..66f114be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000028_8af586cc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000029_86e70588.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000029_86e70588.szcp new file mode 100644 index 00000000..af7ab00a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000029_86e70588.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000030_fbac5194.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000030_fbac5194.szcp new file mode 100644 index 00000000..d85515c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000030_fbac5194.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000031_cc3a6fd5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000031_cc3a6fd5.szcp new file mode 100644 index 00000000..7a1ff619 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000031_cc3a6fd5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000032_c9c83c15.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000032_c9c83c15.szcp new file mode 100644 index 00000000..878840e7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000032_c9c83c15.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000033_da225fab.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000033_da225fab.szcp new file mode 100644 index 00000000..a479a409 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000033_da225fab.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000034_c9a54f4b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000034_c9a54f4b.szcp new file mode 100644 index 00000000..10e6bf7d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000034_c9a54f4b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000035_27202340.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000035_27202340.szcp new file mode 100644 index 00000000..0f9761cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000035_27202340.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000036_23c1d509.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000036_23c1d509.szcp new file mode 100644 index 00000000..5ec63a75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000036_23c1d509.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000037_4db5641c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000037_4db5641c.szcp new file mode 100644 index 00000000..22b346f3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000037_4db5641c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000038_1a985300.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000038_1a985300.szcp new file mode 100644 index 00000000..bbd2ac20 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_042/checkpoints/checkpoint_00000000000000000038_1a985300.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000001_ead418dd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000001_ead418dd.szar new file mode 100644 index 00000000..c92c03f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000001_ead418dd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000002_ff85786c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000002_ff85786c.szar new file mode 100644 index 00000000..2732bd44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000002_ff85786c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000003_bc53e9b8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000003_bc53e9b8.szar new file mode 100644 index 00000000..cb4d6f9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000003_bc53e9b8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000004_35d0b9c7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000004_35d0b9c7.szar new file mode 100644 index 00000000..8337c92a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000004_35d0b9c7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000005_6a7ecae9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000005_6a7ecae9.szar new file mode 100644 index 00000000..923843f9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000005_6a7ecae9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000006_f6367b52.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000006_f6367b52.szar new file mode 100644 index 00000000..0f681991 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000006_f6367b52.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000007_ab837a96.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000007_ab837a96.szar new file mode 100644 index 00000000..d0c76ddf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000007_ab837a96.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000008_d22b2143.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000008_d22b2143.szar new file mode 100644 index 00000000..fbe07567 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000008_d22b2143.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000009_a9c9f2f4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000009_a9c9f2f4.szar new file mode 100644 index 00000000..ef9cc913 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000009_a9c9f2f4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000010_e85073ba.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000010_e85073ba.szar new file mode 100644 index 00000000..70693501 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000010_e85073ba.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000011_bf50552a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000011_bf50552a.szar new file mode 100644 index 00000000..2526ea84 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000011_bf50552a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000012_712332c1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000012_712332c1.szar new file mode 100644 index 00000000..1d181db1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000012_712332c1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000013_a7079069.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000013_a7079069.szar new file mode 100644 index 00000000..c1b03cc7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000013_a7079069.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000014_e330d019.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000014_e330d019.szar new file mode 100644 index 00000000..5cd0befe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000014_e330d019.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000015_ddc0a289.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000015_ddc0a289.szar new file mode 100644 index 00000000..3f02e91b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000015_ddc0a289.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000016_ef1185c2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000016_ef1185c2.szar new file mode 100644 index 00000000..7408cb29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000016_ef1185c2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000017_66e7ac29.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000017_66e7ac29.szar new file mode 100644 index 00000000..2dd3ea7d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/archive/delta_00000000000000000017_66e7ac29.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000001_798d6a3b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000001_798d6a3b.szcp new file mode 100644 index 00000000..55287337 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000001_798d6a3b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000002_8fc1dcb1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000002_8fc1dcb1.szcp new file mode 100644 index 00000000..dc2808ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000002_8fc1dcb1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000003_b5c4953c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000003_b5c4953c.szcp new file mode 100644 index 00000000..0820a1d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000003_b5c4953c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000004_a26b6596.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000004_a26b6596.szcp new file mode 100644 index 00000000..fb137909 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000004_a26b6596.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000005_28d3f783.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000005_28d3f783.szcp new file mode 100644 index 00000000..accb81df Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000005_28d3f783.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000006_0eba491a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000006_0eba491a.szcp new file mode 100644 index 00000000..907a8791 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000006_0eba491a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000007_01feb3e5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000007_01feb3e5.szcp new file mode 100644 index 00000000..01758138 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000007_01feb3e5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000008_9eeec27a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000008_9eeec27a.szcp new file mode 100644 index 00000000..a5a1eb7a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000008_9eeec27a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000009_85c54f19.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000009_85c54f19.szcp new file mode 100644 index 00000000..1ba1a309 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000009_85c54f19.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000010_dd123583.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000010_dd123583.szcp new file mode 100644 index 00000000..4b39a1ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000010_dd123583.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000011_74036f07.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000011_74036f07.szcp new file mode 100644 index 00000000..bb3261b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000011_74036f07.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000012_686917ef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000012_686917ef.szcp new file mode 100644 index 00000000..ec529a1a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000012_686917ef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000013_d7fc6898.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000013_d7fc6898.szcp new file mode 100644 index 00000000..2b4305e9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000013_d7fc6898.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000014_dd98ee2d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000014_dd98ee2d.szcp new file mode 100644 index 00000000..db4c93f6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000014_dd98ee2d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000015_ab2daa1c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000015_ab2daa1c.szcp new file mode 100644 index 00000000..de81124f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000015_ab2daa1c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000016_7dc79f78.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000016_7dc79f78.szcp new file mode 100644 index 00000000..c461375d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000016_7dc79f78.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000017_f304fcb3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000017_f304fcb3.szcp new file mode 100644 index 00000000..c557a58b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_043/checkpoints/checkpoint_00000000000000000017_f304fcb3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000001_b7de894d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000001_b7de894d.szar new file mode 100644 index 00000000..12c3686f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000001_b7de894d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000002_4c1c9c1f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000002_4c1c9c1f.szar new file mode 100644 index 00000000..839b63ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000002_4c1c9c1f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000003_160c20db.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000003_160c20db.szar new file mode 100644 index 00000000..a327546f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000003_160c20db.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000004_71120fa8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000004_71120fa8.szar new file mode 100644 index 00000000..bd20b4f8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000004_71120fa8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000005_cc06e43f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000005_cc06e43f.szar new file mode 100644 index 00000000..3c0f5f18 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000005_cc06e43f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000006_c1b344ce.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000006_c1b344ce.szar new file mode 100644 index 00000000..2c42438e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000006_c1b344ce.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000007_298ce4b1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000007_298ce4b1.szar new file mode 100644 index 00000000..697e18ce Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000007_298ce4b1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000008_f73189d9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000008_f73189d9.szar new file mode 100644 index 00000000..0100b9ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000008_f73189d9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000009_57da94f9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000009_57da94f9.szar new file mode 100644 index 00000000..68094801 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000009_57da94f9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000010_f009d121.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000010_f009d121.szar new file mode 100644 index 00000000..5e5d8317 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000010_f009d121.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000011_a5ee2d15.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000011_a5ee2d15.szar new file mode 100644 index 00000000..1bd5e1ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000011_a5ee2d15.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000012_f0af324d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000012_f0af324d.szar new file mode 100644 index 00000000..2fb90282 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000012_f0af324d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000013_4b771359.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000013_4b771359.szar new file mode 100644 index 00000000..6e6ea25b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000013_4b771359.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000014_a29b4238.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000014_a29b4238.szar new file mode 100644 index 00000000..b51bcf59 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000014_a29b4238.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000015_e922719a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000015_e922719a.szar new file mode 100644 index 00000000..14c02006 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000015_e922719a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000016_89cd971a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000016_89cd971a.szar new file mode 100644 index 00000000..c3bad962 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000016_89cd971a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000017_1c483a22.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000017_1c483a22.szar new file mode 100644 index 00000000..ef4f5a3b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000017_1c483a22.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000018_1196b040.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000018_1196b040.szar new file mode 100644 index 00000000..32351635 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000018_1196b040.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000019_dbc58219.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000019_dbc58219.szar new file mode 100644 index 00000000..028100be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000019_dbc58219.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000020_6d3ed2ad.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000020_6d3ed2ad.szar new file mode 100644 index 00000000..ae1fd205 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000020_6d3ed2ad.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000021_673c89ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000021_673c89ac.szar new file mode 100644 index 00000000..62c4f965 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000021_673c89ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000022_9ac95b87.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000022_9ac95b87.szar new file mode 100644 index 00000000..09857577 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/archive/delta_00000000000000000022_9ac95b87.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000001_d8ba6068.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000001_d8ba6068.szcp new file mode 100644 index 00000000..96c1e146 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000001_d8ba6068.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000002_4c800de8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000002_4c800de8.szcp new file mode 100644 index 00000000..90acf8d6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000002_4c800de8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000003_ff754525.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000003_ff754525.szcp new file mode 100644 index 00000000..c735e745 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000003_ff754525.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000004_3b40308e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000004_3b40308e.szcp new file mode 100644 index 00000000..a7b18598 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000004_3b40308e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000005_44501a95.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000005_44501a95.szcp new file mode 100644 index 00000000..df70499f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000005_44501a95.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000006_ff06714a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000006_ff06714a.szcp new file mode 100644 index 00000000..f039e4fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000006_ff06714a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000007_520079d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000007_520079d3.szcp new file mode 100644 index 00000000..b8119a91 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000007_520079d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000008_9988df8b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000008_9988df8b.szcp new file mode 100644 index 00000000..fcbca7d5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000008_9988df8b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000009_48ff1359.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000009_48ff1359.szcp new file mode 100644 index 00000000..b0dcac55 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000009_48ff1359.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000010_f3941b48.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000010_f3941b48.szcp new file mode 100644 index 00000000..3becb781 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000010_f3941b48.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000011_d23cfe12.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000011_d23cfe12.szcp new file mode 100644 index 00000000..e23ecd4e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000011_d23cfe12.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000012_c6d8cdd2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000012_c6d8cdd2.szcp new file mode 100644 index 00000000..5414b708 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000012_c6d8cdd2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000013_11f6dba2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000013_11f6dba2.szcp new file mode 100644 index 00000000..ff36a0c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000013_11f6dba2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000014_9826d1e5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000014_9826d1e5.szcp new file mode 100644 index 00000000..4b87796a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000014_9826d1e5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000015_b7ae6c66.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000015_b7ae6c66.szcp new file mode 100644 index 00000000..96312951 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000015_b7ae6c66.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000016_6a8e4798.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000016_6a8e4798.szcp new file mode 100644 index 00000000..31fe54e7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000016_6a8e4798.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000017_d4ce771c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000017_d4ce771c.szcp new file mode 100644 index 00000000..c7950cff Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000017_d4ce771c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000018_37936778.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000018_37936778.szcp new file mode 100644 index 00000000..8a3016c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000018_37936778.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000019_c86a453e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000019_c86a453e.szcp new file mode 100644 index 00000000..68702e27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000019_c86a453e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000020_0d7d9b9c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000020_0d7d9b9c.szcp new file mode 100644 index 00000000..a17f7f75 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000020_0d7d9b9c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000021_38b24d8d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000021_38b24d8d.szcp new file mode 100644 index 00000000..979ce57f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000021_38b24d8d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000022_d496eb9e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000022_d496eb9e.szcp new file mode 100644 index 00000000..8a009856 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_044/checkpoints/checkpoint_00000000000000000022_d496eb9e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000001_bef9a48d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000001_bef9a48d.szar new file mode 100644 index 00000000..96cd7582 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000001_bef9a48d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000002_1d91b55b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000002_1d91b55b.szar new file mode 100644 index 00000000..d48cd396 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000002_1d91b55b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000003_689442b9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000003_689442b9.szar new file mode 100644 index 00000000..9af71e50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000003_689442b9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000004_6a5e493c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000004_6a5e493c.szar new file mode 100644 index 00000000..2106b9c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000004_6a5e493c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000005_a2f1f935.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000005_a2f1f935.szar new file mode 100644 index 00000000..bd7e6e18 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000005_a2f1f935.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000006_801282cb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000006_801282cb.szar new file mode 100644 index 00000000..841d595c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000006_801282cb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000007_baf37240.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000007_baf37240.szar new file mode 100644 index 00000000..e062db17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000007_baf37240.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000008_a1c85fe2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000008_a1c85fe2.szar new file mode 100644 index 00000000..6c4a415f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000008_a1c85fe2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000009_e4cfb0be.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000009_e4cfb0be.szar new file mode 100644 index 00000000..f96e9abb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000009_e4cfb0be.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000010_781dca54.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000010_781dca54.szar new file mode 100644 index 00000000..84724050 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000010_781dca54.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000011_59f8744a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000011_59f8744a.szar new file mode 100644 index 00000000..0077b36c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000011_59f8744a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000012_cd35c20d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000012_cd35c20d.szar new file mode 100644 index 00000000..959d2211 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000012_cd35c20d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000013_388f2b09.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000013_388f2b09.szar new file mode 100644 index 00000000..cc680543 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000013_388f2b09.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000014_16ac6756.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000014_16ac6756.szar new file mode 100644 index 00000000..1d095c50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000014_16ac6756.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000015_a900c744.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000015_a900c744.szar new file mode 100644 index 00000000..8b317080 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000015_a900c744.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000016_d5288620.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000016_d5288620.szar new file mode 100644 index 00000000..e49ede80 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000016_d5288620.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000017_5c4602fa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000017_5c4602fa.szar new file mode 100644 index 00000000..76e041bf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000017_5c4602fa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000018_24642c8b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000018_24642c8b.szar new file mode 100644 index 00000000..533a4220 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/archive/delta_00000000000000000018_24642c8b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000001_c63f6728.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000001_c63f6728.szcp new file mode 100644 index 00000000..c497ec36 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000001_c63f6728.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000002_ddce178b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000002_ddce178b.szcp new file mode 100644 index 00000000..07eefb45 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000002_ddce178b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000003_1956b417.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000003_1956b417.szcp new file mode 100644 index 00000000..10076bed Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000003_1956b417.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000004_dae7655e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000004_dae7655e.szcp new file mode 100644 index 00000000..525cd676 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000004_dae7655e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000005_6ec87bf4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000005_6ec87bf4.szcp new file mode 100644 index 00000000..47ab373b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000005_6ec87bf4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000006_e398cb9f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000006_e398cb9f.szcp new file mode 100644 index 00000000..8ebe21c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000006_e398cb9f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000007_92cda8f0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000007_92cda8f0.szcp new file mode 100644 index 00000000..c14ab369 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000007_92cda8f0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000008_5349c1b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000008_5349c1b1.szcp new file mode 100644 index 00000000..e457c486 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000008_5349c1b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000009_f8727132.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000009_f8727132.szcp new file mode 100644 index 00000000..640d2c9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000009_f8727132.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000010_f5e8d46e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000010_f5e8d46e.szcp new file mode 100644 index 00000000..64c6d07a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000010_f5e8d46e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000011_41e1c551.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000011_41e1c551.szcp new file mode 100644 index 00000000..71c007c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000011_41e1c551.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000012_eba98979.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000012_eba98979.szcp new file mode 100644 index 00000000..6a0d5dca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000012_eba98979.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000013_8cce6700.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000013_8cce6700.szcp new file mode 100644 index 00000000..8cbc68dc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000013_8cce6700.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000014_a9d860bb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000014_a9d860bb.szcp new file mode 100644 index 00000000..42ab1245 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000014_a9d860bb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000015_4e275d54.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000015_4e275d54.szcp new file mode 100644 index 00000000..c1c11a35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000015_4e275d54.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000016_d86273c3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000016_d86273c3.szcp new file mode 100644 index 00000000..029d0ff0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000016_d86273c3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000017_e89af278.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000017_e89af278.szcp new file mode 100644 index 00000000..96b8c463 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000017_e89af278.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000018_775491b5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000018_775491b5.szcp new file mode 100644 index 00000000..f0bd2a4e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_045/checkpoints/checkpoint_00000000000000000018_775491b5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000001_c406470a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000001_c406470a.szar new file mode 100644 index 00000000..c25b8726 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000001_c406470a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000002_260eb7c0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000002_260eb7c0.szar new file mode 100644 index 00000000..ab98cb9d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000002_260eb7c0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000003_a0cc807c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000003_a0cc807c.szar new file mode 100644 index 00000000..bb99ec70 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000003_a0cc807c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000004_5e36eaf1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000004_5e36eaf1.szar new file mode 100644 index 00000000..9b349329 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000004_5e36eaf1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000005_9212985e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000005_9212985e.szar new file mode 100644 index 00000000..56a5b85a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000005_9212985e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000006_9b6ff2dc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000006_9b6ff2dc.szar new file mode 100644 index 00000000..716393ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000006_9b6ff2dc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000007_99d936eb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000007_99d936eb.szar new file mode 100644 index 00000000..905dffbf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000007_99d936eb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000008_10c5f175.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000008_10c5f175.szar new file mode 100644 index 00000000..498e59e4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000008_10c5f175.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000009_01231a81.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000009_01231a81.szar new file mode 100644 index 00000000..9fa302ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000009_01231a81.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000010_44591f6f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000010_44591f6f.szar new file mode 100644 index 00000000..37371a98 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000010_44591f6f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000011_c80d9d04.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000011_c80d9d04.szar new file mode 100644 index 00000000..2e2e6c7f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000011_c80d9d04.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000012_60e7c6dc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000012_60e7c6dc.szar new file mode 100644 index 00000000..2f0c9466 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000012_60e7c6dc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000013_a60b10a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000013_a60b10a3.szar new file mode 100644 index 00000000..f87e3935 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000013_a60b10a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000014_a58d7f58.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000014_a58d7f58.szar new file mode 100644 index 00000000..c848ff43 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000014_a58d7f58.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000015_08fb9b4b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000015_08fb9b4b.szar new file mode 100644 index 00000000..df9782e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000015_08fb9b4b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000016_1a4b3b74.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000016_1a4b3b74.szar new file mode 100644 index 00000000..cbef30b3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000016_1a4b3b74.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000017_8280070f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000017_8280070f.szar new file mode 100644 index 00000000..f3090070 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000017_8280070f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000018_d5f03c0d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000018_d5f03c0d.szar new file mode 100644 index 00000000..39b5232e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000018_d5f03c0d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000019_f0690f68.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000019_f0690f68.szar new file mode 100644 index 00000000..2ad8a564 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000019_f0690f68.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000020_ee43e8e6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000020_ee43e8e6.szar new file mode 100644 index 00000000..c9549402 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/archive/delta_00000000000000000020_ee43e8e6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000001_4e8372c6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000001_4e8372c6.szcp new file mode 100644 index 00000000..4eaca7ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000001_4e8372c6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000002_14841958.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000002_14841958.szcp new file mode 100644 index 00000000..1e2dc1da Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000002_14841958.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000003_ede4654c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000003_ede4654c.szcp new file mode 100644 index 00000000..dbdf003a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000003_ede4654c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000004_bd3bf2e4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000004_bd3bf2e4.szcp new file mode 100644 index 00000000..c5624b3f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000004_bd3bf2e4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000005_a2c412ba.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000005_a2c412ba.szcp new file mode 100644 index 00000000..08112a42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000005_a2c412ba.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000006_f41d2134.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000006_f41d2134.szcp new file mode 100644 index 00000000..b4c0abaa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000006_f41d2134.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000007_61ba5e45.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000007_61ba5e45.szcp new file mode 100644 index 00000000..af74fcaf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000007_61ba5e45.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000008_9eb2033d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000008_9eb2033d.szcp new file mode 100644 index 00000000..8a02a8cc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000008_9eb2033d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000009_f9833d1b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000009_f9833d1b.szcp new file mode 100644 index 00000000..2377b523 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000009_f9833d1b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000010_50de4163.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000010_50de4163.szcp new file mode 100644 index 00000000..1add7abe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000010_50de4163.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000011_d41ef87d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000011_d41ef87d.szcp new file mode 100644 index 00000000..79748c70 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000011_d41ef87d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000012_0fc0af16.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000012_0fc0af16.szcp new file mode 100644 index 00000000..f754100d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000012_0fc0af16.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000013_7c985524.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000013_7c985524.szcp new file mode 100644 index 00000000..9402a1cb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000013_7c985524.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000014_3317360a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000014_3317360a.szcp new file mode 100644 index 00000000..79fd26c0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000014_3317360a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000015_1d6daab8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000015_1d6daab8.szcp new file mode 100644 index 00000000..7dd73a77 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000015_1d6daab8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000016_a386c378.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000016_a386c378.szcp new file mode 100644 index 00000000..e78ef4ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000016_a386c378.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000017_9155c7c8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000017_9155c7c8.szcp new file mode 100644 index 00000000..c1786335 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000017_9155c7c8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000018_76b2ebf4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000018_76b2ebf4.szcp new file mode 100644 index 00000000..14db0e0a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000018_76b2ebf4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000019_2064d484.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000019_2064d484.szcp new file mode 100644 index 00000000..309fd545 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000019_2064d484.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000020_9c7257aa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000020_9c7257aa.szcp new file mode 100644 index 00000000..6d41ec3d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_046/checkpoints/checkpoint_00000000000000000020_9c7257aa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000001_667c51b9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000001_667c51b9.szar new file mode 100644 index 00000000..37a3576a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000001_667c51b9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000002_315c3bf6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000002_315c3bf6.szar new file mode 100644 index 00000000..fa3c04ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000002_315c3bf6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000003_796e3526.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000003_796e3526.szar new file mode 100644 index 00000000..716419a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000003_796e3526.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000004_11f2e563.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000004_11f2e563.szar new file mode 100644 index 00000000..b596cd55 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000004_11f2e563.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000005_a00374a3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000005_a00374a3.szar new file mode 100644 index 00000000..78cf9d1c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000005_a00374a3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000006_e8f22658.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000006_e8f22658.szar new file mode 100644 index 00000000..f3cddfa2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000006_e8f22658.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000007_187e6509.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000007_187e6509.szar new file mode 100644 index 00000000..56f9362e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000007_187e6509.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000008_105ce2f8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000008_105ce2f8.szar new file mode 100644 index 00000000..8fbb07c2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000008_105ce2f8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000009_4060a09f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000009_4060a09f.szar new file mode 100644 index 00000000..74d99fa1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000009_4060a09f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000010_d10cef8f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000010_d10cef8f.szar new file mode 100644 index 00000000..9eb9ff8e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000010_d10cef8f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000011_584ea572.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000011_584ea572.szar new file mode 100644 index 00000000..f8c52a4b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000011_584ea572.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000012_b262d46d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000012_b262d46d.szar new file mode 100644 index 00000000..bf1774d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000012_b262d46d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000013_156af820.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000013_156af820.szar new file mode 100644 index 00000000..614e7e0b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000013_156af820.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000014_3fe66440.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000014_3fe66440.szar new file mode 100644 index 00000000..07742604 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/archive/delta_00000000000000000014_3fe66440.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000001_19815369.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000001_19815369.szcp new file mode 100644 index 00000000..138e5e4f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000001_19815369.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000002_da5d1e12.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000002_da5d1e12.szcp new file mode 100644 index 00000000..b1db54ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000002_da5d1e12.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000003_7521baf5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000003_7521baf5.szcp new file mode 100644 index 00000000..08f658ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000003_7521baf5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000004_5deea498.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000004_5deea498.szcp new file mode 100644 index 00000000..5e9a9a2e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000004_5deea498.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000005_dcf6c5be.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000005_dcf6c5be.szcp new file mode 100644 index 00000000..96d997d7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000005_dcf6c5be.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000006_f6cf90ba.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000006_f6cf90ba.szcp new file mode 100644 index 00000000..8a8a2980 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000006_f6cf90ba.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000007_442e0fc7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000007_442e0fc7.szcp new file mode 100644 index 00000000..611fcd99 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000007_442e0fc7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000008_569c7ae7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000008_569c7ae7.szcp new file mode 100644 index 00000000..1b19bb1a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000008_569c7ae7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000009_94340c93.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000009_94340c93.szcp new file mode 100644 index 00000000..a9053f8c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000009_94340c93.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000010_64cfaefc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000010_64cfaefc.szcp new file mode 100644 index 00000000..111fbe3f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000010_64cfaefc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000011_c5eacba7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000011_c5eacba7.szcp new file mode 100644 index 00000000..7e07d2c6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000011_c5eacba7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000012_28cb1399.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000012_28cb1399.szcp new file mode 100644 index 00000000..db9188ba Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000012_28cb1399.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000013_a877409c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000013_a877409c.szcp new file mode 100644 index 00000000..a052b75d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000013_a877409c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000014_9d73dff7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000014_9d73dff7.szcp new file mode 100644 index 00000000..f841049b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_047/checkpoints/checkpoint_00000000000000000014_9d73dff7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000001_06ba4728.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000001_06ba4728.szar new file mode 100644 index 00000000..395fe3de Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000001_06ba4728.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000002_507cf5c7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000002_507cf5c7.szar new file mode 100644 index 00000000..18f8ec29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000002_507cf5c7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000003_f72536e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000003_f72536e9.szar new file mode 100644 index 00000000..3829f84a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000003_f72536e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000004_379e6ae3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000004_379e6ae3.szar new file mode 100644 index 00000000..08bfb2aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000004_379e6ae3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000005_c1f985a4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000005_c1f985a4.szar new file mode 100644 index 00000000..b6846db1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000005_c1f985a4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000006_40ba0d3a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000006_40ba0d3a.szar new file mode 100644 index 00000000..247dac77 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000006_40ba0d3a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000007_01d0968b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000007_01d0968b.szar new file mode 100644 index 00000000..ed30802e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000007_01d0968b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000008_01900687.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000008_01900687.szar new file mode 100644 index 00000000..7cca28fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000008_01900687.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000009_b88f9782.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000009_b88f9782.szar new file mode 100644 index 00000000..1ef9bce6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000009_b88f9782.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000010_b57b9a52.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000010_b57b9a52.szar new file mode 100644 index 00000000..7fd354d8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000010_b57b9a52.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000011_00232be5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000011_00232be5.szar new file mode 100644 index 00000000..bf577d00 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000011_00232be5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000012_094e16d3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000012_094e16d3.szar new file mode 100644 index 00000000..f0cbda7f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000012_094e16d3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000013_2d7fbb86.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000013_2d7fbb86.szar new file mode 100644 index 00000000..1cb160c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000013_2d7fbb86.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000014_34c8aa85.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000014_34c8aa85.szar new file mode 100644 index 00000000..2601d484 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000014_34c8aa85.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000015_299150ff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000015_299150ff.szar new file mode 100644 index 00000000..c6bb7b56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000015_299150ff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000016_827fbdbb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000016_827fbdbb.szar new file mode 100644 index 00000000..ef3d0509 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000016_827fbdbb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000017_98d9d16a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000017_98d9d16a.szar new file mode 100644 index 00000000..2dac554c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000017_98d9d16a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000018_4b4ebc16.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000018_4b4ebc16.szar new file mode 100644 index 00000000..91f53211 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000018_4b4ebc16.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000019_5d313eda.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000019_5d313eda.szar new file mode 100644 index 00000000..b82a920b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000019_5d313eda.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000020_8e835631.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000020_8e835631.szar new file mode 100644 index 00000000..0618ad38 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000020_8e835631.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000021_b9eafd75.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000021_b9eafd75.szar new file mode 100644 index 00000000..906e07ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000021_b9eafd75.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000022_cf1343b5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000022_cf1343b5.szar new file mode 100644 index 00000000..a482b764 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000022_cf1343b5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000023_c17951f5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000023_c17951f5.szar new file mode 100644 index 00000000..a50805fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000023_c17951f5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000024_5a892696.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000024_5a892696.szar new file mode 100644 index 00000000..ad3bbe79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/archive/delta_00000000000000000024_5a892696.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000001_b99cfdbc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000001_b99cfdbc.szcp new file mode 100644 index 00000000..86d5cc1f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000001_b99cfdbc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000002_f7b72cc0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000002_f7b72cc0.szcp new file mode 100644 index 00000000..06b55207 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000002_f7b72cc0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000003_6b73a561.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000003_6b73a561.szcp new file mode 100644 index 00000000..9262caf2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000003_6b73a561.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000004_4d151558.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000004_4d151558.szcp new file mode 100644 index 00000000..8d3da700 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000004_4d151558.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000005_066eadf4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000005_066eadf4.szcp new file mode 100644 index 00000000..5d838df7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000005_066eadf4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000006_280698cb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000006_280698cb.szcp new file mode 100644 index 00000000..87a070c2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000006_280698cb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000007_aa3f4f88.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000007_aa3f4f88.szcp new file mode 100644 index 00000000..d7e25322 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000007_aa3f4f88.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000008_cbba8547.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000008_cbba8547.szcp new file mode 100644 index 00000000..92530215 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000008_cbba8547.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000009_b01daff6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000009_b01daff6.szcp new file mode 100644 index 00000000..18aa22ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000009_b01daff6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000010_915e42c9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000010_915e42c9.szcp new file mode 100644 index 00000000..dbb284d2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000010_915e42c9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000011_b9a8340d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000011_b9a8340d.szcp new file mode 100644 index 00000000..80c09e67 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000011_b9a8340d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000012_23b965d1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000012_23b965d1.szcp new file mode 100644 index 00000000..fda8de12 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000012_23b965d1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000013_a489391a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000013_a489391a.szcp new file mode 100644 index 00000000..e7bb3865 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000013_a489391a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000014_3661bda2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000014_3661bda2.szcp new file mode 100644 index 00000000..a7c274f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000014_3661bda2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000015_23b980af.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000015_23b980af.szcp new file mode 100644 index 00000000..20005b1b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000015_23b980af.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000016_ed552cb7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000016_ed552cb7.szcp new file mode 100644 index 00000000..67c23f17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000016_ed552cb7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000017_1aff83d7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000017_1aff83d7.szcp new file mode 100644 index 00000000..36a9fc48 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000017_1aff83d7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000018_6ffc1641.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000018_6ffc1641.szcp new file mode 100644 index 00000000..0a3cdf3b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000018_6ffc1641.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000019_ac209ef1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000019_ac209ef1.szcp new file mode 100644 index 00000000..72bd5155 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000019_ac209ef1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000020_c484e280.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000020_c484e280.szcp new file mode 100644 index 00000000..bca9ea31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000020_c484e280.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000021_a3b7064c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000021_a3b7064c.szcp new file mode 100644 index 00000000..349f87e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000021_a3b7064c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000022_32e208b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000022_32e208b1.szcp new file mode 100644 index 00000000..be66f46e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000022_32e208b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000023_d9255cd5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000023_d9255cd5.szcp new file mode 100644 index 00000000..744ae52e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000023_d9255cd5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000024_be2f24b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000024_be2f24b1.szcp new file mode 100644 index 00000000..9819ab46 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_048/checkpoints/checkpoint_00000000000000000024_be2f24b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000001_3881c7ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000001_3881c7ac.szar new file mode 100644 index 00000000..8eac9afe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000001_3881c7ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000002_c5f7bb48.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000002_c5f7bb48.szar new file mode 100644 index 00000000..0716ded6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000002_c5f7bb48.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000003_a1586ed8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000003_a1586ed8.szar new file mode 100644 index 00000000..c88ea99f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000003_a1586ed8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000004_09a26a43.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000004_09a26a43.szar new file mode 100644 index 00000000..56aa9a8b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000004_09a26a43.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000005_f19f19a8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000005_f19f19a8.szar new file mode 100644 index 00000000..5792901b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000005_f19f19a8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000006_aae34a21.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000006_aae34a21.szar new file mode 100644 index 00000000..79e456a8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000006_aae34a21.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000007_cb878afa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000007_cb878afa.szar new file mode 100644 index 00000000..25f95448 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000007_cb878afa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000008_02409da6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000008_02409da6.szar new file mode 100644 index 00000000..59c67cae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000008_02409da6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000009_5e31603e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000009_5e31603e.szar new file mode 100644 index 00000000..60aaca27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000009_5e31603e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000010_a4184b61.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000010_a4184b61.szar new file mode 100644 index 00000000..4c9f0b31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000010_a4184b61.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000011_e3e3c7d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000011_e3e3c7d0.szar new file mode 100644 index 00000000..2d78a797 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000011_e3e3c7d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000012_b55c4a74.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000012_b55c4a74.szar new file mode 100644 index 00000000..cd895394 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000012_b55c4a74.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000013_2c8cb435.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000013_2c8cb435.szar new file mode 100644 index 00000000..654d7690 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000013_2c8cb435.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000014_57657106.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000014_57657106.szar new file mode 100644 index 00000000..56f64f70 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000014_57657106.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000015_4eb5c488.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000015_4eb5c488.szar new file mode 100644 index 00000000..357ce2aa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000015_4eb5c488.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000016_5fcb5536.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000016_5fcb5536.szar new file mode 100644 index 00000000..812e5aff Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000016_5fcb5536.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000017_0c93ff8e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000017_0c93ff8e.szar new file mode 100644 index 00000000..6d2a9c35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000017_0c93ff8e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000018_0c3123d9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000018_0c3123d9.szar new file mode 100644 index 00000000..125eb43e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000018_0c3123d9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000019_e266fb3d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000019_e266fb3d.szar new file mode 100644 index 00000000..a561d26a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/archive/delta_00000000000000000019_e266fb3d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000001_aafdc036.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000001_aafdc036.szcp new file mode 100644 index 00000000..401c80f8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000001_aafdc036.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000002_a171e0ca.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000002_a171e0ca.szcp new file mode 100644 index 00000000..7baff8a3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000002_a171e0ca.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000003_8fbc40d1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000003_8fbc40d1.szcp new file mode 100644 index 00000000..5683f4fa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000003_8fbc40d1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000004_eefd9349.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000004_eefd9349.szcp new file mode 100644 index 00000000..5ca5fd5c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000004_eefd9349.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000005_7b6f4a9e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000005_7b6f4a9e.szcp new file mode 100644 index 00000000..006c2728 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000005_7b6f4a9e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000006_d9e44fad.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000006_d9e44fad.szcp new file mode 100644 index 00000000..4a4f879b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000006_d9e44fad.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000007_893a4338.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000007_893a4338.szcp new file mode 100644 index 00000000..22f2482d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000007_893a4338.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000008_dc3d7d57.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000008_dc3d7d57.szcp new file mode 100644 index 00000000..63481aa9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000008_dc3d7d57.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000009_564437d9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000009_564437d9.szcp new file mode 100644 index 00000000..c2c61d29 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000009_564437d9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000010_44a2184c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000010_44a2184c.szcp new file mode 100644 index 00000000..fba7d54a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000010_44a2184c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000011_559468f1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000011_559468f1.szcp new file mode 100644 index 00000000..bfa68a8e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000011_559468f1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000012_cf6837d1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000012_cf6837d1.szcp new file mode 100644 index 00000000..4049f391 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000012_cf6837d1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000013_7d5405ff.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000013_7d5405ff.szcp new file mode 100644 index 00000000..2b691411 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000013_7d5405ff.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000014_6d102055.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000014_6d102055.szcp new file mode 100644 index 00000000..b288c0ac Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000014_6d102055.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000015_02f39ae2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000015_02f39ae2.szcp new file mode 100644 index 00000000..c1fa86fd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000015_02f39ae2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000016_9c826b25.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000016_9c826b25.szcp new file mode 100644 index 00000000..0589a6a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000016_9c826b25.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000017_d201003a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000017_d201003a.szcp new file mode 100644 index 00000000..f3a97f4a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000017_d201003a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000018_a8832b93.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000018_a8832b93.szcp new file mode 100644 index 00000000..a185f987 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000018_a8832b93.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000019_575cfae8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000019_575cfae8.szcp new file mode 100644 index 00000000..01e562cc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_049/checkpoints/checkpoint_00000000000000000019_575cfae8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000001_955c1f4f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000001_955c1f4f.szar new file mode 100644 index 00000000..85ed9118 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000001_955c1f4f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000002_b609f44e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000002_b609f44e.szar new file mode 100644 index 00000000..293a47fc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000002_b609f44e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000003_bc8c7179.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000003_bc8c7179.szar new file mode 100644 index 00000000..fa292c0b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000003_bc8c7179.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000004_4bc011fc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000004_4bc011fc.szar new file mode 100644 index 00000000..2cc70421 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000004_4bc011fc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000005_bd9d0a73.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000005_bd9d0a73.szar new file mode 100644 index 00000000..2601bac1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000005_bd9d0a73.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000006_a0a4efd3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000006_a0a4efd3.szar new file mode 100644 index 00000000..a1b8ab51 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000006_a0a4efd3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000007_52715d48.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000007_52715d48.szar new file mode 100644 index 00000000..85e924c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000007_52715d48.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000008_cd453b5c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000008_cd453b5c.szar new file mode 100644 index 00000000..85203487 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000008_cd453b5c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000009_5581df22.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000009_5581df22.szar new file mode 100644 index 00000000..7d5b0826 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000009_5581df22.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000010_cdc192b6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000010_cdc192b6.szar new file mode 100644 index 00000000..91432d55 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000010_cdc192b6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000011_d1ea863f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000011_d1ea863f.szar new file mode 100644 index 00000000..7a031b6e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000011_d1ea863f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000012_3082efb9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000012_3082efb9.szar new file mode 100644 index 00000000..055ccaa2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000012_3082efb9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000013_cc4de462.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000013_cc4de462.szar new file mode 100644 index 00000000..7ab04b93 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000013_cc4de462.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000014_9d415b32.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000014_9d415b32.szar new file mode 100644 index 00000000..06c3d3ad Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000014_9d415b32.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000015_91e78aa5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000015_91e78aa5.szar new file mode 100644 index 00000000..0f5376ff Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/archive/delta_00000000000000000015_91e78aa5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000001_c54cf5ba.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000001_c54cf5ba.szcp new file mode 100644 index 00000000..74e98265 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000001_c54cf5ba.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000002_fe711934.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000002_fe711934.szcp new file mode 100644 index 00000000..ea46fce6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000002_fe711934.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000003_8696c51f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000003_8696c51f.szcp new file mode 100644 index 00000000..478f0d73 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000003_8696c51f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000004_841087df.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000004_841087df.szcp new file mode 100644 index 00000000..69f77e94 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000004_841087df.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000005_86bb74b1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000005_86bb74b1.szcp new file mode 100644 index 00000000..451adf27 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000005_86bb74b1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000006_9f4b0ade.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000006_9f4b0ade.szcp new file mode 100644 index 00000000..1933bc19 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000006_9f4b0ade.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000007_a0638305.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000007_a0638305.szcp new file mode 100644 index 00000000..53eee71c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000007_a0638305.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000008_b5b013b7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000008_b5b013b7.szcp new file mode 100644 index 00000000..7d21ec71 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000008_b5b013b7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000009_8898e633.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000009_8898e633.szcp new file mode 100644 index 00000000..f966c4f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000009_8898e633.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000010_f4396f7b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000010_f4396f7b.szcp new file mode 100644 index 00000000..5bc20f17 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000010_f4396f7b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000011_99dc3857.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000011_99dc3857.szcp new file mode 100644 index 00000000..53858489 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000011_99dc3857.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000012_f23df05d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000012_f23df05d.szcp new file mode 100644 index 00000000..f1895082 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000012_f23df05d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000013_0faabc96.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000013_0faabc96.szcp new file mode 100644 index 00000000..2957b61c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000013_0faabc96.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000014_e1f412d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000014_e1f412d5.szcp new file mode 100644 index 00000000..447863c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000014_e1f412d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000015_038bfadd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000015_038bfadd.szcp new file mode 100644 index 00000000..38c6da79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_050/checkpoints/checkpoint_00000000000000000015_038bfadd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000001_66f78d01.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000001_66f78d01.szar new file mode 100644 index 00000000..e6b0359d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000001_66f78d01.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000002_57ae2474.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000002_57ae2474.szar new file mode 100644 index 00000000..4d9766ab Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000002_57ae2474.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000003_9813eb6f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000003_9813eb6f.szar new file mode 100644 index 00000000..b590b2c7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000003_9813eb6f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000004_ff9eacb7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000004_ff9eacb7.szar new file mode 100644 index 00000000..22ae8685 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000004_ff9eacb7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000005_ee2e4e3e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000005_ee2e4e3e.szar new file mode 100644 index 00000000..4f76c498 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000005_ee2e4e3e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000006_39858251.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000006_39858251.szar new file mode 100644 index 00000000..f8bd1550 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000006_39858251.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000007_735d9b0c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000007_735d9b0c.szar new file mode 100644 index 00000000..3b047d9f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000007_735d9b0c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000008_c5bbe683.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000008_c5bbe683.szar new file mode 100644 index 00000000..f9944260 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000008_c5bbe683.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000009_aa7aedd2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000009_aa7aedd2.szar new file mode 100644 index 00000000..bc6d278a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000009_aa7aedd2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000010_9ca32d07.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000010_9ca32d07.szar new file mode 100644 index 00000000..59a59cfc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000010_9ca32d07.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000011_80233222.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000011_80233222.szar new file mode 100644 index 00000000..e88c4c13 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000011_80233222.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000012_5bdc33bd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000012_5bdc33bd.szar new file mode 100644 index 00000000..05894cee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000012_5bdc33bd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000013_b81ab2fa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000013_b81ab2fa.szar new file mode 100644 index 00000000..0aeacb1b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/archive/delta_00000000000000000013_b81ab2fa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000001_6ec6a717.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000001_6ec6a717.szcp new file mode 100644 index 00000000..5ee5da52 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000001_6ec6a717.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000002_9f31063b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000002_9f31063b.szcp new file mode 100644 index 00000000..8ab38702 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000002_9f31063b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000003_55f99100.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000003_55f99100.szcp new file mode 100644 index 00000000..3187119d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000003_55f99100.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000004_1815760c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000004_1815760c.szcp new file mode 100644 index 00000000..e5cfb661 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000004_1815760c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000005_8ff988d3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000005_8ff988d3.szcp new file mode 100644 index 00000000..10b9df31 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000005_8ff988d3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000006_7452e352.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000006_7452e352.szcp new file mode 100644 index 00000000..091b8b7b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000006_7452e352.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000007_ae784cb8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000007_ae784cb8.szcp new file mode 100644 index 00000000..93ad9af4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000007_ae784cb8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000008_e65926bc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000008_e65926bc.szcp new file mode 100644 index 00000000..4930cb80 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000008_e65926bc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000009_2643f93a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000009_2643f93a.szcp new file mode 100644 index 00000000..95ff10d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000009_2643f93a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000010_2bc64cd4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000010_2bc64cd4.szcp new file mode 100644 index 00000000..bf4df65b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000010_2bc64cd4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000011_9b420356.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000011_9b420356.szcp new file mode 100644 index 00000000..0c600a5f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000011_9b420356.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000012_dda66225.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000012_dda66225.szcp new file mode 100644 index 00000000..d19eb50c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000012_dda66225.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000013_266bdbe0.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000013_266bdbe0.szcp new file mode 100644 index 00000000..52434229 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_051/checkpoints/checkpoint_00000000000000000013_266bdbe0.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000001_8ab629e5.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000001_8ab629e5.szar new file mode 100644 index 00000000..6173f876 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000001_8ab629e5.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000002_55b357f6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000002_55b357f6.szar new file mode 100644 index 00000000..797e6886 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000002_55b357f6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000003_5235dfa0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000003_5235dfa0.szar new file mode 100644 index 00000000..a859aa9b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000003_5235dfa0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000004_a4301b85.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000004_a4301b85.szar new file mode 100644 index 00000000..e6f79a79 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000004_a4301b85.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000005_8066dd03.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000005_8066dd03.szar new file mode 100644 index 00000000..17703fec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000005_8066dd03.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000006_c5e5ad6f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000006_c5e5ad6f.szar new file mode 100644 index 00000000..c785c0ca Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000006_c5e5ad6f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000007_14ad83b3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000007_14ad83b3.szar new file mode 100644 index 00000000..9e13ff1e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000007_14ad83b3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000008_4373d8c7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000008_4373d8c7.szar new file mode 100644 index 00000000..b381cf50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000008_4373d8c7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000009_15dee51c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000009_15dee51c.szar new file mode 100644 index 00000000..63eb7f2a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000009_15dee51c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000010_00d7f080.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000010_00d7f080.szar new file mode 100644 index 00000000..37a7c94d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000010_00d7f080.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000011_39b2606f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000011_39b2606f.szar new file mode 100644 index 00000000..a6f8fa40 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000011_39b2606f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000012_da69ad63.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000012_da69ad63.szar new file mode 100644 index 00000000..6ae616a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000012_da69ad63.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000013_3ec0bcc9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000013_3ec0bcc9.szar new file mode 100644 index 00000000..0e0cfb02 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000013_3ec0bcc9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000014_502b1add.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000014_502b1add.szar new file mode 100644 index 00000000..7fb0421c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000014_502b1add.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000015_5b25bdd1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000015_5b25bdd1.szar new file mode 100644 index 00000000..7e99f2a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000015_5b25bdd1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000016_a13427e4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000016_a13427e4.szar new file mode 100644 index 00000000..ccec8c28 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000016_a13427e4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000017_35766d64.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000017_35766d64.szar new file mode 100644 index 00000000..15d7bbaf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000017_35766d64.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000018_c0636890.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000018_c0636890.szar new file mode 100644 index 00000000..c798fe39 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000018_c0636890.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000019_453c1ad2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000019_453c1ad2.szar new file mode 100644 index 00000000..51fb7220 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000019_453c1ad2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000020_9a9d04ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000020_9a9d04ac.szar new file mode 100644 index 00000000..9fa81c21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000020_9a9d04ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000021_c2e7a6df.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000021_c2e7a6df.szar new file mode 100644 index 00000000..4dd4d53f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/archive/delta_00000000000000000021_c2e7a6df.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000001_3527bd20.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000001_3527bd20.szcp new file mode 100644 index 00000000..43184b54 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000001_3527bd20.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000002_cba6f766.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000002_cba6f766.szcp new file mode 100644 index 00000000..d8aededf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000002_cba6f766.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000003_094fb734.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000003_094fb734.szcp new file mode 100644 index 00000000..c4b84196 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000003_094fb734.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000004_4e28da8a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000004_4e28da8a.szcp new file mode 100644 index 00000000..9bbdb22e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000004_4e28da8a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000005_e48fdbb2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000005_e48fdbb2.szcp new file mode 100644 index 00000000..13be026d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000005_e48fdbb2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000006_1e19c16b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000006_1e19c16b.szcp new file mode 100644 index 00000000..c0eea241 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000006_1e19c16b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000007_d17a9bcd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000007_d17a9bcd.szcp new file mode 100644 index 00000000..6521cd52 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000007_d17a9bcd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000008_144976a7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000008_144976a7.szcp new file mode 100644 index 00000000..c4c53be2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000008_144976a7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000009_01cdddd1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000009_01cdddd1.szcp new file mode 100644 index 00000000..94a44c4c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000009_01cdddd1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000010_88e1033a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000010_88e1033a.szcp new file mode 100644 index 00000000..9349cfa4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000010_88e1033a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000011_1fe7988e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000011_1fe7988e.szcp new file mode 100644 index 00000000..5bfb7efd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000011_1fe7988e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000012_9e10b0bb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000012_9e10b0bb.szcp new file mode 100644 index 00000000..f338cf42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000012_9e10b0bb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000013_3656ab16.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000013_3656ab16.szcp new file mode 100644 index 00000000..c3d1f96c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000013_3656ab16.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000014_fec6bab2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000014_fec6bab2.szcp new file mode 100644 index 00000000..42aecae1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000014_fec6bab2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000015_da976dd1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000015_da976dd1.szcp new file mode 100644 index 00000000..1dd2667c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000015_da976dd1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000016_ebb04454.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000016_ebb04454.szcp new file mode 100644 index 00000000..57535a52 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000016_ebb04454.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000017_223861dd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000017_223861dd.szcp new file mode 100644 index 00000000..6c469041 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000017_223861dd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000018_a9d29fa6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000018_a9d29fa6.szcp new file mode 100644 index 00000000..4c7f9cc8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000018_a9d29fa6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000019_8b093787.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000019_8b093787.szcp new file mode 100644 index 00000000..6b8b3dde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000019_8b093787.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000020_54f5ff6a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000020_54f5ff6a.szcp new file mode 100644 index 00000000..f93540f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000020_54f5ff6a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000021_54eec0e3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000021_54eec0e3.szcp new file mode 100644 index 00000000..94e56131 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_052/checkpoints/checkpoint_00000000000000000021_54eec0e3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000001_6886ab65.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000001_6886ab65.szar new file mode 100644 index 00000000..1056ce8b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000001_6886ab65.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000002_e090bf42.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000002_e090bf42.szar new file mode 100644 index 00000000..5a9101f2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000002_e090bf42.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000003_82b85bdc.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000003_82b85bdc.szar new file mode 100644 index 00000000..26031154 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000003_82b85bdc.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000004_6c72b2eb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000004_6c72b2eb.szar new file mode 100644 index 00000000..16925a8f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000004_6c72b2eb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000005_15276e57.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000005_15276e57.szar new file mode 100644 index 00000000..b8af7e1d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000005_15276e57.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000006_fba4eed1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000006_fba4eed1.szar new file mode 100644 index 00000000..b4c8b8a6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000006_fba4eed1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000007_4f428769.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000007_4f428769.szar new file mode 100644 index 00000000..bbe9ae21 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000007_4f428769.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000008_4b122599.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000008_4b122599.szar new file mode 100644 index 00000000..5f498787 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000008_4b122599.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000009_b7060d3b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000009_b7060d3b.szar new file mode 100644 index 00000000..985defb6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000009_b7060d3b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000010_4b152010.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000010_4b152010.szar new file mode 100644 index 00000000..52a1746c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000010_4b152010.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000011_3dc6e9d4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000011_3dc6e9d4.szar new file mode 100644 index 00000000..59a1503b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000011_3dc6e9d4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000012_e70b50ec.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000012_e70b50ec.szar new file mode 100644 index 00000000..2ac023b7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000012_e70b50ec.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000013_ee413f22.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000013_ee413f22.szar new file mode 100644 index 00000000..6c5b9b6c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000013_ee413f22.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000014_ccb3e404.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000014_ccb3e404.szar new file mode 100644 index 00000000..719d3a07 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000014_ccb3e404.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000015_301da6b0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000015_301da6b0.szar new file mode 100644 index 00000000..604a51b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000015_301da6b0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000016_a05b0c2e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000016_a05b0c2e.szar new file mode 100644 index 00000000..54c21877 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000016_a05b0c2e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000017_24e509e9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000017_24e509e9.szar new file mode 100644 index 00000000..03db3e81 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000017_24e509e9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000018_3f28b399.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000018_3f28b399.szar new file mode 100644 index 00000000..ec33bb56 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000018_3f28b399.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000019_92ddce21.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000019_92ddce21.szar new file mode 100644 index 00000000..99b28fdf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000019_92ddce21.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000020_0b70b150.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000020_0b70b150.szar new file mode 100644 index 00000000..8b58e774 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000020_0b70b150.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000021_9fc2c58b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000021_9fc2c58b.szar new file mode 100644 index 00000000..06b596de Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/archive/delta_00000000000000000021_9fc2c58b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000001_29672b18.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000001_29672b18.szcp new file mode 100644 index 00000000..9e3440b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000001_29672b18.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000002_48aa4ee3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000002_48aa4ee3.szcp new file mode 100644 index 00000000..e059b962 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000002_48aa4ee3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000003_8ea17f89.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000003_8ea17f89.szcp new file mode 100644 index 00000000..ecbd7de5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000003_8ea17f89.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000004_554e3042.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000004_554e3042.szcp new file mode 100644 index 00000000..3cf4245d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000004_554e3042.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000005_a776a170.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000005_a776a170.szcp new file mode 100644 index 00000000..c27dfdd3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000005_a776a170.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000006_2147e905.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000006_2147e905.szcp new file mode 100644 index 00000000..45ac7d63 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000006_2147e905.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000007_c33f78e7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000007_c33f78e7.szcp new file mode 100644 index 00000000..9f06dd58 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000007_c33f78e7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000008_b531c04a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000008_b531c04a.szcp new file mode 100644 index 00000000..030ab2d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000008_b531c04a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000009_16f7395a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000009_16f7395a.szcp new file mode 100644 index 00000000..88678fa1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000009_16f7395a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000010_d714333e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000010_d714333e.szcp new file mode 100644 index 00000000..25291721 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000010_d714333e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000011_1a8d34ee.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000011_1a8d34ee.szcp new file mode 100644 index 00000000..9a11bfde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000011_1a8d34ee.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000012_4fd7f699.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000012_4fd7f699.szcp new file mode 100644 index 00000000..a8fea5f1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000012_4fd7f699.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000013_c7f2b5cf.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000013_c7f2b5cf.szcp new file mode 100644 index 00000000..a1edeb35 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000013_c7f2b5cf.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000014_f4076425.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000014_f4076425.szcp new file mode 100644 index 00000000..43a56189 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000014_f4076425.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000015_ff99713a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000015_ff99713a.szcp new file mode 100644 index 00000000..d8b67835 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000015_ff99713a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000016_2ccd7b68.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000016_2ccd7b68.szcp new file mode 100644 index 00000000..21df37c6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000016_2ccd7b68.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000017_cb99e003.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000017_cb99e003.szcp new file mode 100644 index 00000000..3ee721fe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000017_cb99e003.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000018_5574a627.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000018_5574a627.szcp new file mode 100644 index 00000000..e12d04b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000018_5574a627.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000019_01421abc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000019_01421abc.szcp new file mode 100644 index 00000000..b15c2c30 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000019_01421abc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000020_c4660563.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000020_c4660563.szcp new file mode 100644 index 00000000..1aaa108d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000020_c4660563.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000021_7882b584.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000021_7882b584.szcp new file mode 100644 index 00000000..9ef1aaee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_053/checkpoints/checkpoint_00000000000000000021_7882b584.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000001_0a78dc3d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000001_0a78dc3d.szar new file mode 100644 index 00000000..ed65212d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000001_0a78dc3d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000002_3bd061bd.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000002_3bd061bd.szar new file mode 100644 index 00000000..217306e6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000002_3bd061bd.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000003_42ac4c6e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000003_42ac4c6e.szar new file mode 100644 index 00000000..0be155d9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000003_42ac4c6e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000004_2d527a9e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000004_2d527a9e.szar new file mode 100644 index 00000000..2fa32220 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000004_2d527a9e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000005_21ffd636.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000005_21ffd636.szar new file mode 100644 index 00000000..32c5d7d3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000005_21ffd636.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000006_fbee6e56.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000006_fbee6e56.szar new file mode 100644 index 00000000..684062dc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000006_fbee6e56.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000007_347a1857.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000007_347a1857.szar new file mode 100644 index 00000000..8986c07f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000007_347a1857.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000008_4db5fb6b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000008_4db5fb6b.szar new file mode 100644 index 00000000..fc891458 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000008_4db5fb6b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000009_8494d4ec.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000009_8494d4ec.szar new file mode 100644 index 00000000..402e330e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000009_8494d4ec.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000010_f94065f0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000010_f94065f0.szar new file mode 100644 index 00000000..4f3fbabb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000010_f94065f0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000011_da7cbed3.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000011_da7cbed3.szar new file mode 100644 index 00000000..e56caeda Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000011_da7cbed3.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000012_0de903bb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000012_0de903bb.szar new file mode 100644 index 00000000..cb41b88a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000012_0de903bb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000013_a41842ac.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000013_a41842ac.szar new file mode 100644 index 00000000..81727e44 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000013_a41842ac.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000014_d065d1ce.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000014_d065d1ce.szar new file mode 100644 index 00000000..312905fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000014_d065d1ce.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000015_5daca23d.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000015_5daca23d.szar new file mode 100644 index 00000000..3ca00c63 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000015_5daca23d.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000016_a9b4eed6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000016_a9b4eed6.szar new file mode 100644 index 00000000..59971da0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000016_a9b4eed6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000017_9373bc51.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000017_9373bc51.szar new file mode 100644 index 00000000..6642c23f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000017_9373bc51.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000018_8c9b91ee.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000018_8c9b91ee.szar new file mode 100644 index 00000000..14ca127a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/archive/delta_00000000000000000018_8c9b91ee.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000001_9b9d396d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000001_9b9d396d.szcp new file mode 100644 index 00000000..d910641d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000001_9b9d396d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000002_0e0983c1.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000002_0e0983c1.szcp new file mode 100644 index 00000000..f25f037a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000002_0e0983c1.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000003_12e59386.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000003_12e59386.szcp new file mode 100644 index 00000000..b3ae5703 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000003_12e59386.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000004_8e155a41.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000004_8e155a41.szcp new file mode 100644 index 00000000..42398b72 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000004_8e155a41.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000005_23f2d695.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000005_23f2d695.szcp new file mode 100644 index 00000000..21523fdc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000005_23f2d695.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000006_7cc8c69c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000006_7cc8c69c.szcp new file mode 100644 index 00000000..82bcd8b5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000006_7cc8c69c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000007_08cfb60e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000007_08cfb60e.szcp new file mode 100644 index 00000000..de4dbe42 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000007_08cfb60e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000008_9a1679d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000008_9a1679d5.szcp new file mode 100644 index 00000000..33e11ea9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000008_9a1679d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000009_83b6de64.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000009_83b6de64.szcp new file mode 100644 index 00000000..6df148ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000009_83b6de64.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000010_272a2c04.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000010_272a2c04.szcp new file mode 100644 index 00000000..d3791d0a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000010_272a2c04.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000011_568741b5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000011_568741b5.szcp new file mode 100644 index 00000000..eac8bc92 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000011_568741b5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000012_b2dd5bef.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000012_b2dd5bef.szcp new file mode 100644 index 00000000..68e004c9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000012_b2dd5bef.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000013_205f695d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000013_205f695d.szcp new file mode 100644 index 00000000..4f02360b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000013_205f695d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000014_d6546c0e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000014_d6546c0e.szcp new file mode 100644 index 00000000..8848df7a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000014_d6546c0e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000015_a8661012.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000015_a8661012.szcp new file mode 100644 index 00000000..d3191fb2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000015_a8661012.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000016_a95598ac.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000016_a95598ac.szcp new file mode 100644 index 00000000..8be1ad88 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000016_a95598ac.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000017_c7de85a8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000017_c7de85a8.szcp new file mode 100644 index 00000000..99d80e1f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000017_c7de85a8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000018_1150f817.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000018_1150f817.szcp new file mode 100644 index 00000000..2d058f34 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_054/checkpoints/checkpoint_00000000000000000018_1150f817.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000001_165101d0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000001_165101d0.szar new file mode 100644 index 00000000..9733e511 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000001_165101d0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000002_41a6d235.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000002_41a6d235.szar new file mode 100644 index 00000000..1374ae5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000002_41a6d235.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000003_09472db2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000003_09472db2.szar new file mode 100644 index 00000000..46c92573 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000003_09472db2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000004_9f7c4eaa.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000004_9f7c4eaa.szar new file mode 100644 index 00000000..9bade300 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000004_9f7c4eaa.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000005_810f7cda.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000005_810f7cda.szar new file mode 100644 index 00000000..ca8f8f3c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000005_810f7cda.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000006_005da703.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000006_005da703.szar new file mode 100644 index 00000000..1e20288a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000006_005da703.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000007_44a65e40.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000007_44a65e40.szar new file mode 100644 index 00000000..03727ba2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000007_44a65e40.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000008_a85b7e5a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000008_a85b7e5a.szar new file mode 100644 index 00000000..c5e02bbc Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000008_a85b7e5a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000009_64ef4376.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000009_64ef4376.szar new file mode 100644 index 00000000..06a57e67 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000009_64ef4376.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000010_acb225de.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000010_acb225de.szar new file mode 100644 index 00000000..f308b33e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000010_acb225de.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000011_f841b127.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000011_f841b127.szar new file mode 100644 index 00000000..c5e53352 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000011_f841b127.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000012_a25fbdb7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000012_a25fbdb7.szar new file mode 100644 index 00000000..1b7b1648 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000012_a25fbdb7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000013_8d28d418.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000013_8d28d418.szar new file mode 100644 index 00000000..dedff0df Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000013_8d28d418.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000014_c20841b9.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000014_c20841b9.szar new file mode 100644 index 00000000..38ef81b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000014_c20841b9.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000015_cdd63945.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000015_cdd63945.szar new file mode 100644 index 00000000..465b3a32 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/archive/delta_00000000000000000015_cdd63945.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000001_78f9e36d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000001_78f9e36d.szcp new file mode 100644 index 00000000..2b0d8ad0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000001_78f9e36d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000002_65e32a41.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000002_65e32a41.szcp new file mode 100644 index 00000000..bb89d3e8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000002_65e32a41.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000003_d99a14d5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000003_d99a14d5.szcp new file mode 100644 index 00000000..c408644e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000003_d99a14d5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000004_54464382.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000004_54464382.szcp new file mode 100644 index 00000000..bbbd7334 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000004_54464382.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000005_7470b1a4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000005_7470b1a4.szcp new file mode 100644 index 00000000..f3901a5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000005_7470b1a4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000006_0ba233d6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000006_0ba233d6.szcp new file mode 100644 index 00000000..28028d11 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000006_0ba233d6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000007_b2ee38de.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000007_b2ee38de.szcp new file mode 100644 index 00000000..02fc6891 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000007_b2ee38de.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000008_62b010ae.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000008_62b010ae.szcp new file mode 100644 index 00000000..cbd35128 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000008_62b010ae.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000009_78e70dc2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000009_78e70dc2.szcp new file mode 100644 index 00000000..199b153f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000009_78e70dc2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000010_6f786f6d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000010_6f786f6d.szcp new file mode 100644 index 00000000..7894748c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000010_6f786f6d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000011_d34bbafd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000011_d34bbafd.szcp new file mode 100644 index 00000000..cb5e611d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000011_d34bbafd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000012_43e50252.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000012_43e50252.szcp new file mode 100644 index 00000000..702ac593 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000012_43e50252.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000013_349c76ab.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000013_349c76ab.szcp new file mode 100644 index 00000000..97d76626 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000013_349c76ab.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000014_83c6ed61.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000014_83c6ed61.szcp new file mode 100644 index 00000000..b323a5a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000014_83c6ed61.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000015_711aa65b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000015_711aa65b.szcp new file mode 100644 index 00000000..308bd544 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_055/checkpoints/checkpoint_00000000000000000015_711aa65b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000001_4a870699.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000001_4a870699.szar new file mode 100644 index 00000000..082d8475 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000001_4a870699.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000002_edbdec3c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000002_edbdec3c.szar new file mode 100644 index 00000000..9c2510d6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000002_edbdec3c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000003_a054a1fe.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000003_a054a1fe.szar new file mode 100644 index 00000000..389315a0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000003_a054a1fe.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000004_0345b640.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000004_0345b640.szar new file mode 100644 index 00000000..6573241a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000004_0345b640.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000005_4b1e6b2a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000005_4b1e6b2a.szar new file mode 100644 index 00000000..6c84fedb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000005_4b1e6b2a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000006_83d30ea0.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000006_83d30ea0.szar new file mode 100644 index 00000000..c33b542b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000006_83d30ea0.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000007_90615677.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000007_90615677.szar new file mode 100644 index 00000000..ee77602c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000007_90615677.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000008_235d39e1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000008_235d39e1.szar new file mode 100644 index 00000000..5e4a3934 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000008_235d39e1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000009_119fbcab.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000009_119fbcab.szar new file mode 100644 index 00000000..ae761605 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000009_119fbcab.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000010_652fbb19.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000010_652fbb19.szar new file mode 100644 index 00000000..7c3a1aaf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000010_652fbb19.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000011_2ce9dc67.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000011_2ce9dc67.szar new file mode 100644 index 00000000..8c666889 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000011_2ce9dc67.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000012_c26f54cf.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000012_c26f54cf.szar new file mode 100644 index 00000000..4a328480 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000012_c26f54cf.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000013_af92580c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000013_af92580c.szar new file mode 100644 index 00000000..c8348cb7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000013_af92580c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000014_ad3e0ab6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000014_ad3e0ab6.szar new file mode 100644 index 00000000..00e39685 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000014_ad3e0ab6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000015_b58b5570.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000015_b58b5570.szar new file mode 100644 index 00000000..bc79bf4e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000015_b58b5570.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000016_26a58341.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000016_26a58341.szar new file mode 100644 index 00000000..e7e20918 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000016_26a58341.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000017_6b6ff606.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000017_6b6ff606.szar new file mode 100644 index 00000000..77053a54 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000017_6b6ff606.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000018_86295ad4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000018_86295ad4.szar new file mode 100644 index 00000000..47757cf1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000018_86295ad4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000019_9da880f8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000019_9da880f8.szar new file mode 100644 index 00000000..34bdc0bd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000019_9da880f8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000020_bc070afb.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000020_bc070afb.szar new file mode 100644 index 00000000..ceb6bded Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000020_bc070afb.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000021_2cb2b3e8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000021_2cb2b3e8.szar new file mode 100644 index 00000000..9ba179d1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000021_2cb2b3e8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000022_faaa1391.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000022_faaa1391.szar new file mode 100644 index 00000000..27ce9437 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000022_faaa1391.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000023_d5d71456.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000023_d5d71456.szar new file mode 100644 index 00000000..b913fb0f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000023_d5d71456.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000024_81339d97.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000024_81339d97.szar new file mode 100644 index 00000000..6030256f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000024_81339d97.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000025_1458966f.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000025_1458966f.szar new file mode 100644 index 00000000..29659c1e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000025_1458966f.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000026_9b691e38.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000026_9b691e38.szar new file mode 100644 index 00000000..163c8916 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000026_9b691e38.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000027_fd10b4b8.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000027_fd10b4b8.szar new file mode 100644 index 00000000..156a2a16 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000027_fd10b4b8.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000028_df21aaf6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000028_df21aaf6.szar new file mode 100644 index 00000000..9fca5929 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000028_df21aaf6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000029_480f7c00.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000029_480f7c00.szar new file mode 100644 index 00000000..e094e537 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/archive/delta_00000000000000000029_480f7c00.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000001_16c50dcc.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000001_16c50dcc.szcp new file mode 100644 index 00000000..79070b4d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000001_16c50dcc.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000002_6e79e276.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000002_6e79e276.szcp new file mode 100644 index 00000000..570ab96f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000002_6e79e276.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000003_edb55231.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000003_edb55231.szcp new file mode 100644 index 00000000..83efb37d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000003_edb55231.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000004_d3f3a47f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000004_d3f3a47f.szcp new file mode 100644 index 00000000..c91d7715 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000004_d3f3a47f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000005_ba3a9851.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000005_ba3a9851.szcp new file mode 100644 index 00000000..9a9c3dbd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000005_ba3a9851.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000006_b782f081.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000006_b782f081.szcp new file mode 100644 index 00000000..d3fe615c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000006_b782f081.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000007_84575eba.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000007_84575eba.szcp new file mode 100644 index 00000000..bbc86ac1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000007_84575eba.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000008_b696fd28.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000008_b696fd28.szcp new file mode 100644 index 00000000..a9508dc1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000008_b696fd28.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000009_5c6b969a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000009_5c6b969a.szcp new file mode 100644 index 00000000..de0c8bc6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000009_5c6b969a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000010_1006c121.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000010_1006c121.szcp new file mode 100644 index 00000000..864c8389 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000010_1006c121.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000011_822c3eb2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000011_822c3eb2.szcp new file mode 100644 index 00000000..4cd56f50 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000011_822c3eb2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000012_f45cda13.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000012_f45cda13.szcp new file mode 100644 index 00000000..1e4446b2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000012_f45cda13.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000013_d4359f2b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000013_d4359f2b.szcp new file mode 100644 index 00000000..686578b9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000013_d4359f2b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000014_63f55b28.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000014_63f55b28.szcp new file mode 100644 index 00000000..cd8c78f4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000014_63f55b28.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000015_9b6206e9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000015_9b6206e9.szcp new file mode 100644 index 00000000..251112be Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000015_9b6206e9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000016_990f23b8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000016_990f23b8.szcp new file mode 100644 index 00000000..5978f51f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000016_990f23b8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000017_5f72d5e8.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000017_5f72d5e8.szcp new file mode 100644 index 00000000..66dd028b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000017_5f72d5e8.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000018_f3718bea.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000018_f3718bea.szcp new file mode 100644 index 00000000..10ee0095 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000018_f3718bea.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000019_01c9853a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000019_01c9853a.szcp new file mode 100644 index 00000000..c876a5cd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000019_01c9853a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000020_58a60c8b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000020_58a60c8b.szcp new file mode 100644 index 00000000..62602bde Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000020_58a60c8b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000021_133398c7.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000021_133398c7.szcp new file mode 100644 index 00000000..3ba0e82a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000021_133398c7.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000022_e3356119.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000022_e3356119.szcp new file mode 100644 index 00000000..dc2f43a7 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000022_e3356119.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000023_fb92811b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000023_fb92811b.szcp new file mode 100644 index 00000000..bedddc84 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000023_fb92811b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000024_32d52d6c.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000024_32d52d6c.szcp new file mode 100644 index 00000000..a88c403e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000024_32d52d6c.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000025_156e3ecb.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000025_156e3ecb.szcp new file mode 100644 index 00000000..07190d19 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000025_156e3ecb.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000026_4b04a4c4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000026_4b04a4c4.szcp new file mode 100644 index 00000000..efcc9033 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000026_4b04a4c4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000027_51844d37.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000027_51844d37.szcp new file mode 100644 index 00000000..ef1356b1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000027_51844d37.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000028_809203c5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000028_809203c5.szcp new file mode 100644 index 00000000..c277e4dd Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000028_809203c5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000029_06bfafff.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000029_06bfafff.szcp new file mode 100644 index 00000000..f0d8c097 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_056/checkpoints/checkpoint_00000000000000000029_06bfafff.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000001_66102171.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000001_66102171.szar new file mode 100644 index 00000000..b116fcfa Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000001_66102171.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000002_dd6bc8b7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000002_dd6bc8b7.szar new file mode 100644 index 00000000..8b582fbe Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000002_dd6bc8b7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000003_043e0771.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000003_043e0771.szar new file mode 100644 index 00000000..f299718b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000003_043e0771.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000004_e6c70d8e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000004_e6c70d8e.szar new file mode 100644 index 00000000..03323c2a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000004_e6c70d8e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000005_c5bc0e3a.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000005_c5bc0e3a.szar new file mode 100644 index 00000000..3ea32710 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000005_c5bc0e3a.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000006_a5755712.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000006_a5755712.szar new file mode 100644 index 00000000..a60c734e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000006_a5755712.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000007_18ac6e77.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000007_18ac6e77.szar new file mode 100644 index 00000000..5e8fb648 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000007_18ac6e77.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000008_67d67a27.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000008_67d67a27.szar new file mode 100644 index 00000000..f7a2447b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000008_67d67a27.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000009_b8ca95ff.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000009_b8ca95ff.szar new file mode 100644 index 00000000..4b235074 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000009_b8ca95ff.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000010_f35ed6b6.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000010_f35ed6b6.szar new file mode 100644 index 00000000..6c642af8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000010_f35ed6b6.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000011_f890f099.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000011_f890f099.szar new file mode 100644 index 00000000..30c35b23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000011_f890f099.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000012_32299631.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000012_32299631.szar new file mode 100644 index 00000000..edc787a9 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000012_32299631.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000013_67b7626b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000013_67b7626b.szar new file mode 100644 index 00000000..002c75e2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000013_67b7626b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000014_f00bb931.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000014_f00bb931.szar new file mode 100644 index 00000000..da4aa2ee Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000014_f00bb931.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000015_3cf5d224.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000015_3cf5d224.szar new file mode 100644 index 00000000..179f783d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000015_3cf5d224.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000016_afd000f1.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000016_afd000f1.szar new file mode 100644 index 00000000..e4c589b4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000016_afd000f1.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000017_677b0b30.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000017_677b0b30.szar new file mode 100644 index 00000000..4b2de9d4 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000017_677b0b30.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000018_3053963e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000018_3053963e.szar new file mode 100644 index 00000000..76547412 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000018_3053963e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000019_4370c745.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000019_4370c745.szar new file mode 100644 index 00000000..382f77f5 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000019_4370c745.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000020_0402ad09.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000020_0402ad09.szar new file mode 100644 index 00000000..3bebeb6d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000020_0402ad09.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000021_f26af1b2.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000021_f26af1b2.szar new file mode 100644 index 00000000..c833b3e1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000021_f26af1b2.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000022_ed7a2f39.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000022_ed7a2f39.szar new file mode 100644 index 00000000..4110180c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000022_ed7a2f39.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000023_e37ec5ab.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000023_e37ec5ab.szar new file mode 100644 index 00000000..e4dcdc90 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000023_e37ec5ab.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000024_d2ab8e82.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000024_d2ab8e82.szar new file mode 100644 index 00000000..3520040e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/archive/delta_00000000000000000024_d2ab8e82.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000001_cb1034db.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000001_cb1034db.szcp new file mode 100644 index 00000000..2353882b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000001_cb1034db.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000002_a8b34322.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000002_a8b34322.szcp new file mode 100644 index 00000000..9b9b9ae1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000002_a8b34322.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000003_09449fd9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000003_09449fd9.szcp new file mode 100644 index 00000000..7781bd3e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000003_09449fd9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000004_41262359.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000004_41262359.szcp new file mode 100644 index 00000000..7144ca5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000004_41262359.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000005_f9cdbaa2.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000005_f9cdbaa2.szcp new file mode 100644 index 00000000..9e30a378 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000005_f9cdbaa2.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000006_533e3b79.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000006_533e3b79.szcp new file mode 100644 index 00000000..36fec634 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000006_533e3b79.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000007_2edbc6fa.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000007_2edbc6fa.szcp new file mode 100644 index 00000000..42af28ec Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000007_2edbc6fa.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000008_68db4bc3.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000008_68db4bc3.szcp new file mode 100644 index 00000000..99098bd8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000008_68db4bc3.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000009_a31e163a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000009_a31e163a.szcp new file mode 100644 index 00000000..10003bbf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000009_a31e163a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000010_33b3e5b4.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000010_33b3e5b4.szcp new file mode 100644 index 00000000..ba06fec6 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000010_33b3e5b4.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000011_4f628a6a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000011_4f628a6a.szcp new file mode 100644 index 00000000..4d5f6c77 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000011_4f628a6a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000012_e2d30470.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000012_e2d30470.szcp new file mode 100644 index 00000000..ff46c446 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000012_e2d30470.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000013_cf2a649a.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000013_cf2a649a.szcp new file mode 100644 index 00000000..72d682cf Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000013_cf2a649a.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000014_82970507.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000014_82970507.szcp new file mode 100644 index 00000000..db50af96 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000014_82970507.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000015_2df60687.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000015_2df60687.szcp new file mode 100644 index 00000000..6250425a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000015_2df60687.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000016_5e7474dd.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000016_5e7474dd.szcp new file mode 100644 index 00000000..309a90d3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000016_5e7474dd.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000017_6e6e632f.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000017_6e6e632f.szcp new file mode 100644 index 00000000..b8c44b76 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000017_6e6e632f.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000018_49baae14.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000018_49baae14.szcp new file mode 100644 index 00000000..67a26477 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000018_49baae14.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000019_ee0e09d6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000019_ee0e09d6.szcp new file mode 100644 index 00000000..5560bcf0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000019_ee0e09d6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000020_a44f6e73.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000020_a44f6e73.szcp new file mode 100644 index 00000000..79efd338 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000020_a44f6e73.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000021_b878cb09.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000021_b878cb09.szcp new file mode 100644 index 00000000..7b8eece8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000021_b878cb09.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000022_9048dec6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000022_9048dec6.szcp new file mode 100644 index 00000000..c7ecebc8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000022_9048dec6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000023_9f39b55e.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000023_9f39b55e.szcp new file mode 100644 index 00000000..ad8d6e97 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000023_9f39b55e.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000024_258aaf05.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000024_258aaf05.szcp new file mode 100644 index 00000000..d2448103 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_057/checkpoints/checkpoint_00000000000000000024_258aaf05.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000001_397d425c.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000001_397d425c.szar new file mode 100644 index 00000000..4de62e9a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000001_397d425c.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000002_a81a0824.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000002_a81a0824.szar new file mode 100644 index 00000000..ea5db52b Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000002_a81a0824.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000003_e60b5346.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000003_e60b5346.szar new file mode 100644 index 00000000..c1b97a5e Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000003_e60b5346.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000004_d99d8d9b.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000004_d99d8d9b.szar new file mode 100644 index 00000000..b4dbf30f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000004_d99d8d9b.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000005_fa5714c7.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000005_fa5714c7.szar new file mode 100644 index 00000000..5b3b7097 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000005_fa5714c7.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000006_ef178335.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000006_ef178335.szar new file mode 100644 index 00000000..f9ff03e0 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000006_ef178335.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000007_f5019197.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000007_f5019197.szar new file mode 100644 index 00000000..e5b89b02 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000007_f5019197.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000008_15cccb19.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000008_15cccb19.szar new file mode 100644 index 00000000..d591b1ef Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000008_15cccb19.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000009_e14301f4.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000009_e14301f4.szar new file mode 100644 index 00000000..f342ac28 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000009_e14301f4.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000010_80e91a39.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000010_80e91a39.szar new file mode 100644 index 00000000..46c98e8c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000010_80e91a39.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000011_a5095e21.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000011_a5095e21.szar new file mode 100644 index 00000000..5b6dd2c1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000011_a5095e21.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000012_a9a96693.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000012_a9a96693.szar new file mode 100644 index 00000000..23aa9539 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000012_a9a96693.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000013_d940649e.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000013_d940649e.szar new file mode 100644 index 00000000..cd66b423 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000013_d940649e.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000014_41493513.szar b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000014_41493513.szar new file mode 100644 index 00000000..30acfe5c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/archive/delta_00000000000000000014_41493513.szar differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000001_be298707.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000001_be298707.szcp new file mode 100644 index 00000000..670b64ae Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000001_be298707.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000002_617c9ded.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000002_617c9ded.szcp new file mode 100644 index 00000000..e5e0d781 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000002_617c9ded.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000003_c17457c5.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000003_c17457c5.szcp new file mode 100644 index 00000000..2618d65d Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000003_c17457c5.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000004_c9fe30ce.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000004_c9fe30ce.szcp new file mode 100644 index 00000000..425639a2 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000004_c9fe30ce.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000005_1e9aa853.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000005_1e9aa853.szcp new file mode 100644 index 00000000..389466c3 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000005_1e9aa853.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000006_9c2a386b.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000006_9c2a386b.szcp new file mode 100644 index 00000000..f5b66f23 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000006_9c2a386b.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000007_f6890ce9.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000007_f6890ce9.szcp new file mode 100644 index 00000000..fae282eb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000007_f6890ce9.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000008_9069b980.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000008_9069b980.szcp new file mode 100644 index 00000000..3e1ed82a Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000008_9069b980.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000009_aeac1931.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000009_aeac1931.szcp new file mode 100644 index 00000000..273550b8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000009_aeac1931.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000010_f386c184.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000010_f386c184.szcp new file mode 100644 index 00000000..8f065da8 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000010_f386c184.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000011_4e3832ee.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000011_4e3832ee.szcp new file mode 100644 index 00000000..8f42ad9f Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000011_4e3832ee.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000012_7859682d.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000012_7859682d.szcp new file mode 100644 index 00000000..bd18a8a1 Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000012_7859682d.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000013_a83701b6.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000013_a83701b6.szcp new file mode 100644 index 00000000..7b02b76c Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000013_a83701b6.szcp differ diff --git a/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000014_e6dc5685.szcp b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000014_e6dc5685.szcp new file mode 100644 index 00000000..2d6e07fb Binary files /dev/null and b/results/search/runs/99c1d7dc-0363-429a-8b1b-1bf851872653/topology_058/checkpoints/checkpoint_00000000000000000014_e6dc5685.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/metrics.tsv b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/metrics.tsv new file mode 100644 index 00000000..85ac3543 --- /dev/null +++ b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/metrics.tsv @@ -0,0 +1,405 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783858939536011600 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 43 2544 23804006 209280 1442.7001800537109 8.6495999999999995 2458.8899999999999 40320 20678 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2544 1920 128 384 1 4481774276 4614084 1 0 5 1 2 2 6 7618560 1474560 2949120 2705110 8985600 162 150 151 155 1926 10 4 10 3 16 0 0 0 0 0 +2 1783858941806144500 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 104 2542 23803906 209280 1251.4007568359375 8.8377999999999997 2194.5527000000002 40320 20934 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2542 1920 128 384 1 4486386280 9226088 1 0 5 1 2 2 6 7618560 1474560 2949120 2705010 8985600 182 151 161 159 1889 10 11 13 17 53 0 0 0 0 0 +3 1783858943781156700 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 1 0 2316 43 2515 23803933 209280 1289.2455902099609 8.6534999999999993 1918.9513999999999 40320 22520 1 0 0.030102368609035469 0.92548736817101662 4096 2048 384 12 96 2515 1920 128 384 1 4490970744 13810552 1 0 5 1 2 2 6 7618560 1474560 2949120 2705032 8985600 213 176 172 158 1796 11 3 2 1 26 0 0 0 0 1 +4 1783858945899282200 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 2287 84 2584 23803940 209280 1233.8502044677734 8.8196999999999992 2058.4110999999998 40320 20617 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 128 384 1 4495625588 18465396 1 0 5 1 2 2 6 7618560 1474560 2949120 2705039 8985600 163 156 151 153 1961 16 5 19 12 32 0 0 0 0 0 +5 1783858948041306400 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 1970 61 2591 23804016 209280 1230.8259582519531 8.6308000000000007 2069.4185000000002 40320 21300 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2591 1920 128 384 1 4500287572 23127380 1 0 5 1 2 2 6 7618560 1474560 2949120 2705121 8985600 175 150 150 163 1953 4 23 7 7 20 0 0 0 0 0 +6 1783858950159407600 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 0 0 2765 81 2560 23803952 209280 1259.5558319091797 8.6335000000000015 2044.9552000000001 40320 22475 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2560 1920 128 384 1 4504917936 27757744 1 0 5 1 2 2 6 7618560 1474560 2949120 2705057 8985600 185 220 159 159 1837 21 1 12 7 40 0 0 0 0 0 +7 1783858952208425600 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 3934 107 2573 23803936 209280 1234.7239532470703 8.6898999999999997 1990.7234000000001 40320 20200 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2573 1920 128 384 1 4509561560 32401368 1 0 5 1 2 2 6 7618560 1474560 2949120 2705039 8985600 168 160 151 150 1944 17 4 20 16 50 0 0 0 0 0 +8 1783858954266711400 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4021 76 2538 23803954 209280 1254.3720550537109 8.6509 2000.3434999999999 40320 21166 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2538 1920 128 384 1 4514169484 37009292 1 0 5 1 2 2 6 7618560 1474560 2949120 2705057 8985600 221 174 166 158 1819 20 2 8 8 38 0 0 0 0 0 +9 1783858956394589500 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 0 0 3571 146 2565 23803977 209280 1231.2159576416016 8.6723999999999997 2057.123 40320 21943 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2565 1920 128 384 1 4518804948 41644756 1 0 5 1 2 2 6 7618560 1474560 2949120 2705077 8985600 178 181 150 156 1900 22 32 29 18 45 0 0 0 0 0 +10 1783858958444106500 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 1 0 2396 101 2541 23803920 209280 1233.9076690673828 8.7143999999999995 1987.8101999999999 40320 21284 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2541 1920 128 384 1 4523415932 46255740 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 167 150 163 150 1911 15 22 17 11 36 0 0 0 0 1 +11 1783858960331991300 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3002 108 2540 23803917 209280 1271.8937530517578 8.6763000000000012 1828.9306999999999 40320 20940 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2540 1920 128 384 1 4528025896 50865704 1 0 5 1 2 2 6 7618560 1474560 2949120 2705024 8985600 207 174 163 175 1821 15 3 28 8 54 0 0 0 0 0 +12 1783858962434093300 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3199 88 2546 23803867 209280 1261.0110321044922 8.7330000000000005 2035.2476999999999 40320 21052 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2546 1920 128 384 1 4532641980 55481788 1 0 5 1 2 2 6 7618560 1474560 2949120 2704973 8985600 176 164 163 174 1869 15 7 13 14 39 0 0 0 0 0 +13 1783858964535967500 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 2773 118 2583 23803944 209280 1238.1708831787109 8.6536999999999988 2030.0391999999999 40320 21493 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2583 1920 128 384 1 4537295804 60135612 1 0 5 1 2 2 6 7618560 1474560 2949120 2705048 8985600 169 155 156 150 1953 14 14 27 11 52 0 0 0 0 0 +14 1783858966705797800 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 1951 110 2609 23803883 209280 1255.0243530273438 8.6376999999999988 2096.5376000000001 40320 22417 1 1 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2609 1920 128 384 1 4541976148 64815956 1 0 5 1 2 2 6 7618560 1474560 2949120 2704983 8985600 161 157 164 150 1977 10 16 25 10 48 0 0 0 0 0 +15 1783858969827551000 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 1 0 1972 83 2557 23803993 209280 1214.8727111816406 8.7372999999999994 3059.7420000000002 40320 21615 1 0 6.7193911225549259e-05 2.0137133495363413 4096 2048 384 12 96 2557 1920 128 384 1 4546603532 2334624 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 199 150 152 160 1896 8 5 17 7 46 0 0 0 0 1 +16 1783858971955842500 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 0 0 4096 126 2526 23803985 209280 1261.3818206787109 8.6286000000000005 2049.8337999999999 40320 21802 1 0 0 0.2221103696426992 4096 2048 384 12 96 2526 1920 128 384 1 4551199216 6930308 1 0 5 1 2 2 6 7618560 1474560 2949120 2705085 8985600 212 173 163 166 1812 19 6 19 28 54 0 0 0 0 0 +17 1783858974073060000 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2589 63 2570 23803890 209280 1256.7920532226562 8.6288 2059.4742999999999 40320 22380 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2570 1920 128 384 1 4555839780 11570872 1 0 5 1 2 2 6 7618560 1474560 2949120 2704994 8985600 174 154 153 151 1938 8 1 13 8 33 0 0 0 0 0 +18 1783858976206507400 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2183 104 2568 23803911 209280 1233.6123809814453 8.6141000000000005 2063.6190999999999 40320 21446 1 0 0 0.75511965490414668 4096 2048 384 12 96 2568 1920 128 384 1 4560478304 16209396 1 0 5 1 2 2 6 7618560 1474560 2949120 2705014 8985600 219 159 151 150 1889 17 14 26 6 41 0 0 0 0 1 +19 1783858978058549000 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 1 0 1348 109 2531 23803995 209280 1244.7121887207031 8.6295000000000002 1788.6204 40320 22734 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2531 1920 128 384 1 4565079088 20810180 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 187 165 171 154 1854 15 1 3 14 76 0 0 0 0 1 +20 1783858980161432100 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 1 0 3208 123 2548 23803922 209280 1245.6609039306641 8.6328999999999994 2024.3992000000001 40320 21465 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2548 1920 128 384 1 4569697212 25428304 1 0 5 1 2 2 6 7618560 1474560 2949120 2705027 8985600 186 196 158 173 1835 16 8 6 3 90 0 0 0 0 1 +21 1783858982274934400 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2014 64 2598 23803962 209280 1265.9539184570312 8.6359999999999992 2056.8616999999999 40320 21938 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2598 1920 128 384 1 4574366336 30097428 1 0 5 1 2 2 6 7618560 1474560 2949120 2705068 8985600 156 150 159 164 1969 11 0 15 3 35 0 0 0 0 0 +22 1783858984342587600 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 1 0 1116 70 2541 23803983 209280 1231.50634765625 8.7347999999999999 1991.7229 40320 21937 1 0 0.00048495688528533737 1.0732299026005363 4096 2048 384 12 96 2541 1920 128 384 1 4578977320 34708412 1 0 5 1 2 2 6 7618560 1474560 2949120 2705088 8985600 180 150 157 150 1904 14 12 12 2 30 0 0 0 0 1 +23 1783858986417396400 DEPTH 32 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 2738 87 2548 23803974 209280 1252.3485412597656 8.7111999999999998 2006.7724000000001 40320 20785 1 0 0.00028269938399440856 1.6059909260581056 4096 2048 384 12 96 2548 1920 128 384 1 4583595444 39326536 1 0 5 1 2 2 6 7618560 1474560 2949120 2705076 8985600 156 150 152 150 1940 18 9 18 11 31 0 0 0 0 0 +24 1783858988517443500 DEPTH 30 1 0.79834084825936669 0.4608177172061329 1 8 1 8 1 0 3198 119 2528 23803961 209280 1245.3968658447266 8.6766000000000005 2027.8610000000001 40320 20596 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2528 1920 128 384 1 4588193168 43924260 1 0 5 1 2 2 6 7618560 1474560 2949120 2705060 8985600 205 166 176 160 1821 28 8 10 20 53 0 0 0 0 1 +25 1783858990600391500 DEPTH 25 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 2206 84 2558 23803890 209280 1268.9670715332031 8.6272000000000002 2004.6432 40320 20724 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2558 1920 128 384 1 4592821492 48552584 1 0 5 1 2 2 6 7618560 1474560 2949120 2704996 8985600 193 150 162 155 1898 18 11 9 6 40 0 0 0 0 0 +26 1783858992644168400 DEPTH 39 1 0.79135914268268093 0.55451448040885853 1 9 1 9 0 0 1531 79 2582 23803913 209280 1225.227783203125 8.6209000000000007 1987.0030999999999 40320 22379 1 1 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2582 1920 128 384 1 4597474296 53205388 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 186 150 158 150 1938 13 12 11 5 37 0 0 0 0 0 +27 1783858994505157000 DEPTH 38 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 1933 82 2539 23803907 209280 1241.6108856201172 8.6622000000000003 1795.9254000000001 40320 20952 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2539 1920 128 384 1 4602083240 57814332 1 0 5 1 2 2 6 7618560 1474560 2949120 2705009 8985600 189 152 166 169 1863 16 1 9 3 53 0 0 0 0 0 +28 1783858996548705500 DEPTH 41 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 2030 125 2570 23803983 209280 1225.9847869873047 8.6461000000000006 1972.6791000000001 40320 21034 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2570 1920 128 384 1 4606723804 62454896 1 0 5 1 2 2 6 7618560 1474560 2949120 2705079 8985600 176 151 167 156 1920 24 9 30 4 58 0 0 0 0 0 +29 1783858998600984100 DEPTH 21 1 0.79159956614562654 0.56218057921635434 0 10 0 10 1 0 2344 86 2565 23803942 209280 1241.8257141113281 8.6467000000000009 1995.3879999999999 40320 21722 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2565 1920 128 384 1 4611359268 67090360 1 0 5 1 2 2 6 7618560 1474560 2949120 2705049 8985600 190 156 155 150 1914 20 11 12 15 28 0 0 0 0 1 +30 1783859001542288000 DEPTH 12 1 0.786322219637407 0.63287904599659284 3 8 3 8 0 0 1316 107 2623 23803940 209280 1241.0964050292969 8.793099999999999 2879.7091 40320 20129 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2623 1920 128 384 1 4616053972 4677136 1 0 5 1 2 2 6 7618560 1474560 2949120 2705045 8985600 190 165 174 164 1930 22 7 13 5 60 0 0 0 0 0 +31 1783859003698199100 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 18 2569 23742554 147840 1231.953369140625 8.6096000000000004 2092.4187000000002 40320 14595 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2569 1920 0 384 1 4620533260 9156424 1 0 5 1 2 2 6 7372800 1474560 2949120 2950859 8985600 174 150 168 246 1831 3 1 0 0 14 0 0 0 0 0 +32 1783859005847811000 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 80 2541 23742601 147840 1244.2568359375 8.6928999999999981 2069.5196000000001 40320 15285 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2541 1920 0 384 1 4624983988 13607152 1 0 5 1 2 2 6 7372800 1474560 2949120 2950905 8985600 217 155 182 219 1768 0 11 13 6 50 0 0 0 0 0 +33 1783859007865416100 DEPTH 8 1 0.80845066764600582 0.26575809199318562 2 5 2 5 1 0 2319 38 2538 23742696 147840 1269.2518768310547 8.6393000000000004 1939.277 40320 17837 1 0 0.030102119610821751 0.92220326466599645 4096 2048 384 12 96 2538 1920 0 384 1 4629431656 18054820 1 0 5 1 2 2 6 7372800 1474560 2949120 2951001 8985600 218 167 172 163 1818 2 0 0 3 33 0 0 0 0 1 +34 1783859010027737100 DEPTH 48 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 2299 59 2586 23742687 147840 1241.28564453125 9.0808999999999997 2098.4299000000001 40320 15133 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2586 1920 0 384 1 4633928284 22551448 1 0 5 1 2 2 6 7372800 1474560 2949120 2950993 8985600 176 155 161 183 1911 4 5 1 0 49 0 0 0 0 0 +35 1783859012187651900 DEPTH 20 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 1978 28 2596 23742604 147840 1234.1308288574219 8.6469000000000005 2104.1790000000001 40320 14826 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2596 1920 0 384 1 4638435112 27058276 1 0 5 1 2 2 6 7372800 1474560 2949120 2950910 8985600 188 150 159 175 1924 0 2 0 0 26 0 0 0 0 0 +36 1783859014321548300 DEPTH 9 1 0.80867512980503709 0.27342419080068137 1 6 1 6 0 0 2781 62 2549 23742631 147840 1259.0538635253906 9.2853999999999992 2072.6219999999998 40320 16332 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2549 1920 0 384 1 4642894000 31517164 1 0 5 1 2 2 6 7372800 1474560 2949120 2950934 8985600 188 192 165 175 1829 11 1 7 5 38 0 0 0 0 0 +37 1783859016448732600 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 3954 73 2570 23742664 147840 1238.7389526367188 9.162700000000001 2056.9045000000001 40320 15060 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2570 1920 0 384 1 4647374308 35997472 1 0 5 1 2 2 6 7372800 1474560 2949120 2950969 8985600 170 165 155 150 1930 4 8 8 7 46 0 0 0 0 0 +38 1783859018599678900 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 0 0 4038 65 2543 23742626 147840 1279.6702728271484 8.7210999999999999 2077.3449000000001 40320 15939 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2543 1920 0 384 1 4651827076 40450240 1 0 5 1 2 2 6 7372800 1474560 2949120 2950927 8985600 219 167 164 189 1804 6 0 6 2 51 0 0 0 0 0 +39 1783859020656915300 DEPTH 3 1 0.78703276669461864 0.64054514480408853 2 9 2 9 0 0 1054 71 2540 23803911 209280 1209.0538177490234 8.8917000000000002 1984.9606000000001 40320 22649 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2540 1920 128 384 1 4656437040 45060204 1 0 5 1 2 2 6 7618560 1474560 2949120 2705013 8985600 181 150 157 163 1889 14 5 3 6 43 0 0 0 0 0 +40 1783859022764956100 DEPTH 50 1 0.7871108823943197 0.64054514480408853 2 9 2 9 0 0 1001 69 2588 23803946 209280 1234.8815460205078 8.9099000000000004 2046.9211 40320 21421 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2588 1920 128 384 1 4661095964 49719128 1 0 5 1 2 2 6 7618560 1474560 2949120 2705043 8985600 162 162 151 150 1963 6 6 22 5 30 0 0 0 0 0 +41 1783859024671765600 DEPTH 55 1 0.78718883379379867 0.64054514480408853 2 9 2 9 0 0 1052 89 2525 23803974 209280 1278.4626922607422 8.7815000000000012 1844.7003999999999 40320 22674 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2525 1920 128 384 1 4665690628 54313792 1 0 5 1 2 2 6 7618560 1474560 2949120 2705076 8985600 223 159 163 163 1817 19 3 2 3 62 0 0 0 0 0 +42 1783859026964977100 DEPTH 26 1 0.78726662156105365 0.64821124361158422 1 10 1 10 0 0 1708 58 2573 23803899 209280 1272.7632293701172 8.9961000000000002 2217.9175 40320 21452 1 0 0.029664718146048187 1.2965658129918167 4096 2048 384 12 96 2573 1920 128 384 1 4670334252 58957416 1 0 5 1 2 2 6 7618560 1474560 2949120 2705005 8985600 159 150 156 154 1954 10 6 7 8 27 0 0 0 0 0 +43 1783859029276467600 DEPTH 40 1 0.78734424636006617 0.64821124361158422 1 10 1 10 0 0 1584 95 2593 23804026 209280 1333.9361419677734 8.7858000000000001 2241.5068999999999 40320 21839 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2593 1920 128 384 1 4674998276 63621440 1 0 5 1 2 2 6 7618560 1474560 2949120 2705132 8985600 153 150 150 156 1984 9 7 23 7 49 0 0 0 0 0 +44 1783859032421843500 DEPTH 10 1 0.78742170885083307 0.64821124361158422 1 10 1 10 0 0 1062 86 2563 23803890 209280 1329.2462158203125 8.7464999999999993 3084.7269000000001 40320 20962 1 0 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 2563 1920 128 384 1 4679631780 1146472 1 0 5 1 2 2 6 7618560 1474560 2949120 2704996 8985600 189 165 161 158 1890 5 13 12 7 49 0 0 0 0 0 +45 1783859034596326200 DEPTH 14 1 0.78749900968939857 0.65587734241908002 0 11 0 11 0 0 1560 116 2548 23803950 209280 1383.9955749511719 9.1486999999999998 2107.7782999999999 40320 19778 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2548 1920 128 384 1 4684249904 5764596 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 209 168 171 160 1840 20 9 7 3 77 0 0 0 0 0 +46 1783859036603971200 DEPTH 23 1 0.78340948286121825 0.74190800681430991 1 11 1 11 0 0 3365 58 2516 23803914 209280 1366.1502227783203 9.4559999999999995 1949.4897000000001 40320 20364 1 0 0.019300925759138894 0.7442759509966006 4096 2048 384 12 96 2516 1920 128 384 1 4688835388 10350080 1 0 5 1 2 2 6 7618560 1474560 2949120 2705018 8985600 195 152 152 165 1852 8 2 6 5 37 0 0 0 0 0 +47 1783859038925153100 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 17 2563 23742609 147840 1318.9632720947266 8.6274999999999995 2245.0050000000001 47040 18054 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2563 1920 0 384 1 4693308556 14823248 1 0 4 2 2 2 6 7127040 1720320 2949120 2950914 8985600 171 151 175 375 1691 0 1 2 0 14 0 0 0 0 0 +48 1783859041227038500 DEPTH 17 1 0.80955979760523455 0.28109028960817717 0 7 0 7 0 0 3600 69 2564 23742670 147840 1325.5641326904297 8.7141999999999999 2229.7471999999998 40320 15516 1 1 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2564 1920 0 384 1 4697782744 19297436 1 0 5 1 2 2 6 7372800 1474560 2949120 2950977 8985600 174 187 150 159 1894 0 13 10 0 45 0 0 0 0 0 +49 1783859043510513900 DEPTH 52 1 0.7946968774620794 0.36712095400340705 1 7 1 7 0 0 1981 49 2563 23742705 147840 1369.5733795166016 8.7332999999999998 2223.5985000000001 40320 15295 1 0 6.7193911225549259e-05 2.0137133495363413 4096 2048 384 12 96 2563 1920 0 384 1 4702255912 23770604 1 0 5 1 2 2 6 7372800 1474560 2949120 2951010 8985600 218 150 185 195 1815 2 3 3 3 38 0 0 0 0 0 +50 1783859045696445500 DEPTH 31 1 0.7947171880220667 0.3594548551959113 2 6 2 6 0 0 2411 53 2558 23742617 147840 1288.7142333984375 8.7180999999999997 2122.4070000000002 40320 15356 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2558 1920 0 384 1 4706723980 28238672 1 0 5 1 2 2 6 7372800 1474560 2949120 2950922 8985600 173 153 183 201 1848 2 9 11 2 29 0 0 0 0 0 +51 1783859047975054100 DEPTH 11 1 0.79477882988366344 0.37478705281090291 0 8 0 8 1 0 2206 63 2566 23742560 147840 1287.6052551269531 8.8070000000000004 2214.8258999999998 40320 15182 1 1 0 0.75396861721633068 4096 2048 384 12 96 2566 1920 0 384 1 4711200208 32714900 1 0 5 1 2 2 6 7372800 1474560 2949120 2950864 8985600 217 156 164 152 1877 1 4 4 0 53 0 0 0 0 2 +52 1783859050047357100 DEPTH 16 1 0.79484980515242754 0.3594548551959113 2 6 2 6 0 0 3021 81 2544 23742633 147840 1392.0767974853516 9.0391999999999992 2007.8526999999999 40320 17273 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2544 1920 0 384 1 4715653996 37168688 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 227 173 162 187 1795 2 0 15 12 52 0 0 0 0 0 +53 1783859052450494300 DEPTH 33 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 3214 80 2542 23742602 147840 1372.295166015625 9.9724000000000004 2323.1743000000001 40320 15558 1 0 0.00022909943434649548 0.33853363476221826 4096 2048 384 12 96 2542 1920 0 384 1 4720105744 41620436 1 0 5 1 2 2 6 7372800 1474560 2949120 2950907 8985600 211 161 212 193 1765 1 3 6 7 63 0 0 0 0 0 +54 1783859054783734800 DEPTH 1 1 0.79499391548470288 0.36712095400340705 1 7 1 7 0 0 2785 65 2593 23742661 147840 1354.0310974121094 8.6691000000000003 2265.7849999999999 40320 15416 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2593 1920 0 384 1 4724609512 46124204 1 0 5 1 2 2 6 7372800 1474560 2949120 2950967 8985600 170 155 162 188 1918 3 2 10 3 47 0 0 0 0 0 +55 1783859057227696600 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 19 2562 23742679 147840 1325.1431427001953 9.2876000000000012 2441.9830000000002 80640 20228 1 0 0 0.0063601076835715798 4096 2048 384 12 96 2562 1920 0 384 1 4729081660 50596352 1 0 4 2 2 2 6 5898240 2949120 2949120 2950980 8985600 158 169 182 507 1546 0 0 0 0 19 0 0 0 0 0 +56 1783859059624792600 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 63 2552 23742704 147840 1352.3896484375 9.0191999999999997 2320.5230999999999 47040 19209 1 0 0.0054819751749248715 0.88609877647480217 4096 2048 384 12 96 2552 1920 0 384 1 4733543608 55058300 1 0 4 2 2 2 6 7127040 1720320 2949120 2951009 8985600 317 162 201 403 1469 0 7 3 1 52 0 0 0 0 0 +57 1783859062031295700 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 1975 78 2608 23742634 147840 1343.0558776855469 9.248800000000001 2328.0459000000001 40320 16197 1 0 0.025565153044813767 0.87258998270648613 4096 2048 384 12 96 2608 1920 0 384 1 4738062676 59577368 1 0 5 1 2 2 6 7372800 1474560 2949120 2950934 8985600 182 150 173 173 1930 1 11 7 0 59 0 0 0 0 0 +58 1783859064306629600 DEPTH 53 1 0.79528037279558439 0.37478705281090291 0 8 0 8 0 0 4096 94 2530 23742635 147840 1327.4593048095703 9.0562000000000005 2206.6354000000001 40320 16618 1 0 0 0.2221103696426992 4096 2048 384 12 96 2530 1920 0 384 1 4742502184 64016876 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 206 166 156 199 1803 2 0 22 19 51 0 0 0 0 0 +59 1783859067909139300 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 0 0 2596 48 2569 23742645 147840 1363.0948791503906 8.7195 3541.1104 40320 15448 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2569 1920 0 384 1 4746981552 1387932 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 172 154 160 156 1927 1 0 6 2 39 0 0 0 0 0 +60 1783859069988228000 DEPTH 49 1 0.78801278670684283 0.4454855195911413 3 6 3 6 0 0 1371 79 2533 23742628 147840 1343.5619659423828 8.7396999999999991 1934.1495 40320 16056 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2533 1920 0 384 1 4751424120 5830500 1 0 5 1 2 2 6 7372800 1474560 2949120 2950927 8985600 187 160 168 157 1861 4 1 0 11 63 0 0 0 0 0 +61 1783859072268175700 DEPTH 30 1 0.78576125310911737 0.4608177172061329 1 8 1 8 0 0 3221 91 2541 23742645 147840 1356.3903961181641 8.7746999999999993 2206.4641999999999 40320 15148 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2541 1920 0 384 1 4755874848 10281228 1 0 5 1 2 2 6 7372800 1474560 2949120 2950948 8985600 245 162 249 188 1697 7 14 11 2 57 0 0 0 0 0 +62 1783859074568535000 DEPTH 2 1 0.78560155329808956 0.45315161839863699 2 7 2 7 0 0 3224 88 2572 23742646 147840 1354.9834442138672 8.8882000000000012 2226.9142999999999 40320 15775 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2572 1920 0 384 1 4760357196 14763576 1 0 5 1 2 2 6 7372800 1474560 2949120 2950949 8985600 203 165 173 269 1762 2 0 13 2 71 0 0 0 0 0 +63 1783859074925354900 REFRESH 46 0 0.57250035561632728 0.37478705281090291 0 8 0 8 0 0 2610 32 407 3988966 56640 238.89920043945312 1.4472 354.96230000000003 6720 4810 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 407 320 0 64 0 4761080560 15486940 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 36 25 36 43 267 3 0 8 5 16 0 0 0 0 0 +64 1783859075261418500 REFRESH 53 0 0.59256760687036314 0.37478705281090291 0 8 0 8 0 0 4096 85 406 3988950 56640 239.66925048828125 1.4341999999999999 334.34410000000003 6720 4776 0 0 0 0.2221103696426992 4096 2048 64 1 16 406 320 0 64 0 4761802904 16209284 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 34 25 35 31 281 3 0 3 3 76 0 0 0 0 0 +65 1783859075652498100 REFRESH 3 0 0.77327611138625296 0.64054514480408853 2 9 2 9 0 0 1063 33 409 3988967 56640 236.7581787109375 1.4466000000000001 325.50279999999998 6720 4952 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 409 320 0 64 0 4762528308 16934688 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 27 25 40 30 287 2 0 1 1 29 0 0 0 0 0 +66 1783859076066465000 REFRESH 45 0 0.78584636234053939 0.45315161839863699 2 7 2 7 0 0 2023 39 414 3988925 56640 238.30528259277344 1.4412 346.37049999999999 6720 4943 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 414 320 0 64 0 4763258812 17665192 1 0 5 1 2 2 6 1228800 245760 491520 491645 1497600 28 25 31 30 300 0 0 4 2 33 0 0 0 0 0 +67 1783859076480017100 REFRESH 43 0 0.78166000994930107 0.8279386712095399 2 11 2 11 0 0 754 25 417 4050301 118080 238.66572570800781 1.4672000000000001 349.61529999999999 6720 5032 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 417 320 128 64 0 4764152632 18559012 1 0 6 1 2 1 6 1474560 245760 491520 245816 1497600 25 25 25 25 317 3 1 0 2 19 0 0 0 0 0 +68 1783859076884419200 REFRESH 6 0 0.77900649248477594 0.91396933560476989 3 11 3 11 0 0 376 4 419 4050315 118080 238.07487487792969 1.4598 337.81790000000001 6720 5054 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 419 320 128 64 0 4765048492 19454872 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 28 26 25 26 314 0 0 0 0 4 0 0 0 0 0 +69 1783859077287663400 REFRESH 34 0 0.7818073734587665 0.8356047700170357 1 12 1 12 0 0 686 8 420 4050315 118080 239.16441345214844 1.4519 342.67500000000001 6720 5144 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 420 320 128 64 0 4765945372 20351752 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 26 25 25 25 319 0 0 0 1 7 0 0 0 0 0 +70 1783859077614555800 REFRESH 49 0 0.62529934828470424 0.4454855195911413 3 6 3 6 0 0 1379 29 399 3988977 56640 239.07737731933594 1.4560999999999999 325.08659999999998 6720 4774 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 399 320 0 64 0 4766660576 21066956 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 32 25 30 33 279 1 0 1 3 24 0 0 0 0 0 +71 1783859078029981900 REFRESH 7 0 0.78195415116745248 0.8356047700170357 1 12 1 12 0 0 835 17 406 4050330 118080 241.4888916015625 1.4584999999999999 351.80579999999998 6720 4989 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 406 320 128 64 0 4767543176 21949556 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 28 25 26 26 301 0 0 0 0 17 0 0 0 0 0 +72 1783859078414371200 REFRESH 23 0 0.7695982686454732 0.74190800681430991 1 11 1 11 0 0 3368 11 408 3988950 56640 242.09715270996094 1.4355 324.13080000000002 6720 4888 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 408 320 0 64 0 4768267560 22673940 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 29 25 34 35 285 0 0 1 0 10 0 0 0 0 0 +73 1783859078809766700 REFRESH 8 0 0.79817496889271189 0.26575809199318562 2 5 2 5 0 0 2325 16 414 3988973 56640 237.85267639160156 1.4731000000000001 331.02550000000002 6720 4774 0 0 0.030102119610821751 0.92220326466599645 4096 2048 64 1 16 414 320 0 64 0 4768998064 23404444 1 0 5 1 2 2 6 1228800 245760 491520 491693 1497600 38 25 27 28 296 0 0 0 0 16 0 0 0 0 0 +74 1783859079159717100 REFRESH 1 0 0.73323277661568209 0.36712095400340705 1 7 1 7 0 0 2807 69 411 3988961 56640 241.57286071777344 1.4621 348.31819999999999 6720 4789 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 411 320 0 64 0 4769725508 24131888 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 33 25 37 36 280 7 1 6 7 48 0 0 0 0 0 +75 1783859079605184600 REFRESH 25 0 0.78647236051016489 0.4608177172061329 1 8 1 8 0 0 2214 31 421 3988956 56640 240.50892639160156 1.464 376.19990000000001 6720 5049 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 421 320 0 64 0 4770463152 24869532 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 27 25 30 31 308 1 0 4 2 24 0 0 0 0 0 +76 1783859080049490100 REFRESH 28 0 0.7823185619309535 0.8279386712095399 2 11 2 11 0 0 616 13 405 4050318 118080 227.83282470703125 1.4614 367.01530000000002 6720 4872 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 405 320 128 64 0 4771344732 25751112 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 26 27 26 25 301 1 1 0 0 11 0 0 0 0 0 +77 1783859080409138000 REFRESH 44 0 0.73342977056782099 0.36712095400340705 1 7 1 7 1 0 1997 41 429 3988927 56640 223.74604797363281 1.5115000000000001 357.52420000000001 6720 4848 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 429 320 0 64 0 4772090536 26496916 1 0 5 1 2 2 6 1228800 245760 491520 491646 1497600 39 25 32 27 306 4 0 7 5 25 0 0 0 0 1 +78 1783859080813647600 REFRESH 50 0 0.77417856374028915 0.64054514480408853 2 9 2 9 0 0 1005 13 426 3988952 56640 240.80076599121094 1.4459 338.53960000000001 6720 4931 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 426 320 0 64 0 4772833280 27239660 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 25 39 309 0 0 0 2 11 0 0 0 0 0 +79 1783859081231436100 REFRESH 27 0 0.77980822039842057 0.93696763202725719 0 14 0 14 0 0 858 16 410 4050324 118080 239.19923400878906 1.5853999999999999 344.83089999999999 6720 4989 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 410 320 128 64 0 4773719960 28126340 1 0 6 1 2 1 6 1474560 245760 491520 245843 1497600 31 25 25 25 304 2 0 0 0 14 0 0 0 0 0 +80 1783859081630379200 REFRESH 5 0 0.78260752089567209 0.8279386712095399 2 11 2 11 0 0 824 24 413 4050322 118080 236.837890625 1.4567000000000001 332.67129999999997 6720 5105 0 0 0.0052194513408313397 0.4590179950823875 4096 2048 64 1 16 413 320 128 64 0 4774609700 29016080 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 26 25 25 26 311 3 0 0 0 21 0 0 0 0 0 +81 1783859082030164500 REFRESH 24 0 0.7776794082413675 1 4 11 4 11 0 0 490 12 407 4050328 118080 239.5955810546875 1.4501999999999999 337.09140000000002 6720 4996 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 407 320 128 64 0 4775493320 29899700 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 29 28 25 25 300 2 0 0 0 10 0 0 0 0 0 +82 1783859082439858100 REFRESH 32 0 0.78695162448079747 0.4608177172061329 1 8 1 8 0 0 2760 49 418 3988952 56640 239.214599609375 1.4538 339.75400000000002 6720 4954 0 0 0.00028269938399440856 1.6059909260581056 4096 2048 64 1 16 418 320 0 64 0 4776227904 30634284 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 32 25 29 27 305 1 0 1 0 47 0 0 0 0 0 +83 1783859082834620500 REFRESH 16 0 0.78382030277004699 0.3594548551959113 2 6 2 6 0 0 3041 43 413 3988956 56640 240.068603515625 1.4339999999999999 333.3879 6720 4816 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 413 320 0 64 0 4776957388 31363768 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 29 25 45 26 288 2 0 7 0 34 0 0 0 0 0 +84 1783859083283012000 REFRESH 17 0 0.79888494912788077 0.28109028960817717 0 7 0 7 0 0 3615 28 411 3988958 56640 237.48095703125 1.4459 375.67619999999999 6720 4712 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 411 320 0 64 0 4777684832 32091212 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 31 26 29 39 286 7 0 2 4 15 0 0 0 0 0 +85 1783859083709466600 REFRESH 4 0 0.78296556392585404 0.8356047700170357 1 12 1 12 0 0 269 12 421 4050313 118080 237.62431335449219 1.4624999999999999 360.23079999999999 6720 5060 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 421 320 128 64 0 4778582732 32989112 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 29 28 25 25 314 1 0 1 0 10 0 0 0 0 0 +86 1783859084127017800 REFRESH 58 0 0.78030948430565417 0.92163543441226559 2 12 2 12 0 0 518 8 411 4050333 118080 240.15461730957031 1.4742999999999999 353.12099999999998 6720 5062 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 411 320 128 64 0 4779470432 33876812 1 0 6 1 2 1 6 1474560 245760 491520 245852 1497600 30 25 25 25 306 2 0 0 0 6 0 0 0 0 0 +87 1783859084532140400 REFRESH 15 0 0.78038054012119396 0.91396933560476989 3 11 3 11 0 0 316 8 412 4050301 118080 239.0118408203125 1.5233000000000001 340.04079999999999 6720 5145 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 128 64 0 4780359152 34765532 1 0 6 1 2 1 6 1474560 245760 491520 245819 1497600 30 25 25 25 307 0 0 0 0 8 0 0 0 0 0 +88 1783859085021868600 REFRESH 18 0 0.78045145915724146 0.9293015332197615 1 13 1 13 0 0 438 17 416 4050298 118080 240.97383117675781 1.4719 363.94310000000002 6720 4916 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 416 320 128 64 0 4781251952 35658332 1 0 6 1 2 1 6 1474560 245760 491520 245817 1497600 29 25 25 25 312 2 0 0 0 15 0 0 0 0 0 +89 1783859085449334100 REFRESH 13 0 0.79920631346094329 0.27342419080068137 1 6 1 6 0 0 4000 88 411 3988954 56640 237.07955932617188 1.8752 343.1309 6720 4784 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 411 320 0 64 0 4781979396 36385776 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 34 25 34 30 288 12 0 14 5 57 0 0 0 0 0 +90 1783859085786030900 REFRESH 30 0 0.77451102195615718 0.4608177172061329 1 8 1 8 0 0 3244 55 416 3988954 56640 238.69747924804688 1.4377 335.12200000000001 6720 4768 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 416 320 0 64 0 4782711940 37118320 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 36 25 36 29 290 4 0 10 1 40 0 0 0 0 0 +91 1783859086216379000 REFRESH 54 0 0.78757569153741214 0.4608177172061329 1 8 1 8 0 0 1127 26 417 3988951 56640 238.01651000976562 1.5072000000000001 366.10109999999997 6720 4987 0 0 0.00048495688528533737 1.0732299026005363 4096 2048 64 1 16 417 320 0 64 0 4783445504 37851884 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 28 25 33 27 304 2 0 5 5 14 0 0 0 0 0 +92 1783859086615951000 REFRESH 12 0 0.77512508971082317 0.63287904599659284 3 8 3 8 0 0 1338 44 426 3988950 56640 236.3873291015625 1.4340999999999999 326.43360000000001 6720 5052 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 4784188248 38594628 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 27 25 46 25 303 0 0 2 2 40 0 0 0 0 0 +93 1783859087007052200 REFRESH 29 0 0.78353129309718905 0.82027257240204421 3 10 3 10 0 0 1100 6 421 4050319 118080 235.98080444335938 1.462 327.52030000000002 6720 5022 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 421 320 128 64 0 4785086148 39492528 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 27 26 26 26 316 1 1 0 1 3 0 0 0 0 0 +94 1783859087401246300 REFRESH 14 0 0.7752582390019026 0.65587734241908002 0 11 0 11 0 0 1569 31 417 3988963 56640 240.03276062011719 1.4413 328.68099999999998 6720 4968 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 417 320 0 64 0 4785819712 40226092 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 28 28 309 0 0 0 0 31 0 0 0 0 0 +95 1783859087788502600 REFRESH 47 0 0.78367137773437756 0.8279386712095399 2 11 2 11 0 0 641 15 412 4050320 118080 222.91456604003906 1.498 326.94080000000002 6720 5076 0 0 0.013860617513774254 1.4674127163907342 4096 2048 64 1 16 412 320 128 64 0 4786708432 41114812 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 31 26 25 25 305 2 0 0 0 13 0 0 0 0 0 +96 1783859088182141500 REFRESH 48 0 0.79965107825710424 0.26575809199318562 2 5 2 5 0 0 2312 30 418 3988957 56640 222.73330688476562 1.4393 333.39729999999997 6720 4785 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 418 320 0 64 0 4787443016 41849396 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 29 25 32 31 301 2 0 4 3 21 0 0 0 0 0 +97 1783859088563001600 REFRESH 51 0 0.78108365850898354 0.91396933560476989 3 11 3 11 0 0 524 12 408 4050319 118080 222.5848388671875 1.4540999999999999 320.5838 6720 4998 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 408 320 128 64 0 4788327656 42734036 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 29 27 25 25 302 2 0 0 0 10 0 0 0 0 0 +98 1783859088929013900 REFRESH 0 0 0.78388051002816173 0.8279386712095399 2 11 2 11 0 0 839 20 419 4050311 118080 221.33247375488281 1.4795 310.84780000000001 6720 5058 0 0 0.00014150014245183789 2.3445784226175679 4096 2048 64 1 16 419 320 128 64 0 4789223516 43629896 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 30 28 25 25 311 4 0 0 0 16 0 0 0 0 0 +99 1783859089298972000 REFRESH 42 0 1.0037017104619397 0 0 4 0 4 1 0 4096 23 421 3988948 56640 222.37490844726562 1.4575 368.36250000000001 13440 8130 0 0 0 0.0063610561623021686 4096 2048 64 1 16 421 320 0 64 0 4789961160 44367540 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 36 25 44 53 263 1 1 4 1 16 0 0 0 0 1 +100 1783859089702732300 REFRESH 40 0 0.77565466723825949 0.64821124361158422 1 10 1 10 0 0 1594 22 418 3988954 56640 221.20550537109375 1.5728 343.4819 6720 4958 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 418 320 0 64 0 4790695744 45102124 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 25 26 314 0 0 2 7 13 0 0 0 0 0 +101 1783859090084026600 REFRESH 26 0 0.77572030306910267 0.64821124361158422 1 10 1 10 0 0 1720 36 415 3988940 56640 222.43942260742188 1.4520999999999999 319.45740000000001 6720 4953 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 415 320 0 64 0 4791427268 45833648 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 27 25 31 30 302 2 0 1 5 28 0 0 0 0 0 +102 1783859090486862400 REFRESH 36 0 0.78415751668689226 0.82027257240204421 3 10 3 10 0 0 1138 46 415 4050322 118080 222.51930236816406 1.4731000000000001 320.08800000000002 6720 5070 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 415 320 128 64 0 4792319048 46725428 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 27 25 25 311 2 1 1 0 42 0 0 0 0 0 +103 1783859090870117700 REFRESH 9 0 0.80008997894659106 0.27342419080068137 1 6 1 6 0 0 2795 42 416 3988955 56640 223.17465209960938 1.4397 317.91649999999998 6720 4762 0 0 0.00034298550913911891 0.32865072374265419 4096 2048 64 1 16 416 320 0 64 0 4793051592 47457972 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 29 25 28 28 306 2 0 1 2 37 0 0 0 0 0 +104 1783859091242829000 REFRESH 55 0 0.77591647295457078 0.64054514480408853 2 9 2 9 0 0 1054 15 404 3988953 56640 224.84378051757812 1.4353 305.0616 6720 4908 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 404 320 0 64 0 4793771896 48178276 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 26 27 298 0 0 0 0 15 0 0 0 0 0 +105 1783859091629826100 REFRESH 57 0 0.80021432291114858 0.27342419080068137 1 6 1 6 0 0 4054 34 408 3988960 56640 223.30880737304688 1.4513 316.77730000000003 6720 4810 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 408 320 0 64 0 4794496280 48902660 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 35 25 30 31 287 0 0 0 2 32 0 0 0 0 0 +106 1783859091950487500 REFRESH 2 0 0.77530966021322745 0.45315161839863699 2 7 2 7 0 0 3256 64 416 3988955 56640 222.77655029296875 1.4359 318.93209999999999 6720 4855 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 416 320 0 64 0 4795228824 49635204 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 38 25 26 32 295 1 0 3 6 54 0 0 0 0 0 +107 1783859092384014900 REFRESH 38 0 0.78146868860949581 0.55451448040885853 1 9 1 9 0 0 1945 36 411 3988956 56640 222.92582702636719 1.4357 303.5043 6720 5057 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 411 320 0 64 0 4795956268 50362648 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 28 26 30 30 297 0 0 1 0 35 0 0 0 0 0 +108 1783859092773445900 REFRESH 35 0 0.78456915311389819 0.8279386712095399 2 11 2 11 0 0 1069 22 408 4050305 118080 223.09580993652344 1.4632000000000001 324.1259 6720 5089 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 128 64 0 4796840908 51247288 1 0 6 1 2 1 6 1474560 245760 491520 245823 1497600 29 27 25 26 301 1 1 0 0 20 0 0 0 0 0 +109 1783859093191492500 REFRESH 22 0 0.78191004050794322 0.91396933560476989 3 11 3 11 0 0 470 20 414 4050305 118080 224.29592895507812 1.4588000000000001 353.23590000000002 6720 4801 0 0 0.0083644257937872685 0.6977634741384231 4096 2048 64 1 16 414 320 128 64 0 4797731668 52138048 1 0 6 1 2 1 6 1474560 245760 491520 245822 1497600 28 25 26 25 310 1 0 0 0 19 0 0 0 0 0 +110 1783859093583276300 REFRESH 37 0 0.78470534716210383 0.8356047700170357 1 12 1 12 0 0 946 27 409 4050333 118080 222.27769470214844 1.4709000000000001 323.4803 6720 5047 0 0 0.010438987529659072 0.54524856454933346 4096 2048 64 1 16 409 320 128 64 0 4798617328 53023708 1 0 6 1 2 1 6 1474560 245760 491520 245852 1497600 26 25 25 26 307 2 0 1 0 24 0 0 0 0 0 +111 1783859093986981200 REFRESH 41 0 0.78172709950697916 0.55451448040885853 1 9 1 9 0 0 2043 39 411 3988927 56640 221.45330810546875 1.4453 322.4649 6720 5005 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 411 320 0 64 0 4799344772 53751152 1 0 5 1 2 2 6 1228800 245760 491520 491646 1497600 27 25 36 28 295 4 1 6 1 27 0 0 0 0 0 +112 1783859094451574800 REFRESH 31 0 0.7856567792296294 0.3594548551959113 2 6 2 6 0 0 2450 73 411 3988944 56640 221.62535095214844 1.4581 329.97899999999998 6720 4749 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 411 320 0 64 0 4800072216 54478596 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 32 25 31 29 294 7 0 7 9 50 0 0 0 0 0 +113 1783859094853304700 REFRESH 33 0 0.78570709971666886 0.36712095400340705 1 7 1 7 0 0 3230 38 417 3988933 56640 223.59858703613281 1.4912000000000001 333.5301 6720 4792 0 0 0.00022909943434649548 0.33853363476221826 4096 2048 64 1 16 417 320 0 64 0 4800805780 55212160 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 27 25 58 29 278 0 0 1 1 36 0 0 0 0 0 +114 1783859095294145300 REFRESH 20 0 0.80076818619694479 0.26575809199318562 2 5 2 5 0 0 1980 11 427 3988957 56640 221.80368041992188 1.4391 382.48790000000002 6720 4770 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 427 320 0 64 0 4801549544 55955924 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 31 25 26 47 298 0 1 2 0 8 0 0 0 0 0 +115 1783859095694693100 REFRESH 52 0 0.78588707836022031 0.36712095400340705 1 7 1 7 0 0 1997 43 419 3988970 56640 221.4072265625 1.4351 330.89120000000003 6720 4770 0 0 6.7193911225549259e-05 2.0137133495363413 4096 2048 64 1 16 419 320 0 64 0 4802285148 56691528 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 35 25 59 35 265 3 0 7 4 29 0 0 0 0 0 +116 1783859096118488200 REFRESH 11 0 0.78589396584996229 0.37478705281090291 0 8 0 8 1 0 2224 36 412 3988971 56640 221.96736145019531 1.4341999999999999 359.6782 6720 4718 0 0 0 0.75395348249379179 4096 2048 64 1 16 412 320 0 64 0 4803013612 57419992 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 30 25 33 31 293 3 0 2 5 26 0 0 0 0 1 +117 1783859096503386200 REFRESH 10 0 0.77675401545359168 0.64821124361158422 1 10 1 10 0 0 1073 33 415 3988941 56640 222.66572570800781 1.4538 306.6986 6720 4935 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 415 320 0 64 0 4803745136 58151516 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 31 25 26 28 305 3 0 1 5 24 0 0 0 0 0 +118 1783859096932612500 REFRESH 56 0 0.81465511712489769 0.17206132879045993 2 4 2 4 0 0 4096 64 412 3988962 56640 222.97702026367188 1.4487000000000001 356.65480000000002 13440 8593 0 0 0.0054819751749248715 0.88609877647480217 4096 2048 64 1 16 412 320 0 64 0 4804473600 58879980 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 50 26 36 37 263 3 1 7 8 45 0 0 0 0 0 +119 1783859097316361600 REFRESH 19 0 0.78531204754622685 0.8279386712095399 2 11 2 11 0 0 835 16 414 4050314 118080 223.00364685058594 1.4432 318.90699999999998 6720 5034 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 414 320 128 64 0 4805364360 59770740 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 27 25 25 25 312 3 0 0 0 13 0 0 0 0 0 +120 1783859097737665000 REFRESH 39 0 0.78230161134532772 0.55451448040885853 1 9 1 9 0 0 1538 14 421 3988950 56640 222.17738342285156 1.4521999999999999 354.87599999999998 6720 4975 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 421 320 0 64 0 4806102004 60508384 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 28 25 25 32 311 2 0 7 0 5 0 0 0 0 0 +121 1783859098188454800 REFRESH 21 0 0.78237342597487392 0.56218057921635434 0 10 0 10 0 0 2367 52 408 3988950 56640 221.30073547363281 1.4372 317.6293 6720 4933 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 408 320 0 64 0 4806826388 61232768 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 31 25 34 34 284 3 0 2 3 44 0 0 0 0 0 +122 1783859100448999700 DEPTH 42 1 0.97626241181918738 0 0 4 0 4 0 0 4096 14 2565 23742738 147840 1282.8085327148438 8.636000000000001 2136.7318 80640 40478 1 0 0 0.0063610561623021686 4096 2048 384 12 96 2565 1920 0 384 1 4811301596 65707976 1 0 4 2 2 2 6 5898240 2949120 2949120 2951041 8985600 159 150 180 216 1860 0 0 0 0 14 0 0 0 0 0 +123 1783859103657384000 DEPTH 8 1 0.78995113516975557 0.26575809199318562 2 5 2 5 0 0 2329 50 2551 23742729 147840 1296.1486053466797 8.6478999999999999 3142.1844000000001 53760 32936 1 0 0.030102119610821751 0.92220326466599645 4096 2048 384 12 96 2551 1920 0 384 1 4815762604 3060280 1 0 4 2 2 2 6 6881280 1966080 2949120 2951034 8985600 165 150 158 156 1922 5 0 0 0 45 0 0 0 0 0 +124 1783859105960978500 DEPTH 48 1 0.79000125987690195 0.26575809199318562 2 5 2 5 0 0 2323 42 2577 23742715 147840 1367.1198883056641 9.0186000000000011 2236.2907 53760 32667 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2577 1920 0 384 1 4820250052 7547728 1 0 4 2 2 2 6 6881280 1966080 2949120 2951020 8985600 161 158 150 156 1952 1 0 4 5 32 0 0 0 0 0 +125 1783859108197311300 DEPTH 13 1 0.79005858550611718 0.27342419080068137 1 6 1 6 0 0 4024 93 2570 23742654 147840 1380.0560913085938 8.6881000000000004 2234.3154 73920 40460 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2570 1920 0 384 1 4824730360 12028036 1 0 4 2 2 2 6 6144000 2703360 2949120 2950960 8985600 158 150 155 150 1957 26 3 5 10 49 0 0 0 0 0 +126 1783859110544781000 DEPTH 17 1 0.79011580786937752 0.28109028960817717 0 7 0 7 0 0 3646 69 2559 23742643 147840 1344.4966583251953 8.9247999999999994 2266.9701 73920 40481 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2559 1920 0 384 1 4829199448 16497124 1 0 4 2 2 2 6 6144000 2703360 2949120 2950945 8985600 162 156 150 156 1935 6 4 4 1 54 0 0 0 0 0 +127 1783859112638121300 DEPTH 54 1 0.77656788052480896 0.4608177172061329 1 8 1 8 1 0 1140 44 2552 23742170 147840 1283.4631652832031 8.6992000000000012 2091.5338000000002 73920 45094 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2552 1920 0 384 1 4833661396 20959072 1 0 4 2 2 2 6 6881280 2703360 2949120 2213196 8985600 150 150 159 166 1927 0 0 2 8 34 0 0 0 0 1 +128 1783859114925144700 DEPTH 45 1 0.7766118021794014 0.45315161839863699 2 7 2 7 0 0 2028 44 2552 23742744 147840 1341.2825012207031 8.7330000000000005 2145.9996000000001 40320 23161 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2552 1920 0 384 1 4838123344 25421020 1 0 5 1 2 2 6 7372800 1474560 2949120 2951051 8985600 151 150 168 162 1921 1 0 8 6 29 0 0 0 0 0 +129 1783859117352251000 DEPTH 32 1 0.77667124766297002 0.4608177172061329 1 8 1 8 1 0 2776 58 2550 23742629 147840 1371.0285034179688 8.7120999999999995 2215.0497 40320 23070 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2550 1920 0 384 1 4842583252 29880928 1 0 5 1 2 2 6 7372800 1474560 2949120 2950933 8985600 154 150 150 150 1946 2 0 9 6 41 0 0 0 0 1 +130 1783859119733630400 DEPTH 42 1 0.81883300884799637 0 0 4 0 4 0 0 4096 13 2562 23735548 140160 1366.3069915771484 8.8476999999999997 2311.1835999999998 94080 42189 1 0 0 0.0063610561623021686 4096 2048 384 12 96 2562 1920 0 384 1 4847055400 34353076 1 0 4 3 2 2 5 5898240 3440640 2949120 2951007 8486400 162 150 185 385 1680 0 0 0 0 13 0 0 0 0 0 +131 1783859121961184800 DEPTH 9 1 0.79040038322826556 0.27342419080068137 1 6 1 6 0 0 2823 81 2538 23742609 147840 1315.4897918701172 8.8735999999999997 2154.6581999999999 53760 32668 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2538 1920 0 384 1 4851503068 38800744 1 0 4 2 2 2 6 6881280 1966080 2949120 2950915 8985600 162 150 168 165 1893 7 7 2 5 60 0 0 0 0 0 +132 1783859124153178800 DEPTH 57 1 0.79045699348923959 0.27342419080068137 1 6 1 6 0 0 4063 51 2543 23742709 147840 1293.0887603759766 8.6219999999999999 2114.3159999999998 53760 32624 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2543 1920 0 384 1 4855955836 43253512 1 0 4 2 2 2 6 6881280 1966080 2949120 2951013 8985600 166 159 150 173 1895 3 0 1 2 45 0 0 0 0 0 +133 1783859126319691300 DEPTH 25 1 0.776907969612886 0.4608177172061329 1 8 1 8 0 0 2226 62 2549 23742647 147840 1292.6566467285156 8.7891999999999992 2096.8957999999998 40320 22886 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2549 1920 0 384 1 4860414724 47712400 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 157 150 160 161 1921 6 0 14 4 38 0 0 0 0 0 +134 1783859128558739200 DEPTH 44 1 0.77560800176524747 0.36712095400340705 1 7 1 7 0 0 2024 94 2611 23742638 147840 1295.6560363769531 8.8169000000000004 2167.5653000000002 73920 40798 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2611 1920 0 384 1 4864936852 52234528 1 0 4 2 2 2 6 6144000 2703360 2949120 2950943 8985600 172 154 178 152 1955 6 9 15 10 54 0 0 0 0 0 +135 1783859130710808300 DEPTH 16 1 0.775626220948058 0.3594548551959113 2 6 2 6 0 0 3053 78 2545 23742691 147840 1375.5074768066406 8.8862000000000005 2020.7977000000001 53760 32641 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2545 1920 0 384 1 4869391660 56689336 1 0 4 2 2 2 6 6881280 1966080 2949120 2950998 8985600 159 152 157 150 1927 6 0 16 0 56 0 0 0 0 0 +136 1783859132978506000 DEPTH 1 1 0.77568243014431948 0.36712095400340705 1 7 1 7 0 0 2822 74 2591 23742745 147840 1361.7971343994141 8.7837999999999994 2204.1507000000001 73920 40517 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2591 1920 0 384 1 4873893388 61191064 1 0 4 2 2 2 6 6144000 2703360 2949120 2951052 8985600 154 150 170 174 1943 3 5 2 9 55 0 0 0 0 0 +137 1783859135230384300 DEPTH 53 1 0.77573853993353192 0.37478705281090291 0 8 0 8 0 0 4096 84 2515 23742668 147840 1379.0269470214844 8.9472999999999985 2186.0252999999998 73920 40673 1 0 0 0.2221103696426992 4096 2048 384 12 96 2515 1920 0 384 1 4878317596 65615272 1 0 4 2 2 2 6 6144000 2703360 2949120 2950975 8985600 167 150 150 162 1886 2 4 8 7 63 0 0 0 0 0 +138 1783859138763908700 DEPTH 42 1 0.81209098259886692 0 0 4 0 4 0 0 4096 19 2574 23720804 125760 1366.2720031738281 8.9315999999999995 3531.5527000000002 120960 41985 1 0 0 0.0063610561623021686 4096 2048 384 12 96 2574 1920 0 384 1 4882802064 2991020 1 0 4 3 2 2 5 5898240 4423680 2949120 2950977 7488000 152 150 168 1103 1001 0 0 0 0 19 0 0 0 0 0 +139 1783859141104952600 DEPTH 20 1 0.79085046264975012 0.26575809199318562 2 5 2 5 0 0 1993 37 2595 23742648 147840 1375.5668640136719 8.8323999999999998 2276.1478000000002 73920 40445 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2595 1920 0 384 1 4887307872 7496828 1 0 4 2 2 2 6 6144000 2703360 2949120 2950952 8985600 168 155 156 225 1891 0 0 4 0 33 0 0 0 0 0 +140 1783859143401118400 DEPTH 31 1 0.77591606691818693 0.3594548551959113 2 6 2 6 0 0 2468 75 2558 23742622 147840 1388.5697937011719 8.8350000000000009 2223.9715999999999 73920 40293 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2558 1920 0 384 1 4891775940 11964896 1 0 4 2 2 2 6 6144000 2703360 2949120 2950922 8985600 150 150 154 164 1940 8 5 8 17 37 0 0 0 0 0 +141 1783859145676956100 DEPTH 33 1 0.77596199179743763 0.36712095400340705 1 7 1 7 1 0 3236 43 2538 23742672 147840 1395.2286834716797 8.8796999999999997 2208.7356 53760 32679 1 0 0.00023542549280732161 0.33020934826455345 4096 2048 384 12 96 2538 1920 0 384 1 4896223608 16412564 1 0 4 2 2 2 6 6881280 1966080 2949120 2950976 8985600 156 150 214 156 1862 4 1 3 3 32 0 0 0 0 1 +142 1783859148003706300 DEPTH 46 1 0.77601760961961364 0.37478705281090291 0 8 0 8 0 0 2618 36 2570 23742752 147840 1380.5681457519531 9.3329999999999984 2260.4427000000001 73920 41119 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2570 1920 0 384 1 4900703916 20892872 1 0 4 2 2 2 6 6144000 2703360 2949120 2951057 8985600 157 150 157 158 1948 3 1 4 1 27 0 0 0 0 0 +143 1783859150012162000 DEPTH 36 1 0.77087097093420676 0.82027257240204421 3 10 3 10 0 0 1147 45 2568 23742716 147840 1393.6436920166016 9.0543000000000013 1944.1817000000001 40320 21661 1 0 0.063069086016965495 0.15492757616277195 4096 2048 384 12 96 2568 1920 0 384 1 4905182184 25371140 1 0 5 1 2 2 6 7372800 1474560 2949120 2951023 8985600 157 166 150 150 1945 7 1 0 3 34 0 0 0 0 0 +144 1783859152062965700 DEPTH 5 1 0.77093168419287372 0.8279386712095399 2 11 2 11 1 0 838 59 2550 23742666 147840 1372.4395446777344 8.6455000000000002 1971.8771999999999 40320 20030 1 0 0.0052130349881175271 0.43131802450155321 4096 2048 384 12 96 2550 1920 0 384 1 4909642092 29831048 1 0 5 1 2 2 6 7372800 1474560 2949120 2950971 8985600 156 150 150 156 1938 12 4 1 6 36 0 0 0 0 1 +145 1783859154112196900 DEPTH 35 1 0.77099229148550485 0.8279386712095399 2 11 2 11 0 0 1081 72 2498 23742667 147840 1385.6492156982422 9.4519000000000002 1979.9618 40320 21546 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 2498 1920 0 384 1 4914048960 34237916 1 0 5 1 2 2 6 7372800 1474560 2949120 2950967 8985600 160 151 150 159 1878 0 1 0 0 71 0 0 0 0 0 +146 1783859156391441900 DEPTH 56 1 0.80630120995978205 0.17206132879045993 2 4 2 4 1 0 4096 82 2550 23742673 147840 1361.7274780273438 9.0693000000000001 2205.4117000000001 80640 42599 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2550 1920 0 384 1 4918508868 38697824 1 0 4 2 2 2 6 5898240 2949120 2949120 2950977 8985600 183 150 195 183 1839 0 0 19 8 55 0 0 0 0 1 +147 1783859158680149300 DEPTH 42 1 0.81595029360392146 0 0 4 0 4 0 0 4096 18 2604 23709303 114240 1367.5870361328125 8.6400999999999986 2286.8402000000001 120960 30833 1 0 0 0.0063610561623021686 4096 2048 384 12 96 2604 1920 0 384 1 4923023856 43212812 1 0 4 3 3 2 4 5898240 4423680 3686400 2950981 6739200 150 150 171 1514 619 0 0 0 0 18 0 0 0 0 0 +148 1783859160996161400 DEPTH 52 1 0.77640140884696085 0.36712095400340705 1 7 1 7 1 0 2019 50 2566 23742612 147840 1353.952392578125 9.0833999999999993 2186.5074 73920 40066 1 0 6.7515539583675612e-05 1.9967264765369119 4096 2048 384 12 96 2566 1920 0 384 1 4927500084 47689040 1 0 4 2 2 2 6 6144000 2703360 2949120 2950917 8985600 188 150 175 177 1876 1 6 0 2 41 0 0 0 0 1 +149 1783859163235788000 DEPTH 11 1 0.77640781079835397 0.37478705281090291 0 8 0 8 1 0 2240 63 2546 23742629 147840 1280.0932769775391 8.7233000000000001 2174.1385 73920 40180 1 0 0 0.72651709649293794 4096 2048 384 12 96 2546 1920 0 384 1 4931955912 52144868 1 0 4 2 2 2 6 6144000 2703360 2949120 2950935 8985600 162 150 162 150 1922 3 8 1 0 51 0 0 0 0 2 +150 1783859165101925200 DEPTH 19 1 0.77129375092177155 0.8279386712095399 2 11 2 11 0 0 840 42 2556 23742546 147840 1292.7283172607422 8.7115999999999989 1804.1130000000001 40320 21054 1 0 0.024134501803917539 0.35880585544835542 4096 2048 384 12 96 2556 1920 0 384 1 4936421940 56610896 1 0 5 1 2 2 6 7372800 1474560 2949120 2950852 8985600 153 150 150 150 1953 2 2 0 5 33 0 0 0 0 0 +151 1783859166989391700 DEPTH 43 1 0.771353729871598 0.8279386712095399 2 11 2 11 0 0 760 43 2567 23742686 147840 1294.4209899902344 8.6715 1828.5478000000001 40320 20890 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2567 1920 0 384 1 4940899188 61088144 1 0 5 1 2 2 6 7372800 1474560 2949120 2950987 8985600 150 150 150 159 1958 0 0 1 4 38 0 0 0 0 0 +152 1783859168871862700 DEPTH 47 1 0.7714136053234375 0.8279386712095399 2 11 2 11 0 0 643 24 2602 23742683 147840 1288.3353729248047 9.0694999999999997 1812.3742999999999 40320 20554 1 0 0.013860617513774254 1.4674127163907342 4096 2048 384 12 96 2602 1920 0 384 1 4945412136 65601092 1 0 5 1 2 2 6 7372800 1474560 2949120 2950988 8985600 157 150 151 155 1989 1 2 3 0 18 0 0 0 0 0 +153 1783859171895527400 DEPTH 0 1 0.77147337762289991 0.8279386712095399 2 11 2 11 1 0 854 60 2569 23742654 147840 1286.113525390625 8.6154000000000011 2959.6163999999999 40320 19678 1 0 0.00014140214567446167 2.30096177437744 4096 2048 384 12 96 2569 1920 0 384 1 4949891504 2971720 1 0 5 1 2 2 6 7372800 1474560 2949120 2950957 8985600 184 193 156 150 1886 3 4 9 6 38 0 0 0 0 1 +154 1783859172280323700 REFRESH 3 0 0.76562374590852667 0.64054514480408853 2 9 2 9 0 0 1067 24 407 3988958 56640 221.60383605957031 1.4423999999999999 317.18819999999999 6720 4906 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 407 320 0 64 0 4950614868 3695084 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 27 25 43 31 281 0 0 0 0 24 0 0 0 0 0 +155 1783859172646270200 REFRESH 32 0 0.76730717027724649 0.4608177172061329 1 8 1 8 0 0 2792 41 412 3988956 56640 222.24691772460938 1.425 306.22410000000002 6720 4725 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 412 320 0 64 0 4951343332 4423548 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 37 25 33 29 288 1 0 3 1 36 0 0 0 0 0 +156 1783859173069856600 REFRESH 44 0 0.73686109922196574 0.36712095400340705 1 7 1 7 0 0 2034 24 433 3988977 56640 223.61599731445312 1.4451000000000001 358.8338 13440 9396 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 433 320 0 64 0 4952093216 5173432 1 0 4 2 2 2 6 983040 491520 491520 491696 1497600 26 25 32 28 322 0 0 2 2 20 0 0 0 0 0 +157 1783859173441980800 REFRESH 16 0 0.73687888332929119 0.3594548551959113 2 6 2 6 0 0 3072 41 416 3988939 56640 224.56729125976562 1.4363999999999999 310.73360000000002 13440 9273 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 416 320 0 64 0 4952825760 5905976 1 0 4 2 2 2 6 983040 491520 491520 491658 1497600 26 25 53 26 286 0 0 11 0 30 0 0 0 0 0 +158 1783859173781547300 REFRESH 46 0 0.67693085924548224 0.37478705281090291 0 8 0 8 0 0 2624 21 418 3988929 56640 223.58732604980469 1.4358 337.76339999999999 13440 9208 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 418 320 0 64 0 4953560344 6640560 1 0 4 2 2 2 6 983040 491520 491520 491649 1497600 27 25 35 34 297 0 0 0 0 21 0 0 0 0 0 +159 1783859174148282600 REFRESH 28 0 0.77182986436011503 0.8279386712095399 2 11 2 11 0 0 618 15 406 3988958 56640 225.25541687011719 1.4439 305.07150000000001 6720 5036 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 406 320 0 64 0 4954282688 7362904 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 25 25 25 25 306 0 0 0 0 15 0 0 0 0 0 +160 1783859174519516800 REFRESH 4 0 0.77188892412794707 0.8356047700170357 1 12 1 12 0 0 272 12 421 3988957 56640 222.27558898925781 1.4380999999999999 310.16149999999999 6720 5066 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 421 320 0 64 0 4955020332 8100548 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 27 25 25 318 1 0 1 3 7 0 0 0 0 0 +161 1783859174922480800 REFRESH 13 0 0.78208625606587501 0.27342419080068137 1 6 1 6 0 0 4056 52 410 3988949 56640 222.84492492675781 1.4321999999999999 332.916 13440 9182 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 410 320 0 64 0 4955746756 8826972 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 38 27 294 1 0 3 2 46 0 0 0 0 0 +162 1783859175322776900 REFRESH 57 0 0.78213787900130882 0.27342419080068137 1 6 1 6 0 0 4076 36 410 3988967 56640 224.92466735839844 1.4378 325.65679999999998 13440 9291 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 410 320 0 64 0 4956473180 9553396 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 28 25 35 42 280 0 0 1 0 35 0 0 0 0 0 +163 1783859175636081300 REFRESH 36 0 0.70863142178394556 0.82027257240204421 3 10 3 10 0 0 1164 47 411 3988979 56640 222.66368103027344 1.4434 311.70569999999998 6720 4964 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 411 320 0 64 0 4957200624 10280840 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 25 25 25 27 309 0 0 0 0 47 0 0 0 0 0 +164 1783859176084067900 REFRESH 20 0 0.7822408625986943 0.26575809199318562 2 5 2 5 0 0 1994 6 426 3988966 56640 229.59001159667969 1.4717 378.60559999999998 13440 9386 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 426 320 0 64 0 4957943368 11023584 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 30 64 281 1 0 0 0 5 0 0 0 0 0 +165 1783859176514122900 REFRESH 53 0 0.76729222383358797 0.37478705281090291 0 8 0 8 0 0 4096 63 407 3988979 56640 240.44032287597656 1.4478 357.66860000000003 13440 9328 0 0 0 0.2221103696426992 4096 2048 64 1 16 407 320 0 64 0 4958666732 11746948 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 27 25 37 35 283 0 0 2 2 59 0 0 0 0 0 +166 1783859176915064600 REFRESH 23 0 0.76213226207342677 0.74190800681430991 1 11 1 11 0 0 3371 15 409 3988961 56640 241.16531372070312 1.4379 329.16370000000001 6720 4889 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 409 320 0 64 0 4959392136 12472352 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 29 25 35 32 288 0 0 0 0 15 0 0 0 0 0 +167 1783859177314328800 REFRESH 33 0 0.76741387156865803 0.36712095400340705 1 7 1 7 0 0 3243 31 415 3988966 56640 239.26681518554688 1.4379999999999999 336.89240000000001 13440 9306 0 0 0.00023542549280732161 0.33020934826455345 4096 2048 64 1 16 415 320 0 64 0 4960123660 13203876 1 0 4 2 2 2 6 983040 491520 491520 491685 1497600 25 25 77 28 260 0 0 2 0 29 0 0 0 0 0 +168 1783859177642209900 REFRESH 19 0 0.68891013000480883 0.8279386712095399 2 11 2 11 0 0 841 15 413 3988962 56640 238.46298217773438 1.454 326.2876 6720 4946 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 413 320 0 64 0 4960853144 13933360 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 25 25 25 28 310 0 0 0 0 15 0 0 0 0 0 +169 1783859178126916700 REFRESH 12 0 0.76646559054390007 0.63287904599659284 3 8 3 8 0 0 1353 40 436 3988959 56640 238.40153503417969 1.4371 332.89389999999997 6720 4861 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 436 320 0 64 0 4961606088 14686304 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 25 31 25 329 1 0 1 0 38 0 0 0 0 0 +170 1783859178488877800 REFRESH 52 0 0.73762982921016684 0.36712095400340705 1 7 1 7 0 0 2029 28 417 3988960 56640 237.02835083007812 1.4521999999999999 360.166 13440 9243 0 0 6.7515539583675612e-05 1.9967264765369119 4096 2048 64 1 16 417 320 0 64 0 4962339652 15419868 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 28 25 74 42 248 0 0 4 3 21 0 0 0 0 0 +171 1783859178885512500 REFRESH 37 0 0.77253202395256293 0.8356047700170357 1 12 1 12 0 0 950 18 407 3988935 56640 238.19570922851562 1.4414 325.89370000000002 6720 5102 0 0 0.010438987529659072 0.54524856454933346 4096 2048 64 1 16 407 320 0 64 0 4963063016 16143232 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 26 25 25 26 305 0 0 0 0 18 0 0 0 0 0 +172 1783859179270004100 REFRESH 42 0 0.97095926310353931 0 0 4 0 4 0 0 4096 6 428 3988019 55680 234.42227172851562 1.4348000000000001 383.00549999999998 20160 12101 0 0 0 0.0063610561623021686 4096 2048 64 1 16 428 320 0 64 0 4963807800 16888016 1 0 4 3 3 2 4 983040 737280 737280 491695 998400 49 25 35 217 102 0 0 1 1 4 0 0 0 0 0 +173 1783859179570318500 REFRESH 5 0 0.75922003386823511 0.8279386712095399 2 11 2 11 0 0 843 20 413 3988948 56640 222.18751525878906 1.444 298.72739999999999 6720 4963 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 413 320 0 64 0 4964537284 17617500 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 37 301 0 0 0 1 19 0 0 0 0 0 +174 1783859179960366400 REFRESH 9 0 0.78275060879407099 0.27342419080068137 1 6 1 6 0 0 2842 41 412 3988949 56640 223.71635437011719 1.4491000000000001 324.86790000000002 13440 9374 0 0 0.00034298550913911891 0.32865072374265419 4096 2048 64 1 16 412 320 0 64 0 4965265748 18345964 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 28 28 305 0 0 1 0 40 0 0 0 0 0 +175 1783859180398087400 REFRESH 8 0 0.78280769006811568 0.26575809199318562 2 5 2 5 1 0 2333 16 411 3988951 56640 224.59391784667969 1.4423999999999999 310.74579999999997 13440 9269 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 411 320 0 64 0 4965993192 19073408 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 26 25 27 30 303 0 0 0 0 16 0 0 0 0 1 +176 1783859180705151400 REFRESH 0 0 0.73940983064900079 0.8279386712095399 2 11 2 11 0 0 858 25 419 3988964 56640 222.88998413085938 1.4384999999999999 305.0462 6720 5012 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 419 320 0 64 0 4966728796 19809012 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 26 25 34 307 0 0 0 2 23 0 0 0 0 0 +177 1783859181098903400 REFRESH 10 0 0.7669059523586752 0.64821124361158422 1 10 1 10 0 0 1078 15 421 3988940 56640 222.88179016113281 1.4482999999999999 312.71269999999998 6720 4922 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 421 320 0 64 0 4967466440 20546656 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 28 25 25 26 317 2 0 1 3 9 0 0 0 0 0 +178 1783859181501239000 REFRESH 45 0 0.76795744778358577 0.45315161839863699 2 7 2 7 0 0 2043 42 415 3988954 56640 222.77119445800781 1.4365000000000001 338.80990000000003 6720 4631 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 415 320 0 64 0 4968197964 21278180 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 29 25 38 35 288 2 0 2 2 36 0 0 0 0 0 +179 1783859181847304000 REFRESH 56 0 0.8001176252392338 0.17206132879045993 2 4 2 4 0 0 4096 58 414 3988964 56640 222.87461853027344 1.4564999999999999 344.02850000000001 13440 8055 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 414 320 0 64 0 4968928468 22008684 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 73 26 39 38 238 8 0 3 2 45 0 0 0 0 0 +180 1783859182335759000 REFRESH 40 0 0.76706958476725662 0.64821124361158422 1 10 1 10 0 0 1597 8 420 3988962 56640 222.52653503417969 1.4598 371.91449999999998 6720 4824 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 420 320 0 64 0 4969665092 22745308 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 26 26 317 1 0 1 1 5 0 0 0 0 0 +181 1783859182716261300 REFRESH 55 0 0.76712394902059367 0.64054514480408853 2 9 2 9 0 0 1056 11 409 3988948 56640 224.63693237304688 1.4455 311.53410000000002 6720 4966 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 4970390496 23470712 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 29 25 26 27 302 0 1 0 0 10 0 0 0 0 0 +182 1783859183099952900 REFRESH 50 0 0.76717822381084755 0.64054514480408853 2 9 2 9 0 0 1007 16 422 3988946 56640 222.0185546875 1.4329000000000001 324.08859999999999 6720 4901 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 422 320 0 64 0 4971129160 24209376 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 27 25 25 36 309 0 0 2 3 11 0 0 0 0 0 +183 1783859183403240900 REFRESH 43 0 0.75973240942299214 0.8279386712095399 2 11 2 11 0 0 762 10 416 3988947 56640 223.41427612304688 1.4362999999999999 301.35539999999997 6720 4972 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 416 320 0 64 0 4971861704 24941920 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 25 25 25 45 296 0 0 0 0 10 0 0 0 0 0 +184 1783859183801118900 REFRESH 18 0 0.77054969203045909 0.9293015332197615 1 13 1 13 0 0 438 12 413 3988946 56640 226.01113891601562 1.4501999999999999 323.27879999999999 6720 5083 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 413 320 0 64 0 4972591188 25671404 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 27 27 25 25 309 0 0 0 0 12 0 0 0 0 0 +185 1783859184226060400 REFRESH 39 0 0.77269765710328275 0.55451448040885853 1 9 1 9 0 0 1540 8 420 3988965 56640 222.09432983398438 1.4277 355.47480000000002 6720 4835 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 420 320 0 64 0 4973327812 26408028 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 28 25 25 33 309 1 0 2 0 5 0 0 0 0 0 +186 1783859184586428400 REFRESH 6 0 0.76466288774570401 0.91396933560476989 3 11 3 11 0 0 376 8 422 3988958 56640 222.41792297363281 1.448 301.67950000000002 6720 5099 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 0 64 0 4974066476 27146692 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 26 320 0 0 0 1 7 0 0 0 0 0 +187 1783859184974634400 REFRESH 22 0 0.77071934693278543 0.91396933560476989 3 11 3 11 0 0 470 11 415 3988954 56640 224.45875549316406 1.4510000000000001 323.30439999999999 6720 5000 0 0 0.0083644257937872685 0.6977634741384231 4096 2048 64 1 16 415 320 0 64 0 4974798000 27878216 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 25 25 25 25 315 0 0 0 0 11 0 0 0 0 0 +188 1783859185403064100 REFRESH 48 0 0.78345017192289756 0.26575809199318562 2 5 2 5 0 0 2328 22 418 3988986 56640 223.20538330078125 1.4408000000000001 348.97820000000002 13440 9270 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 418 320 0 64 0 4975532584 28612800 1 0 4 2 2 2 6 983040 491520 491520 491706 1497600 25 25 29 33 306 0 0 1 1 20 0 0 0 0 0 +189 1783859185825781100 REFRESH 17 0 0.7834995286812777 0.28109028960817717 0 7 0 7 0 0 3657 23 418 3988958 56640 222.43533325195312 1.4658 357.26479999999998 13440 9375 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 418 320 0 64 0 4976267168 29347384 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 26 28 35 39 290 0 0 0 2 21 0 0 0 0 0 +190 1783859186207227800 REFRESH 49 0 0.77067642831373995 0.4454855195911413 3 6 3 6 0 0 1391 27 405 3988947 56640 242.25485229492188 1.4984999999999999 323.46449999999999 6720 4734 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 405 320 0 64 0 4976988492 30068708 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 33 25 30 33 284 1 0 0 1 25 0 0 0 0 0 +191 1783859186700833700 REFRESH 2 0 0.76865969229229059 0.45315161839863699 2 7 2 7 0 0 3288 68 410 3988955 56640 241.22163391113281 1.4330000000000001 367.24720000000002 6720 4720 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 410 320 0 64 0 4977714916 30795132 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 40 25 26 34 285 1 0 2 1 64 0 0 0 0 0 +192 1783859187085750500 REFRESH 11 0 0.76867313536337623 0.37478705281090291 0 8 0 8 0 0 2249 35 411 3988953 56640 240.15974426269531 1.4560999999999999 382.87740000000002 13440 9274 0 0 0 0.72651709649293794 4096 2048 64 1 16 411 320 0 64 0 4978442360 31522576 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 27 25 38 37 284 0 1 3 2 29 0 0 0 0 0 +193 1783859187474761400 REFRESH 38 0 0.77312656534987256 0.55451448040885853 1 9 1 9 0 0 1959 45 417 3988938 56640 239.68972778320312 1.4329000000000001 323.42950000000002 6720 4939 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 417 320 0 64 0 4979175924 32256140 1 0 5 1 2 2 6 1228800 245760 491520 491657 1497600 27 26 28 28 308 1 0 3 2 39 0 0 0 0 0 +194 1783859187877145000 REFRESH 1 0 0.7687451140377255 0.36712095400340705 1 7 1 7 0 0 2842 43 413 3988963 56640 240.39321899414062 1.5297000000000001 342.5489 13440 9223 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 413 320 0 64 0 4979905408 32985624 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 40 36 286 0 1 3 5 34 0 0 0 0 0 +195 1783859188263501200 REFRESH 14 0 0.76787578279761115 0.65587734241908002 0 11 0 11 0 0 1577 29 412 3988949 56640 241.04754638671875 1.4441999999999999 327.75540000000001 6720 4940 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 412 320 0 64 0 4980633872 33714088 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 27 25 28 28 304 0 0 0 0 29 0 0 0 0 0 +196 1783859188668717900 REFRESH 51 0 0.77122337162049148 0.91396933560476989 3 11 3 11 0 0 526 17 410 3988951 56640 239.52691650390625 1.4428000000000001 328.81790000000001 6720 5078 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 410 320 0 64 0 4981360296 34440512 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 27 25 25 25 308 0 0 0 0 17 0 0 0 0 0 +197 1783859189055680900 REFRESH 35 0 0.76048180073035132 0.8279386712095399 2 11 2 11 0 0 1082 14 405 3988937 56640 241.54010009765625 1.4343999999999999 326.64280000000002 6720 4945 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 405 320 0 64 0 4982081620 35161836 1 0 5 1 2 2 6 1228800 245760 491520 491655 1497600 25 25 25 28 302 0 0 0 0 14 0 0 0 0 0 +198 1783859189465253700 REFRESH 54 0 0.76901358671458098 0.4608177172061329 1 8 1 8 0 0 1144 14 417 3988954 56640 239.92218017578125 1.4343999999999999 353.94069999999999 13440 9705 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 417 320 0 64 0 4982815184 35895400 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 25 25 38 35 294 0 1 0 2 11 0 0 0 0 0 +199 1783859189870573500 REFRESH 21 0 0.77345232624736748 0.56218057921635434 0 10 0 10 0 0 2387 40 413 3988939 56640 239.70098876953125 1.7996000000000001 347.28660000000002 6720 4926 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 413 320 0 64 0 4983544668 36624884 1 0 5 1 2 2 6 1228800 245760 491520 491658 1497600 30 25 32 31 295 0 0 1 3 36 0 0 0 0 0 +200 1783859190249790600 REFRESH 34 0 0.77217231629576899 0.8356047700170357 1 12 1 12 0 0 691 24 415 3988944 56640 240.55296325683594 1.4473 319.9599 6720 5090 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 415 320 0 64 0 4984276192 37356408 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 25 25 25 25 315 0 0 0 0 24 0 0 0 0 0 +201 1783859190629971000 REFRESH 41 0 0.77354996083822414 0.55451448040885853 1 9 1 9 0 0 2058 35 414 3988968 56640 223.37638854980469 1.4366000000000001 317.11770000000001 6720 4914 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 4985006696 38086912 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 27 25 38 28 296 0 0 8 1 26 0 0 0 0 0 +202 1783859191123425600 REFRESH 58 0 0.76955534813725002 0.92163543441226559 2 12 2 12 0 0 521 20 410 3988957 56640 223.77081298828125 1.4521999999999999 302.19439999999997 6720 5035 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 410 320 0 64 0 4985733120 38813336 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 27 27 25 25 306 0 0 0 0 20 0 0 0 0 0 +203 1783859191485846200 REFRESH 27 0 0.77161036852885212 0.93696763202725719 0 14 0 14 0 0 859 9 417 3988939 56640 223.42349243164062 1.4384999999999999 304.2174 6720 5008 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 417 320 0 64 0 4986466684 39546900 1 0 5 1 2 2 6 1228800 245760 491520 491659 1497600 25 25 25 25 317 0 0 0 0 9 0 0 0 0 0 +204 1783859191865574100 REFRESH 7 0 0.77439257408102569 0.8356047700170357 1 12 1 12 0 0 845 20 409 3988983 56640 223.69279479980469 1.4525999999999999 309.15609999999998 6720 5074 0 0 0.0032016775580611398 1.0708370599707779 4096 2048 64 1 16 409 320 0 64 0 4987192088 40272304 1 0 5 1 2 2 6 1228800 245760 491520 491703 1497600 25 25 25 26 308 0 0 0 0 20 0 0 0 0 0 +205 1783859192246746500 REFRESH 29 0 0.77044741960903684 0.82027257240204421 3 10 3 10 0 0 1101 9 418 3988961 56640 223.171875 1.4343999999999999 306.03719999999998 6720 5070 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 418 320 0 64 0 4987926672 41006888 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 26 25 27 315 0 1 1 0 7 0 0 0 0 0 +206 1783859192626371700 REFRESH 26 0 0.76845470123468818 0.64821124361158422 1 10 1 10 0 0 1729 45 415 3988972 56640 223.60780334472656 1.4374 316.89060000000001 6720 4889 0 0 0.029664718146048187 1.2965658129918167 4096 2048 64 1 16 415 320 0 64 0 4988658196 41738412 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 27 25 31 32 300 3 0 3 3 36 0 0 0 0 0 +207 1783859193001397900 REFRESH 24 0 0.76955684984749251 1 4 11 4 11 0 0 490 12 407 3988952 56640 224.40345764160156 1.6588000000000001 316.4418 6720 5006 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 407 320 0 64 0 4989381560 42461776 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 26 25 25 25 306 0 0 0 0 12 0 0 0 0 0 +208 1783859193380769600 REFRESH 47 0 0.76105887368030412 0.8279386712095399 2 11 2 11 0 0 646 24 410 3988960 56640 223.14093017578125 1.4540999999999999 306.48009999999999 6720 4958 0 0 0.013860617513774254 1.4674127163907342 4096 2048 64 1 16 410 320 0 64 0 4990107984 43188200 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 27 25 25 32 301 0 0 0 0 24 0 0 0 0 0 +209 1783859193784939700 REFRESH 30 0 0.76975416689634657 0.4608177172061329 1 8 1 8 0 0 3270 56 408 3988945 56640 222.78758239746094 1.4359 314.20890000000003 6720 4672 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 408 320 0 64 0 4990832368 43912584 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 41 25 39 35 268 3 0 4 0 49 0 0 0 0 0 +210 1783859194239974500 REFRESH 25 0 0.76958711369612076 0.4608177172061329 1 8 1 8 0 0 2231 20 414 3988967 56640 223.77778625488281 1.4358 347.52159999999998 6720 4689 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 414 320 0 64 0 4991562872 44643088 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 28 25 37 34 290 1 0 1 0 18 0 0 0 0 0 +211 1783859194604839300 REFRESH 15 0 0.77004740177048991 0.91396933560476989 3 11 3 11 0 0 319 6 409 3988960 56640 223.45933532714844 1.5311999999999999 305.90370000000001 6720 5064 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 4992288276 45368492 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 26 25 25 25 308 1 1 0 0 4 0 0 0 0 0 +212 1783859194985702500 REFRESH 31 0 0.76962190072004422 0.3594548551959113 2 6 2 6 0 0 2497 45 414 3988957 56640 222.30426025390625 1.4461999999999999 317.55340000000001 13440 9275 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 414 320 0 64 0 4993018780 46098996 1 0 4 2 2 2 6 983040 491520 491520 491677 1497600 25 25 35 35 294 0 0 1 0 44 0 0 0 0 0 +213 1783859197311828400 DEPTH 42 1 0.96290334404880196 0 0 4 0 4 1 0 4096 21 2566 23698548 103680 1294.1066284179688 8.6391000000000009 2196.5016000000001 120960 59913 1 0 0 0.0063598364837977968 4096 2048 384 12 96 2566 1920 0 384 1 4997495008 50575224 1 0 4 3 3 2 4 5898240 4423680 4423680 2950971 5990400 192 150 198 1027 999 0 0 0 0 21 0 0 0 0 1 +214 1783859199518614600 DEPTH 56 1 0.79367265253000485 0.17206132879045993 2 4 2 4 0 0 4096 85 2562 23731147 136320 1284.5988159179688 8.7333999999999996 2143.7984999999999 100800 48633 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2562 1920 0 384 1 5001967156 55047372 1 0 4 3 2 2 5 5898240 3686400 2949120 2950919 8236800 200 150 203 427 1582 1 0 10 7 67 0 0 0 0 0 +215 1783859201519613700 DEPTH 8 1 0.77585939161116291 0.26575809199318562 2 5 2 5 0 0 2337 41 2534 23742699 147840 1297.9518280029297 8.7545000000000002 1999.3641 80640 44982 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2534 1920 0 384 1 5006410744 59490960 1 0 4 2 2 2 6 5898240 2949120 2949120 2951004 8985600 155 150 162 163 1904 0 0 0 1 40 0 0 0 0 0 +216 1783859203668435600 DEPTH 48 1 0.7758888748720798 0.26575809199318562 2 5 2 5 0 0 2337 31 2584 23742683 147840 1286.9130096435547 8.6022999999999996 2089.5154000000002 80640 45127 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 0 384 1 5010905332 63985548 1 0 4 2 2 2 6 5898240 2949120 2949120 2950986 8985600 150 150 150 156 1978 0 0 2 1 28 0 0 0 0 0 +217 1783859206891000400 DEPTH 9 1 0.77593435986553594 0.27342419080068137 1 6 1 6 0 0 2857 60 2544 23742620 147840 1291.7401580810547 8.6373999999999995 3220.6097 80640 45002 1 0 0.00034298550913911891 0.32865072374265419 4096 2048 384 12 96 2544 1920 0 384 1 5015359200 1331012 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 156 150 168 157 1913 0 0 6 10 44 0 0 0 0 0 +218 1783859209003912800 DEPTH 13 1 0.77597977395167217 0.27342419080068137 1 6 1 6 0 0 4071 69 2571 23742670 147840 1286.4071502685547 8.6748999999999992 2046.3009 80640 44693 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2571 1920 0 384 1 5019840528 5812340 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 156 150 1959 1 0 13 6 49 0 0 0 0 0 +219 1783859211274304000 DEPTH 57 1 0.77602511734451474 0.27342419080068137 1 6 1 6 0 0 4089 71 2531 23742724 147840 1293.4952850341797 8.6499000000000006 2070.1984000000002 80640 44573 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2531 1920 0 384 1 5024281056 10252868 1 0 4 2 2 2 6 5898240 2949120 2949120 2951029 8985600 162 150 157 174 1888 0 0 7 7 57 0 0 0 0 0 +220 1783859213472750800 DEPTH 20 1 0.77207039025713375 0.26575809199318562 2 5 2 5 0 0 2007 43 2579 23734971 140160 1284.9479675292969 8.6379000000000019 2136.9477000000002 80640 46230 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2579 1920 0 384 1 5028770544 14742356 1 0 5 2 2 2 5 6389760 2949120 2949120 2950955 8486400 161 150 163 339 1766 0 0 3 0 40 0 0 0 0 0 +221 1783859215652599700 DEPTH 42 1 0.78818736408068901 0 0 4 0 4 0 0 4096 24 2587 23698593 103680 1288.2862243652344 8.611699999999999 2117.4764 120960 49122 1 0 0 0.0063598364837977968 4096 2048 384 12 96 2587 1920 0 384 1 5033268192 19240004 1 0 4 3 3 2 4 5898240 4423680 4423680 2950945 5990400 169 150 188 1221 859 0 0 0 0 24 0 0 0 0 0 +222 1783859217866663100 DEPTH 17 1 0.77616072548923287 0.28109028960817717 0 7 0 7 0 0 3679 52 2559 23742661 147840 1281.6446533203125 8.6272000000000002 2088.3868000000002 80640 44998 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2559 1920 0 384 1 5037737280 23709092 1 0 4 2 2 2 6 5898240 2949120 2949120 2950964 8985600 156 156 150 163 1934 0 0 2 4 46 0 0 0 0 0 +223 1783859219881254600 DEPTH 38 1 0.76308295999041775 0.55451448040885853 1 9 1 9 0 0 1974 73 2531 23742656 147840 1355.4585571289062 8.7146999999999988 1952.8053 40320 23337 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2531 1920 0 384 1 5042177808 28149620 1 0 5 1 2 2 6 7372800 1474560 2949120 2950962 8985600 156 150 156 152 1917 9 0 14 4 46 0 0 0 0 0 +224 1783859221951850800 DEPTH 49 1 0.76206635760846919 0.4454855195911413 3 6 3 6 0 0 1407 78 2520 23742657 147840 1389.9827270507812 9.126100000000001 1944.5654 80640 43073 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2520 1920 0 384 1 5046607116 32578928 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 156 151 171 152 1890 0 1 3 1 73 0 0 0 0 0 +225 1783859223949557100 DEPTH 28 1 0.76193126104643361 0.8279386712095399 2 11 2 11 0 0 622 42 2508 23742650 147840 1407.1971740722656 8.7002000000000006 1939.0624 40320 22776 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2508 1920 0 384 1 5051024184 36995996 1 0 5 1 2 2 6 7372800 1474560 2949120 2950949 8985600 150 150 150 150 1908 0 0 1 0 41 0 0 0 0 0 +226 1783859226042517900 DEPTH 37 1 0.76198186369389254 0.8356047700170357 1 12 1 12 1 0 952 29 2567 23741663 147840 1394.9317016601562 9.7047000000000008 2036.6687999999999 47040 27623 1 0 0.0034109098853556652 0.49993047737085899 4096 2048 384 12 96 2567 1920 0 384 1 5055501432 41473244 1 0 6 1 2 1 6 8601600 1720320 2949120 1475407 8985600 150 150 150 162 1955 1 1 0 0 27 0 0 0 0 1 +227 1783859228015729100 DEPTH 4 1 0.76203238848188437 0.8356047700170357 1 12 1 12 0 0 276 37 2551 23741738 147840 1371.6060638427734 9.2279 1898.7791 47040 26684 1 0 0.040411785743191188 1.4510951908289993 4096 2048 384 12 96 2551 1920 0 384 1 5059962360 45934172 1 0 6 1 2 1 6 8601600 1720320 2949120 1475482 8985600 156 156 150 153 1936 0 0 0 0 37 0 0 0 0 0 +228 1783859230284343800 DEPTH 52 1 0.76150394568236002 0.36712095400340705 1 7 1 7 1 0 2040 48 2559 23742680 147840 1356.2030181884766 8.8675000000000015 2184.7757000000001 80640 44215 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2559 1920 0 384 1 5064431448 50403260 1 0 4 2 2 2 6 5898240 2949120 2949120 2950980 8985600 162 150 206 208 1833 0 0 2 0 46 0 0 0 0 1 +229 1783859232614492800 DEPTH 42 1 0.7837083456483972 0 0 4 0 4 1 0 4096 20 2599 23688779 93120 1390.0359649658203 8.6086999999999989 2328.5191 120960 39495 1 0 0 0.0063672344111309655 4096 2048 384 12 96 2599 1920 0 384 1 5068941336 54913148 1 0 4 3 3 3 3 5898240 4423680 4423680 3688728 5241600 173 150 180 1356 740 0 0 0 0 20 0 0 0 0 1 +230 1783859234841771500 DEPTH 21 1 0.76342851418330071 0.56218057921635434 0 10 0 10 0 0 2403 75 2547 23742184 147840 1347.1293640136719 8.8041999999999998 2153.8721 80640 47814 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2547 1920 0 384 1 5073398184 59369996 1 0 4 2 2 2 6 6635520 2949120 2949120 2213209 8985600 162 150 151 151 1933 11 4 7 4 49 0 0 0 0 0 +231 1783859236998586800 DEPTH 41 1 0.76346965754499385 0.55451448040885853 1 9 1 9 0 0 2081 56 2567 23742178 147840 1298.4760284423828 8.6834999999999987 2090.4175 80640 47965 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2567 1920 0 384 1 5077875432 63847244 1 0 4 2 2 2 6 6635520 2949120 2949120 2213201 8985600 154 153 182 157 1921 4 0 16 0 36 0 0 0 0 0 +232 1783859240025216400 DEPTH 7 1 0.76228385261310139 0.8356047700170357 1 12 1 12 1 0 845 43 2533 23741776 147840 1311.0550231933594 8.8562999999999992 2969.5374999999999 47040 27676 1 0 0.00025497404471684274 0.86876728204740172 4096 2048 384 12 96 2533 1920 0 384 1 5082318080 1181152 1 0 6 1 2 1 6 8601600 1720320 2949120 1475522 8985600 150 154 150 155 1924 0 0 0 0 43 0 0 0 0 1 +233 1783859242241132300 DEPTH 44 1 0.76168347236917044 0.36712095400340705 1 7 1 7 0 0 2049 59 2619 23742606 147840 1315.1324157714844 8.6350999999999996 2151.989 80640 44790 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2619 1920 0 384 1 5086848368 5711440 1 0 4 2 2 2 6 5898240 2949120 2949120 2950908 8985600 151 150 189 160 1969 0 0 6 2 51 0 0 0 0 0 +234 1783859244399423100 DEPTH 11 1 0.76172034280773848 0.37478705281090291 0 8 0 8 1 0 2266 61 2557 23742586 147840 1298.6503753662109 8.6317000000000004 2085.4054000000001 80640 44931 1 0 0 0.72880154949381659 4096 2048 384 12 96 2557 1920 0 384 1 5091315416 10178488 1 0 4 2 2 2 6 5898240 2949120 2949120 2950892 8985600 167 150 178 150 1912 0 0 2 0 59 0 0 0 0 2 +235 1783859246539329800 DEPTH 33 1 0.76175843481926808 0.36712095400340705 1 7 1 7 0 0 3247 49 2553 23742643 147840 1315.6495208740234 8.8967000000000009 2074.5093000000002 80640 45283 1 0 0.00023542549280732161 0.33020934826455345 4096 2048 384 12 96 2553 1920 0 384 1 5095778384 14641456 1 0 4 2 2 2 6 5898240 2949120 2949120 2950947 8985600 150 150 228 157 1868 0 0 1 3 45 0 0 0 0 0 +236 1783859248510766300 DEPTH 16 1 0.76178534179306434 0.3594548551959113 2 6 2 6 0 0 3090 65 2531 23742564 147840 1320.7510833740234 8.9368999999999996 1910.9435000000001 80640 45155 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2531 1920 0 384 1 5100218912 19081984 1 0 4 2 2 2 6 5898240 2949120 2949120 2950871 8985600 150 150 160 150 1921 0 0 8 0 57 0 0 0 0 0 +237 1783859250710314600 DEPTH 42 1 0.77943592214354995 0 0 4 0 4 1 0 4096 9 2606 23677415 81600 1299.0588989257812 8.7601000000000013 2197.4533000000001 120960 27765 1 0 0 0.0063637346964012303 4096 2048 384 12 96 2606 1920 0 384 1 5104735940 23599012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 156 150 175 1467 658 0 0 0 0 9 0 0 0 0 1 +238 1783859253016058100 DEPTH 56 1 0.77733360911600391 0.17206132879045993 2 4 2 4 0 0 4096 65 2591 23720902 125760 1298.2067108154297 8.7115000000000009 2174.3199 120960 46679 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2591 1920 0 384 1 5109237668 28100740 1 0 4 3 2 2 5 5898240 4423680 2949120 2950906 7488000 188 150 191 1440 622 0 3 3 6 53 0 0 0 0 0 +239 1783859255189917100 DEPTH 31 1 0.7619253913677293 0.3594548551959113 2 6 2 6 0 0 2514 56 2549 23742660 147840 1300.7339477539062 9.109 2114.6084000000001 80640 44977 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2549 1920 0 384 1 5113696556 32559628 1 0 4 2 2 2 6 5898240 2949120 2949120 2950960 8985600 150 150 157 179 1913 0 0 8 8 40 0 0 0 0 0 +240 1783859257314078700 DEPTH 1 1 0.7619613675568595 0.36712095400340705 1 7 1 7 0 0 2849 64 2600 23742616 147840 1308.4886932373047 8.7103000000000002 2056.4717999999998 80640 45042 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2600 1920 0 384 1 5118207464 37070536 1 0 4 2 2 2 6 5898240 2949120 2949120 2950918 8985600 152 150 179 171 1948 0 0 5 4 55 0 0 0 0 0 +241 1783859259474862900 DEPTH 53 1 0.76200520796864757 0.37478705281090291 0 8 0 8 1 0 4096 62 2520 23742652 147840 1305.9676208496094 8.7510000000000012 2097.9591 80640 44798 1 0 0 0.22204038352276251 4096 2048 384 12 96 2520 1920 0 384 1 5122636772 41499844 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 160 150 153 156 1901 0 0 14 3 45 0 0 0 0 1 +242 1783859261623382700 DEPTH 46 1 0.76204898235681706 0.37478705281090291 0 8 0 8 0 0 2631 30 2567 23742684 147840 1311.5035705566406 8.6134000000000004 2089.9911999999999 80640 45345 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2567 1920 0 384 1 5127114020 45977092 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 154 150 160 163 1940 0 0 0 1 29 0 0 0 0 0 +243 1783859263751352100 DEPTH 39 1 0.76204092437682336 0.55451448040885853 1 9 1 9 0 0 1546 46 2585 23742221 147840 1303.5089874267578 8.6424000000000003 2059.2433999999998 80640 47569 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2585 1920 0 384 1 5131609628 50472700 1 0 4 2 2 2 6 6635520 2949120 2949120 2213246 8985600 168 150 150 161 1956 3 1 5 0 37 0 0 0 0 0 +244 1783859265867087400 DEPTH 32 1 0.76161493262545565 0.4608177172061329 1 8 1 8 0 0 2811 65 2551 23742693 147840 1305.0400085449219 8.8735999999999997 2056.0888 73920 40742 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2551 1920 0 384 1 5136070556 54933628 1 0 5 1 2 2 6 6144000 2703360 2949120 2950995 8985600 156 150 150 150 1945 1 2 17 16 29 0 0 0 0 0 +245 1783859266255351300 REFRESH 13 0 0.7691407721725475 0.27342419080068137 1 6 1 6 0 0 4094 54 414 3988959 56640 226.23231506347656 1.4320999999999999 325.07319999999999 13440 8669 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 414 320 0 64 0 5136801060 55664132 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 28 27 308 0 0 2 4 48 0 0 0 0 0 +246 1783859266618999800 REFRESH 58 0 0.75845059594355635 0.92163543441226559 2 12 2 12 0 0 521 10 410 3988877 56640 227.02490234375 1.4390000000000001 307.30380000000002 6720 4945 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 410 320 0 64 0 5137527484 56390556 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 25 25 25 307 0 0 0 0 10 0 0 0 0 0 +247 1783859266986319100 REFRESH 8 0 0.76923924845809932 0.26575809199318562 2 5 2 5 0 0 2341 14 412 3988969 56640 227.35154724121094 1.4471000000000001 310.36110000000002 13440 8670 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 412 320 0 64 0 5138255948 57119020 1 0 4 2 2 2 6 983040 491520 491520 491687 1497600 26 25 27 31 303 0 0 0 0 14 0 0 0 0 0 +248 1783859267348042400 REFRESH 49 0 0.74400958976250897 0.4454855195911413 3 6 3 6 0 0 1415 24 409 3988958 56640 226.51397705078125 1.4471000000000001 303.53440000000001 13440 9215 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 409 320 0 64 0 5138981352 57844424 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 28 25 34 36 286 0 0 0 1 23 0 0 0 0 0 +249 1783859267715853300 REFRESH 10 0 0.75896556365990464 0.64821124361158422 1 10 1 10 0 0 1081 11 419 3988871 56640 226.845703125 1.4370000000000001 309.13580000000002 13440 9901 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 419 320 0 64 0 5139716956 58580028 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 30 25 25 28 311 0 0 0 3 8 0 0 0 0 0 +250 1783859268078454500 REFRESH 44 0 0.67437809674594396 0.36712095400340705 1 7 1 7 0 0 2060 42 428 3988950 56640 227.38636779785156 1.5297000000000001 361.10379999999998 13440 8557 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 428 320 0 64 0 5140461740 59324812 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 38 34 305 0 0 2 5 35 0 0 0 0 0 +251 1783859268434850700 REFRESH 34 0 0.7614222137627682 0.8356047700170357 1 12 1 12 0 0 693 17 416 3988897 56640 226.51699829101562 1.4258 300.87029999999999 6720 5035 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 416 320 0 64 0 5141194284 60057356 1 0 6 1 2 1 6 1474560 245760 491520 245856 1497600 25 25 25 25 316 0 0 0 0 17 0 0 0 0 0 +252 1783859268795090800 REFRESH 47 0 0.75160551137825082 0.8279386712095399 2 11 2 11 1 0 649 30 408 3988963 56640 226.17088317871094 1.4519 302.5224 6720 4838 0 0 0.014062823625024104 1.4508858958611186 4096 2048 64 1 16 408 320 0 64 0 5141918668 60781740 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 27 25 25 32 299 0 0 0 0 30 0 0 0 0 1 +253 1783859269132317400 REFRESH 1 0 0.63447531647232858 0.36712095400340705 1 7 1 7 0 0 2865 43 416 3988965 56640 226.46885681152344 1.4335 335.25760000000002 13440 8731 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 416 320 0 64 0 5142651212 61514284 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 49 45 271 0 0 3 3 37 0 0 0 0 0 +254 1783859269452455900 REFRESH 31 0 0.65452399280973694 0.3594548551959113 2 6 2 6 0 0 2535 45 413 3988945 56640 225.81251525878906 1.4318 318.41500000000002 13440 8670 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 413 320 0 64 0 5143380696 62243768 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 25 34 32 297 0 0 2 1 42 0 0 0 0 0 +255 1783859269759716900 REFRESH 7 0 0.73174862674112207 0.8356047700170357 1 12 1 12 0 0 851 27 410 3988879 56640 226.63168334960938 1.5367 305.47390000000001 6720 4990 0 0 0.00025497404471684274 0.86876728204740172 4096 2048 64 1 16 410 320 0 64 0 5144107120 62970192 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 25 27 308 0 0 0 0 27 0 0 0 0 0 +256 1783859270176394000 REFRESH 0 0 0.75184388515586642 0.8279386712095399 2 11 2 11 0 0 859 4 414 3988937 56640 225.68141174316406 1.4339 306.0532 6720 4952 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 414 320 0 64 0 5144837624 63700696 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 27 25 25 30 307 0 0 0 0 4 0 0 0 0 0 +257 1783859270536506300 REFRESH 35 0 0.75183737871273315 0.8279386712095399 2 11 2 11 0 0 1084 15 408 3988954 56640 225.89337158203125 1.4339 303.9239 6720 4882 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 0 64 0 5145562008 64425080 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 25 25 29 304 0 0 0 0 15 0 0 0 0 0 +258 1783859270927044400 REFRESH 21 0 0.75458759334537229 0.56218057921635434 0 10 0 10 0 0 2417 41 416 3988977 56640 225.75308227539062 1.4524999999999999 329.78469999999999 13440 9614 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 416 320 0 64 0 5146294552 65157624 1 0 4 2 2 2 6 983040 491520 491520 491697 1497600 27 25 45 43 276 0 0 3 3 35 0 0 0 0 0 +259 1783859271285571500 REFRESH 46 0 0.67472363221143672 0.37478705281090291 0 8 0 8 0 0 2634 19 413 3988932 56640 226.45759582519531 1.4382999999999999 356.67700000000002 13440 8679 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 413 320 0 64 0 5147024036 65887108 1 0 4 2 2 2 6 983040 491520 491520 491652 1497600 26 25 38 42 282 0 0 1 1 17 0 0 0 0 0 +260 1783859271684535700 REFRESH 54 0 0.76183772222121948 0.4608177172061329 1 8 1 8 0 0 1148 19 416 3988975 56640 225.48480224609375 1.4408000000000001 338.86919999999998 13440 9557 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 416 320 0 64 0 5147756580 66619652 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 25 25 43 36 287 0 0 2 1 16 0 0 0 0 0 +261 1783859273308458200 REFRESH 53 0 0.70480609882012768 0.37478705281090291 0 8 0 8 0 0 4096 83 412 3988965 56640 226.79449462890625 1.4523999999999999 1550.6478 13440 8595 0 0 0 0.22204038352276251 4096 2048 64 1 16 412 320 0 64 0 5148485124 240144 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 27 25 35 35 290 0 0 7 4 72 0 0 0 0 0 +262 1783859273675098100 REFRESH 12 0 0.75956754373368074 0.63287904599659284 3 8 3 8 0 0 1369 35 422 3988979 56640 225.43072509765625 1.5261 306.07299999999998 6720 4819 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 422 320 0 64 0 5149223788 978808 1 0 5 1 2 2 6 1228800 245760 491520 491699 1497600 31 25 68 29 269 1 0 2 0 32 0 0 0 0 0 +263 1783859274051006400 REFRESH 38 0 0.75480216340487172 0.55451448040885853 1 9 1 9 0 0 1997 51 408 3988946 56640 225.28921508789062 1.4437 312.48430000000002 13440 9595 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 408 320 0 64 0 5149948172 1703192 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 25 26 38 31 288 0 0 1 1 49 0 0 0 0 0 +264 1783859274450688800 REFRESH 57 0 0.76992889508073148 0.27342419080068137 1 6 1 6 0 0 4096 36 408 3988958 56640 226.57023620605469 1.4308000000000001 317.6463 13440 8714 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 408 320 0 64 0 5150672556 2427576 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 27 25 32 43 281 0 0 1 2 33 0 0 0 0 0 +265 1783859274841829100 REFRESH 43 0 0.752204835671344 0.8279386712095399 2 11 2 11 0 0 765 19 420 3988948 56640 227.18975830078125 1.4341999999999999 320.14769999999999 6720 4925 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 420 320 0 64 0 5151409180 3164200 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 25 25 25 51 294 0 0 0 0 19 0 0 0 0 0 +266 1783859275205511600 REFRESH 19 0 0.75225046627903924 0.8279386712095399 2 11 2 11 0 0 843 16 415 3988951 56640 226.13299560546875 1.464 305.7201 6720 4841 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 415 320 0 64 0 5152140704 3895724 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 25 25 25 28 312 0 0 0 0 16 0 0 0 0 0 +267 1783859275619604200 REFRESH 41 0 0.75497765354306856 0.55451448040885853 1 9 1 9 0 0 2098 44 417 3988967 56640 225.40902709960938 1.4482999999999999 319.91489999999999 13440 9665 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 417 320 0 64 0 5152874268 4629288 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 26 54 34 278 0 1 12 3 28 0 0 0 0 0 +268 1783859276038344800 REFRESH 52 0 0.75538871122877016 0.36712095400340705 1 7 1 7 0 0 2059 30 417 3988961 56640 225.00556945800781 1.4470000000000001 351.57479999999998 13440 8647 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 417 320 0 64 0 5153607832 5362852 1 0 4 2 2 2 6 983040 491520 491520 491680 1497600 28 25 69 44 251 0 0 4 2 24 0 0 0 0 0 +269 1783859276345706200 REFRESH 16 0 0.75513266537304702 0.3594548551959113 2 6 2 6 0 0 3111 41 418 3988927 56640 227.98130798339844 1.4350000000000001 305.81509999999997 13440 8735 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 418 320 0 64 0 5154342416 6097436 1 0 4 2 2 2 6 983040 491520 491520 491646 1497600 26 25 71 29 267 0 0 11 0 30 0 0 0 0 0 +270 1783859276704719100 REFRESH 28 0 0.752432326854376 0.8279386712095399 2 11 2 11 0 0 625 13 408 3988936 56640 227.26358032226562 1.4886999999999999 303.71260000000001 6720 4928 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 408 320 0 64 0 5155066800 6821820 1 0 5 1 2 2 6 1228800 245760 491520 491656 1497600 25 25 25 27 306 0 0 0 0 13 0 0 0 0 0 +271 1783859277076902500 REFRESH 23 0 0.75581096079680699 0.74190800681430991 1 11 1 11 0 0 3374 19 410 3988958 56640 228.53733825683594 1.4561999999999999 308.01060000000001 6720 4935 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 410 320 0 64 0 5155793224 7548244 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 28 25 33 32 292 0 0 1 0 18 0 0 0 0 0 +272 1783859277427829200 REFRESH 6 0 0.75410173428448835 0.91396933560476989 3 11 3 11 0 0 376 2 419 3988880 56640 225.67832946777344 1.4313 297.73880000000003 6720 4916 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 419 320 0 64 0 5156528828 8283848 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 26 25 25 27 316 0 0 0 0 2 0 0 0 0 0 +273 1783859277832664300 REFRESH 20 0 0.76669462101603059 0.26575809199318562 2 5 2 5 0 0 2010 8 431 3988473 56160 225.98451232910156 1.4444999999999999 345.23230000000001 13440 9966 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 5157276672 9031692 1 0 5 2 2 2 5 1228800 491520 491520 491673 1248000 25 25 25 120 236 0 0 0 0 8 0 0 0 0 0 +274 1783859278200062100 REFRESH 26 0 0.76011313735285579 0.64821124361158422 1 10 1 10 1 0 1741 30 419 3988881 56640 226.57638549804688 1.4392 308.01900000000001 13440 9894 0 0 0.029669130477652537 1.2146813123518276 4096 2048 64 1 16 419 320 0 64 0 5158012276 9767296 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 28 25 25 31 310 3 0 0 3 24 0 0 0 0 1 +275 1783859278628478500 REFRESH 42 0 0.94533668894943146 0 0 4 0 4 0 0 4096 4 429 3987638 55200 228.8721923828125 1.4358 366.40129999999999 20160 12503 0 0 0 0.0063637346964012303 4096 2048 64 1 16 429 320 0 64 0 5158758080 10513100 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 63 25 51 206 84 0 0 0 0 4 0 0 0 0 0 +276 1783859278994597400 REFRESH 3 0 0.76020315248606196 0.64054514480408853 2 9 2 9 0 0 1079 32 407 3988884 56640 223.96826171875 1.4390000000000001 307.1397 13440 9939 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 407 320 0 64 0 5159481444 11236464 1 0 5 2 2 1 6 1228800 491520 491520 245843 1497600 27 25 25 32 298 0 0 0 0 32 0 0 0 0 0 +277 1783859279362544200 REFRESH 27 0 0.76073694856651242 0.93696763202725719 0 14 0 14 0 0 862 20 415 3988889 56640 227.47750854492188 1.4343999999999999 306.97019999999998 6720 4945 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 415 320 0 64 0 5160212968 11967988 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 26 25 25 26 313 0 0 0 0 20 0 0 0 0 0 +278 1783859279729558900 REFRESH 22 0 0.76178378901368071 0.91396933560476989 3 11 3 11 0 0 470 12 412 3988944 56640 228.14720153808594 1.4409000000000001 308.60640000000001 6720 4928 0 0 0.0083644257937872685 0.6977634741384231 4096 2048 64 1 16 412 320 0 64 0 5160941432 12696452 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 25 25 25 25 312 0 0 0 0 12 0 0 0 0 0 +279 1783859280085115100 REFRESH 37 0 0.75287192485722887 0.8356047700170357 1 12 1 12 0 0 964 26 407 3988876 56640 225.99885559082031 1.4378 299.9606 6720 4937 0 0 0.0034109098853556652 0.49993047737085899 4096 2048 64 1 16 407 320 0 64 0 5161664796 13419816 1 0 6 1 2 1 6 1474560 245760 491520 245836 1497600 26 25 25 28 303 0 0 0 1 25 0 0 0 0 0 +280 1783859280447852500 REFRESH 18 0 0.76187726899612052 0.9293015332197615 1 13 1 13 0 0 438 12 413 3988940 56640 228.27520751953125 1.4348000000000001 300.79969999999997 6720 4960 0 0 0.0012150407981630323 1.546403768140675 4096 2048 64 1 16 413 320 0 64 0 5162394280 14149300 1 0 5 1 2 2 6 1228800 245760 491520 491660 1497600 27 25 25 25 311 0 0 0 0 12 0 0 0 0 0 +281 1783859280861662600 REFRESH 17 0 0.77061574857077941 0.28109028960817717 0 7 0 7 0 0 3686 23 410 3988956 56640 225.006591796875 1.4377 351.91489999999999 13440 8678 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 410 320 0 64 0 5163120704 14875724 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 26 27 43 41 273 0 0 1 2 20 0 0 0 0 0 +282 1783859281231474600 REFRESH 2 0 0.76279663420174071 0.45315161839863699 2 7 2 7 0 0 3320 63 411 3988952 56640 227.72735595703125 1.4556 312.00479999999999 13440 9675 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 411 320 0 64 0 5163848148 15603168 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 25 25 26 35 300 0 0 1 2 60 0 0 0 0 0 +283 1783859281615044000 REFRESH 33 0 0.75571099782980555 0.36712095400340705 1 7 1 7 1 0 3260 36 416 3988947 56640 226.70028686523438 1.4371 326.00060000000002 13440 8675 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 416 320 0 64 0 5164580692 16335712 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 72 29 265 0 0 3 0 33 0 0 0 0 1 +284 1783859282028987600 REFRESH 40 0 0.7585606458008638 0.64821124361158422 1 10 1 10 0 0 1603 24 420 3988877 56640 225.154052734375 1.4595 351.70569999999998 13440 9929 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 420 320 0 64 0 5165317316 17072336 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 29 25 25 28 313 1 0 0 2 21 0 0 0 0 0 +285 1783859282388354500 REFRESH 51 0 0.76210980558457009 0.91396933560476989 3 11 3 11 0 0 529 14 409 3988889 56640 226.35417175292969 1.4381999999999999 302.49930000000001 6720 5034 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 409 320 0 64 0 5166042720 17797740 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 28 25 25 25 306 0 0 0 0 14 0 0 0 0 0 +286 1783859282809081100 REFRESH 48 0 0.77081459793437912 0.26575809199318562 2 5 2 5 0 0 2345 21 417 3988967 56640 226.58560180664062 1.5309999999999999 354.52190000000002 13440 8615 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 417 320 0 64 0 5166776284 18531304 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 29 32 306 0 0 1 1 19 0 0 0 0 0 +287 1783859283222489200 REFRESH 39 0 0.75404006752512731 0.55451448040885853 1 9 1 9 0 0 1546 9 429 3988969 56640 227.6259765625 1.4778 357.2629 13440 9596 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 429 320 0 64 0 5167522088 19277108 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 27 25 25 49 303 0 0 0 0 9 0 0 0 0 0 +288 1783859283592363200 REFRESH 5 0 0.75326804714957663 0.8279386712095399 2 11 2 11 0 0 845 11 416 3988942 56640 224.68403625488281 1.4466000000000001 305.9255 6720 4884 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 416 320 0 64 0 5168254632 20009652 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 25 25 25 37 304 0 0 1 3 7 0 0 0 0 0 +289 1783859283998338400 REFRESH 30 0 0.76326287333219167 0.4608177172061329 1 8 1 8 0 0 3293 67 410 3988952 56640 226.99430847167969 1.4362999999999999 341.68540000000002 13440 9686 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 410 320 0 64 0 5168981056 20736076 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 41 39 279 1 0 3 2 61 0 0 0 0 0 +290 1783859284390607800 REFRESH 25 0 0.76311017871284015 0.4608177172061329 1 8 1 8 0 0 2236 23 410 3988950 56640 227.40786743164062 1.4353 335.56540000000001 13440 9705 0 0 0.00017541758499956933 1.6205906158567636 4096 2048 64 1 16 410 320 0 64 0 5169707480 21462500 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 38 32 289 0 0 1 1 21 0 0 0 0 0 +291 1783859284811296000 REFRESH 11 0 0.75603903731063804 0.37478705281090291 0 8 0 8 1 0 2273 28 412 3988957 56640 225.4151611328125 1.4358 362.28879999999998 13440 8560 0 0 0 0.72879154766416776 4096 2048 64 1 16 412 320 0 64 0 5170435944 22190964 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 27 25 44 42 274 0 0 2 1 25 0 0 0 0 1 +292 1783859285175846300 REFRESH 4 0 0.75341409905446188 0.8356047700170357 1 12 1 12 0 0 276 5 416 3988886 56640 225.16633605957031 1.4461999999999999 307.38040000000001 6720 4934 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 416 320 0 64 0 5171168488 22923508 1 0 6 1 2 1 6 1474560 245760 491520 245845 1497600 26 26 25 29 310 0 0 0 0 5 0 0 0 0 0 +293 1783859285590025300 REFRESH 55 0 0.76095800103976818 0.64054514480408853 2 9 2 9 0 0 1058 13 409 3988945 56640 227.9024658203125 1.4320999999999999 302.3485 6720 4854 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 5171893892 23648912 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 29 25 26 27 302 0 0 0 0 13 0 0 0 0 0 +294 1783859285997467300 REFRESH 9 0 0.77112984509636384 0.27342419080068137 1 6 1 6 0 0 2894 67 407 3988964 56640 226.24563598632812 1.4523999999999999 335.38 13440 8659 0 0 0.00034298550913911891 0.32865072374265419 4096 2048 64 1 16 407 320 0 64 0 5172617256 24372276 1 0 4 2 2 2 6 983040 491520 491520 491683 1497600 26 25 33 31 292 0 0 2 1 64 0 0 0 0 0 +295 1783859286361939500 REFRESH 36 0 0.75354562042249917 0.82027257240204421 3 10 3 10 0 0 1183 38 412 3988962 56640 226.83750915527344 1.4332 306.8494 6720 4924 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 412 320 0 64 0 5173345720 25100740 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 28 309 0 0 0 0 38 0 0 0 0 0 +296 1783859286730513700 REFRESH 15 0 0.75681563164305043 0.91396933560476989 3 11 3 11 0 0 319 10 410 3988951 56640 226.52313232421875 1.4361999999999999 313.21890000000002 6720 4894 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 410 320 0 64 0 5174072144 25827164 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 25 309 0 0 0 0 10 0 0 0 0 0 +297 1783859287108743800 REFRESH 45 0 0.76340502442268687 0.45315161839863699 2 7 2 7 0 0 2052 38 412 3988969 56640 226.25074768066406 1.4498 319.81869999999998 13440 9508 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 412 320 0 64 0 5174800608 26555628 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 27 25 37 36 287 0 0 0 3 35 0 0 0 0 0 +298 1783859287541968000 REFRESH 29 0 0.76083403650197656 0.82027257240204421 3 10 3 10 0 0 1101 8 421 3988877 56640 225.56381225585938 1.4414 310.66559999999998 6720 4873 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 421 320 0 64 0 5175538252 27293272 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 26 25 25 29 316 0 0 0 0 8 0 0 0 0 0 +299 1783859287969211100 REFRESH 56 0 0.7828916968273143 0.17206132879045993 2 4 2 4 0 0 4096 18 424 3988472 56160 227.82156372070312 1.4412 366.32089999999999 20160 13997 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 424 320 0 64 0 5176278956 28033976 1 0 4 3 2 2 5 983040 737280 491520 491670 1248000 55 25 25 189 130 0 0 0 2 16 0 0 0 0 0 +300 1783859288364935700 REFRESH 50 0 0.76126359987984549 0.64054514480408853 2 9 2 9 0 0 1008 16 424 3988877 56640 226.35110473632812 1.4413 327.49220000000003 13440 9965 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5177019660 28774680 1 0 5 2 2 1 6 1228800 491520 491520 245835 1497600 27 25 25 38 309 1 0 0 2 13 0 0 0 0 0 +301 1783859288742351500 REFRESH 24 0 0.76057025920222077 1 4 11 4 11 0 0 490 14 408 3988875 56640 227.97721862792969 1.4342999999999999 312.68049999999999 6720 5009 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 408 320 0 64 0 5177744044 29499064 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 26 25 25 25 307 0 0 0 0 14 0 0 0 0 0 +302 1783859289109040800 REFRESH 14 0 0.76135036752150576 0.65587734241908002 0 11 0 11 0 0 1582 20 410 3988932 56640 227.95059204101562 1.4331 310.16309999999999 6720 4871 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 410 320 0 64 0 5178470468 30225488 1 0 5 1 2 2 6 1228800 245760 491520 491651 1497600 27 25 28 28 302 0 0 0 0 20 0 0 0 0 0 +303 1783859289499557000 REFRESH 32 0 0.75506752313484571 0.4608177172061329 1 8 1 8 0 0 2821 40 415 3988966 56640 226.25074768066406 1.4474 311.0752 13440 9270 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 415 320 0 64 0 5179201992 30957012 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 27 25 28 28 307 0 0 4 3 33 0 0 0 0 0 +304 1783859291723361300 DEPTH 42 1 0.93611435155440814 0 0 4 0 4 0 0 4096 21 2591 23677487 81600 1319.4803314208984 8.6189999999999998 2161.5545999999999 120960 59947 1 0 0 0.0063637346964012303 4096 2048 384 12 96 2591 1920 0 384 1 5183703720 35458740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 330 150 247 1113 751 0 0 0 0 21 0 0 0 0 0 +305 1783859293674746100 DEPTH 8 1 0.76419282087795404 0.26575809199318562 2 5 2 5 0 0 2345 40 2527 23742656 147840 1313.5503540039062 8.6334999999999997 1949.8232 80640 42977 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2527 1920 0 384 1 5188140168 39895188 1 0 4 2 2 2 6 5898240 2949120 2949120 2950936 8985600 155 150 162 156 1904 0 0 0 1 39 0 0 0 0 0 +306 1783859295846665300 DEPTH 13 1 0.76421713989541695 0.27342419080068137 1 6 1 6 0 0 4096 67 2565 23742820 147840 1304.1244049072266 8.8766999999999996 2104.6223 80640 42870 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2565 1920 0 384 1 5192615376 44370396 1 0 4 2 2 2 6 5898240 2949120 2949120 2950898 8985600 156 150 156 150 1953 0 0 9 5 53 0 0 0 0 0 +307 1783859298152762400 DEPTH 57 1 0.76425442643063035 0.27342419080068137 1 6 1 6 0 0 4096 77 2541 23742792 147840 1313.1612396240234 8.6355000000000004 2111.7948000000001 80640 42815 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2541 1920 0 384 1 5197066104 48821124 1 0 4 2 2 2 6 5898240 2949120 2949120 2950993 8985600 158 150 167 196 1870 0 0 0 9 68 0 0 0 0 0 +308 1783859300284961100 DEPTH 20 1 0.7590516616087597 0.26575809199318562 2 5 2 5 0 0 2018 30 2599 23720557 125760 1309.2095794677734 8.7618000000000009 2130.1516999999999 80640 46666 1 1 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2599 1920 0 384 1 5201575992 53331012 1 0 5 2 2 2 5 7372800 2949120 2949120 2950941 7488000 150 150 150 433 1716 0 0 2 1 26 0 0 0 0 0 +309 1783859302431146200 DEPTH 54 1 0.75486337865924114 0.4608177172061329 1 8 1 8 0 0 1153 35 2544 23742391 147840 1302.0120544433594 8.6117000000000008 2086.6439999999998 94080 56501 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2544 1920 0 384 1 5206029780 57784800 1 0 4 3 2 1 6 5898240 3440640 2949120 2459175 8985600 150 150 168 186 1890 0 0 0 3 32 0 0 0 0 0 +310 1783859304367969500 DEPTH 34 1 0.75257504680741438 0.8356047700170357 1 12 1 12 0 0 698 47 2579 23741774 147840 1306.3743438720703 9.0897000000000006 1876.6604 47040 26827 1 0 0.00024456112032069028 1.7981817145069319 4096 2048 384 12 96 2579 1920 0 384 1 5210519268 62274288 1 0 6 1 2 1 6 8601600 1720320 2949120 1475519 8985600 150 150 150 150 1979 0 0 0 1 46 0 0 0 0 0 +311 1783859306529083800 DEPTH 26 1 0.75154297099022738 0.64821124361158422 1 10 1 10 0 0 1762 69 2571 23742400 147840 1306.6065826416016 8.6205999999999996 2076.2319000000002 80640 46430 1 0 0.029669130477652537 1.2146813123518276 4096 2048 384 12 96 2571 1920 0 384 1 5215000596 66755616 1 0 4 2 2 2 6 6389760 2949120 2949120 2459183 8985600 156 154 150 175 1936 15 4 1 10 39 0 0 0 0 0 +312 1783859309932193600 DEPTH 48 1 0.76444009148327574 0.26575809199318562 2 5 2 5 0 0 2351 29 2584 23742915 147840 1305.6635131835938 8.6323000000000008 3280.5293000000001 80640 42760 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 0 384 1 5219495264 4141928 1 0 4 2 2 2 6 5898240 2949120 2949120 2951020 8985600 150 150 150 157 1977 0 0 1 0 28 0 0 0 0 0 +313 1783859312200595400 DEPTH 17 1 0.76447707192090564 0.28109028960817717 0 7 0 7 0 0 3702 49 2576 23727483 132480 1298.7617340087891 8.7209000000000003 2203.8688000000002 107520 54636 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2576 1920 0 384 1 5223981692 8628356 1 0 4 3 2 2 5 5898240 3932160 2949120 2950913 7987200 156 156 150 548 1566 0 3 2 1 43 0 0 0 0 0 +314 1783859314558396000 DEPTH 42 1 0.7830126113247845 0 0 4 0 4 1 0 4096 16 2597 23677421 81600 1307.6858825683594 8.6530000000000005 2205.3393000000001 120960 48531 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2597 1920 0 384 1 5228489540 13136204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426367 4492800 301 150 231 1301 614 0 0 0 0 16 0 0 0 0 1 +315 1783859316704448300 DEPTH 2 1 0.7551025546183201 0.45315161839863699 2 7 2 7 0 0 3338 91 2559 23742646 147840 1309.0971069335938 8.7004000000000001 2075.5572000000002 80640 45798 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2559 1920 0 384 1 5232958628 17605292 1 0 4 2 2 2 6 5898240 2949120 2949120 2950952 8985600 150 150 154 162 1943 0 0 2 4 85 0 0 0 0 0 +316 1783859318556322900 DEPTH 51 1 0.75172380822076323 0.91396933560476989 3 11 3 11 0 0 531 21 2561 23741764 147840 1306.2154083251953 8.7039000000000009 1793.7748999999999 47040 27078 1 0 0.04374756045180065 0.27288744213454319 4096 2048 384 12 96 2561 1920 0 384 1 5237429756 22076420 1 0 6 1 2 1 6 8601600 1720320 2949120 1475511 8985600 157 154 150 150 1950 0 0 0 1 20 0 0 0 0 0 +317 1783859320449279000 DEPTH 22 1 0.75176627702935039 0.91396933560476989 3 11 3 11 1 0 471 37 2569 23742673 147840 1322.4234924316406 8.6264000000000003 1825.5407 40320 22918 1 0 0.0083533723482868329 0.70040182967037024 4096 2048 384 12 96 2569 1920 0 384 1 5241909044 26555708 1 0 5 1 2 2 6 7372800 1474560 2949120 2950975 8985600 150 150 150 150 1969 0 0 0 0 37 0 0 0 0 2 +318 1783859322503676400 DEPTH 18 1 0.75180868809061863 0.9293015332197615 1 13 1 13 1 0 440 65 2531 23742726 147840 1326.0298156738281 8.6597000000000008 1977.4731999999999 40320 23054 1 0 0.0012157253655346659 1.5441952694290573 4096 2048 384 12 96 2531 1920 0 384 1 5246349572 30996236 1 0 5 1 2 2 6 7372800 1474560 2949120 2951031 8985600 162 150 150 150 1919 0 0 0 0 65 0 0 0 0 1 +319 1783859324382165400 DEPTH 12 1 0.75181325800463794 0.63287904599659284 3 8 3 8 0 0 1389 86 2641 23742367 147840 1310.5182647705078 8.6256000000000004 1815.0813000000001 80640 46971 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2641 1920 0 384 1 5250902300 35548964 1 0 4 2 2 2 6 6389760 2949120 2949120 2459151 8985600 162 150 167 150 2012 11 0 2 2 71 0 0 0 0 0 +320 1783859326532558600 DEPTH 9 1 0.76473452724249003 0.27342419080068137 1 6 1 6 1 0 2907 54 2561 23742786 147840 1312.9565124511719 8.6107999999999993 2086.7157999999999 80640 42624 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2561 1920 0 384 1 5255373428 40020092 1 0 4 2 2 2 6 5898240 2949120 2949120 2950995 8985600 156 150 168 157 1930 0 0 7 5 42 0 0 0 0 1 +321 1783859328658895600 DEPTH 30 1 0.7554892290339732 0.4608177172061329 1 8 1 8 0 0 3311 92 2534 23742718 147840 1311.8392333984375 8.6191999999999993 2054.3924999999999 80640 45746 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2534 1920 0 384 1 5259817016 44463680 1 0 4 2 2 2 6 5898240 2949120 2949120 2951018 8985600 156 150 160 184 1884 0 0 11 11 70 0 0 0 0 0 +322 1783859330786958800 DEPTH 25 1 0.75535273411071602 0.4608177172061329 1 8 1 8 0 0 2247 42 2537 23742648 147840 1310.9841766357422 8.6281999999999996 2069.3508000000002 80640 45535 1 0 0.00017541758499956933 1.6205906158567636 4096 2048 384 12 96 2537 1920 0 384 1 5264263664 48910328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950951 8985600 150 150 177 171 1889 0 0 3 7 32 0 0 0 0 0 +323 1783859332892581500 DEPTH 3 1 0.75197547512755014 0.64054514480408853 2 9 2 9 0 0 1087 57 2530 23742400 147840 1299.3291931152344 8.6317999999999984 2047.6389999999999 80640 46333 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2530 1920 0 384 1 5268703172 53349836 1 0 4 2 2 2 6 6389760 2949120 2949120 2459185 8985600 152 151 150 173 1904 5 2 3 0 47 0 0 0 0 0 +324 1783859334761607300 DEPTH 55 1 0.75201589251596102 0.64054514480408853 2 9 2 9 0 0 1065 53 2519 23742723 147840 1321.3132781982422 8.7256 1804.9929999999999 40320 23459 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2519 1920 0 384 1 5273131460 57778124 1 0 5 1 2 2 6 7372800 1474560 2949120 2951026 8985600 162 150 156 156 1895 0 0 0 0 53 0 0 0 0 0 +325 1783859336677340500 DEPTH 10 1 0.75205625543386667 0.64821124361158422 1 10 1 10 0 0 1090 60 2547 23742349 147840 1312.3020782470703 8.6341999999999999 1846.5243 80640 46329 1 0 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 2547 1920 0 384 1 5277588308 62234972 1 0 4 2 2 2 6 6389760 2949120 2949120 2459135 8985600 156 160 150 151 1930 6 3 0 4 47 0 0 0 0 0 +326 1783859338540737800 DEPTH 27 1 0.75124591581016997 0.93696763202725719 0 14 0 14 0 0 864 58 2509 23741729 147840 1312.1619567871094 8.6382999999999992 1804.6235999999999 47040 26980 1 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 384 12 96 2509 1920 0 384 1 5282006396 66653060 1 0 6 1 2 1 6 8601600 1720320 2949120 1475472 8985600 150 150 150 152 1907 0 0 0 0 58 0 0 0 0 0 +327 1783859341588296900 DEPTH 58 1 0.75056781392126548 0.92163543441226559 2 12 2 12 0 0 521 17 2545 23741728 147840 1314.7944793701172 8.6890999999999998 2991.5531999999998 47040 26619 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2545 1920 0 384 1 5286461284 3999128 1 0 6 1 2 1 6 8601600 1720320 2949120 1475472 8985600 161 156 150 156 1922 0 0 0 0 17 0 0 0 0 0 +328 1783859343753441000 DEPTH 42 1 0.82008524447946096 0 0 4 0 4 0 0 4096 15 2593 23677622 81600 1306.8810272216797 8.6747999999999994 2163.4814999999999 120960 38655 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 5290965052 8502896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426500 4492800 279 150 223 1353 588 0 0 0 0 15 0 0 0 0 0 +329 1783859346051394300 DEPTH 56 1 0.77759793183434667 0.17206132879045993 2 4 2 4 0 0 4096 65 2579 23720543 125760 1308.6648559570312 8.7835999999999999 2160.5032000000001 120960 68331 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2579 1920 0 384 1 5295454540 12992384 1 0 4 3 2 2 5 5898240 4423680 2949120 2950917 7488000 228 150 150 918 1133 0 0 1 2 62 0 0 0 0 0 +330 1783859348208013200 DEPTH 45 1 0.75566326660531369 0.45315161839863699 2 7 2 7 0 0 2057 44 2582 23742696 147840 1309.8915710449219 8.785499999999999 2089.4713999999999 80640 45450 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2582 1920 0 384 1 5299947088 17484932 1 0 4 2 2 2 6 5898240 2949120 2949120 2951000 8985600 150 150 173 156 1953 0 0 6 4 34 0 0 0 0 0 +331 1783859350325448100 DEPTH 50 1 0.75229729698779568 0.64054514480408853 2 9 2 9 0 0 1021 36 2599 23742348 147840 1304.0998382568359 8.6967999999999996 2056.6536999999998 80640 46131 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2599 1920 0 384 1 5304456976 21994820 1 0 4 2 2 2 6 6389760 2949120 2949120 2459135 8985600 150 150 150 180 1969 1 5 0 0 30 0 0 0 0 0 +332 1783859352328488500 DEPTH 14 1 0.75233728256428289 0.65587734241908002 0 11 0 11 0 0 1591 73 2529 23742709 147840 1323.7114715576172 8.7269000000000005 1930.1578999999999 40320 23745 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2529 1920 0 384 1 5308895464 26433308 1 0 5 1 2 2 6 7372800 1474560 2949120 2951011 8985600 156 150 155 157 1911 0 0 0 0 73 0 0 0 0 0 +333 1783859354473598000 DEPTH 40 1 0.75057721479294082 0.64821124361158422 1 10 1 10 0 0 1629 57 2571 23742344 147840 1303.0372467041016 8.601700000000001 2086.6752000000001 80640 46257 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2571 1920 0 384 1 5313376792 30914636 1 0 4 2 2 2 6 6389760 2949120 2949120 2459131 8985600 151 150 150 150 1970 3 6 0 2 46 0 0 0 0 0 +334 1783859356630943700 DEPTH 52 1 0.75050920141972832 0.36712095400340705 1 7 1 7 0 0 2075 57 2564 23739058 144000 1300.8611297607422 8.6819000000000006 2093.4796000000001 87360 47967 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2564 1920 0 384 1 5317850980 35388824 1 0 4 3 2 2 5 5898240 3194880 2949120 2950947 8736000 162 150 230 252 1770 0 0 2 0 55 0 0 0 0 0 +335 1783859358850036400 DEPTH 44 1 0.75030307736954438 0.36712095400340705 1 7 1 7 0 0 2076 59 2618 23742866 147840 1318.4143524169922 8.6138999999999992 2144.9497000000001 80640 42534 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2618 1920 0 384 1 5322380248 39918092 1 0 4 2 2 2 6 5898240 2949120 2949120 2950988 8985600 150 150 202 168 1948 0 0 4 5 50 0 0 0 0 0 +336 1783859359259292800 REFRESH 46 0 0.75031393758367693 0.37478705281090291 0 8 0 8 0 0 2638 18 409 3988935 56640 226.74943542480469 1.4283999999999999 347.14319999999998 13440 8598 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 409 320 0 64 0 5323105652 40643496 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 26 25 38 43 277 0 0 0 1 17 0 0 0 0 0 +337 1783859359625143700 REFRESH 38 0 0.74878941000404975 0.55451448040885853 1 9 1 9 0 0 2011 49 409 3988952 56640 225.75410461425781 1.4412 306.2919 13440 9309 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 409 320 0 64 0 5323831056 41368900 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 25 26 39 32 287 0 0 1 0 48 0 0 0 0 0 +338 1783859360022393100 REFRESH 0 0 0.73912354917852729 0.8279386712095399 2 11 2 11 0 0 867 26 416 3988881 56640 225.56675720214844 1.6028 315.66640000000001 13440 9947 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 416 320 0 64 0 5324563600 42101444 1 0 5 2 2 1 6 1228800 491520 491520 245840 1497600 26 25 25 32 308 0 0 0 1 25 0 0 0 0 0 +339 1783859360426908900 REFRESH 33 0 0.75044002118533792 0.36712095400340705 1 7 1 7 0 0 3281 48 418 3988943 56640 227.42527770996094 1.4329000000000001 326.9708 13440 8617 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 418 320 0 64 0 5325298184 42836028 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 93 31 244 0 0 2 1 45 0 0 0 0 0 +340 1783859360807534000 REFRESH 32 0 0.74829590528426082 0.4608177172061329 1 8 1 8 0 0 2840 47 412 3988941 56640 225.95993041992188 1.4745999999999999 319.40370000000001 13440 9168 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 412 320 0 64 0 5326026648 43564492 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 27 25 36 28 296 0 0 5 1 41 0 0 0 0 0 +341 1783859361212412700 REFRESH 54 0 0.74793355840238185 0.4608177172061329 1 8 1 8 0 0 1160 15 416 3988883 56640 227.5020751953125 1.4400999999999999 341.82479999999998 20160 14972 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 416 320 0 64 0 5326759192 44297036 1 0 4 3 2 1 6 983040 737280 491520 245841 1497600 25 25 25 36 305 0 0 0 3 12 0 0 0 0 0 +342 1783859361528597100 REFRESH 10 0 0.66362288529629421 0.64821124361158422 1 10 1 10 0 0 1093 18 417 3988948 56640 226.29798889160156 1.4357 313.60419999999999 13440 9901 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 417 320 0 64 0 5327492756 45030600 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 25 25 25 29 313 1 0 0 1 16 0 0 0 0 0 +343 1783859361912588400 REFRESH 12 0 0.73366085810852999 0.63287904599659284 3 8 3 8 0 0 1402 31 426 3988938 56640 227.33209228515625 1.4328000000000001 323.7122 13440 9606 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5328235500 45773344 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 25 25 92 30 254 0 0 4 0 27 0 0 0 0 0 +344 1783859362303467100 REFRESH 21 0 0.74906154072736431 0.56218057921635434 0 10 0 10 0 0 2433 50 406 3988933 56640 225.9814453125 1.4884999999999999 329.8492 13440 9505 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 406 320 0 64 0 5328957844 46495688 1 0 4 2 2 2 6 983040 491520 491520 491653 1497600 27 25 50 49 255 0 0 5 2 43 0 0 0 0 0 +345 1783859362711686800 REFRESH 1 0 0.7506344686730515 0.36712095400340705 1 7 1 7 0 0 2882 39 414 3988941 56640 225.62098693847656 1.5952999999999999 332.80439999999999 13440 8617 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 414 320 0 64 0 5329688348 47226192 1 0 4 2 2 2 6 983040 491520 491520 491659 1497600 26 25 53 52 258 0 0 2 5 32 0 0 0 0 0 +346 1783859363112847900 REFRESH 13 0 0.75885319317500199 0.27342419080068137 1 6 1 6 0 0 4096 61 413 3988947 56640 225.42643737792969 1.4333 330.87869999999998 13440 8594 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 413 320 0 64 0 5330417832 47955676 1 0 4 2 2 2 6 983040 491520 491520 491651 1497600 26 25 50 29 283 0 0 6 6 49 0 0 0 0 0 +347 1783859363435509000 REFRESH 27 0 0.70189346802906027 0.93696763202725719 0 14 0 14 0 0 866 17 408 3988881 56640 227.13241577148438 1.4375 320.7525 6720 4940 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 408 320 0 64 0 5331142216 48680060 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 26 25 25 26 306 0 0 0 0 17 0 0 0 0 0 +348 1783859363802687200 REFRESH 6 0 0.73839490129301621 0.91396933560476989 3 11 3 11 0 0 377 8 417 3988891 56640 225.8104248046875 1.4387000000000001 304.92790000000002 13440 9935 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 417 320 0 64 0 5331875780 49413624 1 0 5 2 2 1 6 1228800 491520 491520 245849 1497600 25 25 25 27 315 0 0 0 2 6 0 0 0 0 0 +349 1783859364179795000 REFRESH 18 0 0.74278461604163115 0.9293015332197615 1 13 1 13 0 0 440 4 414 3988977 56640 228.24652099609375 1.4307000000000001 312.19720000000001 6720 4864 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 414 320 0 64 0 5332606284 50144128 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 27 25 25 25 312 0 0 0 0 4 0 0 0 0 0 +350 1783859364581416500 REFRESH 25 0 0.74824218379187257 0.4608177172061329 1 8 1 8 1 0 2252 17 406 3988960 56640 226.85183715820312 1.4476 340.65550000000002 13440 9150 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 406 320 0 64 0 5333328628 50866472 1 0 4 2 2 2 6 983040 491520 491520 491678 1497600 26 25 41 35 279 0 0 2 1 14 0 0 0 0 1 +351 1783859364952860400 REFRESH 51 0 0.74285975441099228 0.91396933560476989 3 11 3 11 0 0 532 8 402 3988884 56640 226.06233215332031 1.4374 304.04820000000001 6720 4993 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 402 320 0 64 0 5334046892 51584736 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 29 25 25 27 296 0 0 0 0 8 0 0 0 0 0 +352 1783859365324494500 REFRESH 56 0 0.75240668791640397 0.17206132879045993 2 4 2 4 0 0 4096 11 426 3988460 56160 227.69970703125 1.4437 369.88260000000002 20160 12795 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 426 320 0 64 0 5334789636 52327480 1 0 4 3 2 2 5 983040 737280 491520 491658 1248000 57 25 25 205 114 0 0 0 1 10 0 0 0 0 0 +353 1783859365708302300 REFRESH 57 0 0.75909220787709408 0.27342419080068137 1 6 1 6 0 0 4096 30 405 3988972 56640 228.1502685546875 1.4487000000000001 322.31999999999999 13440 8375 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 405 320 0 64 0 5335510960 53048804 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 26 25 38 50 266 0 0 0 1 29 0 0 0 0 0 +354 1783859366076054300 REFRESH 3 0 0.74407528863170302 0.64054514480408853 2 9 2 9 0 0 1091 22 405 3988969 56640 225.29740905761719 1.4340999999999999 311.11759999999998 13440 9882 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 405 320 0 64 0 5336232284 53770128 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 25 25 25 36 294 0 0 0 0 22 0 0 0 0 0 +355 1783859366487369100 REFRESH 39 0 0.74684981293258612 0.55451448040885853 1 9 1 9 0 0 1546 7 426 3988953 56640 226.75660705566406 1.4628000000000001 353.048 13440 9506 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 426 320 0 64 0 5336975028 54512872 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 27 25 25 47 302 0 0 0 0 7 0 0 0 0 0 +356 1783859366922685500 REFRESH 19 0 0.74578124272063562 0.8279386712095399 2 11 2 11 0 0 847 22 415 3988874 56640 226.77299499511719 1.4383999999999999 303.88339999999999 13440 9877 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 415 320 0 64 0 5337706552 55244396 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 25 25 25 28 312 0 0 0 0 22 0 0 0 0 0 +357 1783859367284312600 REFRESH 15 0 0.74819924048012243 0.91396933560476989 3 11 3 11 0 0 320 10 410 3988942 56640 227.09759521484375 1.4375 303.34829999999999 6720 4867 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 410 320 0 64 0 5338432976 55970820 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 26 25 25 27 307 0 0 0 0 10 0 0 0 0 0 +358 1783859367606656000 REFRESH 58 0 0.74167330408987209 0.92163543441226559 2 12 2 12 0 0 522 13 407 3988874 56640 226.37055969238281 1.4374 320.62819999999999 6720 4976 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 407 320 0 64 0 5339156340 56694184 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 27 25 25 32 298 0 0 0 0 13 0 0 0 0 0 +359 1783859367982966200 REFRESH 28 0 0.74589716891233826 0.8279386712095399 2 11 2 11 0 0 627 13 412 3988962 56640 227.17439270019531 1.4303999999999999 311.4751 6720 4897 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 412 320 0 64 0 5339884804 57422648 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 26 311 0 0 0 0 13 0 0 0 0 0 +360 1783859368310072300 REFRESH 45 0 0.74860309340899467 0.45315161839863699 2 7 2 7 0 0 2067 40 411 3988959 56640 226.50572204589844 1.4373 324.767 13440 9089 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 411 320 0 64 0 5340612248 58150092 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 27 25 43 39 277 0 0 5 1 34 0 0 0 0 0 +361 1783859368785687600 REFRESH 11 0 0.75121938428906976 0.37478705281090291 0 8 0 8 0 0 2292 30 415 3988944 56640 225.723388671875 1.4423999999999999 355.72320000000002 13440 8536 0 0 0 0.72879154766416776 4096 2048 64 1 16 415 320 0 64 0 5341343772 58881616 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 27 25 45 48 270 0 1 0 3 26 0 0 0 0 0 +362 1783859369235358600 REFRESH 20 0 0.75468033438142457 0.26575809199318562 2 5 2 5 0 0 2018 3 429 3988495 56160 226.18623352050781 1.4321999999999999 354.61779999999999 13440 9336 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 429 320 0 64 0 5342089576 59627420 1 0 5 2 2 2 5 1228800 491520 491520 491693 1248000 25 25 25 180 174 0 0 0 0 3 0 0 0 0 0 +363 1783859369567406500 REFRESH 50 0 0.74440998670683634 0.64054514480408853 2 9 2 9 0 0 1021 4 421 3988944 56640 225.49913024902344 1.4390000000000001 330.11559999999997 13440 9946 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 421 320 0 64 0 5342827220 60365064 1 0 4 2 2 2 6 983040 491520 491520 491662 1497600 25 25 25 51 295 0 0 0 1 3 0 0 0 0 0 +364 1783859369961943800 REFRESH 53 0 0.75129903980655544 0.37478705281090291 0 8 0 8 0 0 4096 52 405 3988951 56640 226.01625061035156 1.4330000000000001 332.06639999999999 13440 8586 0 0 0 0.22204038352276251 4096 2048 64 1 16 405 320 0 64 0 5343548544 61086388 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 27 25 35 35 283 0 0 2 2 48 0 0 0 0 0 +365 1783859370337296300 REFRESH 43 0 0.7461276799875618 0.8279386712095399 2 11 2 11 0 0 765 12 418 3988877 56640 227.12115478515625 1.4333 311.43290000000002 6720 4956 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 418 320 0 64 0 5344283128 61820972 1 0 6 1 2 1 6 1474560 245760 491520 245837 1497600 25 25 25 52 291 0 0 0 0 12 0 0 0 0 0 +366 1783859370725246700 REFRESH 23 0 0.74949925940255968 0.74190800681430991 1 11 1 11 0 0 3376 12 411 3988885 56640 233.60511779785156 1.4608000000000001 327.56979999999999 13440 9960 0 0 0.019300925759138894 0.7442759509966006 4096 2048 64 1 16 411 320 0 64 0 5345010572 62548416 1 0 5 2 2 1 6 1228800 491520 491520 245844 1497600 30 25 25 28 303 0 0 0 0 12 0 0 0 0 0 +367 1783859371118945900 REFRESH 31 0 0.75140872433307937 0.3594548551959113 2 6 2 6 0 0 2545 34 412 3988973 56640 232.69888305664062 1.4347000000000001 328.5421 13440 8609 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 412 320 0 64 0 5345739036 63276880 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 25 25 34 35 293 0 0 0 3 31 0 0 0 0 0 +368 1783859371456881500 REFRESH 40 0 0.74297426152611201 0.64821124361158422 1 10 1 10 0 0 1630 14 420 3988953 56640 220.76620483398438 1.4319 336.16849999999999 13440 9898 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 420 320 0 64 0 5346475660 64013504 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 25 31 314 0 0 0 2 12 0 0 0 0 0 +369 1783859371929621700 REFRESH 48 0 0.75963045247018168 0.26575809199318562 2 5 2 5 0 0 2356 24 422 3989002 56640 232.62924194335938 1.4417 344.49439999999998 13440 8718 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 422 320 0 64 0 5347214324 64752168 1 0 4 2 2 2 6 983040 491520 491520 491707 1497600 25 25 31 38 303 0 0 0 1 23 0 0 0 0 0 +370 1783859372362778100 REFRESH 17 0 0.75966372714783625 0.28109028960817717 0 7 0 7 0 0 3710 16 420 3988514 56160 221.98605346679688 1.4391 370.3759 20160 14818 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 420 320 0 64 0 5347950948 65488792 1 0 4 3 2 2 5 983040 737280 491520 491713 1248000 25 25 25 244 101 0 0 2 3 11 0 0 0 0 0 +371 1783859372700036300 REFRESH 44 0 0.74471945107504878 0.36712095400340705 1 7 1 7 0 0 2123 74 423 3988454 56160 223.31698608398438 1.4298 335.4246 20160 14965 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 423 320 0 64 0 5348690632 66228476 1 0 4 3 2 2 5 983040 737280 491520 491654 1248000 25 25 25 47 301 0 0 0 12 62 0 0 0 0 0 +372 1783859373113696100 REFRESH 30 0 0.74918808267962733 0.4608177172061329 1 8 1 8 0 0 3335 56 410 3988960 56640 221.13177490234375 1.4574 340.59870000000001 13440 9184 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 410 320 0 64 0 5349417056 66954900 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 26 25 61 43 255 0 0 9 4 43 0 0 0 0 0 +373 1783859374674545000 REFRESH 26 0 0.74482848836193849 0.64821124361158422 1 10 1 10 0 0 1775 42 412 3988940 56640 220.06784057617188 1.4576 1495.7816 13440 9867 0 0 0.029669130477652537 1.2146813123518276 4096 2048 64 1 16 412 320 0 64 0 5350145600 574904 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 25 25 25 34 303 0 0 0 0 42 0 0 0 0 0 +374 1783859375060460800 REFRESH 55 0 0.74481384399845463 0.64054514480408853 2 9 2 9 0 0 1068 14 407 3988955 56640 221.69497680664062 1.4245000000000001 315.7319 6720 4674 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 407 320 0 64 0 5350868964 1298268 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 29 25 27 27 299 0 0 0 0 14 0 0 0 0 0 +375 1783859375422134600 REFRESH 7 0 0.74651136338033863 0.8356047700170357 1 12 1 12 0 0 855 14 404 3988876 56640 219.89375305175781 1.4219999999999999 303.9169 6720 4904 0 0 0.00025497404471684274 0.86876728204740172 4096 2048 64 1 16 404 320 0 64 0 5351589268 2018572 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 25 25 25 28 301 0 0 0 0 14 0 0 0 0 0 +376 1783859375820056000 REFRESH 34 0 0.74508771508712934 0.8356047700170357 1 12 1 12 0 0 699 15 422 3988882 56640 219.74835205078125 1.4443999999999999 331.15949999999998 6720 4922 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 422 320 0 64 0 5352327932 2757236 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 25 25 25 25 322 0 0 0 0 15 0 0 0 0 0 +377 1783859376280647500 REFRESH 41 0 0.75028015236201517 0.55451448040885853 1 9 1 9 0 0 2111 31 418 3988944 56640 219.75654602050781 1.4393 332.98009999999999 13440 9434 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 418 320 0 64 0 5353062516 3491820 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 26 52 33 282 0 0 8 0 23 0 0 0 0 0 +378 1783859376671746000 REFRESH 16 0 0.75177815500944134 0.3594548551959113 2 6 2 6 0 0 3120 28 413 3988954 56640 221.802490234375 1.4587000000000001 312.95670000000001 13440 8608 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 413 320 0 64 0 5353792000 4221304 1 0 4 2 2 2 6 983040 491520 491520 491674 1497600 26 25 79 27 256 0 0 3 0 25 0 0 0 0 0 +379 1783859377038051200 REFRESH 49 0 0.75080557681200022 0.4454855195911413 3 6 3 6 0 0 1427 33 407 3988976 56640 220.45286560058594 1.4426000000000001 300.43259999999998 13440 9105 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 407 320 0 64 0 5354515364 4944668 1 0 4 2 2 2 6 983040 491520 491520 491695 1497600 28 25 31 36 287 0 0 0 1 32 0 0 0 0 0 +380 1783859377461421900 REFRESH 42 0 0.9282161711986936 0 0 4 0 4 0 0 4096 6 428 3987631 55200 223.44090270996094 1.4771000000000001 363.22070000000002 20160 12171 0 0 0 0.0063610145412278767 4096 2048 64 1 16 428 320 0 64 0 5355260148 5689452 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 63 25 53 210 77 0 0 0 0 6 0 0 0 0 0 +381 1783859377839871500 REFRESH 2 0 0.74936795841281412 0.45315161839863699 2 7 2 7 0 0 3354 42 414 3988974 56640 220.691650390625 1.4436 314.75060000000002 13440 9216 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 414 320 0 64 0 5355990652 6419956 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 25 25 28 35 301 0 0 1 1 40 0 0 0 0 0 +382 1783859378270013300 REFRESH 9 0 0.76006706521424683 0.27342419080068137 1 6 1 6 0 0 2938 63 408 3988973 56640 221.37957763671875 1.4339 311.28719999999998 13440 8384 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 408 320 0 64 0 5356715036 7144340 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 26 25 35 36 286 0 0 0 1 62 0 0 0 0 0 +383 1783859378632158500 REFRESH 8 0 0.76010419670294749 0.26575809199318562 2 5 2 5 0 0 2348 21 410 3988946 56640 221.77587890625 1.4452 305.42349999999999 13440 8200 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 410 320 0 64 0 5357441460 7870764 1 0 4 2 2 2 6 983040 491520 491520 491660 1497600 26 25 27 31 301 0 0 0 0 21 0 0 0 0 0 +384 1783859378998758100 REFRESH 24 0 0.75221458269859842 1 4 11 4 11 0 0 491 14 410 3988871 56640 222.3687744140625 1.4505999999999999 310.0317 13440 9995 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 410 320 0 64 0 5358167884 8597188 1 0 5 2 2 1 6 1228800 491520 491520 245831 1497600 26 25 25 27 307 0 0 0 0 14 0 0 0 0 0 +385 1783859379378381600 REFRESH 36 0 0.74688343932913426 0.82027257240204421 3 10 3 10 0 0 1189 23 406 3988874 56640 244.71347045898438 1.4745999999999999 320.072 13440 9926 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 406 320 0 64 0 5358890228 9319532 1 0 5 2 2 1 6 1228800 491520 491520 245834 1497600 25 25 25 31 300 0 1 0 0 22 0 0 0 0 0 +386 1783859379752213000 REFRESH 29 0 0.75115225633003457 0.82027257240204421 3 10 3 10 0 0 1101 8 417 3988870 56640 237.89056396484375 1.6154999999999999 318.85219999999998 13440 9922 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 417 320 0 64 0 5359623792 10053096 1 0 5 2 2 1 6 1228800 491520 491520 245830 1497600 25 25 25 28 314 0 0 0 1 7 0 0 0 0 0 +387 1783859380139784300 REFRESH 4 0 0.74195797243804695 0.8356047700170357 1 12 1 12 0 0 276 6 422 3988878 56640 236.28901672363281 1.4373 326.72449999999998 6720 4831 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 422 320 0 64 0 5360362456 10791760 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 26 25 36 309 0 0 0 0 6 0 0 0 0 0 +388 1783859380567963500 REFRESH 5 0 0.74702232694587067 0.8279386712095399 2 11 2 11 0 0 848 16 415 3988870 56640 236.18048095703125 1.4380999999999999 312.0736 6720 5025 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 415 320 0 64 0 5361093980 11523284 1 0 6 1 2 1 6 1474560 245760 491520 245830 1497600 25 25 25 39 301 0 0 0 2 14 0 0 0 0 0 +389 1783859380941169900 REFRESH 52 0 0.74552832435116212 0.36712095400340705 1 7 1 7 0 0 2079 19 421 3988497 56160 239.84661865234375 1.4342999999999999 371.6814 20160 14861 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 421 320 0 64 0 5361831624 12260928 1 0 4 3 2 2 5 983040 737280 491520 491697 1248000 25 25 25 127 219 0 1 0 7 11 0 0 0 0 0 +390 1783859381319075900 REFRESH 35 0 0.74706942376900654 0.8279386712095399 2 11 2 11 0 0 1086 22 408 3988945 56640 238.36160278320312 1.4339 322.80990000000003 6720 4944 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 0 64 0 5362556008 12985312 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 25 25 25 30 303 0 0 0 0 22 0 0 0 0 0 +391 1783859381716878800 REFRESH 47 0 0.74712851691963644 0.8279386712095399 2 11 2 11 1 0 653 27 413 3988889 56640 238.097412109375 1.4499 337.10500000000002 13440 9998 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 413 320 0 64 0 5363285492 13714796 1 0 5 2 2 1 6 1228800 491520 491520 245848 1497600 26 25 25 32 305 0 0 0 0 27 0 0 0 0 1 +392 1783859382076042500 REFRESH 14 0 0.74546270097453726 0.65587734241908002 0 11 0 11 0 0 1599 28 412 3988957 56640 240.86944580078125 1.4492 357.31020000000001 6720 4570 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 412 320 0 64 0 5364013956 14443260 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 27 25 29 28 303 0 0 0 1 27 0 0 0 0 0 +393 1783859382532249000 REFRESH 22 0 0.74445657879420157 0.91396933560476989 3 11 3 11 0 0 472 18 413 3988969 56640 237.191162109375 1.4563999999999999 324.23559999999998 6720 4953 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 413 320 0 64 0 5364743440 15172744 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 25 25 25 25 313 0 0 0 0 18 0 0 0 0 0 +394 1783859382916132400 REFRESH 37 0 0.74724818994641273 0.8356047700170357 1 12 1 12 1 0 974 26 406 3988890 56640 226.02342224121094 1.462 322.17110000000002 6720 4891 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 406 320 0 64 0 5365465784 15895088 1 0 6 1 2 1 6 1474560 245760 491520 245849 1497600 25 25 25 28 303 0 0 0 1 25 0 0 0 0 1 +395 1783859385228280700 DEPTH 42 1 0.82136663663160292 0 0 4 0 4 0 0 4096 18 2596 23677753 81600 1323.3994140625 8.6814999999999998 2253.6278000000002 120960 58812 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2596 1920 0 384 1 5369972612 20401916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426383 4492800 332 150 267 1211 636 0 0 0 0 18 0 0 0 0 0 +396 1783859387439623400 DEPTH 56 1 0.76814704352056451 0.17206132879045993 2 4 2 4 0 0 4096 39 2575 23698507 103680 1303.8438262939453 8.5860000000000003 2141.5693999999999 120960 63573 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2575 1920 0 384 1 5374458020 24887324 1 0 4 3 3 2 4 5898240 4423680 4423680 2950956 5990400 225 150 150 1287 763 0 0 0 3 36 0 0 0 0 0 +397 1783859389665896900 DEPTH 48 1 0.75418438971643398 0.26575809199318562 2 5 2 5 0 0 2366 30 2597 23727404 132480 1304.9212036132812 8.644499999999999 2151.3665999999998 107520 54465 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2597 1920 0 384 1 5378965868 29395172 1 0 4 3 2 2 5 5898240 3932160 2949120 2950987 7987200 150 150 152 403 1742 0 0 1 1 28 0 0 0 0 0 +398 1783859391766816800 DEPTH 13 1 0.75421561107876722 0.27342419080068137 1 6 1 6 0 0 4096 65 2556 23720665 125760 1303.6677093505859 8.6257000000000001 2099.2109 120960 57900 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2556 1920 0 384 1 5383431896 33861200 1 0 4 3 2 2 5 5898240 4423680 2949120 2950967 7488000 156 150 156 292 1802 0 0 2 2 61 0 0 0 0 0 +399 1783859393924096400 DEPTH 57 1 0.75424679397187244 0.27342419080068137 1 6 1 6 0 0 4096 39 2537 23735058 140160 1315.5235900878906 8.6267999999999994 2092.1966000000002 80640 40747 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2537 1920 0 384 1 5387878544 38307848 1 0 4 2 3 2 5 5898240 2949120 3440640 2950979 8486400 156 150 167 337 1727 0 0 3 2 34 0 0 0 0 0 +400 1783859396104290500 DEPTH 17 1 0.75427793848763092 0.28109028960817717 0 7 0 7 0 0 3730 52 2570 23720627 125760 1306.4111633300781 8.6127000000000002 2110.5545999999999 120960 69008 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2570 1920 0 384 1 5392358852 42788156 1 0 4 3 2 2 5 5898240 4423680 2949120 2951010 7488000 150 150 150 649 1471 0 0 9 0 43 0 0 0 0 0 +401 1783859398301992900 DEPTH 11 1 0.74569662702773021 0.37478705281090291 0 8 0 8 1 0 2308 55 2552 23742823 147840 1356.4856262207031 8.6341000000000001 2195.9395 80640 42238 1 0 0 0.72834055000617959 4096 2048 384 12 96 2552 1920 0 384 1 5396820800 47250104 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 162 150 185 150 1905 2 0 0 2 51 0 0 0 0 1 +402 1783859400645002300 DEPTH 33 1 0.7457236329901149 0.36712095400340705 1 7 1 7 0 0 3287 37 2549 23742745 147840 1345.3291320800781 8.6552000000000007 2224.4400000000001 80640 42787 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2549 1920 0 384 1 5401279688 51708992 1 0 4 2 2 2 6 5898240 2949120 2949120 2950967 8985600 150 150 259 163 1827 0 0 1 0 36 0 0 0 0 0 +403 1783859402974334700 DEPTH 42 1 0.74879120829562595 0 0 4 0 4 0 0 4096 19 2597 23677726 81600 1295.0457458496094 8.6329999999999991 2180.3658999999998 120960 48515 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2597 1920 0 384 1 5405787536 56216840 1 0 4 3 3 3 3 5898240 4423680 4423680 4426433 4492800 317 150 251 1334 545 0 0 0 0 19 0 0 0 0 0 +404 1783859405084253800 DEPTH 31 1 0.74577629988626248 0.3594548551959113 2 6 2 6 0 0 2555 33 2560 23727373 132480 1305.0224761962891 8.6251999999999995 2054.4119000000001 107520 54697 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2560 1920 0 384 1 5410257644 60686948 1 0 4 3 2 2 5 5898240 3932160 2949120 2950862 7987200 150 150 156 707 1397 0 0 9 3 21 0 0 0 0 0 diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/run.tsv b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/run.tsv new file mode 100644 index 00000000..ebf483fd --- /dev/null +++ b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/run.tsv @@ -0,0 +1,53 @@ +format szilassi-global-search-v5 +run_id b84f957c-0e29-412c-ad04-f3530092f02e +node_id LOOKICH +seed 1750472091 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-neural-v3 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 4477160136 +training_neural_model_reserve_bytes 251207948 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000001_214eb6f5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000001_214eb6f5.szar new file mode 100644 index 00000000..de24b326 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000001_214eb6f5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000002_fff0a078.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000002_fff0a078.szar new file mode 100644 index 00000000..1b1bcc54 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000002_fff0a078.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000003_da9ea0b8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000003_da9ea0b8.szar new file mode 100644 index 00000000..5900443c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000003_da9ea0b8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000004_cff499aa.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000004_cff499aa.szar new file mode 100644 index 00000000..a01ad01e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000004_cff499aa.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000005_ac962ce1.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000005_ac962ce1.szar new file mode 100644 index 00000000..9556473f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/archive/delta_00000000000000000005_ac962ce1.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000001_9311f2ff.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000001_9311f2ff.szcp new file mode 100644 index 00000000..639d5c9e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000001_9311f2ff.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000002_86d99b88.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000002_86d99b88.szcp new file mode 100644 index 00000000..d01ec763 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000002_86d99b88.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000003_4643f234.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000003_4643f234.szcp new file mode 100644 index 00000000..3b29cbe4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000003_4643f234.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000004_2d1b4bef.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000004_2d1b4bef.szcp new file mode 100644 index 00000000..5fcc7d72 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000004_2d1b4bef.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000005_969e0f04.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000005_969e0f04.szcp new file mode 100644 index 00000000..765ecc2c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_000/checkpoints/checkpoint_00000000000000000005_969e0f04.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000001_9398956b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000001_9398956b.szar new file mode 100644 index 00000000..69bfaa74 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000001_9398956b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000002_92acc0a9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000002_92acc0a9.szar new file mode 100644 index 00000000..45ec5579 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000002_92acc0a9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000003_dbad589f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000003_dbad589f.szar new file mode 100644 index 00000000..54ab8baa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000003_dbad589f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000004_054eede6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000004_054eede6.szar new file mode 100644 index 00000000..3866e9d6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000004_054eede6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000005_39502124.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000005_39502124.szar new file mode 100644 index 00000000..a24d231c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000005_39502124.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000006_e9fa4d78.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000006_e9fa4d78.szar new file mode 100644 index 00000000..cd319601 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000006_e9fa4d78.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000007_955caea0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000007_955caea0.szar new file mode 100644 index 00000000..85a5d039 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000007_955caea0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000008_4700e5b5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000008_4700e5b5.szar new file mode 100644 index 00000000..f6ad3eac Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/archive/delta_00000000000000000008_4700e5b5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000001_474ee94f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000001_474ee94f.szcp new file mode 100644 index 00000000..44dea810 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000001_474ee94f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000002_ef5a0dc7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000002_ef5a0dc7.szcp new file mode 100644 index 00000000..c47b6f3b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000002_ef5a0dc7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000003_4f7e0981.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000003_4f7e0981.szcp new file mode 100644 index 00000000..16e6b712 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000003_4f7e0981.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000004_23565a87.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000004_23565a87.szcp new file mode 100644 index 00000000..f6031628 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000004_23565a87.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000005_6ac73452.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000005_6ac73452.szcp new file mode 100644 index 00000000..56b5403f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000005_6ac73452.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000006_de20962b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000006_de20962b.szcp new file mode 100644 index 00000000..82d1655b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000006_de20962b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000007_8801a3ec.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000007_8801a3ec.szcp new file mode 100644 index 00000000..80c84496 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000007_8801a3ec.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000008_e235b4d1.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000008_e235b4d1.szcp new file mode 100644 index 00000000..80dfdd5a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_001/checkpoints/checkpoint_00000000000000000008_e235b4d1.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000001_bbe38b77.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000001_bbe38b77.szar new file mode 100644 index 00000000..31de45ce Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000001_bbe38b77.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000002_50e45c5e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000002_50e45c5e.szar new file mode 100644 index 00000000..6476e4bf Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000002_50e45c5e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000003_91f68bf3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000003_91f68bf3.szar new file mode 100644 index 00000000..d73f8112 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000003_91f68bf3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000004_cb2b2ae1.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000004_cb2b2ae1.szar new file mode 100644 index 00000000..a5bc5590 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000004_cb2b2ae1.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000005_09d0c10e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000005_09d0c10e.szar new file mode 100644 index 00000000..e8064c60 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000005_09d0c10e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000006_b912fcaf.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000006_b912fcaf.szar new file mode 100644 index 00000000..a610d3f1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000006_b912fcaf.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000007_585a7a9f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000007_585a7a9f.szar new file mode 100644 index 00000000..f03f1b41 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/archive/delta_00000000000000000007_585a7a9f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000001_523d79ba.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000001_523d79ba.szcp new file mode 100644 index 00000000..2ff86e3d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000001_523d79ba.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000002_2dc33dd0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000002_2dc33dd0.szcp new file mode 100644 index 00000000..8c7e7c22 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000002_2dc33dd0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000003_6a6af231.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000003_6a6af231.szcp new file mode 100644 index 00000000..045efad8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000003_6a6af231.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000004_453c9b86.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000004_453c9b86.szcp new file mode 100644 index 00000000..fdc91429 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000004_453c9b86.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000005_a06290ba.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000005_a06290ba.szcp new file mode 100644 index 00000000..1a9f6d70 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000005_a06290ba.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000006_9074ae63.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000006_9074ae63.szcp new file mode 100644 index 00000000..222b7a55 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000006_9074ae63.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000007_ad4ea093.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000007_ad4ea093.szcp new file mode 100644 index 00000000..d8cbff26 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_002/checkpoints/checkpoint_00000000000000000007_ad4ea093.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000001_10c05e5d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000001_10c05e5d.szar new file mode 100644 index 00000000..b645e84c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000001_10c05e5d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000002_7afdd26f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000002_7afdd26f.szar new file mode 100644 index 00000000..d37a3e5c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000002_7afdd26f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000003_69c9d668.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000003_69c9d668.szar new file mode 100644 index 00000000..401a4ed0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000003_69c9d668.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000004_8f09a11f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000004_8f09a11f.szar new file mode 100644 index 00000000..44173373 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000004_8f09a11f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000005_1c7c4cd3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000005_1c7c4cd3.szar new file mode 100644 index 00000000..fadfd3da Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000005_1c7c4cd3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000006_df503401.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000006_df503401.szar new file mode 100644 index 00000000..7bfd3d3a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/archive/delta_00000000000000000006_df503401.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000001_37332390.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000001_37332390.szcp new file mode 100644 index 00000000..c29ee71b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000001_37332390.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000002_c409e8e5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000002_c409e8e5.szcp new file mode 100644 index 00000000..2b99e313 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000002_c409e8e5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000003_d7e225af.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000003_d7e225af.szcp new file mode 100644 index 00000000..28d96f87 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000003_d7e225af.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000004_6ab4d327.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000004_6ab4d327.szcp new file mode 100644 index 00000000..85dbd1dc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000004_6ab4d327.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000005_270c5ec8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000005_270c5ec8.szcp new file mode 100644 index 00000000..849238af Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000005_270c5ec8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000006_ce3fe4a4.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000006_ce3fe4a4.szcp new file mode 100644 index 00000000..ffe6d5c8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_003/checkpoints/checkpoint_00000000000000000006_ce3fe4a4.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000001_4a6b84e4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000001_4a6b84e4.szar new file mode 100644 index 00000000..25c96e39 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000001_4a6b84e4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000002_124c50fe.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000002_124c50fe.szar new file mode 100644 index 00000000..74d4ca45 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000002_124c50fe.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000003_535a54c1.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000003_535a54c1.szar new file mode 100644 index 00000000..bc87caf9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000003_535a54c1.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000004_c2898cb4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000004_c2898cb4.szar new file mode 100644 index 00000000..492b7370 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000004_c2898cb4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000005_dbf1d128.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000005_dbf1d128.szar new file mode 100644 index 00000000..ff01258a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/archive/delta_00000000000000000005_dbf1d128.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000001_a2c0d16e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000001_a2c0d16e.szcp new file mode 100644 index 00000000..a9a6a592 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000001_a2c0d16e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000002_49c46025.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000002_49c46025.szcp new file mode 100644 index 00000000..ab1008b1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000002_49c46025.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000003_8b4da9ec.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000003_8b4da9ec.szcp new file mode 100644 index 00000000..85612828 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000003_8b4da9ec.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000004_edc9a167.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000004_edc9a167.szcp new file mode 100644 index 00000000..1bf033bc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000004_edc9a167.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000005_3211e5f9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000005_3211e5f9.szcp new file mode 100644 index 00000000..8959e88e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_004/checkpoints/checkpoint_00000000000000000005_3211e5f9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000001_1508134e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000001_1508134e.szar new file mode 100644 index 00000000..2e9eec66 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000001_1508134e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000002_7a8a6b0c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000002_7a8a6b0c.szar new file mode 100644 index 00000000..bea41162 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000002_7a8a6b0c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000003_95739302.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000003_95739302.szar new file mode 100644 index 00000000..7e56a1b5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000003_95739302.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000004_70f5cc88.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000004_70f5cc88.szar new file mode 100644 index 00000000..7c2f26db Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000004_70f5cc88.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000005_51eb7eb5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000005_51eb7eb5.szar new file mode 100644 index 00000000..0673ca93 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/archive/delta_00000000000000000005_51eb7eb5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000001_2096d317.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000001_2096d317.szcp new file mode 100644 index 00000000..d99583b1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000001_2096d317.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000002_0b897078.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000002_0b897078.szcp new file mode 100644 index 00000000..7f6851fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000002_0b897078.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000003_451bcb44.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000003_451bcb44.szcp new file mode 100644 index 00000000..b1ed4dcc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000003_451bcb44.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000004_bd990315.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000004_bd990315.szcp new file mode 100644 index 00000000..c6790725 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000004_bd990315.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000005_768207ca.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000005_768207ca.szcp new file mode 100644 index 00000000..3977ce87 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_005/checkpoints/checkpoint_00000000000000000005_768207ca.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000001_159e0d13.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000001_159e0d13.szar new file mode 100644 index 00000000..7b387ef7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000001_159e0d13.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000002_ee990b4c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000002_ee990b4c.szar new file mode 100644 index 00000000..a7f7d01d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000002_ee990b4c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000003_f850107c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000003_f850107c.szar new file mode 100644 index 00000000..4f4c638d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000003_f850107c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000004_debf343c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000004_debf343c.szar new file mode 100644 index 00000000..97d08ce8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/archive/delta_00000000000000000004_debf343c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000001_49372ed8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000001_49372ed8.szcp new file mode 100644 index 00000000..2910bb4a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000001_49372ed8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000002_235b8c4c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000002_235b8c4c.szcp new file mode 100644 index 00000000..02d783cd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000002_235b8c4c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000003_e54f7909.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000003_e54f7909.szcp new file mode 100644 index 00000000..8590edb6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000003_e54f7909.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000004_a0b3d201.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000004_a0b3d201.szcp new file mode 100644 index 00000000..0286496c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_006/checkpoints/checkpoint_00000000000000000004_a0b3d201.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000001_7ebfdb83.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000001_7ebfdb83.szar new file mode 100644 index 00000000..2cc4090c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000001_7ebfdb83.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000002_4c25ba7d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000002_4c25ba7d.szar new file mode 100644 index 00000000..0ab15338 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000002_4c25ba7d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000003_ed691c80.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000003_ed691c80.szar new file mode 100644 index 00000000..99634eb7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000003_ed691c80.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000004_3713cf52.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000004_3713cf52.szar new file mode 100644 index 00000000..4990c10e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000004_3713cf52.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000005_31b42a20.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000005_31b42a20.szar new file mode 100644 index 00000000..84392748 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/archive/delta_00000000000000000005_31b42a20.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000001_41ce5760.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000001_41ce5760.szcp new file mode 100644 index 00000000..794713be Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000001_41ce5760.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000002_e9c4cbaa.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000002_e9c4cbaa.szcp new file mode 100644 index 00000000..6b4797aa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000002_e9c4cbaa.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000003_d6f0d471.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000003_d6f0d471.szcp new file mode 100644 index 00000000..a976859c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000003_d6f0d471.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000004_e0205845.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000004_e0205845.szcp new file mode 100644 index 00000000..e4abedbc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000004_e0205845.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000005_03ff962c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000005_03ff962c.szcp new file mode 100644 index 00000000..15261fe3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_007/checkpoints/checkpoint_00000000000000000005_03ff962c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000001_00b13946.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000001_00b13946.szar new file mode 100644 index 00000000..b44e1dc9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000001_00b13946.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000002_3421229e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000002_3421229e.szar new file mode 100644 index 00000000..ce80ba51 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000002_3421229e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000003_ec8573a6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000003_ec8573a6.szar new file mode 100644 index 00000000..30535c2b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000003_ec8573a6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000004_3a84a0e9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000004_3a84a0e9.szar new file mode 100644 index 00000000..3ca6d30e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000004_3a84a0e9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000005_1bf09264.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000005_1bf09264.szar new file mode 100644 index 00000000..c6cbe771 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000005_1bf09264.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000006_49882c99.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000006_49882c99.szar new file mode 100644 index 00000000..7ca668e7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000006_49882c99.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000007_865fbbe0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000007_865fbbe0.szar new file mode 100644 index 00000000..ec096b7b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000007_865fbbe0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000008_9ce6365e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000008_9ce6365e.szar new file mode 100644 index 00000000..d429fea0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000008_9ce6365e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000009_ce5b0480.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000009_ce5b0480.szar new file mode 100644 index 00000000..14b24f5a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/archive/delta_00000000000000000009_ce5b0480.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000001_9ac1581f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000001_9ac1581f.szcp new file mode 100644 index 00000000..456b9dfc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000001_9ac1581f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000002_0d093a3d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000002_0d093a3d.szcp new file mode 100644 index 00000000..f87fd71b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000002_0d093a3d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000003_33d9eefb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000003_33d9eefb.szcp new file mode 100644 index 00000000..e8216b7c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000003_33d9eefb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000004_393e4760.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000004_393e4760.szcp new file mode 100644 index 00000000..d73266c7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000004_393e4760.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000005_18b73c70.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000005_18b73c70.szcp new file mode 100644 index 00000000..33a0aa0d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000005_18b73c70.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000006_2c9a70ec.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000006_2c9a70ec.szcp new file mode 100644 index 00000000..87799723 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000006_2c9a70ec.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000007_18f55a83.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000007_18f55a83.szcp new file mode 100644 index 00000000..b9d1811a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000007_18f55a83.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000008_af877d14.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000008_af877d14.szcp new file mode 100644 index 00000000..a792bc31 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000008_af877d14.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000009_d200bec8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000009_d200bec8.szcp new file mode 100644 index 00000000..115cb578 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_008/checkpoints/checkpoint_00000000000000000009_d200bec8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000001_125e50d5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000001_125e50d5.szar new file mode 100644 index 00000000..5badeed7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000001_125e50d5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000002_0771aaaf.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000002_0771aaaf.szar new file mode 100644 index 00000000..d83b59c3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000002_0771aaaf.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000003_46253afd.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000003_46253afd.szar new file mode 100644 index 00000000..36188c42 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000003_46253afd.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000004_eeb125b8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000004_eeb125b8.szar new file mode 100644 index 00000000..c3029fcf Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000004_eeb125b8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000005_fdadeb78.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000005_fdadeb78.szar new file mode 100644 index 00000000..81e6e1d8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000005_fdadeb78.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000006_6b759091.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000006_6b759091.szar new file mode 100644 index 00000000..2dd44067 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000006_6b759091.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000007_8953aee2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000007_8953aee2.szar new file mode 100644 index 00000000..9cd07d19 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000007_8953aee2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000008_9a3c5b5d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000008_9a3c5b5d.szar new file mode 100644 index 00000000..caa74a8d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000008_9a3c5b5d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000009_8c9527ee.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000009_8c9527ee.szar new file mode 100644 index 00000000..807c7bb0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/archive/delta_00000000000000000009_8c9527ee.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000001_6f01aa41.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000001_6f01aa41.szcp new file mode 100644 index 00000000..83d8134d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000001_6f01aa41.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000002_b338be1b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000002_b338be1b.szcp new file mode 100644 index 00000000..9807f46f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000002_b338be1b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000003_420c40a8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000003_420c40a8.szcp new file mode 100644 index 00000000..94bf4a98 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000003_420c40a8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000004_943c44c7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000004_943c44c7.szcp new file mode 100644 index 00000000..28c80b1d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000004_943c44c7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000005_e72d1354.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000005_e72d1354.szcp new file mode 100644 index 00000000..aa66ce86 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000005_e72d1354.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000006_3e82715d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000006_3e82715d.szcp new file mode 100644 index 00000000..4040587d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000006_3e82715d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000007_b6351c61.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000007_b6351c61.szcp new file mode 100644 index 00000000..6d154e09 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000007_b6351c61.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000008_5cf7c267.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000008_5cf7c267.szcp new file mode 100644 index 00000000..c7d498d3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000008_5cf7c267.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000009_e355d404.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000009_e355d404.szcp new file mode 100644 index 00000000..d19ba0e0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_009/checkpoints/checkpoint_00000000000000000009_e355d404.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000001_a8b6ef5d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000001_a8b6ef5d.szar new file mode 100644 index 00000000..dacd0afb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000001_a8b6ef5d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000002_0f8da035.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000002_0f8da035.szar new file mode 100644 index 00000000..95c767eb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000002_0f8da035.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000003_ec43a74b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000003_ec43a74b.szar new file mode 100644 index 00000000..5cc70e6c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000003_ec43a74b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000004_70b1cc06.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000004_70b1cc06.szar new file mode 100644 index 00000000..f39c47c7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000004_70b1cc06.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000005_c13e3978.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000005_c13e3978.szar new file mode 100644 index 00000000..eb371b14 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000005_c13e3978.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000006_8fc751de.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000006_8fc751de.szar new file mode 100644 index 00000000..7f8d289a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/archive/delta_00000000000000000006_8fc751de.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000001_dc6bf485.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000001_dc6bf485.szcp new file mode 100644 index 00000000..f42b6fe3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000001_dc6bf485.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000002_71cecfea.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000002_71cecfea.szcp new file mode 100644 index 00000000..05ce6b0c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000002_71cecfea.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000003_44821de8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000003_44821de8.szcp new file mode 100644 index 00000000..8f6fb846 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000003_44821de8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000004_09924078.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000004_09924078.szcp new file mode 100644 index 00000000..0cc2f7f2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000004_09924078.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000005_ffdfa60f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000005_ffdfa60f.szcp new file mode 100644 index 00000000..86176283 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000005_ffdfa60f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000006_42733d0f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000006_42733d0f.szcp new file mode 100644 index 00000000..d7d44547 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_010/checkpoints/checkpoint_00000000000000000006_42733d0f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000001_97fce8f8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000001_97fce8f8.szar new file mode 100644 index 00000000..a2026ead Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000001_97fce8f8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000002_b964bde6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000002_b964bde6.szar new file mode 100644 index 00000000..2d2ca11d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000002_b964bde6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000003_57bec484.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000003_57bec484.szar new file mode 100644 index 00000000..d0140c43 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000003_57bec484.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000004_ded1456e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000004_ded1456e.szar new file mode 100644 index 00000000..a5118bb6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000004_ded1456e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000005_0cbc433a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000005_0cbc433a.szar new file mode 100644 index 00000000..9f915628 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000005_0cbc433a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000006_4aa4014a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000006_4aa4014a.szar new file mode 100644 index 00000000..3220b7e2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000006_4aa4014a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000007_29c2ce5a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000007_29c2ce5a.szar new file mode 100644 index 00000000..d67be467 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000007_29c2ce5a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000008_d97d336e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000008_d97d336e.szar new file mode 100644 index 00000000..b13573a8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000008_d97d336e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000009_b51bd2ec.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000009_b51bd2ec.szar new file mode 100644 index 00000000..c9c0272a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/archive/delta_00000000000000000009_b51bd2ec.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000001_afdff344.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000001_afdff344.szcp new file mode 100644 index 00000000..5343c7ab Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000001_afdff344.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000002_e846a3bf.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000002_e846a3bf.szcp new file mode 100644 index 00000000..334b1884 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000002_e846a3bf.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000003_b16d5c8e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000003_b16d5c8e.szcp new file mode 100644 index 00000000..381cd46a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000003_b16d5c8e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000004_4c5723f9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000004_4c5723f9.szcp new file mode 100644 index 00000000..4efe60ae Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000004_4c5723f9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000005_620563dd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000005_620563dd.szcp new file mode 100644 index 00000000..21be21f4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000005_620563dd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000006_1ecba71f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000006_1ecba71f.szcp new file mode 100644 index 00000000..026bd711 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000006_1ecba71f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000007_c956c688.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000007_c956c688.szcp new file mode 100644 index 00000000..cd9c6604 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000007_c956c688.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000008_b1176864.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000008_b1176864.szcp new file mode 100644 index 00000000..23eb9e1f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000008_b1176864.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000009_60ff909e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000009_60ff909e.szcp new file mode 100644 index 00000000..dddf1fe2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_011/checkpoints/checkpoint_00000000000000000009_60ff909e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000001_ee3bb068.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000001_ee3bb068.szar new file mode 100644 index 00000000..c6553933 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000001_ee3bb068.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000002_e2ae4129.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000002_e2ae4129.szar new file mode 100644 index 00000000..946c851c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000002_e2ae4129.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000003_d49f456b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000003_d49f456b.szar new file mode 100644 index 00000000..25d154d7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000003_d49f456b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000004_fd94e3b4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000004_fd94e3b4.szar new file mode 100644 index 00000000..eabc2cec Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000004_fd94e3b4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000005_5794319c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000005_5794319c.szar new file mode 100644 index 00000000..3b7a9b71 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000005_5794319c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000006_a75b1f54.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000006_a75b1f54.szar new file mode 100644 index 00000000..f6d8d40f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/archive/delta_00000000000000000006_a75b1f54.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000001_22fe9bfd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000001_22fe9bfd.szcp new file mode 100644 index 00000000..7e07bb30 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000001_22fe9bfd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000002_6022f8bc.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000002_6022f8bc.szcp new file mode 100644 index 00000000..41540f2d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000002_6022f8bc.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000003_530ab52d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000003_530ab52d.szcp new file mode 100644 index 00000000..26c9374a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000003_530ab52d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000004_cd5f02b0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000004_cd5f02b0.szcp new file mode 100644 index 00000000..9920e38e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000004_cd5f02b0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000005_4fd2e0a9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000005_4fd2e0a9.szcp new file mode 100644 index 00000000..aa5f13ec Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000005_4fd2e0a9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000006_a4188d15.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000006_a4188d15.szcp new file mode 100644 index 00000000..6c90c07c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_012/checkpoints/checkpoint_00000000000000000006_a4188d15.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000001_a2a0fa96.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000001_a2a0fa96.szar new file mode 100644 index 00000000..90ba2660 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000001_a2a0fa96.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000002_537d721e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000002_537d721e.szar new file mode 100644 index 00000000..d871a1ef Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000002_537d721e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000003_51e58549.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000003_51e58549.szar new file mode 100644 index 00000000..a89ef7d6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000003_51e58549.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000004_d3b29d9f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000004_d3b29d9f.szar new file mode 100644 index 00000000..6cab8971 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000004_d3b29d9f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000005_0585883f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000005_0585883f.szar new file mode 100644 index 00000000..51730998 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000005_0585883f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000006_c445bcc5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000006_c445bcc5.szar new file mode 100644 index 00000000..16db95cc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000006_c445bcc5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000007_2ac0b58e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000007_2ac0b58e.szar new file mode 100644 index 00000000..a0ff65f2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000007_2ac0b58e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000008_5fc33a99.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000008_5fc33a99.szar new file mode 100644 index 00000000..15d9ec0f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000008_5fc33a99.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000009_e56a3aec.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000009_e56a3aec.szar new file mode 100644 index 00000000..ded10b91 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000009_e56a3aec.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000010_d833bdf3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000010_d833bdf3.szar new file mode 100644 index 00000000..90803811 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/archive/delta_00000000000000000010_d833bdf3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000001_1c2d9237.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000001_1c2d9237.szcp new file mode 100644 index 00000000..d0a74953 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000001_1c2d9237.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000002_c5cbdc62.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000002_c5cbdc62.szcp new file mode 100644 index 00000000..07c83c36 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000002_c5cbdc62.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000003_3fe423de.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000003_3fe423de.szcp new file mode 100644 index 00000000..cf5a77cc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000003_3fe423de.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000004_e523b83f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000004_e523b83f.szcp new file mode 100644 index 00000000..0d51c860 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000004_e523b83f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000005_fb983060.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000005_fb983060.szcp new file mode 100644 index 00000000..8e6d1915 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000005_fb983060.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000006_f0dd6d1d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000006_f0dd6d1d.szcp new file mode 100644 index 00000000..00b5035b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000006_f0dd6d1d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000007_33cb57d6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000007_33cb57d6.szcp new file mode 100644 index 00000000..826827f4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000007_33cb57d6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000008_c575f0c2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000008_c575f0c2.szcp new file mode 100644 index 00000000..13b6c8fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000008_c575f0c2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000009_b487a231.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000009_b487a231.szcp new file mode 100644 index 00000000..1a50f47e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000009_b487a231.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000010_5618e91f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000010_5618e91f.szcp new file mode 100644 index 00000000..c543058c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_013/checkpoints/checkpoint_00000000000000000010_5618e91f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000001_204795dc.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000001_204795dc.szar new file mode 100644 index 00000000..20c69a80 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000001_204795dc.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000002_28eb5898.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000002_28eb5898.szar new file mode 100644 index 00000000..bdf5d80b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000002_28eb5898.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000003_272f6293.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000003_272f6293.szar new file mode 100644 index 00000000..d8fcd6fd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000003_272f6293.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000004_501eb3c6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000004_501eb3c6.szar new file mode 100644 index 00000000..539c75f5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000004_501eb3c6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000005_d2dd17f8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000005_d2dd17f8.szar new file mode 100644 index 00000000..8a69a93c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000005_d2dd17f8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000006_91b66f24.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000006_91b66f24.szar new file mode 100644 index 00000000..325f10f8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/archive/delta_00000000000000000006_91b66f24.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000001_cdcd38e1.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000001_cdcd38e1.szcp new file mode 100644 index 00000000..74245a91 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000001_cdcd38e1.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000002_12ad51ee.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000002_12ad51ee.szcp new file mode 100644 index 00000000..0d248306 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000002_12ad51ee.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000003_618d6a0c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000003_618d6a0c.szcp new file mode 100644 index 00000000..59cdd0b4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000003_618d6a0c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000004_195a7041.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000004_195a7041.szcp new file mode 100644 index 00000000..7187dd3f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000004_195a7041.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000005_82ba226b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000005_82ba226b.szcp new file mode 100644 index 00000000..da984125 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000005_82ba226b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000006_bcdd5347.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000006_bcdd5347.szcp new file mode 100644 index 00000000..e74dbadf Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_014/checkpoints/checkpoint_00000000000000000006_bcdd5347.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000001_ba739d89.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000001_ba739d89.szar new file mode 100644 index 00000000..af79fe23 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000001_ba739d89.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000002_73ff996b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000002_73ff996b.szar new file mode 100644 index 00000000..1ad27051 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000002_73ff996b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000003_5e6c984c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000003_5e6c984c.szar new file mode 100644 index 00000000..aa820d00 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000003_5e6c984c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000004_1d7890ea.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000004_1d7890ea.szar new file mode 100644 index 00000000..41c03b78 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/archive/delta_00000000000000000004_1d7890ea.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000001_87eda611.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000001_87eda611.szcp new file mode 100644 index 00000000..9b65aafe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000001_87eda611.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000002_6c8fd7b0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000002_6c8fd7b0.szcp new file mode 100644 index 00000000..1fa8d72b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000002_6c8fd7b0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000003_a1797fb6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000003_a1797fb6.szcp new file mode 100644 index 00000000..fa3ef459 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000003_a1797fb6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000004_82d4c283.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000004_82d4c283.szcp new file mode 100644 index 00000000..0f4361dc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_015/checkpoints/checkpoint_00000000000000000004_82d4c283.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000001_44a25b31.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000001_44a25b31.szar new file mode 100644 index 00000000..b08caaef Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000001_44a25b31.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000002_bdca6495.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000002_bdca6495.szar new file mode 100644 index 00000000..2c581ee9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000002_bdca6495.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000003_cffa2e67.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000003_cffa2e67.szar new file mode 100644 index 00000000..0def4e21 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000003_cffa2e67.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000004_06b0dd56.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000004_06b0dd56.szar new file mode 100644 index 00000000..405560bd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000004_06b0dd56.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000005_a909d632.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000005_a909d632.szar new file mode 100644 index 00000000..9c0bcb6d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000005_a909d632.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000006_304a11a0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000006_304a11a0.szar new file mode 100644 index 00000000..e302faf8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000006_304a11a0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000007_c125e773.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000007_c125e773.szar new file mode 100644 index 00000000..d177803c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000007_c125e773.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000008_8d8e0b05.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000008_8d8e0b05.szar new file mode 100644 index 00000000..197b80a3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/archive/delta_00000000000000000008_8d8e0b05.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000001_d48044ff.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000001_d48044ff.szcp new file mode 100644 index 00000000..cefe3bf5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000001_d48044ff.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000002_59d13402.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000002_59d13402.szcp new file mode 100644 index 00000000..c6de5bd0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000002_59d13402.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000003_2bf77e23.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000003_2bf77e23.szcp new file mode 100644 index 00000000..379aa673 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000003_2bf77e23.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000004_6e2ee0e8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000004_6e2ee0e8.szcp new file mode 100644 index 00000000..85b94160 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000004_6e2ee0e8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000005_b210cf83.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000005_b210cf83.szcp new file mode 100644 index 00000000..c693c3ba Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000005_b210cf83.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000006_63e45fb4.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000006_63e45fb4.szcp new file mode 100644 index 00000000..5f77dded Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000006_63e45fb4.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000007_a1ae72ff.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000007_a1ae72ff.szcp new file mode 100644 index 00000000..8dc62bbe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000007_a1ae72ff.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000008_ad2b0e2f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000008_ad2b0e2f.szcp new file mode 100644 index 00000000..22e4d807 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_016/checkpoints/checkpoint_00000000000000000008_ad2b0e2f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000001_8879c14e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000001_8879c14e.szar new file mode 100644 index 00000000..40ad3c05 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000001_8879c14e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000002_5747c70b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000002_5747c70b.szar new file mode 100644 index 00000000..7dde4191 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000002_5747c70b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000003_f2575e1d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000003_f2575e1d.szar new file mode 100644 index 00000000..ca66d825 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000003_f2575e1d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000004_65a5ebd7.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000004_65a5ebd7.szar new file mode 100644 index 00000000..5b3efa5c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000004_65a5ebd7.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000005_d2a29568.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000005_d2a29568.szar new file mode 100644 index 00000000..39a6695a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000005_d2a29568.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000006_659b7d3f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000006_659b7d3f.szar new file mode 100644 index 00000000..16083a7b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000006_659b7d3f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000007_9cd0da06.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000007_9cd0da06.szar new file mode 100644 index 00000000..d2bf11d3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000007_9cd0da06.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000008_1b1edf15.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000008_1b1edf15.szar new file mode 100644 index 00000000..c638acdc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000008_1b1edf15.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000009_e3ffa770.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000009_e3ffa770.szar new file mode 100644 index 00000000..9af9ccf5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000009_e3ffa770.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000010_566c9220.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000010_566c9220.szar new file mode 100644 index 00000000..5559c2f6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/archive/delta_00000000000000000010_566c9220.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000001_e77dcb14.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000001_e77dcb14.szcp new file mode 100644 index 00000000..719bd8cb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000001_e77dcb14.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000002_b87908ca.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000002_b87908ca.szcp new file mode 100644 index 00000000..c287e2e8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000002_b87908ca.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000003_a707e674.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000003_a707e674.szcp new file mode 100644 index 00000000..16f86179 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000003_a707e674.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000004_8856bab3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000004_8856bab3.szcp new file mode 100644 index 00000000..8c334c47 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000004_8856bab3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000005_22725272.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000005_22725272.szcp new file mode 100644 index 00000000..e1b44a69 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000005_22725272.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000006_0d8fad14.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000006_0d8fad14.szcp new file mode 100644 index 00000000..1853ec2c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000006_0d8fad14.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000007_d990eea5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000007_d990eea5.szcp new file mode 100644 index 00000000..75874b26 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000007_d990eea5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000008_af485d3c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000008_af485d3c.szcp new file mode 100644 index 00000000..bfe3c71b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000008_af485d3c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000009_c67b63b7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000009_c67b63b7.szcp new file mode 100644 index 00000000..a74d9ac7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000009_c67b63b7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000010_2fd1ee62.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000010_2fd1ee62.szcp new file mode 100644 index 00000000..bbbfe4b4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_017/checkpoints/checkpoint_00000000000000000010_2fd1ee62.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000001_cfa2728f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000001_cfa2728f.szar new file mode 100644 index 00000000..c338a71c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000001_cfa2728f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000002_78a26bdd.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000002_78a26bdd.szar new file mode 100644 index 00000000..7cf2a333 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000002_78a26bdd.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000003_a9d81bb6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000003_a9d81bb6.szar new file mode 100644 index 00000000..d3989bb7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000003_a9d81bb6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000004_e12647dc.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000004_e12647dc.szar new file mode 100644 index 00000000..5f8d4011 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000004_e12647dc.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000005_2527fccb.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000005_2527fccb.szar new file mode 100644 index 00000000..870d4557 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/archive/delta_00000000000000000005_2527fccb.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000001_e50e330c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000001_e50e330c.szcp new file mode 100644 index 00000000..7c15132f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000001_e50e330c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000002_c2ca1e22.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000002_c2ca1e22.szcp new file mode 100644 index 00000000..6b024440 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000002_c2ca1e22.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000003_d0f3a23e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000003_d0f3a23e.szcp new file mode 100644 index 00000000..c87bb28b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000003_d0f3a23e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000004_c9de4992.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000004_c9de4992.szcp new file mode 100644 index 00000000..0d11ac1e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000004_c9de4992.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000005_69376f65.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000005_69376f65.szcp new file mode 100644 index 00000000..52efc8e8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_018/checkpoints/checkpoint_00000000000000000005_69376f65.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000001_7b3bb8c4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000001_7b3bb8c4.szar new file mode 100644 index 00000000..aefdeb76 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000001_7b3bb8c4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000002_23b81659.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000002_23b81659.szar new file mode 100644 index 00000000..e0c20989 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000002_23b81659.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000003_f4857c8b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000003_f4857c8b.szar new file mode 100644 index 00000000..633f6ef3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000003_f4857c8b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000004_0f383535.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000004_0f383535.szar new file mode 100644 index 00000000..dc0aad69 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000004_0f383535.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000005_afc70369.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000005_afc70369.szar new file mode 100644 index 00000000..42925a9c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/archive/delta_00000000000000000005_afc70369.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000001_4cf676f0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000001_4cf676f0.szcp new file mode 100644 index 00000000..377d9e64 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000001_4cf676f0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000002_163a560f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000002_163a560f.szcp new file mode 100644 index 00000000..7fa2ebf6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000002_163a560f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000003_17ff1485.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000003_17ff1485.szcp new file mode 100644 index 00000000..97f7140b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000003_17ff1485.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000004_7cf4c0af.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000004_7cf4c0af.szcp new file mode 100644 index 00000000..23b138c2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000004_7cf4c0af.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000005_999d5b7c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000005_999d5b7c.szcp new file mode 100644 index 00000000..0fbb5e59 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_019/checkpoints/checkpoint_00000000000000000005_999d5b7c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000001_58d9f104.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000001_58d9f104.szar new file mode 100644 index 00000000..03277c10 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000001_58d9f104.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000002_c83ca459.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000002_c83ca459.szar new file mode 100644 index 00000000..e26934be Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000002_c83ca459.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000003_a6c93415.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000003_a6c93415.szar new file mode 100644 index 00000000..d751dcb4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000003_a6c93415.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000004_0276d9cb.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000004_0276d9cb.szar new file mode 100644 index 00000000..e9661dc1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000004_0276d9cb.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000005_c5bf114b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000005_c5bf114b.szar new file mode 100644 index 00000000..54d5949a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000005_c5bf114b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000006_ef3ef439.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000006_ef3ef439.szar new file mode 100644 index 00000000..775393fc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000006_ef3ef439.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000007_21553ef5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000007_21553ef5.szar new file mode 100644 index 00000000..7972104a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000007_21553ef5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000008_54bc32f9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000008_54bc32f9.szar new file mode 100644 index 00000000..6eaef13d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000008_54bc32f9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000009_58ca3d07.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000009_58ca3d07.szar new file mode 100644 index 00000000..f2b334a3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/archive/delta_00000000000000000009_58ca3d07.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000001_94d81133.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000001_94d81133.szcp new file mode 100644 index 00000000..600a53ce Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000001_94d81133.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000002_a22895a6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000002_a22895a6.szcp new file mode 100644 index 00000000..2bd0cdbc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000002_a22895a6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000003_cf030c99.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000003_cf030c99.szcp new file mode 100644 index 00000000..c7ece7f1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000003_cf030c99.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000004_6b888bd3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000004_6b888bd3.szcp new file mode 100644 index 00000000..2dfb9671 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000004_6b888bd3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000005_fb4c5a1f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000005_fb4c5a1f.szcp new file mode 100644 index 00000000..c9507560 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000005_fb4c5a1f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000006_51c9d4f1.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000006_51c9d4f1.szcp new file mode 100644 index 00000000..8b1fb7a2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000006_51c9d4f1.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000007_e066c2b3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000007_e066c2b3.szcp new file mode 100644 index 00000000..9bd44a26 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000007_e066c2b3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000008_3461ff5f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000008_3461ff5f.szcp new file mode 100644 index 00000000..12be1e7c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000008_3461ff5f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000009_39b68ead.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000009_39b68ead.szcp new file mode 100644 index 00000000..fa7120bd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_020/checkpoints/checkpoint_00000000000000000009_39b68ead.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000001_79bb65c8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000001_79bb65c8.szar new file mode 100644 index 00000000..e444a063 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000001_79bb65c8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000002_9140d037.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000002_9140d037.szar new file mode 100644 index 00000000..4bfe32d2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000002_9140d037.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000003_80f76c2d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000003_80f76c2d.szar new file mode 100644 index 00000000..c4538d1a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000003_80f76c2d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000004_4ccede7c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000004_4ccede7c.szar new file mode 100644 index 00000000..5836a455 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000004_4ccede7c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000005_424c1cf6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000005_424c1cf6.szar new file mode 100644 index 00000000..e1a22fae Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000005_424c1cf6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000006_f3d84a5f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000006_f3d84a5f.szar new file mode 100644 index 00000000..c9c3de79 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/archive/delta_00000000000000000006_f3d84a5f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000001_9b33e316.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000001_9b33e316.szcp new file mode 100644 index 00000000..c4edee09 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000001_9b33e316.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000002_606e6d0c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000002_606e6d0c.szcp new file mode 100644 index 00000000..cee89051 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000002_606e6d0c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000003_46aa2bec.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000003_46aa2bec.szcp new file mode 100644 index 00000000..f92155ee Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000003_46aa2bec.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000004_84f4f466.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000004_84f4f466.szcp new file mode 100644 index 00000000..9c57d26c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000004_84f4f466.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000005_34ccda6f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000005_34ccda6f.szcp new file mode 100644 index 00000000..31a99cff Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000005_34ccda6f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000006_0e01d43b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000006_0e01d43b.szcp new file mode 100644 index 00000000..dcfbfd58 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_021/checkpoints/checkpoint_00000000000000000006_0e01d43b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000001_8f28c4a9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000001_8f28c4a9.szar new file mode 100644 index 00000000..63ec1249 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000001_8f28c4a9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000002_b801de8f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000002_b801de8f.szar new file mode 100644 index 00000000..8b4a282a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000002_b801de8f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000003_359683bc.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000003_359683bc.szar new file mode 100644 index 00000000..a55205c4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000003_359683bc.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000004_fe5ed343.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000004_fe5ed343.szar new file mode 100644 index 00000000..733bead9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000004_fe5ed343.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000005_53a9fed4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000005_53a9fed4.szar new file mode 100644 index 00000000..9e3b1970 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/archive/delta_00000000000000000005_53a9fed4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000001_6cd53491.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000001_6cd53491.szcp new file mode 100644 index 00000000..3a47de24 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000001_6cd53491.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000002_668bbb5b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000002_668bbb5b.szcp new file mode 100644 index 00000000..efc45bb4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000002_668bbb5b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000003_bd23286c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000003_bd23286c.szcp new file mode 100644 index 00000000..96f11747 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000003_bd23286c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000004_c2c8f010.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000004_c2c8f010.szcp new file mode 100644 index 00000000..5ac40600 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000004_c2c8f010.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000005_b4509e9f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000005_b4509e9f.szcp new file mode 100644 index 00000000..ebb5cbb5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_022/checkpoints/checkpoint_00000000000000000005_b4509e9f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000001_7d0f7be0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000001_7d0f7be0.szar new file mode 100644 index 00000000..377b52e5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000001_7d0f7be0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000002_c4de3e60.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000002_c4de3e60.szar new file mode 100644 index 00000000..908cc608 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000002_c4de3e60.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000003_084371f0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000003_084371f0.szar new file mode 100644 index 00000000..0e074ae9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000003_084371f0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000004_5e283086.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000004_5e283086.szar new file mode 100644 index 00000000..8190900d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000004_5e283086.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000005_2bc6269c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000005_2bc6269c.szar new file mode 100644 index 00000000..b2b1d45d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/archive/delta_00000000000000000005_2bc6269c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000001_d8c012fc.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000001_d8c012fc.szcp new file mode 100644 index 00000000..f639ac1a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000001_d8c012fc.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000002_39b9976d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000002_39b9976d.szcp new file mode 100644 index 00000000..32fc5730 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000002_39b9976d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000003_8e8417ed.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000003_8e8417ed.szcp new file mode 100644 index 00000000..8a50ab49 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000003_8e8417ed.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000004_1ef02087.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000004_1ef02087.szcp new file mode 100644 index 00000000..74076ab0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000004_1ef02087.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000005_be44af2c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000005_be44af2c.szcp new file mode 100644 index 00000000..e3c2800e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_023/checkpoints/checkpoint_00000000000000000005_be44af2c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000001_de884291.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000001_de884291.szar new file mode 100644 index 00000000..1ed2704d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000001_de884291.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000002_a76a3ae9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000002_a76a3ae9.szar new file mode 100644 index 00000000..4dba07cd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000002_a76a3ae9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000003_3371f89e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000003_3371f89e.szar new file mode 100644 index 00000000..4a310630 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000003_3371f89e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000004_e14fbd60.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000004_e14fbd60.szar new file mode 100644 index 00000000..f1ac20cb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/archive/delta_00000000000000000004_e14fbd60.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000001_3ecb3a01.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000001_3ecb3a01.szcp new file mode 100644 index 00000000..1d9ae9c3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000001_3ecb3a01.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000002_2b17c7fb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000002_2b17c7fb.szcp new file mode 100644 index 00000000..e867d7d6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000002_2b17c7fb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000003_d0336bf5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000003_d0336bf5.szcp new file mode 100644 index 00000000..a4a794c8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000003_d0336bf5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000004_e5d9e093.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000004_e5d9e093.szcp new file mode 100644 index 00000000..f262b77a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_024/checkpoints/checkpoint_00000000000000000004_e5d9e093.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000001_26696f6b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000001_26696f6b.szar new file mode 100644 index 00000000..e4451416 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000001_26696f6b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000002_77a4ad15.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000002_77a4ad15.szar new file mode 100644 index 00000000..e309243e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000002_77a4ad15.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000003_df0feeee.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000003_df0feeee.szar new file mode 100644 index 00000000..bed9be5d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000003_df0feeee.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000004_2ac31f00.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000004_2ac31f00.szar new file mode 100644 index 00000000..7b87ab85 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000004_2ac31f00.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000005_d2c07720.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000005_d2c07720.szar new file mode 100644 index 00000000..8adada77 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000005_d2c07720.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000006_3b08e457.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000006_3b08e457.szar new file mode 100644 index 00000000..7b75c899 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000006_3b08e457.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000007_215dec57.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000007_215dec57.szar new file mode 100644 index 00000000..bc087bf4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/archive/delta_00000000000000000007_215dec57.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000001_4fcabe22.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000001_4fcabe22.szcp new file mode 100644 index 00000000..d63cd042 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000001_4fcabe22.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000002_757a311b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000002_757a311b.szcp new file mode 100644 index 00000000..a775f4d7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000002_757a311b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000003_2726acc2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000003_2726acc2.szcp new file mode 100644 index 00000000..8c2f9fc6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000003_2726acc2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000004_d39ed65d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000004_d39ed65d.szcp new file mode 100644 index 00000000..e825a5c3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000004_d39ed65d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000005_e665516f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000005_e665516f.szcp new file mode 100644 index 00000000..ce770c2a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000005_e665516f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000006_079d1d01.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000006_079d1d01.szcp new file mode 100644 index 00000000..702228f7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000006_079d1d01.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000007_13b72e16.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000007_13b72e16.szcp new file mode 100644 index 00000000..1ff9fed8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_025/checkpoints/checkpoint_00000000000000000007_13b72e16.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000001_0241ceb1.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000001_0241ceb1.szar new file mode 100644 index 00000000..5c5f143f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000001_0241ceb1.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000002_0d3a161f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000002_0d3a161f.szar new file mode 100644 index 00000000..f9cfc4db Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000002_0d3a161f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000003_96dc1750.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000003_96dc1750.szar new file mode 100644 index 00000000..fb44da9e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000003_96dc1750.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000004_116aa933.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000004_116aa933.szar new file mode 100644 index 00000000..2a156780 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000004_116aa933.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000005_accfda2e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000005_accfda2e.szar new file mode 100644 index 00000000..70164a14 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000005_accfda2e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000006_02e9aaa6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000006_02e9aaa6.szar new file mode 100644 index 00000000..d8f4467e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/archive/delta_00000000000000000006_02e9aaa6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000001_d39d349e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000001_d39d349e.szcp new file mode 100644 index 00000000..eb683669 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000001_d39d349e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000002_c2b1a873.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000002_c2b1a873.szcp new file mode 100644 index 00000000..c0be39c8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000002_c2b1a873.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000003_95bc7ad0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000003_95bc7ad0.szcp new file mode 100644 index 00000000..8fbbce24 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000003_95bc7ad0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000004_9ac6a2dc.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000004_9ac6a2dc.szcp new file mode 100644 index 00000000..b65cb580 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000004_9ac6a2dc.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000005_dba3c666.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000005_dba3c666.szcp new file mode 100644 index 00000000..687c8f2f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000005_dba3c666.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000006_c7baf840.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000006_c7baf840.szcp new file mode 100644 index 00000000..057ddb51 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_026/checkpoints/checkpoint_00000000000000000006_c7baf840.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000001_6e54bf1b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000001_6e54bf1b.szar new file mode 100644 index 00000000..a4905fb1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000001_6e54bf1b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000002_76d24a58.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000002_76d24a58.szar new file mode 100644 index 00000000..ee0fdd32 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000002_76d24a58.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000003_481e5dae.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000003_481e5dae.szar new file mode 100644 index 00000000..ef19e487 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000003_481e5dae.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000004_80af3e19.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000004_80af3e19.szar new file mode 100644 index 00000000..54aa2c03 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000004_80af3e19.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000005_b4d85478.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000005_b4d85478.szar new file mode 100644 index 00000000..06ff9b9b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/archive/delta_00000000000000000005_b4d85478.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000001_9d4d3635.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000001_9d4d3635.szcp new file mode 100644 index 00000000..664e77d1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000001_9d4d3635.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000002_c2dc5923.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000002_c2dc5923.szcp new file mode 100644 index 00000000..a261362a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000002_c2dc5923.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000003_4dcca7a7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000003_4dcca7a7.szcp new file mode 100644 index 00000000..5af3b6f8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000003_4dcca7a7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000004_fc5736f3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000004_fc5736f3.szcp new file mode 100644 index 00000000..9189807b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000004_fc5736f3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000005_d2a906bb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000005_d2a906bb.szcp new file mode 100644 index 00000000..a1094fbc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_027/checkpoints/checkpoint_00000000000000000005_d2a906bb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000001_6c7613cd.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000001_6c7613cd.szar new file mode 100644 index 00000000..7119fba5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000001_6c7613cd.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000002_f22369b4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000002_f22369b4.szar new file mode 100644 index 00000000..c07e6a8b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000002_f22369b4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000003_64bf14c8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000003_64bf14c8.szar new file mode 100644 index 00000000..e09b9eab Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000003_64bf14c8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000004_2cc4bc6f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000004_2cc4bc6f.szar new file mode 100644 index 00000000..90706a2b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000004_2cc4bc6f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000005_2081979e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000005_2081979e.szar new file mode 100644 index 00000000..0cc22d44 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/archive/delta_00000000000000000005_2081979e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000001_ac236237.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000001_ac236237.szcp new file mode 100644 index 00000000..ea6459c4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000001_ac236237.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000002_fbb22347.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000002_fbb22347.szcp new file mode 100644 index 00000000..f6845455 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000002_fbb22347.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000003_eddb5b37.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000003_eddb5b37.szcp new file mode 100644 index 00000000..e022ad7b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000003_eddb5b37.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000004_711ceb08.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000004_711ceb08.szcp new file mode 100644 index 00000000..d539435a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000004_711ceb08.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000005_27ee8f6e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000005_27ee8f6e.szcp new file mode 100644 index 00000000..783a83e0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_028/checkpoints/checkpoint_00000000000000000005_27ee8f6e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000001_feb15ecd.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000001_feb15ecd.szar new file mode 100644 index 00000000..d8116908 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000001_feb15ecd.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000002_7e7c8a49.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000002_7e7c8a49.szar new file mode 100644 index 00000000..d3ac8495 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000002_7e7c8a49.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000003_84cdefa7.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000003_84cdefa7.szar new file mode 100644 index 00000000..26c5849f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000003_84cdefa7.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000004_15076dac.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000004_15076dac.szar new file mode 100644 index 00000000..2203058e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/archive/delta_00000000000000000004_15076dac.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000001_27fc2fc7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000001_27fc2fc7.szcp new file mode 100644 index 00000000..ba9196e2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000001_27fc2fc7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000002_5c03084a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000002_5c03084a.szcp new file mode 100644 index 00000000..e873a300 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000002_5c03084a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000003_d81461d8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000003_d81461d8.szcp new file mode 100644 index 00000000..e907cafe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000003_d81461d8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000004_163e106f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000004_163e106f.szcp new file mode 100644 index 00000000..eb9657ea Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_029/checkpoints/checkpoint_00000000000000000004_163e106f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000001_9e5de5af.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000001_9e5de5af.szar new file mode 100644 index 00000000..152e26d9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000001_9e5de5af.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000002_2de34c12.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000002_2de34c12.szar new file mode 100644 index 00000000..ff73e6f4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000002_2de34c12.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000003_5076e32a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000003_5076e32a.szar new file mode 100644 index 00000000..d767aa66 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000003_5076e32a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000004_064f15a8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000004_064f15a8.szar new file mode 100644 index 00000000..de32ada5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000004_064f15a8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000005_84c14413.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000005_84c14413.szar new file mode 100644 index 00000000..66511150 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000005_84c14413.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000006_f1fd4eba.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000006_f1fd4eba.szar new file mode 100644 index 00000000..1bdff180 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000006_f1fd4eba.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000007_8c22c5fa.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000007_8c22c5fa.szar new file mode 100644 index 00000000..c2a0f19b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/archive/delta_00000000000000000007_8c22c5fa.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000001_929e30ca.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000001_929e30ca.szcp new file mode 100644 index 00000000..3c350ddb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000001_929e30ca.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000002_43594f38.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000002_43594f38.szcp new file mode 100644 index 00000000..d40d456a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000002_43594f38.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000003_6a945e87.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000003_6a945e87.szcp new file mode 100644 index 00000000..3c329dd1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000003_6a945e87.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000004_84be7b96.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000004_84be7b96.szcp new file mode 100644 index 00000000..5da0960a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000004_84be7b96.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000005_b8c52cc2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000005_b8c52cc2.szcp new file mode 100644 index 00000000..cc0d0996 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000005_b8c52cc2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000006_5ef30285.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000006_5ef30285.szcp new file mode 100644 index 00000000..2e279a51 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000006_5ef30285.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000007_0eae4fe6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000007_0eae4fe6.szcp new file mode 100644 index 00000000..776818e8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_030/checkpoints/checkpoint_00000000000000000007_0eae4fe6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000001_4d4709c2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000001_4d4709c2.szar new file mode 100644 index 00000000..207649b7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000001_4d4709c2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000002_28ff2aff.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000002_28ff2aff.szar new file mode 100644 index 00000000..247e312e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000002_28ff2aff.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000003_8f46b9fa.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000003_8f46b9fa.szar new file mode 100644 index 00000000..b0461a59 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000003_8f46b9fa.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000004_79f689ea.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000004_79f689ea.szar new file mode 100644 index 00000000..5ecf38c0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000004_79f689ea.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000005_49f7fbf4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000005_49f7fbf4.szar new file mode 100644 index 00000000..0ee1f819 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000005_49f7fbf4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000006_314aa174.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000006_314aa174.szar new file mode 100644 index 00000000..b3d117ac Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000006_314aa174.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000007_f2017b74.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000007_f2017b74.szar new file mode 100644 index 00000000..f2f3b814 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000007_f2017b74.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000008_cd1022e6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000008_cd1022e6.szar new file mode 100644 index 00000000..c454a0c8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000008_cd1022e6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000009_26c4e9f0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000009_26c4e9f0.szar new file mode 100644 index 00000000..799cae65 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/archive/delta_00000000000000000009_26c4e9f0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000001_8dc979a9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000001_8dc979a9.szcp new file mode 100644 index 00000000..ae8e848c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000001_8dc979a9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000002_e5db11c8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000002_e5db11c8.szcp new file mode 100644 index 00000000..9b84f992 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000002_e5db11c8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000003_a5b1b1cc.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000003_a5b1b1cc.szcp new file mode 100644 index 00000000..549e3bd8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000003_a5b1b1cc.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000004_27d64cdb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000004_27d64cdb.szcp new file mode 100644 index 00000000..10cd7d56 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000004_27d64cdb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000005_52c9a355.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000005_52c9a355.szcp new file mode 100644 index 00000000..457846fa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000005_52c9a355.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000006_2a8206b5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000006_2a8206b5.szcp new file mode 100644 index 00000000..9cd98a6d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000006_2a8206b5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000007_66e57461.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000007_66e57461.szcp new file mode 100644 index 00000000..75adf4fe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000007_66e57461.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000008_471fa8a7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000008_471fa8a7.szcp new file mode 100644 index 00000000..c2bb1ea8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000008_471fa8a7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000009_ea221a30.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000009_ea221a30.szcp new file mode 100644 index 00000000..bfc5acb0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_031/checkpoints/checkpoint_00000000000000000009_ea221a30.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000001_766e5712.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000001_766e5712.szar new file mode 100644 index 00000000..fd228ce9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000001_766e5712.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000002_5b0142d9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000002_5b0142d9.szar new file mode 100644 index 00000000..769faa90 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000002_5b0142d9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000003_6493dcd9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000003_6493dcd9.szar new file mode 100644 index 00000000..c4753130 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000003_6493dcd9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000004_dd07a0df.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000004_dd07a0df.szar new file mode 100644 index 00000000..b8c7cda4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000004_dd07a0df.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000005_62967b7b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000005_62967b7b.szar new file mode 100644 index 00000000..a43820ec Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000005_62967b7b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000006_b57dc9ce.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000006_b57dc9ce.szar new file mode 100644 index 00000000..39a79d8a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000006_b57dc9ce.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000007_98c80c9d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000007_98c80c9d.szar new file mode 100644 index 00000000..0292b15a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/archive/delta_00000000000000000007_98c80c9d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000001_c5737fde.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000001_c5737fde.szcp new file mode 100644 index 00000000..199eb114 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000001_c5737fde.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000002_1066dcf1.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000002_1066dcf1.szcp new file mode 100644 index 00000000..f7fc7688 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000002_1066dcf1.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000003_d084a4f7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000003_d084a4f7.szcp new file mode 100644 index 00000000..f29f84fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000003_d084a4f7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000004_dc606c9e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000004_dc606c9e.szcp new file mode 100644 index 00000000..0c542380 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000004_dc606c9e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000005_b66d1d66.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000005_b66d1d66.szcp new file mode 100644 index 00000000..6403d91a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000005_b66d1d66.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000006_d4957ce2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000006_d4957ce2.szcp new file mode 100644 index 00000000..6e870053 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000006_d4957ce2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000007_9dd46065.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000007_9dd46065.szcp new file mode 100644 index 00000000..034af8a0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_032/checkpoints/checkpoint_00000000000000000007_9dd46065.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000001_52aa0590.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000001_52aa0590.szar new file mode 100644 index 00000000..b9df65b8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000001_52aa0590.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000002_8678aa73.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000002_8678aa73.szar new file mode 100644 index 00000000..b71acdab Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000002_8678aa73.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000003_1945fc6f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000003_1945fc6f.szar new file mode 100644 index 00000000..9144e488 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000003_1945fc6f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000004_465a85aa.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000004_465a85aa.szar new file mode 100644 index 00000000..0a32e599 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000004_465a85aa.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000005_82c5897c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000005_82c5897c.szar new file mode 100644 index 00000000..713843a7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000005_82c5897c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000006_d56e28fc.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000006_d56e28fc.szar new file mode 100644 index 00000000..bf671c0b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000006_d56e28fc.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000007_df67022d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000007_df67022d.szar new file mode 100644 index 00000000..bef0fd4d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000007_df67022d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000008_86154a10.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000008_86154a10.szar new file mode 100644 index 00000000..745bffa2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000008_86154a10.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000009_42ccb5c3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000009_42ccb5c3.szar new file mode 100644 index 00000000..316ff1e6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/archive/delta_00000000000000000009_42ccb5c3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000001_1382125e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000001_1382125e.szcp new file mode 100644 index 00000000..0220ee22 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000001_1382125e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000002_39585484.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000002_39585484.szcp new file mode 100644 index 00000000..fb856cae Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000002_39585484.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000003_5ab1c129.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000003_5ab1c129.szcp new file mode 100644 index 00000000..dcae1bdb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000003_5ab1c129.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000004_12e3c1f5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000004_12e3c1f5.szcp new file mode 100644 index 00000000..0a6448d1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000004_12e3c1f5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000005_c16e1c72.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000005_c16e1c72.szcp new file mode 100644 index 00000000..ff121230 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000005_c16e1c72.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000006_78c8d853.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000006_78c8d853.szcp new file mode 100644 index 00000000..6557d3d3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000006_78c8d853.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000007_e987f062.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000007_e987f062.szcp new file mode 100644 index 00000000..e0bffcac Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000007_e987f062.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000008_35c954a0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000008_35c954a0.szcp new file mode 100644 index 00000000..b7184e4b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000008_35c954a0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000009_ce4a1760.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000009_ce4a1760.szcp new file mode 100644 index 00000000..42e5b0af Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_033/checkpoints/checkpoint_00000000000000000009_ce4a1760.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000001_831474e4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000001_831474e4.szar new file mode 100644 index 00000000..c299d216 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000001_831474e4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000002_3caed089.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000002_3caed089.szar new file mode 100644 index 00000000..670da1fc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000002_3caed089.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000003_07aeba9f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000003_07aeba9f.szar new file mode 100644 index 00000000..a9a76445 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000003_07aeba9f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000004_1d2cbff8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000004_1d2cbff8.szar new file mode 100644 index 00000000..b7cd72c9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000004_1d2cbff8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000005_4f7991ae.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000005_4f7991ae.szar new file mode 100644 index 00000000..45a23fcd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/archive/delta_00000000000000000005_4f7991ae.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000001_c8875f2e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000001_c8875f2e.szcp new file mode 100644 index 00000000..0656f47e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000001_c8875f2e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000002_f42f3d0d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000002_f42f3d0d.szcp new file mode 100644 index 00000000..9717b08b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000002_f42f3d0d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000003_0de886d9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000003_0de886d9.szcp new file mode 100644 index 00000000..6e0f612b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000003_0de886d9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000004_b04a096f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000004_b04a096f.szcp new file mode 100644 index 00000000..6cc269c2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000004_b04a096f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000005_541a08ac.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000005_541a08ac.szcp new file mode 100644 index 00000000..841cc9c1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_034/checkpoints/checkpoint_00000000000000000005_541a08ac.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000001_2c328c51.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000001_2c328c51.szar new file mode 100644 index 00000000..f815953b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000001_2c328c51.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000002_b438e972.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000002_b438e972.szar new file mode 100644 index 00000000..9e236228 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000002_b438e972.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000003_e488650a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000003_e488650a.szar new file mode 100644 index 00000000..4bf9f032 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000003_e488650a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000004_3486f167.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000004_3486f167.szar new file mode 100644 index 00000000..5bb7651c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000004_3486f167.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000005_cb768eb6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000005_cb768eb6.szar new file mode 100644 index 00000000..04e2a593 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/archive/delta_00000000000000000005_cb768eb6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000001_a1cc3b6d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000001_a1cc3b6d.szcp new file mode 100644 index 00000000..1ce05380 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000001_a1cc3b6d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000002_412961c2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000002_412961c2.szcp new file mode 100644 index 00000000..bc3aabd0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000002_412961c2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000003_3337354c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000003_3337354c.szcp new file mode 100644 index 00000000..68a62c4f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000003_3337354c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000004_e8dd423e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000004_e8dd423e.szcp new file mode 100644 index 00000000..36f44483 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000004_e8dd423e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000005_f7b10d0e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000005_f7b10d0e.szcp new file mode 100644 index 00000000..66f30689 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_035/checkpoints/checkpoint_00000000000000000005_f7b10d0e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000001_379f7eec.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000001_379f7eec.szar new file mode 100644 index 00000000..65683bfa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000001_379f7eec.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000002_02958ff6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000002_02958ff6.szar new file mode 100644 index 00000000..2a20d04a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000002_02958ff6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000003_ef954f83.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000003_ef954f83.szar new file mode 100644 index 00000000..48a4c5fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000003_ef954f83.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000004_5fb51979.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000004_5fb51979.szar new file mode 100644 index 00000000..9ba5dcad Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000004_5fb51979.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000005_df8d246e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000005_df8d246e.szar new file mode 100644 index 00000000..e078ed05 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/archive/delta_00000000000000000005_df8d246e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000001_9a9c66b8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000001_9a9c66b8.szcp new file mode 100644 index 00000000..e4558fb3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000001_9a9c66b8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000002_82e0a2da.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000002_82e0a2da.szcp new file mode 100644 index 00000000..ce1a97d0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000002_82e0a2da.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000003_dec86565.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000003_dec86565.szcp new file mode 100644 index 00000000..8138e117 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000003_dec86565.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000004_0470a3ed.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000004_0470a3ed.szcp new file mode 100644 index 00000000..cb29a9bf Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000004_0470a3ed.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000005_a41f6a80.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000005_a41f6a80.szcp new file mode 100644 index 00000000..25cfe243 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_036/checkpoints/checkpoint_00000000000000000005_a41f6a80.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000001_615b43db.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000001_615b43db.szar new file mode 100644 index 00000000..1d014ba3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000001_615b43db.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000002_a9eb4dd3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000002_a9eb4dd3.szar new file mode 100644 index 00000000..3641c43b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000002_a9eb4dd3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000003_490b6b2f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000003_490b6b2f.szar new file mode 100644 index 00000000..a4571431 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000003_490b6b2f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000004_b25eb0e8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000004_b25eb0e8.szar new file mode 100644 index 00000000..fe8df8bc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000004_b25eb0e8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000005_edc520e1.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000005_edc520e1.szar new file mode 100644 index 00000000..214e5654 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/archive/delta_00000000000000000005_edc520e1.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000001_d895341f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000001_d895341f.szcp new file mode 100644 index 00000000..2c7a671b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000001_d895341f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000002_e1e018c4.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000002_e1e018c4.szcp new file mode 100644 index 00000000..aab3ea4b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000002_e1e018c4.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000003_d89efda7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000003_d89efda7.szcp new file mode 100644 index 00000000..a68571d2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000003_d89efda7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000004_11c6666a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000004_11c6666a.szcp new file mode 100644 index 00000000..2038d3ec Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000004_11c6666a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000005_a347ba2d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000005_a347ba2d.szcp new file mode 100644 index 00000000..e83df4d1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_037/checkpoints/checkpoint_00000000000000000005_a347ba2d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000001_f9f9c734.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000001_f9f9c734.szar new file mode 100644 index 00000000..8ee41bfa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000001_f9f9c734.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000002_9c308c76.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000002_9c308c76.szar new file mode 100644 index 00000000..8ae0245a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000002_9c308c76.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000003_ab5ad821.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000003_ab5ad821.szar new file mode 100644 index 00000000..7f410f14 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000003_ab5ad821.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000004_26568451.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000004_26568451.szar new file mode 100644 index 00000000..ea58f510 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000004_26568451.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000005_dcde8db4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000005_dcde8db4.szar new file mode 100644 index 00000000..4703a54a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000005_dcde8db4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000006_fd552562.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000006_fd552562.szar new file mode 100644 index 00000000..79c48dc7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/archive/delta_00000000000000000006_fd552562.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000001_c627a0fd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000001_c627a0fd.szcp new file mode 100644 index 00000000..acf0f1ce Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000001_c627a0fd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000002_b2f9ba07.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000002_b2f9ba07.szcp new file mode 100644 index 00000000..eff24e8d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000002_b2f9ba07.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000003_1fe6a97c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000003_1fe6a97c.szcp new file mode 100644 index 00000000..0d74c3bc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000003_1fe6a97c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000004_0be5b9e3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000004_0be5b9e3.szcp new file mode 100644 index 00000000..c5055853 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000004_0be5b9e3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000005_d986bc8d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000005_d986bc8d.szcp new file mode 100644 index 00000000..4a72b902 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000005_d986bc8d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000006_2fd5def8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000006_2fd5def8.szcp new file mode 100644 index 00000000..188c6db9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_038/checkpoints/checkpoint_00000000000000000006_2fd5def8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000001_18c95de2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000001_18c95de2.szar new file mode 100644 index 00000000..dd66b5a7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000001_18c95de2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000002_0fdeffc6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000002_0fdeffc6.szar new file mode 100644 index 00000000..2783d9c6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000002_0fdeffc6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000003_e5292020.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000003_e5292020.szar new file mode 100644 index 00000000..eec6fc83 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000003_e5292020.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000004_b7ef3d02.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000004_b7ef3d02.szar new file mode 100644 index 00000000..6d579167 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000004_b7ef3d02.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000005_92db27cd.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000005_92db27cd.szar new file mode 100644 index 00000000..2acc429b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000005_92db27cd.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000006_2d74aad5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000006_2d74aad5.szar new file mode 100644 index 00000000..1f40c5c5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/archive/delta_00000000000000000006_2d74aad5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000001_43ec078a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000001_43ec078a.szcp new file mode 100644 index 00000000..85c1bf66 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000001_43ec078a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000002_d26aff75.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000002_d26aff75.szcp new file mode 100644 index 00000000..22f4eabd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000002_d26aff75.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000003_86ca4c43.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000003_86ca4c43.szcp new file mode 100644 index 00000000..203d0cb6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000003_86ca4c43.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000004_d4f386af.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000004_d4f386af.szcp new file mode 100644 index 00000000..59252f4f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000004_d4f386af.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000005_9c726966.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000005_9c726966.szcp new file mode 100644 index 00000000..3e97fd2a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000005_9c726966.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000006_8b3251e7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000006_8b3251e7.szcp new file mode 100644 index 00000000..3c8a8af3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_039/checkpoints/checkpoint_00000000000000000006_8b3251e7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000001_f289b572.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000001_f289b572.szar new file mode 100644 index 00000000..c0c6a6d8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000001_f289b572.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000002_551843db.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000002_551843db.szar new file mode 100644 index 00000000..01f22d61 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000002_551843db.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000003_d3584af5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000003_d3584af5.szar new file mode 100644 index 00000000..13521060 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000003_d3584af5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000004_83f27023.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000004_83f27023.szar new file mode 100644 index 00000000..4b448961 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000004_83f27023.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000005_cb7a181b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000005_cb7a181b.szar new file mode 100644 index 00000000..af077a7e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000005_cb7a181b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000006_33c56cf6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000006_33c56cf6.szar new file mode 100644 index 00000000..52b49394 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/archive/delta_00000000000000000006_33c56cf6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000001_b270e3a4.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000001_b270e3a4.szcp new file mode 100644 index 00000000..17639976 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000001_b270e3a4.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000002_963f890a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000002_963f890a.szcp new file mode 100644 index 00000000..177ed0f9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000002_963f890a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000003_a181780a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000003_a181780a.szcp new file mode 100644 index 00000000..d002705c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000003_a181780a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000004_91efb171.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000004_91efb171.szcp new file mode 100644 index 00000000..be210ea5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000004_91efb171.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000005_c61b87c2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000005_c61b87c2.szcp new file mode 100644 index 00000000..0457b7b5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000005_c61b87c2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000006_7a999f8f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000006_7a999f8f.szcp new file mode 100644 index 00000000..ccd556e0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_040/checkpoints/checkpoint_00000000000000000006_7a999f8f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000001_05e2573c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000001_05e2573c.szar new file mode 100644 index 00000000..74587dea Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000001_05e2573c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000002_649b8add.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000002_649b8add.szar new file mode 100644 index 00000000..94caebbe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000002_649b8add.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000003_2a6a2309.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000003_2a6a2309.szar new file mode 100644 index 00000000..71f7e9e6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000003_2a6a2309.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000004_42747c4e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000004_42747c4e.szar new file mode 100644 index 00000000..ac27b34e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000004_42747c4e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000005_eacf4dc0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000005_eacf4dc0.szar new file mode 100644 index 00000000..93b714e5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000005_eacf4dc0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000006_062dd621.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000006_062dd621.szar new file mode 100644 index 00000000..922b603f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/archive/delta_00000000000000000006_062dd621.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000001_d9a251c2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000001_d9a251c2.szcp new file mode 100644 index 00000000..ff21e0c7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000001_d9a251c2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000002_0e47233a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000002_0e47233a.szcp new file mode 100644 index 00000000..4a6f8e83 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000002_0e47233a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000003_0ac73748.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000003_0ac73748.szcp new file mode 100644 index 00000000..7aab6a66 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000003_0ac73748.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000004_564c1be9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000004_564c1be9.szcp new file mode 100644 index 00000000..2a4c1a9d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000004_564c1be9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000005_372928dd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000005_372928dd.szcp new file mode 100644 index 00000000..dd18c4a2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000005_372928dd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000006_7458465f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000006_7458465f.szcp new file mode 100644 index 00000000..f25e437c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_041/checkpoints/checkpoint_00000000000000000006_7458465f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000001_7134cafb.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000001_7134cafb.szar new file mode 100644 index 00000000..39fccb5f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000001_7134cafb.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000002_ea464836.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000002_ea464836.szar new file mode 100644 index 00000000..e0842360 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000002_ea464836.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000003_0fa38a9b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000003_0fa38a9b.szar new file mode 100644 index 00000000..3e83eaea Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000003_0fa38a9b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000004_471c02b7.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000004_471c02b7.szar new file mode 100644 index 00000000..58854fc1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000004_471c02b7.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000005_4c35466d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000005_4c35466d.szar new file mode 100644 index 00000000..fc1ff77c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000005_4c35466d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000006_c340daff.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000006_c340daff.szar new file mode 100644 index 00000000..326f77dc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000006_c340daff.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000007_28507517.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000007_28507517.szar new file mode 100644 index 00000000..0201fb6f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000007_28507517.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000008_1b68005a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000008_1b68005a.szar new file mode 100644 index 00000000..4c3542e6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000008_1b68005a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000009_663a81b9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000009_663a81b9.szar new file mode 100644 index 00000000..2c2752e9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000009_663a81b9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000010_87c6bbc2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000010_87c6bbc2.szar new file mode 100644 index 00000000..38483c50 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000010_87c6bbc2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000011_023c798e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000011_023c798e.szar new file mode 100644 index 00000000..16f3da16 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000011_023c798e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000012_d72abfbe.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000012_d72abfbe.szar new file mode 100644 index 00000000..d76b874a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000012_d72abfbe.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000013_7e6d0c72.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000013_7e6d0c72.szar new file mode 100644 index 00000000..65df0be3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000013_7e6d0c72.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000014_51965dfa.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000014_51965dfa.szar new file mode 100644 index 00000000..0e6005ac Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000014_51965dfa.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000015_688e46e5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000015_688e46e5.szar new file mode 100644 index 00000000..a1317294 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/archive/delta_00000000000000000015_688e46e5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000001_11c6ad85.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000001_11c6ad85.szcp new file mode 100644 index 00000000..72ba3cc5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000001_11c6ad85.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000002_5473b420.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000002_5473b420.szcp new file mode 100644 index 00000000..e71ff77b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000002_5473b420.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000003_510f7748.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000003_510f7748.szcp new file mode 100644 index 00000000..fbf75aa8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000003_510f7748.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000004_aca8a3c9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000004_aca8a3c9.szcp new file mode 100644 index 00000000..2ae737da Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000004_aca8a3c9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000005_4b3f86f9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000005_4b3f86f9.szcp new file mode 100644 index 00000000..86fbf32f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000005_4b3f86f9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000006_9ca786f8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000006_9ca786f8.szcp new file mode 100644 index 00000000..c9354930 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000006_9ca786f8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000007_0b419e9a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000007_0b419e9a.szcp new file mode 100644 index 00000000..268c2517 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000007_0b419e9a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000008_0b396ccd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000008_0b396ccd.szcp new file mode 100644 index 00000000..a2850586 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000008_0b396ccd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000009_8dd6e3cb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000009_8dd6e3cb.szcp new file mode 100644 index 00000000..96993862 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000009_8dd6e3cb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000010_3db69f59.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000010_3db69f59.szcp new file mode 100644 index 00000000..5c48435c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000010_3db69f59.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000011_af6d2171.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000011_af6d2171.szcp new file mode 100644 index 00000000..5d8214f6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000011_af6d2171.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000012_4f65e9ff.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000012_4f65e9ff.szcp new file mode 100644 index 00000000..6f767e98 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000012_4f65e9ff.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000013_451fef6b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000013_451fef6b.szcp new file mode 100644 index 00000000..fa12dbc5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000013_451fef6b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000014_45054467.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000014_45054467.szcp new file mode 100644 index 00000000..86925142 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000014_45054467.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000015_3679610a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000015_3679610a.szcp new file mode 100644 index 00000000..e3f7a71b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_042/checkpoints/checkpoint_00000000000000000015_3679610a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000001_cd8508e8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000001_cd8508e8.szar new file mode 100644 index 00000000..dbbc8dbe Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000001_cd8508e8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000002_9648839d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000002_9648839d.szar new file mode 100644 index 00000000..beaddd21 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000002_9648839d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000003_e960cd7b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000003_e960cd7b.szar new file mode 100644 index 00000000..d76c95d7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000003_e960cd7b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000004_df4cc35a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000004_df4cc35a.szar new file mode 100644 index 00000000..5f7586d7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000004_df4cc35a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000005_895fd09c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000005_895fd09c.szar new file mode 100644 index 00000000..d47fbf04 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/archive/delta_00000000000000000005_895fd09c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000001_d283a91d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000001_d283a91d.szcp new file mode 100644 index 00000000..4c6bce99 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000001_d283a91d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000002_ea11d313.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000002_ea11d313.szcp new file mode 100644 index 00000000..7543573b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000002_ea11d313.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000003_eef85616.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000003_eef85616.szcp new file mode 100644 index 00000000..3b24099c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000003_eef85616.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000004_29a0f126.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000004_29a0f126.szcp new file mode 100644 index 00000000..811925a5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000004_29a0f126.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000005_30bf6278.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000005_30bf6278.szcp new file mode 100644 index 00000000..b72f04e3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_043/checkpoints/checkpoint_00000000000000000005_30bf6278.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000001_b7ade26c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000001_b7ade26c.szar new file mode 100644 index 00000000..e2b94443 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000001_b7ade26c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000002_04476ba9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000002_04476ba9.szar new file mode 100644 index 00000000..ce770a70 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000002_04476ba9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000003_a9689dd3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000003_a9689dd3.szar new file mode 100644 index 00000000..ade45ba8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000003_a9689dd3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000004_31688f09.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000004_31688f09.szar new file mode 100644 index 00000000..ace8ec66 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000004_31688f09.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000005_f80c70c3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000005_f80c70c3.szar new file mode 100644 index 00000000..3cb4dc31 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000005_f80c70c3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000006_b813c772.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000006_b813c772.szar new file mode 100644 index 00000000..dcadb515 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000006_b813c772.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000007_710b5758.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000007_710b5758.szar new file mode 100644 index 00000000..d65c9414 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000007_710b5758.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000008_057f4ea8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000008_057f4ea8.szar new file mode 100644 index 00000000..36aed494 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000008_057f4ea8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000009_09d99ccc.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000009_09d99ccc.szar new file mode 100644 index 00000000..ed6541fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/archive/delta_00000000000000000009_09d99ccc.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000001_df8b1b71.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000001_df8b1b71.szcp new file mode 100644 index 00000000..187eb8b0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000001_df8b1b71.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000002_d25479df.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000002_d25479df.szcp new file mode 100644 index 00000000..bdccf743 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000002_d25479df.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000003_b007a0f6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000003_b007a0f6.szcp new file mode 100644 index 00000000..e355ac82 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000003_b007a0f6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000004_4aaea9f6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000004_4aaea9f6.szcp new file mode 100644 index 00000000..29759a04 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000004_4aaea9f6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000005_29bda928.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000005_29bda928.szcp new file mode 100644 index 00000000..32b42a21 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000005_29bda928.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000006_5e3913d7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000006_5e3913d7.szcp new file mode 100644 index 00000000..7d729679 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000006_5e3913d7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000007_037ee345.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000007_037ee345.szcp new file mode 100644 index 00000000..267b35a4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000007_037ee345.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000008_f2f4b498.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000008_f2f4b498.szcp new file mode 100644 index 00000000..3e96a412 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000008_f2f4b498.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000009_0b9bb2e2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000009_0b9bb2e2.szcp new file mode 100644 index 00000000..89aaa1a1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_044/checkpoints/checkpoint_00000000000000000009_0b9bb2e2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000001_e3d125d0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000001_e3d125d0.szar new file mode 100644 index 00000000..041c1c57 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000001_e3d125d0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000002_2ea2a30d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000002_2ea2a30d.szar new file mode 100644 index 00000000..c997ef2b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000002_2ea2a30d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000003_b2eaad6c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000003_b2eaad6c.szar new file mode 100644 index 00000000..1887eadd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000003_b2eaad6c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000004_03a9ec69.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000004_03a9ec69.szar new file mode 100644 index 00000000..bfea90d4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000004_03a9ec69.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000005_924d08e2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000005_924d08e2.szar new file mode 100644 index 00000000..40c677ba Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000005_924d08e2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000006_1c4aa259.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000006_1c4aa259.szar new file mode 100644 index 00000000..9cd6c07a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000006_1c4aa259.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000007_0ca1bf2c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000007_0ca1bf2c.szar new file mode 100644 index 00000000..c1d81825 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/archive/delta_00000000000000000007_0ca1bf2c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000001_98d9bed9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000001_98d9bed9.szcp new file mode 100644 index 00000000..d834a7b3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000001_98d9bed9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000002_604aa19b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000002_604aa19b.szcp new file mode 100644 index 00000000..470ce4a4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000002_604aa19b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000003_8e4af710.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000003_8e4af710.szcp new file mode 100644 index 00000000..9ab8abe4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000003_8e4af710.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000004_1e370814.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000004_1e370814.szcp new file mode 100644 index 00000000..87980171 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000004_1e370814.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000005_18efe3af.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000005_18efe3af.szcp new file mode 100644 index 00000000..b7dfe577 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000005_18efe3af.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000006_6bc89629.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000006_6bc89629.szcp new file mode 100644 index 00000000..dff18541 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000006_6bc89629.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000007_69d9a39d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000007_69d9a39d.szcp new file mode 100644 index 00000000..9e0d1bbb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_045/checkpoints/checkpoint_00000000000000000007_69d9a39d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000001_6d55e68c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000001_6d55e68c.szar new file mode 100644 index 00000000..80d819fb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000001_6d55e68c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000002_38e95395.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000002_38e95395.szar new file mode 100644 index 00000000..d9f5928e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000002_38e95395.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000003_2fc2629c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000003_2fc2629c.szar new file mode 100644 index 00000000..915bfdf3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000003_2fc2629c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000004_8f0b07d5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000004_8f0b07d5.szar new file mode 100644 index 00000000..0eeda333 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000004_8f0b07d5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000005_5c5c0181.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000005_5c5c0181.szar new file mode 100644 index 00000000..babf5bf2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000005_5c5c0181.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000006_35b5bb24.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000006_35b5bb24.szar new file mode 100644 index 00000000..e3202e85 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000006_35b5bb24.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000007_4304b25e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000007_4304b25e.szar new file mode 100644 index 00000000..4bb92460 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000007_4304b25e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000008_55dc2583.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000008_55dc2583.szar new file mode 100644 index 00000000..58ba421a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/archive/delta_00000000000000000008_55dc2583.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000001_d1c4006b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000001_d1c4006b.szcp new file mode 100644 index 00000000..fb184928 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000001_d1c4006b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000002_86135581.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000002_86135581.szcp new file mode 100644 index 00000000..fa619d55 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000002_86135581.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000003_d49d1fe7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000003_d49d1fe7.szcp new file mode 100644 index 00000000..fd32beba Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000003_d49d1fe7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000004_55641c85.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000004_55641c85.szcp new file mode 100644 index 00000000..f234a195 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000004_55641c85.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000005_aa29bd10.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000005_aa29bd10.szcp new file mode 100644 index 00000000..1f6cec5b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000005_aa29bd10.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000006_5fa1975d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000006_5fa1975d.szcp new file mode 100644 index 00000000..a4639c96 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000006_5fa1975d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000007_d2e8ac64.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000007_d2e8ac64.szcp new file mode 100644 index 00000000..6669fd3d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000007_d2e8ac64.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000008_4b67d5cd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000008_4b67d5cd.szcp new file mode 100644 index 00000000..639f0ee7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_046/checkpoints/checkpoint_00000000000000000008_4b67d5cd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000001_ecdfb31b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000001_ecdfb31b.szar new file mode 100644 index 00000000..7fba8395 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000001_ecdfb31b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000002_648b31fe.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000002_648b31fe.szar new file mode 100644 index 00000000..6ddb3624 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000002_648b31fe.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000003_acea8502.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000003_acea8502.szar new file mode 100644 index 00000000..44c0afbd Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000003_acea8502.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000004_bdb1a704.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000004_bdb1a704.szar new file mode 100644 index 00000000..ea208e41 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000004_bdb1a704.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000005_0027d53a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000005_0027d53a.szar new file mode 100644 index 00000000..6f5b951a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/archive/delta_00000000000000000005_0027d53a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000001_edee586c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000001_edee586c.szcp new file mode 100644 index 00000000..3d211bad Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000001_edee586c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000002_7aaa4ba5.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000002_7aaa4ba5.szcp new file mode 100644 index 00000000..2540f160 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000002_7aaa4ba5.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000003_2d7d1155.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000003_2d7d1155.szcp new file mode 100644 index 00000000..66439136 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000003_2d7d1155.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000004_4c9b0acd.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000004_4c9b0acd.szcp new file mode 100644 index 00000000..594361bb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000004_4c9b0acd.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000005_e4fbeee9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000005_e4fbeee9.szcp new file mode 100644 index 00000000..25648463 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_047/checkpoints/checkpoint_00000000000000000005_e4fbeee9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000001_1984ab77.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000001_1984ab77.szar new file mode 100644 index 00000000..b15b0a3a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000001_1984ab77.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000002_2dd7ef2d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000002_2dd7ef2d.szar new file mode 100644 index 00000000..3db99187 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000002_2dd7ef2d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000003_df384d0f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000003_df384d0f.szar new file mode 100644 index 00000000..7f5ebc85 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000003_df384d0f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000004_ef910158.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000004_ef910158.szar new file mode 100644 index 00000000..198f6f98 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000004_ef910158.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000005_d04cedc9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000005_d04cedc9.szar new file mode 100644 index 00000000..ba316688 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000005_d04cedc9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000006_1010a918.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000006_1010a918.szar new file mode 100644 index 00000000..61a5f310 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000006_1010a918.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000007_c57683b0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000007_c57683b0.szar new file mode 100644 index 00000000..6c52180d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000007_c57683b0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000008_be5e699b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000008_be5e699b.szar new file mode 100644 index 00000000..348cc4ae Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000008_be5e699b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000009_a199dea6.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000009_a199dea6.szar new file mode 100644 index 00000000..d57349db Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000009_a199dea6.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000010_90ca6b5d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000010_90ca6b5d.szar new file mode 100644 index 00000000..b75e1cd2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/archive/delta_00000000000000000010_90ca6b5d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000001_57f7dc29.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000001_57f7dc29.szcp new file mode 100644 index 00000000..6073b322 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000001_57f7dc29.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000002_0d4525fa.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000002_0d4525fa.szcp new file mode 100644 index 00000000..b1f7ffb8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000002_0d4525fa.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000003_3860a9cf.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000003_3860a9cf.szcp new file mode 100644 index 00000000..c703db40 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000003_3860a9cf.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000004_75e32c39.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000004_75e32c39.szcp new file mode 100644 index 00000000..8285ec26 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000004_75e32c39.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000005_5e5eaf5f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000005_5e5eaf5f.szcp new file mode 100644 index 00000000..f7ceb796 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000005_5e5eaf5f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000006_89b42e44.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000006_89b42e44.szcp new file mode 100644 index 00000000..daf5ba4a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000006_89b42e44.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000007_b71d295f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000007_b71d295f.szcp new file mode 100644 index 00000000..19973159 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000007_b71d295f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000008_81a361cf.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000008_81a361cf.szcp new file mode 100644 index 00000000..801f8609 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000008_81a361cf.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000009_2c1acb86.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000009_2c1acb86.szcp new file mode 100644 index 00000000..6c27445b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000009_2c1acb86.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000010_ce9c3177.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000010_ce9c3177.szcp new file mode 100644 index 00000000..38167bbc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_048/checkpoints/checkpoint_00000000000000000010_ce9c3177.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000001_19c9e174.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000001_19c9e174.szar new file mode 100644 index 00000000..08b9a9fa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000001_19c9e174.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000002_0effbbef.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000002_0effbbef.szar new file mode 100644 index 00000000..43987816 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000002_0effbbef.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000003_3f377342.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000003_3f377342.szar new file mode 100644 index 00000000..7fff00aa Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000003_3f377342.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000004_591f61ee.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000004_591f61ee.szar new file mode 100644 index 00000000..77686c37 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000004_591f61ee.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000005_a742c577.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000005_a742c577.szar new file mode 100644 index 00000000..79d6746d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000005_a742c577.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000006_8c44aed5.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000006_8c44aed5.szar new file mode 100644 index 00000000..4f395e78 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000006_8c44aed5.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000007_5f2886a9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000007_5f2886a9.szar new file mode 100644 index 00000000..1b6e9a36 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/archive/delta_00000000000000000007_5f2886a9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000001_b2290fe6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000001_b2290fe6.szcp new file mode 100644 index 00000000..8bd3eff5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000001_b2290fe6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000002_d20ce283.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000002_d20ce283.szcp new file mode 100644 index 00000000..03b7b838 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000002_d20ce283.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000003_400651b8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000003_400651b8.szcp new file mode 100644 index 00000000..5a90f5d1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000003_400651b8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000004_eb89916e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000004_eb89916e.szcp new file mode 100644 index 00000000..d24fb0cc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000004_eb89916e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000005_a6ecde6d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000005_a6ecde6d.szcp new file mode 100644 index 00000000..1e3da5f4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000005_a6ecde6d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000006_08560992.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000006_08560992.szcp new file mode 100644 index 00000000..18f5014e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000006_08560992.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000007_51ef192d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000007_51ef192d.szcp new file mode 100644 index 00000000..1857a0d7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_049/checkpoints/checkpoint_00000000000000000007_51ef192d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000001_1b090876.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000001_1b090876.szar new file mode 100644 index 00000000..37880a71 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000001_1b090876.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000002_b22c0505.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000002_b22c0505.szar new file mode 100644 index 00000000..54d4fb3a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000002_b22c0505.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000003_89ab7a4e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000003_89ab7a4e.szar new file mode 100644 index 00000000..f151a777 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000003_89ab7a4e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000004_ca50b2b3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000004_ca50b2b3.szar new file mode 100644 index 00000000..f0a83063 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000004_ca50b2b3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000005_34c4e487.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000005_34c4e487.szar new file mode 100644 index 00000000..e70f76eb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000005_34c4e487.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000006_0bea0dac.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000006_0bea0dac.szar new file mode 100644 index 00000000..80e21dd6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/archive/delta_00000000000000000006_0bea0dac.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000001_a9a09c54.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000001_a9a09c54.szcp new file mode 100644 index 00000000..5e145e81 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000001_a9a09c54.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000002_ac346aab.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000002_ac346aab.szcp new file mode 100644 index 00000000..f3053806 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000002_ac346aab.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000003_00e6e9b9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000003_00e6e9b9.szcp new file mode 100644 index 00000000..ae76a279 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000003_00e6e9b9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000004_54fd57eb.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000004_54fd57eb.szcp new file mode 100644 index 00000000..8a8a7ac5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000004_54fd57eb.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000005_2d206cde.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000005_2d206cde.szcp new file mode 100644 index 00000000..7ec28fd6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000005_2d206cde.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000006_5c084819.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000006_5c084819.szcp new file mode 100644 index 00000000..8c73335d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_050/checkpoints/checkpoint_00000000000000000006_5c084819.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000001_b82f7e90.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000001_b82f7e90.szar new file mode 100644 index 00000000..4c3f22c1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000001_b82f7e90.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000002_9affd83e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000002_9affd83e.szar new file mode 100644 index 00000000..2e4d82be Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000002_9affd83e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000003_03a52c94.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000003_03a52c94.szar new file mode 100644 index 00000000..74737d8a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000003_03a52c94.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000004_6dc36257.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000004_6dc36257.szar new file mode 100644 index 00000000..72388801 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000004_6dc36257.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000005_8f7d9ede.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000005_8f7d9ede.szar new file mode 100644 index 00000000..3c448e6a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/archive/delta_00000000000000000005_8f7d9ede.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000001_8550191b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000001_8550191b.szcp new file mode 100644 index 00000000..2a0680f7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000001_8550191b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000002_82bb7132.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000002_82bb7132.szcp new file mode 100644 index 00000000..6dcefe5d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000002_82bb7132.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000003_4295726d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000003_4295726d.szcp new file mode 100644 index 00000000..271968e9 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000003_4295726d.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000004_317ad378.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000004_317ad378.szcp new file mode 100644 index 00000000..140f2508 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000004_317ad378.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000005_c2e89037.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000005_c2e89037.szcp new file mode 100644 index 00000000..36537f9b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_051/checkpoints/checkpoint_00000000000000000005_c2e89037.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000001_2a7d8a4b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000001_2a7d8a4b.szar new file mode 100644 index 00000000..d689b583 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000001_2a7d8a4b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000002_7996ec48.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000002_7996ec48.szar new file mode 100644 index 00000000..02c99099 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000002_7996ec48.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000003_83cc7764.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000003_83cc7764.szar new file mode 100644 index 00000000..d9f0048d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000003_83cc7764.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000004_dc535f39.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000004_dc535f39.szar new file mode 100644 index 00000000..1d2ce911 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000004_dc535f39.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000005_d4afc64a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000005_d4afc64a.szar new file mode 100644 index 00000000..530fd7b4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000005_d4afc64a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000006_0d7481d4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000006_0d7481d4.szar new file mode 100644 index 00000000..86541977 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000006_0d7481d4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000007_6cc4271f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000007_6cc4271f.szar new file mode 100644 index 00000000..a1ca4b78 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000007_6cc4271f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000008_57994d9c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000008_57994d9c.szar new file mode 100644 index 00000000..617534b5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000008_57994d9c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000009_4ef0d280.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000009_4ef0d280.szar new file mode 100644 index 00000000..90cf390c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/archive/delta_00000000000000000009_4ef0d280.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000001_9184f034.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000001_9184f034.szcp new file mode 100644 index 00000000..e45416ee Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000001_9184f034.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000002_f8cd89fe.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000002_f8cd89fe.szcp new file mode 100644 index 00000000..f83434f8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000002_f8cd89fe.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000003_ae6e6c23.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000003_ae6e6c23.szcp new file mode 100644 index 00000000..c88d6c8b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000003_ae6e6c23.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000004_a4cc7604.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000004_a4cc7604.szcp new file mode 100644 index 00000000..126a6e31 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000004_a4cc7604.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000005_42c629cc.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000005_42c629cc.szcp new file mode 100644 index 00000000..57dec80c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000005_42c629cc.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000006_cd2a03ec.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000006_cd2a03ec.szcp new file mode 100644 index 00000000..f6050d5a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000006_cd2a03ec.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000007_31961cd2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000007_31961cd2.szcp new file mode 100644 index 00000000..04493a74 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000007_31961cd2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000008_928e2c20.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000008_928e2c20.szcp new file mode 100644 index 00000000..c58b8498 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000008_928e2c20.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000009_cc2e8c70.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000009_cc2e8c70.szcp new file mode 100644 index 00000000..cd7aeaec Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_052/checkpoints/checkpoint_00000000000000000009_cc2e8c70.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000001_8135ed7e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000001_8135ed7e.szar new file mode 100644 index 00000000..72e750a3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000001_8135ed7e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000002_d1210b49.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000002_d1210b49.szar new file mode 100644 index 00000000..5c43b954 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000002_d1210b49.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000003_27701a8c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000003_27701a8c.szar new file mode 100644 index 00000000..cc0aefc1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000003_27701a8c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000004_3c650e1d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000004_3c650e1d.szar new file mode 100644 index 00000000..a59167ba Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000004_3c650e1d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000005_076f815d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000005_076f815d.szar new file mode 100644 index 00000000..458a7612 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000005_076f815d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000006_6c08d4e7.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000006_6c08d4e7.szar new file mode 100644 index 00000000..f7ca76c4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000006_6c08d4e7.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000007_de2d1358.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000007_de2d1358.szar new file mode 100644 index 00000000..85306997 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000007_de2d1358.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000008_e1abfb35.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000008_e1abfb35.szar new file mode 100644 index 00000000..26080c6e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/archive/delta_00000000000000000008_e1abfb35.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000001_d1b9351c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000001_d1b9351c.szcp new file mode 100644 index 00000000..f8191ac7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000001_d1b9351c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000002_8c78bac6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000002_8c78bac6.szcp new file mode 100644 index 00000000..d657355d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000002_8c78bac6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000003_ba246d9a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000003_ba246d9a.szcp new file mode 100644 index 00000000..fe88ae45 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000003_ba246d9a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000004_856d997a.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000004_856d997a.szcp new file mode 100644 index 00000000..a66e81f6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000004_856d997a.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000005_3c3e3da9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000005_3c3e3da9.szcp new file mode 100644 index 00000000..198a2c3a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000005_3c3e3da9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000006_426bb6aa.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000006_426bb6aa.szcp new file mode 100644 index 00000000..c3eabf4a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000006_426bb6aa.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000007_6a669814.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000007_6a669814.szcp new file mode 100644 index 00000000..de09035a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000007_6a669814.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000008_963ef9e3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000008_963ef9e3.szcp new file mode 100644 index 00000000..05ae0fcb Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_053/checkpoints/checkpoint_00000000000000000008_963ef9e3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000001_f8be0927.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000001_f8be0927.szar new file mode 100644 index 00000000..6a079534 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000001_f8be0927.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000002_f68ec558.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000002_f68ec558.szar new file mode 100644 index 00000000..daf7a02f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000002_f68ec558.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000003_09ae53c9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000003_09ae53c9.szar new file mode 100644 index 00000000..3a02e7a5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000003_09ae53c9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000004_6306419a.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000004_6306419a.szar new file mode 100644 index 00000000..d2d8f87b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000004_6306419a.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000005_f8f3e65e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000005_f8f3e65e.szar new file mode 100644 index 00000000..938a7c5f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000005_f8f3e65e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000006_4fad0e96.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000006_4fad0e96.szar new file mode 100644 index 00000000..be233413 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000006_4fad0e96.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000007_96942679.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000007_96942679.szar new file mode 100644 index 00000000..08e838f1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/archive/delta_00000000000000000007_96942679.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000001_8e6c5a83.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000001_8e6c5a83.szcp new file mode 100644 index 00000000..513086d0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000001_8e6c5a83.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000002_e67f990c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000002_e67f990c.szcp new file mode 100644 index 00000000..768ab85a Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000002_e67f990c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000003_aa68d140.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000003_aa68d140.szcp new file mode 100644 index 00000000..99de3db1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000003_aa68d140.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000004_d696957b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000004_d696957b.szcp new file mode 100644 index 00000000..8ec5cc22 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000004_d696957b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000005_d39aefc0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000005_d39aefc0.szcp new file mode 100644 index 00000000..72748d27 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000005_d39aefc0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000006_9935b234.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000006_9935b234.szcp new file mode 100644 index 00000000..8de8a173 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000006_9935b234.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000007_3d0eab83.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000007_3d0eab83.szcp new file mode 100644 index 00000000..443c088b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_054/checkpoints/checkpoint_00000000000000000007_3d0eab83.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000001_2f727142.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000001_2f727142.szar new file mode 100644 index 00000000..e268d188 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000001_2f727142.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000002_eda298df.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000002_eda298df.szar new file mode 100644 index 00000000..4502ed50 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000002_eda298df.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000003_0843f5ca.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000003_0843f5ca.szar new file mode 100644 index 00000000..b2da80a0 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000003_0843f5ca.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000004_ec2af167.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000004_ec2af167.szar new file mode 100644 index 00000000..46512f56 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000004_ec2af167.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000005_d539c62d.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000005_d539c62d.szar new file mode 100644 index 00000000..8cb1da3b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000005_d539c62d.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000006_8ace039e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000006_8ace039e.szar new file mode 100644 index 00000000..396a1635 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/archive/delta_00000000000000000006_8ace039e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000001_380c0d5c.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000001_380c0d5c.szcp new file mode 100644 index 00000000..8c7bb620 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000001_380c0d5c.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000002_2eaa6704.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000002_2eaa6704.szcp new file mode 100644 index 00000000..55b900c4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000002_2eaa6704.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000003_6243e1bf.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000003_6243e1bf.szcp new file mode 100644 index 00000000..291460fc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000003_6243e1bf.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000004_aedb33f0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000004_aedb33f0.szcp new file mode 100644 index 00000000..1dc4a931 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000004_aedb33f0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000005_39ca45a8.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000005_39ca45a8.szcp new file mode 100644 index 00000000..1c501822 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000005_39ca45a8.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000006_bcfd8633.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000006_bcfd8633.szcp new file mode 100644 index 00000000..30bd1465 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_055/checkpoints/checkpoint_00000000000000000006_bcfd8633.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000001_24857c71.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000001_24857c71.szar new file mode 100644 index 00000000..d8e1f16d Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000001_24857c71.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000002_e6e85d6f.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000002_e6e85d6f.szar new file mode 100644 index 00000000..d2d9c150 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000002_e6e85d6f.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000003_247901e8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000003_247901e8.szar new file mode 100644 index 00000000..3fb456a3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000003_247901e8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000004_20baf2ce.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000004_20baf2ce.szar new file mode 100644 index 00000000..64000594 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000004_20baf2ce.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000005_c51a20ce.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000005_c51a20ce.szar new file mode 100644 index 00000000..7bdce273 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000005_c51a20ce.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000006_369d8e86.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000006_369d8e86.szar new file mode 100644 index 00000000..afb49b82 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000006_369d8e86.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000007_6aa24fa7.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000007_6aa24fa7.szar new file mode 100644 index 00000000..fcdc841c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000007_6aa24fa7.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000008_bb611db3.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000008_bb611db3.szar new file mode 100644 index 00000000..9c4ef5cc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000008_bb611db3.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000009_b28614e9.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000009_b28614e9.szar new file mode 100644 index 00000000..a0ae6730 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000009_b28614e9.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000010_d2e698cf.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000010_d2e698cf.szar new file mode 100644 index 00000000..d148c0c8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000010_d2e698cf.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000011_2135c110.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000011_2135c110.szar new file mode 100644 index 00000000..3e8792be Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000011_2135c110.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000012_6bb15e4b.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000012_6bb15e4b.szar new file mode 100644 index 00000000..4deab765 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/archive/delta_00000000000000000012_6bb15e4b.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000001_d5972a7e.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000001_d5972a7e.szcp new file mode 100644 index 00000000..2eb19709 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000001_d5972a7e.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000002_76931c6b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000002_76931c6b.szcp new file mode 100644 index 00000000..a56b2464 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000002_76931c6b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000003_58877a82.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000003_58877a82.szcp new file mode 100644 index 00000000..6a269709 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000003_58877a82.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000004_65e03bc2.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000004_65e03bc2.szcp new file mode 100644 index 00000000..3d852065 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000004_65e03bc2.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000005_d1a160b3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000005_d1a160b3.szcp new file mode 100644 index 00000000..86652fcc Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000005_d1a160b3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000006_530e985b.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000006_530e985b.szcp new file mode 100644 index 00000000..3072da2f Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000006_530e985b.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000007_289ee5c3.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000007_289ee5c3.szcp new file mode 100644 index 00000000..f779ea67 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000007_289ee5c3.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000008_1c747e08.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000008_1c747e08.szcp new file mode 100644 index 00000000..fca1c948 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000008_1c747e08.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000009_e6719f33.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000009_e6719f33.szcp new file mode 100644 index 00000000..3458ac39 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000009_e6719f33.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000010_4b6b76b7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000010_4b6b76b7.szcp new file mode 100644 index 00000000..817b2c5c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000010_4b6b76b7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000011_6df79db6.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000011_6df79db6.szcp new file mode 100644 index 00000000..6a73e444 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000011_6df79db6.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000012_c6160eac.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000012_c6160eac.szcp new file mode 100644 index 00000000..dfda26cf Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_056/checkpoints/checkpoint_00000000000000000012_c6160eac.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000001_ca2cb8fb.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000001_ca2cb8fb.szar new file mode 100644 index 00000000..f5ef0053 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000001_ca2cb8fb.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000002_f939e8c0.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000002_f939e8c0.szar new file mode 100644 index 00000000..e8d91e73 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000002_f939e8c0.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000003_89b5778e.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000003_89b5778e.szar new file mode 100644 index 00000000..ad0801b5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000003_89b5778e.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000004_6c065cf8.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000004_6c065cf8.szar new file mode 100644 index 00000000..c9075a60 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000004_6c065cf8.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000005_d3ab1106.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000005_d3ab1106.szar new file mode 100644 index 00000000..5f815b08 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000005_d3ab1106.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000006_152d73ac.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000006_152d73ac.szar new file mode 100644 index 00000000..35466837 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000006_152d73ac.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000007_447374da.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000007_447374da.szar new file mode 100644 index 00000000..51a27178 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000007_447374da.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000008_d04d697c.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000008_d04d697c.szar new file mode 100644 index 00000000..7ffd58d3 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000008_d04d697c.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000009_390d8df2.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000009_390d8df2.szar new file mode 100644 index 00000000..567d7e58 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000009_390d8df2.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000010_677de412.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000010_677de412.szar new file mode 100644 index 00000000..89b36924 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/archive/delta_00000000000000000010_677de412.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000001_a510b676.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000001_a510b676.szcp new file mode 100644 index 00000000..b9be489b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000001_a510b676.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000002_56a0d079.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000002_56a0d079.szcp new file mode 100644 index 00000000..5feadda5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000002_56a0d079.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000003_b359b221.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000003_b359b221.szcp new file mode 100644 index 00000000..4c3e7b06 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000003_b359b221.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000004_581339d7.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000004_581339d7.szcp new file mode 100644 index 00000000..27f64b08 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000004_581339d7.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000005_549fbaff.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000005_549fbaff.szcp new file mode 100644 index 00000000..359efaa1 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000005_549fbaff.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000006_5cffd6c9.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000006_5cffd6c9.szcp new file mode 100644 index 00000000..4115d31b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000006_5cffd6c9.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000007_7cb02d0f.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000007_7cb02d0f.szcp new file mode 100644 index 00000000..e40c25f5 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000007_7cb02d0f.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000008_3ad8aa32.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000008_3ad8aa32.szcp new file mode 100644 index 00000000..d96cee2c Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000008_3ad8aa32.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000009_01ef1a91.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000009_01ef1a91.szcp new file mode 100644 index 00000000..f5e7f8e4 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000009_01ef1a91.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000010_eceb9c25.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000010_eceb9c25.szcp new file mode 100644 index 00000000..3fc1d180 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_057/checkpoints/checkpoint_00000000000000000010_eceb9c25.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000001_48ff0e29.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000001_48ff0e29.szar new file mode 100644 index 00000000..f4e6e4e6 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000001_48ff0e29.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000002_8f9df0df.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000002_8f9df0df.szar new file mode 100644 index 00000000..6e58eede Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000002_8f9df0df.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000003_156990ab.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000003_156990ab.szar new file mode 100644 index 00000000..e72c03f7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000003_156990ab.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000004_9b109654.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000004_9b109654.szar new file mode 100644 index 00000000..33095c6e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000004_9b109654.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000005_811a0cd4.szar b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000005_811a0cd4.szar new file mode 100644 index 00000000..fb0471b2 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/archive/delta_00000000000000000005_811a0cd4.szar differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000001_01f32665.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000001_01f32665.szcp new file mode 100644 index 00000000..362f565b Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000001_01f32665.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000002_44fb37e0.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000002_44fb37e0.szcp new file mode 100644 index 00000000..8712f0a8 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000002_44fb37e0.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000003_667acb24.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000003_667acb24.szcp new file mode 100644 index 00000000..930682f7 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000003_667acb24.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000004_dc4321df.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000004_dc4321df.szcp new file mode 100644 index 00000000..e6ae5d0e Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000004_dc4321df.szcp differ diff --git a/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000005_25cd038d.szcp b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000005_25cd038d.szcp new file mode 100644 index 00000000..5d463f72 Binary files /dev/null and b/results/search/runs/b84f957c-0e29-412c-ad04-f3530092f02e/topology_058/checkpoints/checkpoint_00000000000000000005_25cd038d.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/metrics.tsv b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/metrics.tsv new file mode 100644 index 00000000..9bcc77ac --- /dev/null +++ b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/metrics.tsv @@ -0,0 +1,30 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783874507509212800 DEPTH 27 1 0.62348542587702926 0 1 8 1 8 0 0 3269 75 2586 23803878 209280 1604.1656341552734 8.6174999999999997 3143.9272000000001 40320 22114 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2586 1920 128 384 1 7071336932 4656924 1 0 5 1 2 2 6 7618560 1474560 2949120 2704982 8985600 150 150 150 151 1985 20 5 5 13 32 0 0 0 0 0 +2 1783874510130646800 DEPTH 27 1 0.61380985317164116 0 1 8 1 8 0 0 3285 49 2581 23742690 147840 1363.3660430908203 9.0709 2620.1116999999999 40320 16394 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 7075828460 9148452 1 0 5 1 2 2 6 7372800 1474560 2949120 2950996 8985600 151 150 150 152 1978 8 0 3 8 30 0 0 0 0 0 +3 1783874512786743500 DEPTH 27 1 0.61417401289287477 0 1 8 1 8 0 0 3301 43 2586 23742733 147840 1358.1293792724609 8.8079000000000001 2654.3616999999999 47040 19698 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 7080325088 13645080 1 0 4 2 2 2 6 7127040 1720320 2949120 2951039 8985600 153 150 150 158 1975 4 2 3 4 30 0 0 0 0 0 +4 1783874515460473100 DEPTH 27 1 0.61449589168523411 0 1 8 1 8 0 0 3312 55 2569 23742589 147840 1358.0239105224609 8.8428999999999984 2672.1934999999999 80640 23742 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 7084804376 18124368 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 158 150 150 162 1949 8 5 5 0 37 0 0 0 0 0 +5 1783874515873088700 REFRESH 27 0 0.61472606416707642 0 1 8 1 8 0 0 3352 66 421 3988948 56640 238.87461853027344 1.4358 411.08440000000002 13440 8024 0 0 0.12643811408329531 0.9581597133715084 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 7085542020 18862012 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 38 27 26 35 295 4 0 1 5 56 0 0 0 0 0 +6 1783874518732079200 DEPTH 27 1 0.61483653692798534 0 1 8 1 8 0 0 3369 48 2575 23742669 147840 1379.4222259521484 8.8703000000000003 2778.2937000000002 80640 39949 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 7090027428 23347420 1 0 4 2 2 2 6 5898240 2949120 2949120 2950973 8985600 155 150 150 151 1969 3 0 5 2 38 0 0 0 0 0 +7 1783874521376856300 DEPTH 27 1 0.61481351150575647 0 1 8 1 8 0 0 3385 60 2569 23739140 144000 1376.3164978027344 8.6683000000000003 2643.2840000000001 87360 38347 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 7094506716 27826708 1 0 4 3 2 2 5 5898240 3194880 2949120 2951008 8736000 162 150 152 169 1936 4 0 2 0 54 0 0 0 0 0 +8 1783874524041677900 DEPTH 27 1 0.61465258708349124 0 1 8 1 8 0 0 3392 41 2589 23720677 125760 1375.8577270507812 8.7974999999999994 2663.5796 120960 39553 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 7099006404 32326396 1 0 4 3 2 2 5 5898240 4423680 2949120 2950928 7488000 163 150 156 970 1150 5 0 3 3 30 0 0 0 0 0 +9 1783874526754850800 DEPTH 27 1 0.61435552741369981 0 1 8 1 8 0 0 3409 57 2602 23705437 110400 1370.0986022949219 9.1858000000000004 2711.5857999999998 120960 28718 1 0 0.12643811408329531 0.9581597133715084 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 7103519352 36839344 1 0 4 3 3 2 4 5898240 4423680 3932160 2950978 6489600 160 150 162 1484 646 5 5 6 8 33 0 0 0 0 0 +10 1783874527201853500 REFRESH 27 0 0.61392805552847884 0 1 8 1 8 0 0 3421 39 422 3988025 55680 239.5361328125 1.4313 445.60320000000002 20160 12109 0 0 0.12643811408329531 0.9581597133715084 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 7104258016 37578008 1 0 4 3 3 2 4 983040 737280 737280 491699 998400 38 25 29 202 128 1 0 8 12 18 0 0 0 0 0 +11 1783874529993809500 DEPTH 27 1 0.6133783376548172 0 1 8 1 8 1 0 3443 62 2579 23698455 103680 1386.3003997802734 8.7187000000000001 2713.6794 120960 59926 1 0 0.077951754268360818 0.9122271965953902 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 7108747504 42067496 1 0 4 3 3 2 4 5898240 4423680 4423680 2950878 5990400 176 150 181 762 1310 5 0 10 5 42 0 0 0 0 1 +12 1783874532668695300 DEPTH 27 1 0.6146759344605468 0 1 8 1 8 0 0 3455 54 2586 23698650 103680 1379.3036346435547 9.2906999999999993 2673.4967999999999 120960 48526 1 0 0.077951754268360818 0.9122271965953902 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 7113244132 46564124 1 0 4 3 3 2 4 5898240 4423680 4423680 2951021 5990400 180 150 188 913 1155 2 0 6 2 44 0 0 0 0 0 +13 1783874535364407000 DEPTH 27 1 0.61371509079521802 0 1 8 1 8 0 0 3462 29 2602 23677776 81600 1378.6644592285156 8.7798999999999996 2693.9690000000001 120960 39284 1 0 0.077951754268360818 0.9122271965953902 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 7117757080 51077072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 186 150 184 1362 720 1 0 2 2 24 0 0 0 0 0 +14 1783874538147235500 DEPTH 27 1 0.61268182477791211 0 1 8 1 8 0 0 3473 48 2607 23677504 81600 1377.2953491210938 8.9403000000000006 2780.8382999999999 120960 26418 1 0 0.077951754268360818 0.9122271965953902 4096 2048 384 12 96 360 72 24 0 2607 1920 0 384 1 7122275128 55595120 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 183 150 182 1576 516 3 0 4 4 37 0 0 0 0 0 +15 1783874538596260900 REFRESH 27 0 0.61158444517324217 0 1 8 1 8 0 0 3479 23 425 3987620 55200 242.28659057617188 1.514 446.26990000000001 20160 12702 0 0 0.077951754268360818 0.9122271965953902 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 7123016852 56336844 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 69 25 42 202 87 4 0 3 10 6 0 0 0 0 0 +16 1783874541545405500 DEPTH 27 1 0.6104310836482012 0 1 8 1 8 1 0 3491 67 2595 23677595 81600 1397.3176879882812 8.7193000000000005 2862.9702000000002 120960 59617 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 7127522660 60842652 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 205 150 207 1169 864 10 0 5 3 49 0 0 0 0 1 +17 1783874544416927600 DEPTH 27 1 0.61076298609139368 0 1 8 1 8 0 0 3502 48 2603 23677466 81600 1378.9183807373047 9.0031999999999996 2869.6109999999999 120960 49217 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 7132036628 65356620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 209 150 216 1252 776 9 0 0 2 37 0 0 0 0 0 +18 1783874548776349800 DEPTH 27 1 0.6093672621451558 0 1 8 1 8 0 0 3507 62 2593 23677456 81600 1378.7607269287109 9.6308000000000007 4357.7330000000002 120960 38857 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 7136540476 2752320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426342 4492800 209 150 216 1338 680 18 0 9 2 33 0 0 0 0 0 +19 1783874551708375800 DEPTH 27 1 0.60795290370120947 0 1 8 1 8 0 0 3515 48 2600 23677858 81600 1390.9155883789062 8.8930000000000007 2858.1885000000002 120960 26737 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2600 1920 0 384 1 7141051384 7263228 1 0 4 3 3 3 3 5898240 4423680 4423680 4426385 4492800 223 150 214 1413 600 12 0 6 0 30 0 0 0 0 0 +20 1783874552176892300 REFRESH 27 0 0.6065247140747162 0 1 8 1 8 0 0 3523 27 428 3987665 55200 242.34495544433594 1.4313 466.65539999999999 20160 12690 0 0 0.076840501413221254 0.91278513697244379 4096 2048 64 1 16 60 12 4 0 428 320 0 64 0 7141796168 8008012 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 65 25 51 209 78 4 0 4 8 11 0 0 0 0 0 +21 1783874555021900300 DEPTH 27 1 0.60508711846772645 0 1 8 1 8 0 0 3531 64 2607 23677796 81600 1395.8297729492188 9.4359999999999999 2843.4259999999999 120960 59536 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2607 1920 0 384 1 7146314216 12526060 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 249 150 230 1132 846 10 0 6 10 38 0 0 0 0 0 +22 1783874557947852900 DEPTH 27 1 0.60364415621581657 0 1 8 1 8 0 0 3539 53 2603 23677584 81600 1384.5035247802734 8.8394000000000013 2924.4283999999998 120960 49314 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2603 1920 0 384 1 7150828184 17040028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426359 4492800 252 150 232 1289 680 6 0 3 10 34 0 0 0 0 0 +23 1783874560887130300 DEPTH 27 1 0.60219948454883032 0 1 8 1 8 0 0 3545 54 2611 23677606 81600 1382.9531097412109 21.0763 2936.3024 120960 39588 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 7155350312 21562156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 254 150 227 1354 626 11 0 5 2 36 0 0 0 0 0 +24 1783874563816972600 DEPTH 27 1 0.60075639025469663 0 1 8 1 8 0 0 3551 34 2604 23677660 81600 1377.7571868896484 9.0997000000000003 2856.9774000000002 120960 27157 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2604 1920 0 384 1 7159865300 26077144 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 254 150 223 1439 538 6 0 3 0 25 0 0 0 0 0 +25 1783874564267297700 REFRESH 27 0 0.59931780658738365 0 1 8 1 8 0 0 3558 19 426 3987672 55200 241.4202880859375 1.4531000000000001 448.5326 20160 12333 0 0 0.076840501413221254 0.91278513697244379 4096 2048 64 1 16 60 12 4 0 426 320 0 64 0 7160608044 26819888 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 57 25 67 203 74 2 0 5 5 7 0 0 0 0 0 +26 1783874567166331700 DEPTH 27 1 0.59788633346560749 0 1 8 1 8 0 0 3567 44 2594 23677971 81600 1392.4771881103516 8.8332999999999995 2897.1925999999999 120960 59348 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2594 1920 0 384 1 7165112832 31324676 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 259 150 256 1209 720 3 1 0 8 32 0 0 0 0 0 +27 1783874570005664900 DEPTH 27 1 0.59646425953392046 0 1 8 1 8 0 0 3575 52 2592 23677881 81600 1385.4566955566406 9.7866999999999997 2837.4973 120960 48853 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 7169615580 35827424 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 259 150 233 1344 606 5 0 5 1 41 0 0 0 0 0 +28 1783874572807448400 DEPTH 27 1 0.59505358504965633 0 1 8 1 8 0 0 3581 40 2606 23677851 81600 1383.9924774169922 9.0968999999999998 2798.5210000000002 120960 38794 1 0 0.076840501413221254 0.91278513697244379 4096 2048 384 12 96 360 72 24 0 2606 1920 0 384 1 7174132608 40344452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 251 150 222 1461 522 9 0 2 0 29 0 0 0 0 0 +29 1783874573742893200 DEPTH 27 1 0.59365604485222701 0 1 8 1 8 0 0 3581 13 870 7900915 35520 465.4571533203125 2.8832000000000004 934.00409999999999 40320 9038 0 0 0.076840501413221254 0.91278513697244379 4096 2048 128 4 32 120 24 8 0 870 640 0 128 0 7175636456 41848300 1 0 4 3 3 3 3 1966080 1474560 1474560 1475482 1497600 88 50 79 493 160 2 0 1 0 10 0 0 0 0 0 diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/run.tsv b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/run.tsv new file mode 100644 index 00000000..2bc06a5a --- /dev/null +++ b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/run.tsv @@ -0,0 +1,58 @@ +format szilassi-global-search-v5 +run_id deec36d0-a05a-4095-ba41-7aef2b115fa8 +node_id LOOKICH +seed 30000157 +topology_from 27 +topology_to 27 +backend cuda-fp32 +objective_version 5 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 1 +algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1 +control_baseline_min_fraction 0.25 +strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded +accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries +map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4 +repair injected-quarter,offending-face-biased,neural-policy-with-exploration +neural_enabled 1 +neural_schema 2 +neural_model_format 2 +neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25% +neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative +transformer_enabled 1 +transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83 +transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker +transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64 +transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp +training_archive_schema 3 +training_archive_format 3 +training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal +training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay +training_cache_limit_bytes 200000000000 +training_cache_accounted_bytes_at_start 7066679952 +training_neural_model_reserve_bytes 265316868 +training_collection_enabled_at_start 1 +training_recovered_wals 0 +training_wals_deferred_at_limit 0 +training_recovered_records 0 +training_recovered_torn_bytes_discarded 0 +training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning +spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000001_37204a2c.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000001_37204a2c.szar new file mode 100644 index 00000000..39694ca3 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000001_37204a2c.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000002_ff9521a1.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000002_ff9521a1.szar new file mode 100644 index 00000000..1718bb5a Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000002_ff9521a1.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000003_c9a404d9.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000003_c9a404d9.szar new file mode 100644 index 00000000..9a8dc763 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000003_c9a404d9.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000004_14b5e772.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000004_14b5e772.szar new file mode 100644 index 00000000..ce2709d9 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000004_14b5e772.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000005_88c80977.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000005_88c80977.szar new file mode 100644 index 00000000..afb24b41 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000005_88c80977.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000006_9fa20422.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000006_9fa20422.szar new file mode 100644 index 00000000..151737b5 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000006_9fa20422.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000007_f0a29e8c.szar b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000007_f0a29e8c.szar new file mode 100644 index 00000000..784077bf Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/archive/delta_00000000000000000007_f0a29e8c.szar differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000001_d822cd74.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000001_d822cd74.szcp new file mode 100644 index 00000000..eeb3df76 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000001_d822cd74.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000002_eecabece.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000002_eecabece.szcp new file mode 100644 index 00000000..92a96f4e Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000002_eecabece.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000003_b6f2d106.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000003_b6f2d106.szcp new file mode 100644 index 00000000..4c69b2fb Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000003_b6f2d106.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000004_baca3649.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000004_baca3649.szcp new file mode 100644 index 00000000..3b65ebf4 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000004_baca3649.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000005_ea90f699.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000005_ea90f699.szcp new file mode 100644 index 00000000..5a0689ce Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000005_ea90f699.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000006_dd601d97.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000006_dd601d97.szcp new file mode 100644 index 00000000..62e5a74a Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000006_dd601d97.szcp differ diff --git a/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000007_45b0b473.szcp b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000007_45b0b473.szcp new file mode 100644 index 00000000..cf744157 Binary files /dev/null and b/results/search/runs/deec36d0-a05a-4095-ba41-7aef2b115fa8/topology_027/checkpoints/checkpoint_00000000000000000007_45b0b473.szcp differ diff --git a/results/search/topology_0/resume.obj b/results/search/topology_0/resume.obj index edaac498..fe8860ec 100644 --- a/results/search/topology_0/resume.obj +++ b/results/search/topology_0/resume.obj @@ -1,47 +1,47 @@ -v 1.1233130290210682 0.17374830409253056 -0.96455662013513788 -v 1.0353762775461499 0.17567824069564258 -0.79628192418506394 -v -0.64904946714824607 -1.3313831072500779 0.35202354322104379 -v 270.21217233131847 -2532.0228916208112 -3910.923469408523 -v 0.12647302923176132 -0.8313450579456203 -0.43714211601983144 -v 1.6471390380904565 1.8919216937199599 0.35752612288344493 -v 1.821267132917513 1.462583070692502 -0.54752744636127293 -v -0.65593076030832598 -0.51835955949046597 1.4575952186093173 -v 1.1493738641984095 -1.1808016332605835 -2.8340112284975492 -v 1.0099006997781448 -1.161701421894439 -2.5455622933559585 -v 1.4604890949704594 -1.0097005051518544 -3.1902420090815529 -v -2.1605477715198171 3.0204016093054062 0.13818353671633843 -v -0.007432784510320996 -1.4656768001699085 4.3070051769667401 -v 1.4573471116061816 -0.31658696935321501 -0.70180498168717598 -v 1.4012117898029808 -0.44480447654520866 -0.35265298653913901 -v 0.95317179965497723 -1.0902683460820526 1.7284029164917882 -v 1.6481725288404676 -0.47696982366454993 -0.77529020196397846 -v -1.5021306851834306 2.1713625135457564 0.43674386533204268 -v -0.79616983309499978 2.3060009687777563 -1.1945287064075454 -v 0.88434766741504978 -1.0641309871797522 1.8141160492868975 -v -0.28769469280294396 -1.704612720337896 1.9081236925020755 -v 0.67994439814482766 -4.9612511705410114 0.98323155031030618 -v -1.3487457548902433 7.1914111669766552 14.934531112542157 -v -0.36553993947966129 -1.8885503987376693 0.97659411320329526 -v -1.6232589176971677 -0.26053660264825806 -3.6974327375531981 -v -1.3061599892974354 -0.34104229400329461 -1.7746935876607037 -v -5.6327547399354039 12.750555281834748 -0.95477928903813603 -v 1.1545106934594731 -0.9468397822903537 0.98677878662746021 -v 1.4647072855554168 -0.51752877972632938 -0.05655724828942077 -v 0.08450080973681233 -1.5585322898938845 1.8273736245246834 -v 0.37720189588014758 -0.32243364681783798 -1.7942519857919121 -v 0.23317787326765599 -0.51173944263262627 -1.3416391783211057 -v -0.42051062289116969 -0.65469585823539855 -1.5603372334031422 -v 1.3786650818967288 0.67620293126027842 0.85833321821527431 -v 2.7209723377116903 -1.8524510898228632 -5.7463752656705909 -v 1.6599695981140126 -0.75108630070389604 -0.95335114417804456 -v -2.1444591303878693 6.1351745557360235 -1.1042702628669745 -v 0.89449863818210573 -1.0717262409490271 1.5843216051185154 -v 25.423101520225636 -11.794484071781632 4.3736836807371509 -v -1.9496087619850746 5.7872348410536603 -0.97738165744628458 -v 1.6386840055163094 -1.4295953812811006 -3.7113871046628084 -v 1.8180438623756583 -0.64936973067095716 -0.88962005325403226 -v 1.5254414290607941 -0.87027084742889227 -1.5476294879357904 -v 1.7735543349534519 -1.4529380212920087 -2.2608428519335764 +v 0.97103079189109343 0.14450663252784124 -0.83604783791234027 +v 0.88599159810904515 0.14877221809866259 -0.67630038495561462 +v -1.3347476775623497 -1.5918101277850776 0.80122413067732334 +v 173.80802464247509 -2256.9233646484472 -3596.3802717066646 +v 0.13023566488842969 -0.69923847780636317 -0.54539643548663519 +v 1.3404174496745953 1.5465884997475992 0.53669269036111733 +v 1.5492656584287805 1.0851757760742422 -0.51163427003087791 +v -0.71536050370781745 -0.42069646078490691 1.3865755356219067 +v 1.1369440595811442 -0.98261606810656532 -2.775298319284988 +v 0.88220119681906517 -0.9310597877317075 -2.2403469462099848 +v 1.2669384930211143 -0.91309677812153756 -2.9088756030865368 +v -3.9281944032876956 5.1045660245155799 -0.75897337064622028 +v -0.60060055073745966 -1.4677786654828857 5.3900359433681961 +v 1.2974827014871748 -0.26892148075531364 -0.68065793875147018 +v 1.2280208389459883 -0.42195232117996778 -0.24718327681531416 +v 0.82272151080043943 -0.96164330639359885 1.5982935078675697 +v 1.4504927405339858 -0.39849608714320406 -0.73211053780262658 +v -1.1083811999691986 1.5174635780505654 0.6142395839252851 +v -0.4270081216686889 1.652638007862592 -0.9935707187645364 +v 0.71374182810183229 -0.9247779939083044 1.7422300907841677 +v -1.0479257461365417 -1.8465326418170158 1.9714566236108997 +v 0.23017233272960619 -5.4406589070263429 2.1365829190665395 +v -2.0320656159871135 8.4071371034961704 17.216628144030864 +v -0.95104122764796994 -1.8836938917735309 2.4671176803747827 +v -2.8477188974218741 0.37695292339933312 -4.0880664124107415 +v -2.3998634902935745 0.19903309202711728 -1.8094455513819279 +v -7.8884663898015646 16.516718339553435 -0.70488295879757012 +v 1.0387901789371872 -0.79432034649538696 0.78505190681136661 +v 1.2723044536636412 -0.4710455005502962 -0.033902271984846744 +v -0.41004224745683543 -1.5983516363841339 1.8540717269730005 +v 0.42176300208362699 -0.27447021227411039 -1.6385230124623296 +v 0.25965658473661951 -0.47606105520716963 -1.1462165902086086 +v -0.18726580146903921 -0.58108479007532621 -1.2938750795186591 +v 1.175551897750498 0.73448535268518456 0.86915963800942664 +v 2.5046081828885587 -1.4856862219244023 -5.5007225528389583 +v 1.4477002372110142 -0.65882367541002873 -0.8302536533123841 +v -1.4387603598192513 4.5013716363530891 -0.58219496947297167 +v 0.72933809683474349 -0.92850049835344606 1.55288709806228 +v 109.31384067782167 -56.973060551484267 21.274419737326639 +v -1.7813807451422556 5.1038543105550991 -0.81635590940892211 +v 1.346158952955814 -1.1012241451195541 -3.1652227851341586 +v 1.6427799006515751 -0.53516191947892899 -0.75290501439392954 +v 1.3158185678469032 -0.78748874407821423 -1.5300091509000797 +v 1.4767014978282813 -1.1579121950438205 -1.9766400937710504 f 1 2 11 9 10 4 3 5 8 6 7 f 1 2 15 14 17 16 20 13 12 18 19 f 3 4 25 26 27 23 22 24 13 12 21 diff --git a/results/search/topology_0/resume.planes b/results/search/topology_0/resume.planes index 7bbce8fb..eaa5b6d5 100644 --- a/results/search/topology_0/resume.planes +++ b/results/search/topology_0/resume.planes @@ -1,37 +1,37 @@ 36 -0.27223876118659973 --0.19418163597583771 -0.14449320733547211 -0.36597427725791931 -0.34964963793754578 -0.18724019825458527 --1.0144158601760864 --0.34482410550117493 -0.15285998582839966 -0.27183669805526733 --0.83869951963424683 --0.26428696513175964 -1.4053879976272583 --0.16644756495952606 -0.34934937953948975 -0.063059553503990173 -0.41529691219329834 -1.0419462919235229 --0.42128998041152954 --0.14376309514045715 --0.19418598711490631 -0.76833295822143555 --1.2410058975219727 -0.074958644807338715 --0.24714602530002594 --0.68973606824874878 -0.011879958212375641 -0.34755581617355347 -0.57238167524337769 --0.34670540690422058 -0.35640105605125427 -0.19237910211086273 --1.191035270690918 -0.92884266376495361 -0.49155232310295105 --0.078452751040458679 +0.20018909871578217 +-0.1612953394651413 +0.11087462306022644 +0.31107202172279358 +0.30481007695198059 +0.15745553374290466 +-1.7606172561645508 +-0.61238706111907959 +0.29822695255279541 +0.25189825892448425 +-0.75429654121398926 +-0.22592626512050629 +1.226192831993103 +-0.1261858344078064 +0.29982241988182068 +0.027637146413326263 +0.41557610034942627 +1.0288152694702148 +-0.30527377128601074 +-0.088662043213844299 +-0.13682594895362854 +0.65328222513198853 +-1.0774778127670288 +0.074994489550590515 +-0.20554429292678833 +-0.58654028177261353 +-0.0053993295878171921 +0.35548561811447144 +0.55009931325912476 +-0.32818621397018433 +0.29946169257164001 +0.17027951776981354 +-1.0275028944015503 +0.79015547037124634 +0.42346686124801636 +-0.066586360335350037 diff --git a/results/search/topology_1/resume.obj b/results/search/topology_1/resume.obj index b9ab6f89..596b4038 100644 --- a/results/search/topology_1/resume.obj +++ b/results/search/topology_1/resume.obj @@ -1,47 +1,47 @@ -v 47.74855428515621 -41.348180035614867 65.262458771266395 -v -0.7342707503565602 -2.0236021156845911 0.059848897180506011 -v 1.5764210693756802 -1.2839937617151951 0.4967788954186142 -v 1.7858244100870275 -1.2265034235254131 0.54611801302759755 -v 0.5932740249620615 -0.44382036567663613 -0.86908471249340347 -v 25.35076869202684 -17.990459205714412 29.836952970852519 -v -1.6321301749166413 0.92820817968933378 -3.4195266932290407 -v 0.41164045812954342 -0.78080585301244032 -0.61852135799947294 -v -0.094482253263635768 -0.79583354297281805 -0.86439122173611171 -v -9.9384689621081943 1.7216090705112441 -8.5173064662676783 -v -2.4110757237417357 1.2047757836040598 -4.1041409372726143 -v -0.22156797697894534 -2.9148567201559006 -0.7038483431500594 -v -1.695349265054034 -0.57017820097448813 0.82729233813425085 -v 72.484763867873809 -61.180708694625714 99.235602233789294 -v -4.927285394131304 -0.050690552760724754 -9.9444777156322051 -v -3.7270748169773742 -0.0086102671598578869 -5.2259340007275661 -v -2.3662752138696832 0.66005230009427907 2.0220915515026849 -v -2.2430547702550565 0.62553349970888039 2.3878003013215903 -v -1.4832941279337952 -0.71248272071569929 1.2032462630974587 -v -1.4135226234299241 -0.81451740171241349 1.1581688136174515 -v 2.0032308399746026 0.64539684051287349 1.8354931515086086 -v -1.7596148531939158 0.80622167122300015 1.764596662521809 -v -1.5478273603005042 0.27992000387401661 1.4151886055207836 -v -2.20566027989172 0.68924933323306781 1.6632490580754151 -v -0.05277225023024322 -0.65135721706168281 0.8507420935209965 -v -1.5373992394765035 -0.1396141636574014 1.1290530626115487 -v -2.2753304108130132 0.69062001095851044 1.6608384198301032 -v -0.35946147587450927 0.43108850703407409 -2.172958467297943 -v 0.60792413754940766 -0.51454285598142679 -0.86765174921093224 -v 40.669753849129961 -34.484115252674627 54.875890337746945 -v -97.497621720922524 16.526467632684462 -158.87743642872522 -v 0.22296465845065166 0.10006389595302496 -1.3096169546813905 -v 0.15326532848178784 0.90125509824686079 -1.1653664273253661 -v 0.84994337536671782 3.216078569990747 -2.1262260537874216 -v 0.78848544769556383 -1.049557605570854 -0.48077005527716976 -v -1.7603724399254073 1.0563332713555416 -3.7658890592375238 -v 0.4417871014239847 0.93562352612536703 -1.6063624272404748 -v 0.73927058602807016 0.90424647171685202 -1.3086164437641008 -v -1.413360845862689 -0.0061241337210496656 3.0173880350475288 -v -2.968525107249294 0.44494246557311568 2.3871031476754916 -v -7.4777084829995868 -2.6520583947000311 7.4427540050166208 -v -79.60110890027498 1.7670453501184409 3.995360114714182 -v -1.0153543749341565 0.025470342267255263 0.58651011713084267 -v -0.86519584785980697 -0.43292932339998536 0.33480576599486978 +v 75.945217210069472 -65.796394388985902 101.4311550014209 +v -0.64482985942561488 -2.0552593709474829 -0.10200786593116473 +v 1.6747214178519414 -1.3388238148061176 0.34912436343902786 +v 2.0768289532241972 -1.2300930187255954 0.44266359424368762 +v 0.74241404116117438 -0.53520380495155384 -0.91428539196435277 +v 40.790322957626515 -32.096073710864992 50.42291393944793 +v -1.1948951581526421 0.59833084093225697 -3.0079164918660437 +v 0.54780717300431581 -0.87055304801215272 -0.67928771242432329 +v -0.4533752760845412 -0.63926024171463869 -1.4098329032811641 +v -8.9085461689313412 1.6112498242975706 -7.8740362658882947 +v -2.5793985295505442 1.0481888377922075 -4.1470437474650526 +v -0.091203675255612987 -2.9935739898423446 -0.8720071781247406 +v -1.7194671794490946 -0.41302011018537677 0.82857796909983361 +v 128.44933126539567 -108.95205821892246 172.73562313712546 +v -4.8797876512739249 0.10129402679980928 -10.024005745599103 +v -3.7855032311329331 0.10141420820947611 -5.7050235801181728 +v -2.2650658025489561 0.52493231419019992 1.6291175225083843 +v -1.839363937431949 0.39631848331080188 2.9041301148252434 +v -1.548723985139048 -0.52154764502829754 1.160648472425915 +v -1.0784818771229421 -1.2081736598841639 0.85417741769709976 +v 2.0336186160987846 0.39439767700112616 1.5588514814608994 +v -1.5635131749557842 0.57011398460337392 1.5125564813307619 +v -1.4679393805347063 0.31016489487984861 1.3380675844464909 +v -1.7926687284671918 0.5217667143592718 1.4686227856373797 +v -0.13480317126068583 -0.55940229382963569 0.80149594639044097 +v -1.5348091457727802 -0.074734497184102203 1.0700180403269584 +v -2.0850511048952489 0.53304249134796522 1.4627901323490069 +v -0.75374067781453347 0.55658309893953251 -3.0118572584603553 +v 0.81037321836148912 -0.86514755934472864 -0.91829366514707 +v 55.502061937953734 -47.268042501557417 73.458702901389216 +v -85.132138861568109 15.914748112028528 -137.67516827750043 +v -0.30775865016210224 0.33041287900040012 -2.3514434984942865 +v -0.39131299661603786 0.80597617424031864 -2.3217590426016357 +v -0.33728406977342884 4.0787453177565123 -4.1124628374535961 +v 0.76904225445873753 -1.0001908938734465 -0.90024481086377128 +v -1.3982196575754167 0.82008766356581886 -3.7374917673936681 +v -0.28240695860172454 0.83378475692224496 -2.6809121637741766 +v 1.0172448430903298 0.67017918742831217 -1.3739292213224381 +v -1.0592170439355042 -0.10777252853549238 2.551646691790868 +v -2.5739628591422523 0.34109358066647993 1.9395888861356305 +v -4.9259376102380772 -1.0678603169203138 4.3180715813567616 +v -21.03577070044938 1.203708534825946 1.763990627795087 +v -1.2835789810568023 0.24252464429242959 0.78683997325661015 +v -1.0207087125468293 -0.31483751319813685 0.22893199605179793 f 1 2 9 10 11 7 8 5 3 4 6 f 1 2 20 19 13 12 16 15 14 18 17 f 3 4 12 13 25 26 27 24 23 22 21 diff --git a/results/search/topology_1/resume.planes b/results/search/topology_1/resume.planes index 48c0375e..f399e36d 100644 --- a/results/search/topology_1/resume.planes +++ b/results/search/topology_1/resume.planes @@ -1,37 +1,37 @@ 36 -0.36386469006538391 --0.72031134366989136 --0.70498907566070557 --1.3866578340530396 --1.1083886623382568 -0.36259549856185913 --0.042456801980733871 --0.60379117727279663 -0.8837360143661499 -0.73545563220977783 -0.14341031014919281 --0.44116520881652832 -0.76377207040786743 --0.318306565284729 --0.7966424822807312 -0.040928896516561508 -1.333935022354126 -0.85364949703216553 --0.265848308801651 --0.39773368835449219 --0.048696618527173996 --0.2192346453666687 --0.6696007251739502 -0.061736151576042175 --0.01389919500797987 --0.31321915984153748 --0.11071863770484924 --0.44449356198310852 -0.013500926084816456 --0.28975787758827209 --0.19114033877849579 --0.043589845299720764 --0.19718225300312042 -0.013178935274481773 -0.79384273290634155 -0.070489384233951569 +0.40723183751106262 +-0.80629414319992065 +-0.81336981058120728 +-1.3280829191207886 +-1.0597536563873291 +0.33652091026306152 +-0.037575077265501022 +-0.55628699064254761 +0.80816090106964111 +0.83716154098510742 +0.17855693399906158 +-0.50419110059738159 +0.93862247467041016 +-0.4190278947353363 +-0.98581063747406006 +0.042492274194955826 +1.0438543558120728 +0.66037201881408691 +-0.26232963800430298 +-0.37698626518249512 +-0.041477877646684647 +-0.198491171002388 +-0.60123151540756226 +0.050307698547840118 +-0.031343530863523483 +-0.32277527451515198 +-0.089373521506786346 +-0.88777190446853638 +-0.13850486278533936 +-0.27992334961891174 +-0.16376243531703949 +-0.03153625875711441 +-0.18061861395835876 +0.02136337012052536 +0.58055812120437622 +0.051429592072963715 diff --git a/results/search/topology_10/resume.obj b/results/search/topology_10/resume.obj index 628c5543..f58ac300 100644 --- a/results/search/topology_10/resume.obj +++ b/results/search/topology_10/resume.obj @@ -1,47 +1,47 @@ -v 2.5037543011843453 -1.2949379470635138 -0.71539666449446759 -v 9.5831635557216188 -2.2888475276620537 -12.615346441555076 -v -0.08185645750741119 -0.62116509028747158 4.5112723127736807 -v -1.0099450802122858 -4.2789341624921233 -4.6608748199884023 -v 0.45680399556227824 2.4994640845774225 12.661317691543324 -v -2.3472237449558304 -6.3739604593280923 -8.8804666729670423 -v 0.23709229455574196 -0.94391746604988358 3.1876001220021832 -v 0.75705040669373269 -3.2777506596344992 -4.091709770622602 -v -0.12354761420159488 -3.1816493167517894 -2.6894873293354622 -v 6.8833044925478291 -1.5894556328361105 -7.1694953093993341 -v 1.9876616994742147 -2.5129320517160427 -3.5039346243566953 -v -0.82985856790549262 0.16944699687132875 3.1208585269631683 -v -1.6150109603229501 1.4440488982834114 2.3753443538734649 -v -0.086874280310368882 -0.65501555003809464 3.1493230042461939 -v 0.91705030023093181 -0.26009379580433112 0.51131083582408321 -v 0.6061782082503171 -1.2817211623793821 2.9233830919992392 -v 0.79816539055890334 -0.081383128319695658 0.42376555593828935 -v 1.1642327413768261 0.14052434890080953 -0.6763323868061103 -v 0.46091150042700757 0.66207755750817765 -0.24406088163820738 -v 22748.468910396936 -8305.2796944803376 -29170.100094187368 -v -1.5069604289412586 -5.1793470519812743 -7.8736203827077542 -v -1.3989798438057932 -4.7889593066630045 -6.8629497675337863 -v -0.82382619646705468 -0.0033853867261936623 2.8648437025529025 -v -5.6049126101001425 9.8792449522469816 1.7303344340029425 -v -1.747742415673579 1.3909080172634884 1.8180815081525123 -v -1.6376470370775265 -3.0955249781665128 -4.9929455681002652 -v -2.3455778322512879 3.4302037117555715 2.9662414708682627 -v 0.46260088536342714 -1.2750795019304841 -1.405695579795786 -v 1.7060077222239109 0.43036738985239026 -0.14764910147419963 -v 1.5382866530416159 0.23585178598847753 -0.18515720787007028 -v 0.90061465860419188 -0.91509724697009087 -1.8584054056750419 -v 1.0577232393895322 -0.010272547445324519 0.86524645379839915 -v -4.4558560395325859 3.5371064291325105 13.148066090972204 -v -1.8288439908893781 0.73352003577736857 -2.9136308382929283 -v 0.60403311366286805 -1.435148237873602 -2.5947341500090655 -v 0.19252932257751912 -1.0226845159313487 -1.0271668954798647 -v -0.45658819347714225 -0.4614558007575747 -1.7301458302570905 -v 1.1327008560513623 -1.6423113505736968 -2.2906261055694643 -v 1.3931262329525647 -1.5931936666513655 -2.594344998642458 -v 1.7142425791469591 0.21996463069730793 -0.46059639830786758 -v -1.3735913167279981 0.69929134253169023 -2.5235715748915757 -v -0.27030831133450051 2.7011840432232312 0.27541204189380386 -v -0.019707988835682446 0.73417935633600306 -0.40312701542571316 -v 1.4237368602044274 0.4729569250910014 -0.23935724635501621 +v 1.9052410551151036 -2.0730840422392269 0.75602741777498117 +v 6.4276373851344202 -2.1988599789370946 -5.1599007078277666 +v -0.73562298384353064 -1.8152348429837484 6.8460830228284593 +v 0.35756324218565361 -2.5327518653983878 -4.4040407694970627 +v -0.68483211469472571 -0.251307890065255 29.151146224797952 +v -0.77264367493413399 -2.6815671022791037 -5.5016428948871177 +v 0.4837110510734372 -1.9711962375973977 3.5067168858379376 +v 0.74039728677289363 -2.3789985055459812 -2.5552615534287946 +v 0.60741336156944503 -2.3851775949082801 -2.5224686822137627 +v 11.494176700360915 -2.0876288377918346 -8.1841024958549369 +v 2.9672383388732246 -2.2685577581248424 -3.0047602750258529 +v -1.2414013738475524 0.30126627318388932 2.2898101363169503 +v -1.524754139083742 1.1199760629696482 1.7448263627859193 +v -0.062366597073955754 -1.1496973703512439 2.3489737481623525 +v 0.48105202165342209 -0.47631731288034485 0.86060779695132184 +v 7.5739516832479792 -7.0364490447670391 -1.2324762788914558 +v 0.41448859106521713 -0.32410769104078629 0.77788619410568549 +v 0.46562945404898826 0.41860777963415685 -0.12934915210984743 +v -0.053018649603479712 0.77651504571981045 0.1612289067434366 +v 41218.431251812603 -19649.161003916943 -33023.771213428961 +v -0.072157133859945918 -1.5673556652195602 -3.7196113123606152 +v -0.08845726947650065 -1.5733054454869653 -3.4607982786097473 +v -1.0542894756686445 -0.059115745415136402 1.6637160121354571 +v -13.525656833218626 31.98859133444904 -0.51625544946094593 +v -1.4794055200737684 1.1374739120785395 1.0196135416964109 +v 0.28156744855964932 -2.3330034784172549 -4.4417304576960754 +v -3.2049291721261191 5.0601990909365187 3.5150983494646635 +v 0.41552794994922027 -0.6817545351687474 -0.8274010077618934 +v 1.0595566664051321 0.40271859289226997 1.713828490994928 +v 1.0230836746918428 0.3456905084255516 1.6358734973892877 +v 0.57062340815087986 -0.46257157141314464 -0.8464244240275417 +v 0.61838005879899249 -0.18120425360226319 2.3624683287998298 +v -4.1968193610028734 1.709234707217463 5.4468134880721344 +v -0.9582958993069115 1.1567304586413016 -2.9343687844531838 +v 0.30000276548602339 -0.39721557011969488 -1.4632561930840082 +v 0.26905292448855833 -0.58532796176147073 -0.70049762659393489 +v 0.040477280312985378 -0.20818023925404638 -1.3026032939225174 +v 0.85500440474241679 -1.6545701597351992 -1.4535487060491805 +v 2.8633888672436565 -2.1688267466520159 -2.9035260045852045 +v 2.9476374099694698 -0.33015804839030138 -0.041231093119149076 +v -0.46792882406601138 0.97683924423190438 -1.8853523286364275 +v -2.6543642233097948 8.5337067173165924 0.9858464334148449 +v -0.097783866940990366 0.79457394732808528 0.026038112660062895 +v 2.3828973808545899 0.092408391984979299 0.32556214472105849 f 1 2 11 6 5 10 7 3 4 9 8 f 1 2 20 16 14 15 17 12 13 19 18 f 3 4 26 22 21 24 27 25 13 12 23 diff --git a/results/search/topology_10/resume.planes b/results/search/topology_10/resume.planes index d1625485..633b6150 100644 --- a/results/search/topology_10/resume.planes +++ b/results/search/topology_10/resume.planes @@ -1,37 +1,37 @@ 36 -0.74130016565322876 --1.6367506980895996 -0.57771247625350952 -0.44622504711151123 -0.41010898351669312 -0.23121093213558197 --1.2713391780853271 --0.57401084899902344 -0.3575514554977417 -0.67765891551971436 --0.61625051498413086 -0.16563521325588226 --0.40802896022796631 --0.45585203170776367 -0.012833236716687679 -0.47392714023590088 --0.47227591276168823 -0.32999446988105774 -0.65565305948257446 -0.63114947080612183 --0.70985209941864014 -0.14659751951694489 -0.743705153465271 --0.10583739727735519 -0.32310113310813904 -0.11296921968460083 --0.20815564692020416 --0.28033891320228577 -0.048717789351940155 --0.23249940574169159 -0.8993186354637146 -0.55844002962112427 -0.54229182004928589 -0.10722392052412033 -0.53419280052185059 --0.47006824612617493 +0.14193011820316315 +-2.2274348735809326 +0.15585415065288544 +0.31832852959632874 +0.26835957169532776 +0.23763889074325562 +-0.82529956102371216 +-0.32520958781242371 +-0.059453807771205902 +0.57204395532608032 +-0.4024585485458374 +0.026775522157549858 +-0.25755250453948975 +-0.28498098254203796 +-0.080732837319374084 +0.12704737484455109 +-0.62463724613189697 +0.397512286901474 +0.51994705200195312 +0.22793211042881012 +-0.20396432280540466 +0.19801606237888336 +0.71218299865722656 +0.029565701261162758 +0.15354280173778534 +0.053773690015077591 +-0.024606179445981979 +-0.13247743248939514 +0.07549208402633667 +-0.21027082204818726 +1.2719168663024902 +0.66582220792770386 +1.1912658214569092 +0.13883641362190247 +0.42742177844047546 +-0.27865186333656311 diff --git a/results/search/topology_11/resume.obj b/results/search/topology_11/resume.obj index 1593d073..e7898094 100644 --- a/results/search/topology_11/resume.obj +++ b/results/search/topology_11/resume.obj @@ -1,47 +1,47 @@ -v -0.1449774683526453 -0.71020446073590782 -0.6344680927064843 -v -1.226011626878714 -0.52292716125992489 0.70743528133441924 -v -0.24767503686653655 -0.87542415788515671 -0.97600557028733492 -v 0.44876429163506243 0.39209998706857674 1.7170858196741527 -v -1.1821733313492169 0.56515646097705585 3.4610044912059843 -v 7.8071705941926233 15.029321699126525 33.36196879550419 -v 5.4573130696082153 0.26665870582332069 -2.597910939404243 -v 0.097199981502804941 0.20441468713838859 1.5164053416597152 -v 0.0069756503815940445 0.35515327206688424 1.9746552652322247 -v -0.89396952852633804 0.89290947120501196 4.0711681367721484 -v 3.6143646048737943 0.13975029876233921 -1.4536926611162551 -v -0.3670916849716464 1.9297445847660644 0.49192081204794202 -v -1.410706092670589 -0.98662226257909813 0.77460915282884923 -v -4.7202666200663774 3.8342288089538505 6.2717402019980089 -v 1.3247720303902581 2.1007855788444685 -1.4564420553511972 -v 12.575472942940172 32.017347316230037 -5.002108486788468 -v 1.3881012656060099 2.4195523097439207 -1.4272299745791484 -v -0.30988125602473354 1.2631685822798637 0.2061766219313208 -v 0.019849521596074046 1.5814067623171828 -0.08038090230250039 -v -2.9242859932850633 2.5101579697176994 3.7111351615659798 -v 0.28847794554258721 0.85723826171467177 1.3484796763277658 -v -0.16003228458230168 1.4420132043753753 0.66975646307523518 -v 0.23238520368876164 -2.8464619731586049 -1.0865458745952703 -v 0.91234858759060233 -1.7526874323252337 1.174689960742026 -v 0.26279427725760379 0.099463633151401651 0.81724936522119662 -v 0.22903864284792069 1.9057550000236354 1.8627490998891052 -v 0.10664887769343925 0.23316769750479177 0.53747361267266625 -v 0.10833040963359508 2.4805633628712687 1.9398278961568671 -v -2.6837665353865141 -1.0845678219307318 -0.28692962358172885 -v -1.567961006592923 1.5994706044239448 -0.63502561137468572 -v 0.61093038411367884 1.9749199221018614 1.0795791877762708 -v -0.58753305039020742 0.99908851888237471 0.51505380501543341 -v -0.57726262507971526 0.76977398186126111 0.63684681598671511 -v 1.0156626649475808 2.0309492799598958 1.4048163605292614 -v -0.60441655572472663 1.2384202329488168 4.9657199823015299 -v -0.25922668678173738 -0.66218035365963923 2.1184498854968048 -v 1.644090993504461 -2.1852913441974762 0.98950484600234134 -v -10.528179968643204 8.3055812678708438 9.4297572482480518 -v 1.5607965435416309 3.0619921529225231 -1.5350113986263849 -v -0.27281424625275336 1.2315606726996839 -0.99536061763889783 -v 9.8596499894796992 -2.1638969699389659 -3.8079198719041276 -v -1.7785768517227332 1.7637354312502618 -0.5777386677347891 -v 0.85664886043217137 1.2227225304669722 -0.45078193941005607 -v -0.80938558191733678 0.88579101627402923 2.4574708022497878 +v -0.13188767242692462 -0.66739027330123557 -0.65176946356271992 +v -1.1957378902390203 -0.60064101522699909 0.61119420069818586 +v -0.18702599392334221 -0.75577589748626683 -0.84006521826540759 +v 1.0016287803324493 0.62311236395981007 1.764514236113359 +v -0.71395732768269748 0.77310030099224336 3.9181921510892534 +v 6.7562266064433887 12.07814490089716 27.57889827491865 +v 4.5074547219142831 0.42412063120189225 -2.3395230778081539 +v 0.10980030356049507 0.1280118103781287 1.3007762507082057 +v -0.076264507388658115 0.47640085588017045 2.4519560509875165 +v -0.6074483008884185 0.88120626656184764 4.1088918217996557 +v 3.0007402383532322 0.24185986486543887 -1.3155535657493955 +v -0.45097478769868204 1.9870143559208435 0.72818122466249835 +v -1.3684866416029327 -0.98866878610719922 0.66469428926112328 +v -5.3433048886407395 5.9712595886317095 7.9336496308002982 +v 1.1425239939314054 1.7755752222570829 -1.2059189413436888 +v 9.3271946966164894 21.172217188788139 -3.3560149766041731 +v 1.1920297231080423 1.9860401212630985 -1.1835271325477932 +v -0.34222840383912312 1.0851804499782396 0.25895150454576132 +v 0.083340913481930637 1.5005537885931439 -0.078267406655568639 +v -3.1018871408705158 3.575764159503227 4.4158084739528851 +v 0.26035993512365857 0.59764403641871766 1.1840800499439579 +v -0.26721936725906525 1.1626657359770727 0.48287498686540009 +v 0.56848565067386236 -3.2537486960653932 -1.153333049054496 +v 1.209135330053668 -2.1325092516037092 1.1080204511800482 +v 0.23167313905831538 0.0013555018469965628 0.65683896679150866 +v 0.31563363886393836 1.7646274757225873 2.2140520835325193 +v 0.12267064327168985 0.12034571757699525 0.51372043054057759 +v 0.092558734345236524 2.5765149965251708 2.3645294925720504 +v -2.3565291796094026 -0.96370087563405959 -0.13807658544546481 +v -1.1935245549221221 1.5510725322284089 -0.45005752457547427 +v 0.64155627683062 1.7949170894681563 0.89754269990472646 +v -0.47931198818287624 0.95212974767503089 0.41721270557609624 +v -0.47055927595814812 0.76171144198069163 0.51828825176551119 +v 1.4367177946764333 1.8659809021344749 1.4985653451174938 +v -0.43834888045181164 1.0554540807979294 4.5849220145702256 +v -0.31661541698172918 -0.31053357461437808 2.5978929633165175 +v 2.3777034694349446 -2.9508128175281207 0.85024772795130277 +v -6.1577296108372943 6.8466837302013026 8.5802788063128048 +v 1.4284860970942976 2.8115516331525843 -1.271449803991922 +v -0.16424858799353115 1.2451445172338682 -0.79393148980087891 +v 10.618016341471515 -2.5581459093384655 -4.4122330324486221 +v -1.3370844325944777 1.7058852435798459 -0.39909323110590555 +v 0.80373279402802666 1.1483143703460139 -0.47765535886779237 +v -0.59272933077949608 0.87579672316723378 2.7859162695308202 f 1 2 4 9 8 10 5 6 11 7 3 f 1 2 13 14 20 16 15 17 18 19 12 f 1 3 23 24 27 25 21 22 26 28 12 diff --git a/results/search/topology_11/resume.planes b/results/search/topology_11/resume.planes index fdfe7078..0f892f0f 100644 --- a/results/search/topology_11/resume.planes +++ b/results/search/topology_11/resume.planes @@ -1,37 +1,37 @@ 36 -0.10400087386369705 --0.33427605032920837 -0.13043473660945892 --0.2708684504032135 -0.074766591191291809 --0.22864547371864319 --0.049453485757112503 --0.013237847946584225 -0.021274110302329063 --0.66132551431655884 -0.37331646680831909 -0.75865590572357178 --0.57726997137069702 --1.3251334428787231 -0.81456327438354492 --0.2758384644985199 --0.012283441610634327 --0.97890043258666992 -0.41097906231880188 --0.091832615435123444 -0.11112501472234726 --0.78157603740692139 -0.76985430717468262 --0.044363312423229218 -0.25757375359535217 -0.24639219045639038 -0.4421921968460083 -0.16393387317657471 -0.20751403272151947 -0.007677396759390831 -0.85981631278991699 --0.016875913366675377 -1.4723546504974365 -0.29289838671684265 -1.2890381813049316 --0.58655476570129395 +0.11106748133897781 +-0.30268105864524841 +0.10955414175987244 +-0.2568933367729187 +0.083921022713184357 +-0.22082796692848206 +-0.053072907030582428 +-0.019126838073134422 +0.024519344791769981 +-0.5397036075592041 +0.33329001069068909 +0.67462795972824097 +-0.69958364963531494 +-1.2579423189163208 +0.82191598415374756 +-0.25948488712310791 +0.021298138424754143 +-0.79563236236572266 +0.34579616785049438 +-0.090188726782798767 +0.08318532258272171 +-0.70956355333328247 +0.71818780899047852 +-0.010830973275005817 +0.23800590634346008 +0.21737329661846161 +0.38890373706817627 +0.12813384830951691 +0.11851043999195099 +0.00094099313719198108 +1.0883004665374756 +-0.016595622524619102 +1.7028888463973999 +0.30285114049911499 +1.2399224042892456 +-0.54728251695632935 diff --git a/results/search/topology_12/resume.obj b/results/search/topology_12/resume.obj index 7f44b26e..93fdc0cd 100644 --- a/results/search/topology_12/resume.obj +++ b/results/search/topology_12/resume.obj @@ -1,47 +1,47 @@ -v -0.34210967998625569 1.0732186959185517 0.55879535172376404 -v 0.39069557035672997 0.51486929695929684 -2.3322918129003711 -v -0.87168180616702207 1.0951072933487025 1.0113369682222479 -v -0.5393636570025846 1.1219283831467455 0.90130640151613772 -v -0.41115787006491594 0.86940886396555739 -0.26858968412402118 -v -0.13642067800190807 0.80411533976713456 -0.73470615345992241 -v -0.68894543457055435 0.78564827769187984 -0.43970665092381001 -v -1.4256782610021925 0.8464100024053729 0.31986607010116175 -v -1.5641975351263049 0.48565851283393985 -1.1335980204993161 -v -0.44376311673843505 -0.017736208196686313 -4.0515098097374862 -v -0.79405208449093156 1.0501653683449848 0.76600329323183602 -v -0.20327718052513025 1.3112252670065971 0.54168555470886415 -v -2.6504490371280522 -0.72760141702010239 4.1716578342468305 -v 0.011387094612971925 0.88523416483383388 -0.71026216864918212 -v 0.31968324511399809 1.9240916294017079 0.039411350833907344 -v 2.1713313981659788 5.6369661103155027 0.64237824968452018 -v -1.1429969445034498 -0.78064244907624791 -0.084690928181887726 -v -0.74641578962751431 0.5834324194072551 0.92245538732244936 -v 0.20155153191760938 1.1992633584168635 -0.75218541000860184 -v -1.5482271478928351 -0.90732459704170509 0.84195847918704958 -v 1.3893644264443448 1.6896625074995504 -0.36831896487435323 -v 9054.0312837788988 -5818.8413174291381 7034.4633386954811 -v 0.55399008650313275 1.3731749883231559 0.28968115768225106 -v 1.9050156164343741 1.5538965666618529 -0.26741351563287258 -v 1.3024211442852314 1.8420526399203347 -0.58364132426937387 -v -2.6083545189813084 0.9670061221106383 1.5678750519724671 -v -0.96071696443038901 1.3950942123587589 0.57042541635222732 -v -1.4819946726470539 0.10937011332898494 -0.85371831732293046 -v -1.6254358675461631 0.3584095343416025 -0.10146538786381365 -v -1.1823582477277292 0.85929771011422662 0.58196384131105683 -v -1.8547455175280569 0.31649024853523927 0.05931326895645217 -v -0.69489998443233336 1.1808966520500612 0.790601727317922 -v 1.6399145311933503 2.0155012804541297 0.11899532333973706 -v -0.87348923633912323 -1.6031710091777718 -0.15573007759951274 -v -14.401226354794614 21.754342352373023 -13.164957662176658 -v -1.0585667074309071 -1.1840457288569026 -0.35068276820236693 -v 2.1873618640754771 12.194707832913569 -0.46459437215132143 -v 1.8737694449880689 -4.0520810363005468 1.6832286547440725 -v -1.1640452934302707 -1.0388348036193009 -0.21837398806175079 -v 0.92236587962937555 -5.8061160096067592 -0.077258998727404604 -v 10.165213908927724 9.2400828012563601 -0.0047182889272538164 -v 3592.8684507677699 -11754.203905637882 5397.1892465482797 -v 2.2209134019123158 4.1266886168601387 1.0129984388598219 -v 2.6403248428784503 5.043848437128716 1.7640236579482811 +v -0.069015514642103967 -0.50406498785758791 -0.87341805917350834 +v 0.57591866330494534 -0.8276598512125275 -1.0845596479300901 +v -0.14668401083614879 0.15993070407529147 1.6683555123237894 +v 0.026184985836104145 -0.023180760346703785 1.2237574927223966 +v -2.246179832596598 -0.71100447666773481 -5.3917306966742746 +v -2.2779128206377486 -0.75488561176905455 -5.6221084830221351 +v -0.87481102462403204 -0.59459632384848093 -2.6018257464539674 +v -1.1875473842405042 0.36664759380675965 0.73877825697863853 +v -6.5362725015377467 -0.73849439240180736 -12.764028995061874 +v -21.138480898300351 -5.4288925474407641 -56.363942951137851 +v -1.0219217386021067 0.20119918904455589 0.35303105920527622 +v 0.3712591495581497 1.1304282924483402 -2.4986096318246558 +v 50.535704917122395 -178.34778742228505 104.25314326620811 +v 0.01352108649540495 0.96565263889561492 -2.1066818435548176 +v 0.27542638362659499 0.83941419313755328 -2.1965542733317296 +v 0.22584572484012708 0.61918029812376063 -1.9846653123733251 +v -1.5287925040809813 -0.67239582288952171 0.32352161835647403 +v -1.7237065057938241 -0.31628074618157226 0.18113468236476848 +v 0.077013491925960464 0.71489096282164755 -1.9527302983700319 +v -1.4879721447936016 -2.1590165513871376 1.4804865946030614 +v 0.24916214483007085 1.1223808757722289 -1.9282257873744326 +v 0.53730042369632636 -1.7401977699483659 2.103076450856741 +v 0.41767720678339204 0.1772872719551096 -0.93106868089563355 +v 0.51250967292178917 0.033175674981540157 -1.0934907996116257 +v 1.3470483167851803 -3.065256462739264 0.89260402490589286 +v -1.1234903250559276 1.5359110453609515 3.5436783737542363 +v -0.26595900166247588 1.2028374837799418 0.26469541652811779 +v -4.8368338919421001 -2.541832572048178 -8.3298939647735963 +v -0.92795509924241804 0.76274391889595383 1.0153060084150254 +v -2.259696458118754 -0.1560096626984076 -0.29217549008964461 +v -1.5195705311037215 0.54114660671229819 2.124654600022553 +v -0.47657638496405202 0.94374422864593699 0.27700995117765592 +v 0.81177487522176728 1.6074029033599411 -0.49809815137758495 +v 5.8472041455768879 2.529318367999577 7.3767774242008537 +v 2.6411951593960126 1.3041339413011828 2.2342816687679212 +v -2.1302176118947145 -3.7077551881278623 -0.80295151027756395 +v 1.9799090228917051 0.14511695157723312 2.4856906841076514 +v 2.198220905282112 -7.1009584414102092 3.084167260234457 +v -2.0674511228428387 -2.8402200431929954 -0.38464509667641567 +v 0.53681499893572127 -32.78814773459505 -0.99697071703491513 +v 1.2734380069848306 2.6809054939875008 -0.31951326541122349 +v -72.163861584341575 172.85111528578719 -155.67339051860364 +v 0.93104047972810333 2.3485862195879217 -0.19867094385140671 +v 1.1210302102368428 2.7477909493486408 0.28289271108565761 f 1 2 10 9 6 5 7 8 3 4 11 f 1 2 16 15 19 14 12 13 20 18 17 f 3 4 27 26 13 12 21 25 24 23 22 diff --git a/results/search/topology_12/resume.planes b/results/search/topology_12/resume.planes index 51903ea9..96703599 100644 --- a/results/search/topology_12/resume.planes +++ b/results/search/topology_12/resume.planes @@ -1,37 +1,37 @@ 36 --0.1458592563867569 -0.92371046543121338 --0.2153652161359787 --0.51246523857116699 -0.28562465310096741 --0.18505688011646271 -0.15356989204883575 -1.1333191394805908 -0.74007540941238403 --0.40138137340545654 -0.83802706003189087 --0.35397189855575562 --0.069701671600341797 -0.017800124362111092 -0.1044391393661499 --0.6686674952507019 --0.27387019991874695 -0.63422799110412598 -0.11565769463777542 --0.11323601752519608 --0.32357791066169739 --0.56016772985458374 -0.75020915269851685 --0.60333651304244995 --1.310242772102356 --0.58533406257629395 --0.40213245153427124 --0.064822003245353699 -0.074212931096553802 --0.13312692940235138 --0.64663666486740112 -0.29038789868354797 -1.0631815195083618 -1.1682249307632446 --0.093672797083854675 --0.53800320625305176 +-0.10732172429561615 +-0.25526607036590576 +0.063404567539691925 +-0.4454076886177063 +-0.48844853043556213 +-0.61190789937973022 +0.23483888804912567 +0.096346348524093628 +0.051629204303026199 +-0.51260387897491455 +0.88148033618927002 +-0.097291953861713409 +0.43854448199272156 +-0.29431068897247314 +-0.20328508317470551 +-0.88464528322219849 +-0.096741892397403717 +0.96903908252716064 +0.84834158420562744 +-0.095878981053829193 +-0.50604248046875 +-0.6487305760383606 +0.58509927988052368 +-0.22909173369407654 +-1.9521173238754272 +-0.18352706730365753 +0.6735343337059021 +-0.28008291125297546 +0.17322327196598053 +-0.31722548604011536 +-0.44579437375068665 +0.39270156621932983 +0.63780587911605835 +0.86958962678909302 +-0.0019996140617877245 +-0.34141871333122253 diff --git a/results/search/topology_13/resume.obj b/results/search/topology_13/resume.obj index 2504ef2b..649a33fe 100644 --- a/results/search/topology_13/resume.obj +++ b/results/search/topology_13/resume.obj @@ -1,47 +1,47 @@ -v 2.60935182472234 0.59923255409790621 -2.9134905557125199 -v 2.0519946342438704 1.0056553732031897 -6.2381339302264784 -v -1.0159497744310522 -1.9158087674611151 0.46066674294553756 -v -0.8667446899533221 -1.8174313094121879 0.34667341769121052 -v 66.979066588391149 12.190534143599118 97.412559205658511 -v 0.42212502355180409 -1.4586618840592722 1.7415999086264944 -v 3.5984665771687374 1.4666129905089613 -4.7121276089499275 -v -0.35039546287567169 -1.3611848007878715 -0.60897396349684718 -v 0.25086611107301537 -1.4079949592928329 1.0796894675632529 -v 1.3945888502446224 -0.43010786654785954 -0.8785845388584137 -v -0.44161944494121352 -1.4048040023177868 -0.61937869190658967 -v 0.45151895037681894 1.2183616558148502 -3.155986269455477 -v -1.9821694794462608 1.9596535564517614 -3.998686134021979 -v -0.29886609148907417 0.80649239910856396 5.059060679841366 -v -121.60163429513383 39.138750752700417 -55.257151184562446 -v 1.2312730171036672 0.64512039673780019 1.5567574623356368 -v 2.3463021345086319 0.97238648838537889 -6.8822514137216411 -v 0.36361009093599939 0.91879932785227802 1.1320289906682577 -v -4.7189140500542734 2.6956421658607868 -3.6546075807009348 -v 0.85374994607007382 1.158858607118382 -3.8505865585206935 -v -0.68685524578383594 -1.67017044107089 0.17623580863392696 -v -0.7839812867969399 -1.6349495528193791 0.13611216715919972 -v 1.9533460679873313 -0.00052278552602057649 -1.7589352178675703 -v 0.84850249459946059 -1.2961586228397048 -0.26156886249248112 -v 0.51485763490112091 0.94457323025171669 -2.8409254411827947 -v -0.066814164397461517 0.84610934960206208 -2.7248561447387836 -v 2275.6442498594174 -978.78569506006704 1115.2175708247867 -v 0.21736252996018934 -1.5622261717073469 1.3361718422238749 -v 0.20657858144594676 -1.369514002032044 1.6723745466812141 -v -1.0733423069069095 -1.0200342231516599 0.93674689168175196 -v -0.98205045565974236 -1.329100170264405 0.47654012768350129 -v -30.103907195810525 7.9981873828790038 -13.779030308484909 -v 10.761124273636549 2.6799366083610301 -25.673006018870446 -v -0.16710205406503795 -3.6410749700292824 -0.69217936650161516 -v 0.44984509989791654 -1.1901967108751046 1.1767529655900484 -v -0.65002284083212147 -3.9473988745493571 0.36945222065368788 -v -0.89743093643440697 -0.79503721664011084 0.51728569366280586 -v -0.91193789971041572 -0.51498138251895764 0.5098521085467087 -v -0.18924648156595575 0.12028278993874182 -1.1727230168893881 -v 0.26926609098837834 0.90299141530821725 -2.5909757301190979 -v -1.1573650416928922 0.661468687368024 -1.6993416026586794 -v -1.1531718193623901 0.66208777370432992 0.3904379566870928 -v -1.222671953727519 0.65041495585551024 -1.7151520546856083 -v -0.30174144190999036 0.19113816756498089 -1.2587164356531688 +v 2.5821059947348943 0.56528014088133394 -2.920628526701222 +v 2.046789422104597 0.96377666782181459 -6.2215916181557169 +v -1.0246825026961663 -1.91329760588388 0.45689426869771033 +v -0.8430923585668364 -1.7951991165490002 0.32003820899541546 +v 63.984640860162891 11.752166076728003 93.427372884857448 +v 0.41256907400407961 -1.455384365145826 1.7393746616727346 +v 3.7239132602532488 1.5561835866137199 -5.013176726309613 +v -0.35064115543819285 -1.3624660352480071 -0.60907865927739968 +v 0.24493128457648436 -1.4054964258364142 1.0772855788211051 +v 1.4043951989753045 -0.43365700166216697 -0.87701261286954368 +v -0.42962199622120234 -1.3999993373782096 -0.61818304606249719 +v 0.54391565162330169 1.1442044476661635 -3.0719138132261099 +v -1.8143906604111335 1.8625350338273925 -3.8885112160502944 +v -0.51626345637268978 0.83802478938898139 4.885963828546668 +v -120.12279097213298 38.634253392226682 -54.586820076029014 +v 1.2055395602396626 0.61111752910666095 1.5447135656026709 +v 2.1450257703052835 0.95267191594930689 -6.4365903762627585 +v 0.13573622972293925 0.94855566097815214 1.021035594140359 +v -4.5515967882943729 2.6000784661042262 -3.5633100367905128 +v 0.82275135680612166 1.1178702685698201 -3.7507929220895866 +v -0.68721619385948896 -1.6710481170146141 0.17632836742455149 +v -0.77272153541678856 -1.6400412532141937 0.14100534588248936 +v 1.946346911948472 0.005990648596134158 -1.7673252822206935 +v 0.83901001397912012 -1.2925691541819049 -0.26657980938349296 +v 0.54895516225078445 1.0186720478435511 -2.9273482765916787 +v -0.15727203382055105 0.89912377571848134 -2.7864246932357446 +v 2277.0637390186271 -979.39613561824513 1115.9131890158369 +v 0.20707009284808492 -1.558675439126012 1.3336534904894202 +v 0.19628435778101452 -1.3659311423497846 1.6699122056936138 +v -1.0739063509930757 -1.0205702222191282 0.93723905306647071 +v -0.9712986489767389 -1.3334075076376519 0.48230631405761382 +v -30.119666909780364 8.0023692401679494 -13.786242760232311 +v 10.870710450533279 2.7668202972093789 -25.927641630876536 +v -0.42661661798530975 -3.7676845094976885 -0.10308865363078734 +v 0.44037252478464511 -1.1860081817200998 1.1726166317366502 +v -0.63449688371101676 -3.8995460920320548 0.35390608231591858 +v -0.89790255956401788 -0.79545502339747343 0.51755749523071803 +v -0.9124171486334951 -0.51525198126864458 0.51012000213161102 +v -0.18934594935898258 0.12034604708187699 -1.1733392699830811 +v 0.35139038698024611 0.9852228712299953 -2.7511970479734691 +v -1.2496451431091249 0.71417424884937142 -1.7505616364681109 +v -1.148726527991996 0.73116358067609244 0.39303092437142945 +v -1.3228011368449699 0.70179199786046931 -1.7682723092641464 +v -0.28922192838322125 0.186596020793454 -1.2565377572751086 f 1 2 8 11 4 3 9 10 6 5 7 f 1 2 17 20 13 12 19 15 14 18 16 f 3 4 22 21 25 26 13 12 23 24 27 diff --git a/results/search/topology_13/resume.planes b/results/search/topology_13/resume.planes index 878db255..4b3d478e 100644 --- a/results/search/topology_13/resume.planes +++ b/results/search/topology_13/resume.planes @@ -1,37 +1,37 @@ 36 -0.50819611549377441 --1.0129668712615967 --0.20902681350708008 -0.28417444229125977 -1.0206338167190552 -0.077127732336521149 --0.0034386119805276394 --0.86662799119949341 --0.75240999460220337 --0.77616506814956665 --1.3120054006576538 -0.72714847326278687 -1.0475050210952759 --0.51395291090011597 -0.32819849252700806 --0.58977484703063965 --0.037651669234037399 --0.26753276586532593 --0.14107219874858856 -0.83342152833938599 -3.6169945815345272e-05 --0.10412710905075073 --0.46300694346427917 --0.29202300310134888 --0.37704885005950928 -0.00092985969968140125 -0.77085906267166138 --0.098598979413509369 --0.38380816578865051 --0.18725833296775818 --0.71566873788833618 --0.076536223292350769 --0.34763112664222717 -0.2616894543170929 --0.34738034009933472 --0.83807098865509033 +0.5067172646522522 +-1.0165771245956421 +-0.20489674806594849 +0.27335882186889648 +0.9817889928817749 +0.074192285537719727 +-0.0034404189791530371 +-0.86708337068557739 +-0.75280541181564331 +-0.77657288312911987 +-1.312694787979126 +0.72753065824508667 +1.0379272699356079 +-0.50925362110137939 +0.32519763708114624 +-0.59008479118347168 +-0.037671457976102829 +-0.26767337322235107 +-0.15231506526470184 +0.89984190464019775 +3.9052541978890076e-05 +-0.10418179631233215 +-0.46325027942657471 +-0.29217645525932312 +-0.37724700570106506 +0.0009303482947871089 +0.77126413583755493 +-0.098650790750980377 +-0.38400983810424805 +-0.18735674023628235 +-0.70517313480377197 +-0.075413793325424194 +-0.34253296256065369 +0.26182696223258972 +-0.34756284952163696 +-0.83851140737533569 diff --git a/results/search/topology_14/resume.obj b/results/search/topology_14/resume.obj index 33bb2645..57bc867d 100644 --- a/results/search/topology_14/resume.obj +++ b/results/search/topology_14/resume.obj @@ -1,47 +1,47 @@ -v 5.9635895422417802 -4.570574675048662 2.9573105290692578 -v 2.8825585415445083 -2.4430529906735905 -0.052842301636361277 -v 0.72717734913093968 0.72864765867986425 -3.280643281645963 -v -1.0451874581994838 -0.98149573383928634 -3.0566476424289815 -v 0.72336594749855521 2.2335889831940716 -4.285695066417869 -v -18.176755490164577 -17.906084896971734 -0.62860896807450384 -v 2.9193091453011411 -1.0240326304118019 -0.97966536634069579 -v 0.54096010739038558 -1.338938448601475 -1.9987704014646284 -v 4.7014878012540207 -6.5369424432909495 3.6157617756548461 -v 0.50614165403099931 -1.6063513651391319 -1.8385250166069238 -v 4.988092163457476 -0.88297312072787693 -0.0046536987364857035 -v -1.0052813127734936 -0.83783060010551857 -1.1738321559512035 -v -0.6667930642653499 -0.56096905917685158 -2.1096210417375678 -v -1.4685779437393593 -0.74843461046249848 -1.0546825849247261 -v -1.5917712563880453 -1.0904099152978219 -0.11579617135911247 -v 0.021518550915958605 -1.881698532251475 0.65988838445980003 -v 0.52965792033842374 -1.2203102339153833 -1.3545155351811138 -v -43.518816257043326 12.34928069221956 -2.6023540052830003 -v 0.91824717205446693 -1.3189493053875045 -1.3957694424713964 -v 1.9684491897001937 -2.8161018090252701 1.5450676240822445 -v 7.8171838995869578 7.9362918050941875 2.4035711901225612 -v 0.54556218431097425 0.79921803689986592 1.1551493086461448 -v -0.39630493757595314 -0.16147940318938658 0.34253561814421474 -v -0.18825670754100504 0.02277790485641067 0.020261449218271332 -v 5.1718892981283204 5.2452507156271269 0.24946652225759552 -v -0.18641599668871597 0.025800859565053395 0.042412856002288689 -v -0.25689756095279459 -0.033435940140647526 0.20876913676332468 -v 9.5695567000607067 6.5838712284927539 16.047263220038708 -v 0.3774205243895925 1.5242808839349593 -2.7392598639298087 -v 0.83061529266449963 1.0149163618192065 1.4823799679222327 -v 2.1866555021654954 3.4814241222600977 -3.2163700214367061 -v -0.35043305180881351 0.13057025843319608 0.085984239272424046 -v 0.68905578801095624 -1.2632838457311455 -1.8172006204458064 -v 0.27390909315580692 -0.78082271292970795 -0.86250476177371571 -v 0.34949872364337786 -0.24415664152142738 0.27976883964487675 -v 0.046231453441038628 -0.26742914510768168 0.18539765428432761 -v 1.2401132273185764 -0.71457244634928818 -0.57847893944187623 -v -0.20980168162519625 0.39945854700038269 -0.16777855398441388 -v -0.1131267799661607 0.25568059743419008 -0.36886390719845608 -v 1.6226339424896177 30.871568287025944 -26.408981976242224 -v 3.1463549996184734 0.092958633412485711 1.1134692841804299 -v 2.1089102327675309 0.19792301247120994 0.73543771441358208 -v 1.4954299653686052 -0.61091920007097955 -1.0240185506353168 -v 0.053761303877306175 0.0307652475394962 0.098738425203763691 +v 5.946251453061107 -4.5647004983715966 2.9542415835454534 +v 2.8905008877711964 -2.4513624182930118 -0.039331377460914752 +v 0.72719740778441599 0.7287160328488691 -3.2809224888461079 +v -1.04656215452576 -0.982966849491547 -3.0602267613618688 +v 0.72338950203299879 2.2242325861712775 -4.2796173128587247 +v -17.638586785616098 -17.66971464668044 -0.54567057401363939 +v 2.9236402037312956 -1.0223303051589185 -0.97455076840140697 +v 0.54135955008442116 -1.3394636953519492 -1.998937732863681 +v 4.6703136015477336 -6.4616259102860552 3.5566285623077851 +v 0.50648636657466628 -1.6067268519627942 -1.8389039586347029 +v 4.9742620380154685 -0.88097768088712791 -0.005050451002735129 +v -1.0057369654872119 -0.83820822819291507 -1.1738163309151262 +v -0.66700292460399424 -0.56114563432433584 -2.1102848822270297 +v -1.4490448276246366 -0.75266918756558787 -1.0598074283278689 +v -1.5727994690141229 -1.0882833127616673 -0.13628627095984819 +v 0.028233110538045624 -1.873559928336908 0.63350481892100541 +v 0.52982481368183909 -1.220694219865416 -1.3549420483204564 +v -43.514254708485183 12.347666774260039 -2.6029628011061323 +v 0.91853560267212297 -1.3193641405324041 -1.3962088734746927 +v 1.9747464946445472 -2.8250822180434443 1.5614534757723662 +v 8.7481354646304599 8.8833380059715097 3.1604123050056674 +v 0.60434047292441206 0.86139402473690829 1.2446055465876342 +v -0.39697665236675378 -0.16209699741603514 0.34201324940381356 +v -0.18124694560932728 0.028235805528928685 -0.0052217367875110748 +v 5.1400881136518137 5.2128947041285967 0.22232378694680954 +v -0.18382752459603116 0.028605956382943807 0.046450300301732812 +v -0.24882050815792939 -0.026017925415144975 0.19985197789025427 +v 9.9597212694822872 7.0269735886694917 17.040253611430327 +v 0.33979841002641048 1.4421276685373561 -2.5678656334299612 +v 0.8154934692251663 1.0250681624238795 1.4918363469949421 +v 2.1861260728517111 3.5093146082516125 -3.2411623258864215 +v -0.34349134104227785 0.13997905627598506 0.075576636580477141 +v 0.68926601001991883 -1.2639057621583034 -1.8175999776322789 +v 0.27441298216271393 -0.78178592948117032 -0.86357962097370866 +v 0.40577907779389949 -0.25108776083263096 0.27445338110479767 +v 0.07755044253714545 -0.27627578238689754 0.1723146845852474 +v 1.2488718093776854 -0.71496957198728639 -0.57712708613620334 +v -0.2094855881313698 0.3990159554216397 -0.16862608849097629 +v -0.11683709044355398 0.26122621495763881 -0.36133642502697516 +v 1.6227516555576789 30.867808623079821 -26.406977186503742 +v 3.1232462481920056 0.082713340786316369 1.0826185727422322 +v 2.1332059334426829 0.18288154042647958 0.72186059769512978 +v 1.4995117826132769 -0.60957153433987776 -1.0196647142483168 +v 0.11549066676548754 0.018768577599389016 0.096758517941901434 f 1 2 9 6 5 3 4 7 8 10 11 f 1 2 20 19 17 16 15 14 12 13 18 f 3 4 13 12 23 27 26 22 21 25 24 diff --git a/results/search/topology_14/resume.planes b/results/search/topology_14/resume.planes index 3cb9eaa5..a6f8e904 100644 --- a/results/search/topology_14/resume.planes +++ b/results/search/topology_14/resume.planes @@ -1,37 +1,37 @@ 36 -0.95744878053665161 --1.2349716424942017 --1.8528488874435425 --0.38173764944076538 --1.2868741750717163 --0.51881325244903564 --0.10210677236318588 -0.1050553098320961 --0.0058519262820482254 --0.24760332703590393 -0.24250361323356628 -0.055839739739894867 --0.02030014805495739 --0.28623464703559875 -0.13582289218902588 --0.15324532985687256 --0.033563852310180664 --0.049676593393087387 -0.093455493450164795 -0.30362886190414429 --0.17216736078262329 --0.025030553340911865 -0.022402623668313026 -0.074912510812282562 -1.4982231855392456 --0.74207264184951782 --0.91281253099441528 --0.0039874482899904251 --0.023693058639764786 -0.019091082736849785 -0.013673939742147923 -0.065170228481292725 -0.076632574200630188 --0.037233807146549225 --0.045056805014610291 --0.031819164752960205 +0.96053004264831543 +-1.2341158390045166 +-1.851715087890625 +-0.38185778260231018 +-1.2872791290283203 +-0.51897644996643066 +-0.10213889926671982 +0.10508836060762405 +-0.0058537665754556656 +-0.25046122074127197 +0.24133576452732086 +0.054140560328960419 +-0.020324211567640305 +-0.28657391667366028 +0.1359838992357254 +-0.15329352021217346 +-0.033574413508176804 +-0.049692220985889435 +0.093484893441200256 +0.30372437834739685 +-0.17222152650356293 +-0.017743794247508049 +0.015880892053246498 +0.05310438945889473 +1.4986943006515503 +-0.74230599403381348 +-0.91309976577758789 +-0.0039887027814984322 +-0.023700514808297157 +0.019097086042165756 +0.013555244542658329 +0.064604520797729492 +0.075967356562614441 +-0.034280985593795776 +-0.041483581066131592 +-0.029295753687620163 diff --git a/results/search/topology_16/resume.obj b/results/search/topology_16/resume.obj index 71daf978..129e3b47 100644 --- a/results/search/topology_16/resume.obj +++ b/results/search/topology_16/resume.obj @@ -1,47 +1,47 @@ -v 1.0027508642326228 0.69058298518498984 0.32288238857339102 -v -0.58745910857156247 0.90963858934207875 -0.42239410030242341 -v -0.99504261343397948 -0.11129739080325028 -1.3038887409408964 -v 0.63882997221422932 0.026400021482833574 -0.30559314255489411 -v 2.2398663713702796 -1.48157620034187 -0.38056249228195271 -v 1.6626632929945206 0.91128177100245678 0.83191716410727246 -v -1.5685271761263888 -0.46538474666540713 -1.8502956307505922 -v 0.80128149614025734 0.30227298728771551 -0.038260783928401709 -v -0.26985578093908297 3.0590597853516854 1.1324110900540749 -v -0.53445560746292087 0.050404068663100786 -0.94369373010444613 -v 0.50951732449670928 2.885224157064211 1.4550619024620102 -v 0.98560172296033866 2.47545595305695 -4.0944061018731439 -v -1430.117002673325 1088.3139941435008 -2873.1085047341057 -v 1.5996470244471206 0.94077930670242982 -0.21965409487694298 -v -14.77616314996728 3.8118604309447082 -9.4163745195469097 -v 0.14338719120514656 1.6682159090708764 -2.2053365946240104 -v -1.491394579055948 1.1652849521859874 -1.17039529965836 -v -0.48660340387784984 1.2137167236129391 -1.1616661400325956 -v 0.24926110533022028 0.85741280918105001 -0.18617586077185189 -v 0.88007567224761574 1.5417154855695714 -1.7981870827284232 -v 1.8458428089252426 0.14382685394676128 0.40592837851876273 -v -4.9870598775794805 1.7094964698466368 -7.3095402542177919 -v 0.86933922998462587 -0.2622831006552267 0.34464358300042536 -v 0.59711899164583071 0.11358995073932529 -0.48104081742995264 -v -0.40095605188666128 -0.12539390289030811 -0.83481985779447998 -v -2.0347777009980081 0.21404539838125294 -2.6219241207473765 -v -3.1910538239557269 1.5996817344050414 -5.7803802871443688 -v 2.4234165253349773 -1.9097909381780589 0.93365091041035031 -v 1.3516789166321508 2.0453449250996258 0.69250263603734963 -v 0.93294503283949159 3.3100803477780083 -0.83504868260160381 -v 1.1829378827090493 3.0413155592894485 2.5614142631688583 -v 1.287558360566073 2.2562461112772674 0.54662899595917502 -v 1.6611966353218361 0.77151647118108491 0.08989373017717428 -v 0.33988581073978308 -1.11023643213034 -0.66911959219847605 -v 5.8468859247515237 -6.8081266549027291 15.319654492051704 -v -5.8125676121946324 1.9173114579471091 -7.5872853029922052 -v -8.788715245331149 1.8053816487628462 -5.7652331560636254 -v -2.58220027177325 -0.028714935653501823 -2.7863722307356893 -v 1.3325521473916924 1.3371170871889788 0.90998688912220649 -v 0.82318720997034323 1.9993409583151318 -0.61958291945290456 -v -0.72545546166037345 0.060714159443764903 -1.0489122469564784 -v -0.947487444813506 0.019218270425680643 -1.2928151238867929 -v -2.034926892311268 0.036974979848060481 -2.359865112862404 -v -1840.8808743619556 303.77349822042049 -1057.5904472332359 +v 0.99133585372944 0.73247093522489248 0.37622825042109953 +v -0.45616757713724809 0.93186832373113548 -0.30216661559575808 +v -0.94636274151382171 -0.10523414844122879 -1.2400374359149788 +v 0.61601193251360198 0.026437649825172053 -0.2854270446317595 +v 2.1445932264447185 -1.3723691148762511 -0.33076774847044765 +v 1.6195986687865351 0.77897277117492225 0.75596428450731512 +v -1.4466414613326679 -0.41412199227744406 -1.7166950186531174 +v 0.76051764606476613 0.28759433127606243 -0.037524047017288731 +v -0.11781935642130165 3.2216849678588795 1.3541948829414781 +v -0.50305739426747842 0.049332453013535338 -0.89404172103828716 +v 0.2391136614209331 3.1420726497846792 1.5019607102055637 +v 0.80178911429562694 2.7625107287687896 -4.6695626790751987 +v -1416.0888927550345 1077.8172752176874 -2845.1910076030526 +v 1.4139987571748689 1.2372382654793508 -0.81830748580505119 +v -14.440183659677743 3.8063959118412076 -9.201459352003619 +v 0.067170461851971522 1.7838236692357603 -2.3426349725913118 +v -1.2538369741541107 1.1574610445118514 -0.96223327487250043 +v -0.43966266148190708 1.2608055845992596 -1.1137207146087282 +v 0.36517747579469478 0.87110378656785592 -0.046793498625033125 +v 0.93870875190567959 1.6341674935228556 -1.8609572134661989 +v 1.774635661639643 0.1371079407316611 0.40095702949493706 +v -4.8369709984829896 1.7943509082048854 -7.2998628557012886 +v 0.81107242234389132 -0.22909496562274129 0.28340371483446664 +v 0.56703313190650284 0.10786674788081171 -0.45680365149951985 +v -0.30818478932956378 -0.10848186931847648 -0.75582154224392673 +v -1.9322556514148481 0.20326113966323556 -2.489819271994353 +v -3.1751861891096205 1.6927428902611776 -5.8849817922935532 +v 2.3147848749204756 -1.768526617557433 0.88487332971324539 +v 1.2849988338890126 1.9950214335104892 0.64141833527331293 +v 0.88922750118291982 3.182578205955374 -0.79943124540241772 +v 1.0542247543212038 3.2073696706316146 2.5070459070780995 +v 1.1682867511404256 2.376039327685818 0.37686875604625181 +v 1.5961005622198468 0.73875332511493419 0.094121832044712028 +v 0.32632154347352865 -1.005454190955607 -0.64476588353933773 +v 5.4120562598668576 -6.2674762712427361 14.120924347862339 +v -5.8220798555604603 2.042344242781184 -7.6313063468351485 +v -8.0540664545193987 1.6663172234466632 -5.307209477287901 +v -2.3603158626650869 -0.016251619308096293 -2.5744536184698692 +v 1.2654117203653863 1.269746811103005 0.86413744036983742 +v 0.80207461552625758 2.1417893890497774 -0.62834126512483579 +v -0.67923538959510943 0.10432436588127385 -1.0006266474601544 +v -1.0222965892840996 0.040209085480313808 -1.3774805624144997 +v -1.7860343546135629 0.052680113413291679 -2.1268982569578121 +v -2003.701140637555 330.59165810520688 -1151.0312206346516 f 1 2 9 11 6 5 7 3 4 10 8 f 1 2 17 19 18 15 13 12 14 20 16 f 3 4 25 23 24 21 12 13 22 27 26 diff --git a/results/search/topology_16/resume.planes b/results/search/topology_16/resume.planes index 1246d0db..2db3e68c 100644 --- a/results/search/topology_16/resume.planes +++ b/results/search/topology_16/resume.planes @@ -1,37 +1,37 @@ 36 -0.21950711309909821 -0.25264644622802734 --0.39410713315010071 --0.034114055335521698 -0.65968161821365356 -0.26668688654899597 -0.12945990264415741 --0.28525328636169434 --0.17253641784191132 -1.7339811325073242 -0.46432182192802429 --0.09088558703660965 --0.16896022856235504 --1.1330370903015137 --0.34558352828025818 -0.65359508991241455 --0.097444638609886169 --0.2598433792591095 -0.15635080635547638 -0.091060139238834381 --0.15782307088375092 -0.087481506168842316 --0.025486165657639503 --0.07530096173286438 -0.26058134436607361 --0.10120880603790283 --0.48294228315353394 -0.33847400546073914 -0.35194987058639526 --0.48852026462554932 -0.74702566862106323 -1.9853508472442627 --0.73480987548828125 -0.08328593522310257 --0.12885977327823639 --0.087021730840206146 +0.20887652039527893 +0.2404109388589859 +-0.37502077221870422 +-0.036954198032617569 +0.71460306644439697 +0.28888973593711853 +0.12293708324432373 +-0.27088081836700439 +-0.16384319961071014 +1.6647826433181763 +0.44992747902870178 +-0.086448177695274353 +-0.15422713756561279 +-1.0342377424240112 +-0.31544908881187439 +0.62066370248794556 +-0.092534899711608887 +-0.24675118923187256 +0.1660529226064682 +0.096710748970508575 +-0.16761654615402222 +0.083073757588863373 +-0.024202048778533936 +-0.071506917476654053 +0.24745197594165802 +-0.096109412610530853 +-0.45860925316810608 +0.32142001390457153 +0.3342168927192688 +-0.46390622854232788 +0.78756308555603027 +2.093085765838623 +-0.77468425035476685 +0.07908957451581955 +-0.12236718833446503 +-0.08263714611530304 diff --git a/results/search/topology_17/resume.obj b/results/search/topology_17/resume.obj index cae3ddd8..6c9d2762 100644 --- a/results/search/topology_17/resume.obj +++ b/results/search/topology_17/resume.obj @@ -1,47 +1,47 @@ -v -1.506133555635679 -2.29410015154015 3.1302665223416497 -v -1.6190188928965767 -5.8776824920220356 4.6480508074139557 -v -0.88729507819911935 0.050510066980923092 -0.79965188481735539 -v -0.91053138390457944 0.16937751846214888 -0.70459871414015685 -v -1.1205557340636783 -0.56853157456347647 0.61448307203692543 -v -1.2693245359399907 -1.4746731923349676 1.6461553412373906 -v -0.38595753923409171 -1.6256180949209802 -3.0759702921946181 -v -0.54847255854630539 0.64056670988715203 -2.7753000273976758 -v -1.0341688199309589 -0.72774784382209157 0.18935336967016991 -v -1.0258317433528383 -0.14713221008964808 -0.0029247275563425434 -v -0.64900320037627879 0.62690249737515713 -2.2300763054146104 -v 1.0540654073780154 -0.096496849525657652 -0.28263424138864107 -v -0.22613201707109773 1.2566097729155052 0.46239941157703102 -v -1.0022633453479322 -1.3122603287346155 2.2431568287785746 -v -6.0635046951685467 12.992328156362323 1.6768985816803759 -v 13.414773498730893 -2.7404880415630153 -11.562630606468945 -v -2.1843429960028251 -1.6259229576385028 3.544043498769049 -v 1.4772905142578683 -0.11434829375078423 -0.6973567507849836 -v -1.5290212875743379 -0.84797394725145725 2.5859755149824535 -v -0.2059620480278056 0.24946768957308782 0.8372511820630868 -v -2.3436199476751072 -0.53503598758057114 -1.7890458673888012 -v -1.6755623038091623 -0.15078636470623238 -1.2352077507606571 -v -0.91055325524223696 0.77045942596337225 -0.18496241408800851 -v -0.71855897326830953 0.49937868050693179 -0.3556153222215635 -v -1.2231733801164462 -1.8926092004354165 -2.5909432988411738 -v -0.58002966992132343 -1.6014259514609939 -2.1258283171646335 -v -0.51331372517783114 0.438289604805226 -0.34033112753302608 -v -1.0130193009489277 -0.49459488527910944 0.68084814255635007 -v -0.85186374524568831 -0.062946241230412328 0.17534106758565482 -v -2.624319966735047 -0.89344616137794908 -1.6503837270130726 -v 0.97890632307459535 -0.35786979661773222 4.2346628663088559 -v -0.81669447165486053 0.086039631732299948 -0.038277667529383885 -v -0.51734729733405982 0.4201554405725389 -0.095450304977325429 -v 0.77215410059078193 1.6786589102360709 -3.4854176364748426 -v -2.2277428056605553 -1.6627906735221623 3.3450961263231269 -v -1.2325134373631053 -0.43229375418007848 1.0120198559311731 -v -0.43843689241624934 0.45238703879501535 -0.79613293107958538 -v -3.0757519870543915 -2.3294589488741386 -1.503967437407365 -v -5.7200148704049285 -2.681932596252337 0.071668370569749285 -v -2.9340532742340146 -2.1688037138041545 -1.5757708484621569 -v -11.534949837813476 -5.660926122605435 -1.286685496901053 -v 9.2832297594672148 3.4834599826449808 11.033849652216217 -v 1.3417535138466341 -0.35814704117773194 2.8956941127648532 -v 0.044109573285736094 0.1567100323366174 1.1679565145919046 +v -1.7283087590167368 -2.6539058027184321 3.7360536747843258 +v -1.8848741687793531 -5.0878741907950618 4.8720952896272465 +v -0.9906970576550197 0.089913376191590746 -0.89526979357966363 +v -1.0119276376548649 0.22220347703841875 -0.77942412521023763 +v -1.243970476761705 -0.58797164954197123 0.67314973690215063 +v -1.459707550152495 -1.6695455133464692 2.0507808480794081 +v -0.57324500698457515 -1.8337634761785913 -3.2291005172829745 +v -0.75693828583966605 0.54268891334236136 -2.3285578495681598 +v -1.1609374711451337 -0.76889990086381732 0.19227411118765092 +v -1.1390896702660871 -0.14090458299803671 0.009919400854624838 +v -0.84073945494503965 0.54903110557626222 -1.82866892001186 +v 1.0977285956986007 -0.039186232887350625 -0.2416191378665698 +v -0.23866179639775037 1.3702585912686385 0.5809647348377811 +v -1.1205437320950982 -1.4967826607795292 2.6426895231566765 +v -5.6617875308421581 8.596270389378617 3.3164517804377329 +v 13.865277268865887 -2.9217915654795572 -12.333680553024003 +v -2.3701253813304821 -1.8084285216909302 4.063676487547637 +v 1.3193595553952884 -0.049462776607813175 -0.46742984750963501 +v -1.7496072725142526 -1.0462383271491515 3.1150606122902174 +v -0.20482130392468753 0.2645095331827399 0.98817264782753744 +v -2.230566349754306 -0.29408983214323842 -1.7141317800383518 +v -1.8418893511633614 -0.092587936017772141 -1.3815660567154915 +v -1.0454910139763294 0.84791612152646278 -0.20670181478739058 +v -0.7919890086364697 0.49416734890227865 -0.44353015231992909 +v -1.1671068163390288 -2.0158019941867118 -2.9299509298685646 +v -0.70956282887549615 -1.8232134048007835 -2.5801851790925254 +v -0.63578193012684447 0.45329179017625676 -0.42383571546934962 +v -1.1202746167878339 -0.50566281267314783 0.74415225071158075 +v -0.96153389909040476 -0.066821757458944531 0.19681832841186464 +v -2.6736453893878305 -0.77783370579461597 -1.606495772524779 +v 1.5911106508791417 -0.2974171666913657 5.3584220231774182 +v -0.91466840449441833 0.11564546426211784 -0.06614488695503784 +v -0.62804114980386638 0.44336528551916121 -0.16410622214783066 +v 0.18034725833593848 1.2848786030254502 -2.649619771516591 +v -2.4145828633544109 -1.8430876886379532 3.8528965591183484 +v -1.3371858036593611 -0.43984750276877943 1.08993206140793 +v -0.58802093947141787 0.45186882421780411 -0.78051466621840315 +v -3.4114280291666388 -2.5574318228146162 -1.7508039677829279 +v -6.7942604184952886 -3.1069054181732949 0.11515996005871365 +v -3.2733978710346356 -2.4007319222342991 -1.7823419008709744 +v -11.621488570172303 -5.5067233207912896 -0.8379345332030157 +v 10.169179783092222 3.3497513290530323 12.320564927499754 +v 1.9168951450680698 -0.3311683430861484 3.7129294733465574 +v 0.050065905227894593 0.22366375537172459 1.3053131637457589 f 1 2 6 7 8 11 4 3 10 9 5 f 1 2 15 16 18 12 13 20 19 17 14 f 3 4 22 21 25 26 12 13 23 24 27 diff --git a/results/search/topology_17/resume.planes b/results/search/topology_17/resume.planes index a58b96de..e80387bc 100644 --- a/results/search/topology_17/resume.planes +++ b/results/search/topology_17/resume.planes @@ -1,37 +1,37 @@ 36 --0.99676984548568726 --0.046940825879573822 --0.18496502935886383 -0.33878043293952942 -0.13332575559616089 -0.33998715877532959 -0.098050370812416077 -0.25548723340034485 --0.29552710056304932 --0.39280471205711365 -0.38705509901046753 -0.20527733862400055 --0.52206110954284668 --0.17233800888061523 --0.31359109282493591 --1.3969012498855591 -0.20478129386901855 --2.2984969615936279 -0.38161724805831909 --1.0084078311920166 -0.10362327098846436 -0.11660955101251602 --0.28752422332763672 -0.13137654960155487 --0.49021333456039429 -0.44343835115432739 -0.024763364344835281 --0.54848825931549072 -0.16009749472141266 -0.45965880155563354 --0.22128288447856903 -0.39519235491752625 -0.080590277910232544 -0.069959983229637146 -0.23978035151958466 -0.018908809870481491 +-1.1080906391143799 +-0.01533349696546793 +-0.18556530773639679 +0.40893539786338806 +0.15768122673034668 +0.39419001340866089 +0.11278381198644638 +0.28445544838905334 +-0.30416479706764221 +-0.42205196619033813 +0.43736302852630615 +0.22826288640499115 +-0.60995930433273315 +-0.20736441016197205 +-0.34316417574882507 +-1.2164905071258545 +0.66723376512527466 +-2.0089113712310791 +0.41686707735061646 +-1.1843874454498291 +0.10682716220617294 +0.11370781809091568 +-0.27807244658470154 +0.12425804138183594 +-0.56233030557632446 +0.5025712251663208 +0.035966847091913223 +-0.62168687582015991 +0.17319253087043762 +0.52195858955383301 +-0.24019244313240051 +0.44380751252174377 +0.09905262291431427 +0.066769838333129883 +0.25897279381752014 +0.0079076271504163742 diff --git a/results/search/topology_18/resume.obj b/results/search/topology_18/resume.obj index 8a616e57..0fd6bda9 100644 --- a/results/search/topology_18/resume.obj +++ b/results/search/topology_18/resume.obj @@ -1,47 +1,47 @@ -v 0.68808641348690591 0.18735189746464054 -0.038615884767232544 -v 0.99107546937257684 0.46553082758411612 -0.27943558998328011 -v -49.819731645082527 95.674055613376311 -50.90969185127107 -v -2.1684025188238611 1.582428290932572 -0.34593954791762954 -v 5.3779981786369282 -0.8230368199647824 -0.35534613207235755 -v 2.5911208835498512 0.83702676065671477 -0.84700650348940643 -v 0.69447532696837233 -0.11763486218995951 0.15574648704354654 -v 1.6003109504458517 -0.27785035045656253 0.072156415181767741 -v 0.75598804758914262 -0.34395699299687021 0.28829612622597145 -v -0.50138198125786482 2.0117134997912669 -0.96436824680818256 -v 5.0084020198638886 1.8852576243050443 -2.0169177008686554 -v 3.2973685195150475 -0.19745356684549331 -3.6996450313595286 -v 0.85173040369871222 -0.7749068611077442 -0.80372657448793883 -v 1.0114782355392298 2.1444715867456945 0.65203641580998528 -v 0.99696362912305114 2.146793934894307 0.67250533115639621 -v 0.39779276952597098 -0.11574005504281927 0.17123891538760294 -v 1.120235268450811 2.713774359490468 0.83356934407554828 -v -5.6059374622482219 6.2337500441089881 11.713983595881642 -v 0.37601875364758347 -0.51038350364161866 -0.025315709743741643 -v 0.49990667232946584 -0.073798532330077299 0.060502527013547136 -v 8.030538195847873 -3.4330067308269432 -4.8831357554602306 -v -4.6724337137483936 2.5349409819732713 1.0512541725450693 -v -0.58937541941261584 -0.38252613080144199 0.15861625113339878 -v 0.22194337697384792 -0.23082979115046406 -0.76158758386084813 -v -0.0041000330495373398 0.45089185786358554 -1.2405031637532 -v -2.7782785287666703 2.1338798665673502 -0.3300924675931321 -v -0.038815626083811339 -0.33527904304597661 -0.409268932695874 -v 0.23145705652278706 2.6753053861595411 0.83552117627932543 -v 1.4314773919302759 1.8650416527179847 0.58426083486987246 -v 0.76289700841893981 2.2007959620441473 0.16314831278652184 -v 0.43936449105620751 2.3434734619857163 -0.1366604141763017 -v 2.8460453382374129 1.0150357885361359 0.79798275715179501 -v 1.5924917366904825 1.7903300114446938 0.71549950068020096 -v 0.77058405744527625 0.40955668696714226 0.27576703038236217 -v -0.23764210585775669 -0.40438092988248187 0.13564150876729963 -v 1.1427657920550784 1.6139623809911323 0.53990458310157519 -v 0.73429321727789953 2.4374923757629769 0.09434960203490883 -v 0.38678925593700947 -0.72797461757191739 -0.41233116005074666 -v 0.53375487447409564 -0.066950624504106784 -0.16112199840448327 -v -824.85373823219993 -124.6213583439494 -258.46439463757861 -v 37.456569650652668 18.171113937315848 40.339421349397398 -v 5.2970261927697333 1.7772631915154193 4.2718061291363414 -v 9.0251494924207947 4.1058138654201395 8.5876929452536643 -v 1.5979770222230276 2.3755804553673174 0.90495020541013593 +v 0.514735129396656 0.16564254403843462 -0.016919645332053451 +v 1.1662940663566503 0.90122309008214618 -0.47670209583351586 +v -0.42215788726711184 1.8387247464706713 -0.87187921283847103 +v -1.8295903031790168 1.0007878314725829 -0.29564120814467088 +v 17.50603815322054 -0.89506714721212399 -0.7684308843311084 +v 2.9881876497495785 1.470693081026232 -0.93658730998214357 +v 0.54228005793453138 -0.058039625458551819 0.10509219278198736 +v 2.4272683242751594 0.01429180177280648 -0.083766966527389769 +v 0.58371765189693747 -0.18045693079387015 0.16978743021534065 +v -0.49669624940861579 1.9977389796103655 -0.95428124831491812 +v 4.1161601227633788 2.0666614282911167 -1.3564423301891158 +v 2.0941274447064346 1.5253969776121956 -1.3612326323291453 +v 1.2265053057232957 0.40471383649593806 -0.82561921274052086 +v 0.83864941248536518 2.1740712508989306 0.64626156498469789 +v 0.69891804281928671 1.6037961976540001 0.52092797656849399 +v 0.3408394364401382 0.070754808005522515 0.16085473397310435 +v 0.93009524679663635 2.6960282471976442 0.80903102783272918 +v -5.8360209951708661 6.2805442918037784 11.676082627626544 +v 0.32860453658459454 -0.27891081303560572 -0.012827792819111172 +v 0.43228687098277768 0.11971475286161554 0.066857773743679988 +v 28.711453497099129 -3.8795152908296635 -5.913415821396339 +v -16.705224255395148 2.5544427285161126 2.686467167599158 +v -6.6326074734163045 0.36658746053595298 1.0063670675327749 +v 0.19273975509396093 -0.00018456158604897215 -0.4652438319133293 +v -0.11021376892978239 1.7468975722609563 -0.91672395067060164 +v -3.3339424089959917 2.1091345828195585 -0.27809160637387431 +v -0.032433911494207407 -0.11919756396530781 -0.37754518343130938 +v -1.5966782754796376 2.6659382409593664 1.0506911410567041 +v 1.279211652769854 2.0872608186783546 0.58298170578600261 +v 0.39630212864555364 2.087878191822703 -0.079529749671795602 +v -0.36412929624360524 2.0496554964754168 -0.8265950662748196 +v 3.7479594398636613 1.8446719602001704 1.338758693734412 +v 1.6508795736752964 2.0999182424486076 0.92068686689277746 +v 0.60609775763114759 0.41538583953394193 0.22144083821643998 +v -0.14562660403405633 -0.18419060141763913 0.14801707370828154 +v 0.81138312749242858 1.1248362773556937 0.38371211756483498 +v 0.76943880938407039 2.5934264300770336 0.5436303485727354 +v 0.32249853409752149 -0.41801102246733945 -0.26352608859945142 +v 0.44709058932244733 0.12868723573670182 -0.045909645550199663 +v -33198.25934173818 -5020.0729203874653 -9727.3757291825259 +v 17274.762621622605 8818.1908991276814 22356.761312092036 +v 6.573885789735642 2.9639346190865181 5.9575942614186799 +v 7.4428590287131833 3.7178035131345082 7.3335234588290099 +v 1.4688674183299775 2.3496074824022015 0.96246965975800136 f 1 2 8 7 9 5 6 11 10 3 4 f 1 2 13 12 14 17 18 19 20 16 15 f 3 4 26 22 23 21 12 13 25 24 27 diff --git a/results/search/topology_18/resume.planes b/results/search/topology_18/resume.planes index 1c1ee7ec..f3831ffc 100644 --- a/results/search/topology_18/resume.planes +++ b/results/search/topology_18/resume.planes @@ -1,37 +1,37 @@ 36 -0.031581245362758636 -0.098476149141788483 -0.15348728001117706 -0.3278401792049408 --0.14189085364341736 -0.24857160449028015 --0.25405076146125793 --0.27323538064956665 --0.26903274655342102 -1.1612492799758911 -1.8372964859008789 --0.37877827882766724 -0.010481810197234154 --0.048563290387392044 -0.2066679447889328 -0.4895210862159729 --0.0136471102014184 --0.25047534704208374 --0.09288875013589859 -2.108555793762207 --0.73957210779190063 --0.0094131026417016983 --0.36976704001426697 -0.20763160288333893 -0.19559682905673981 --0.01281468104571104 --0.21717280149459839 -0.063299208879470825 -0.076883494853973389 --0.23934096097946167 -0.11327098309993744 --0.25054171681404114 -0.0095582045614719391 -0.65496796369552612 -0.21446208655834198 --0.68147921562194824 +0.0069407005794346333 +0.048846390098333359 +0.087982326745986938 +0.24858179688453674 +-0.10234369337558746 +0.18853190541267395 +-0.085267685353755951 +-0.10990509390830994 +-0.36808061599731445 +0.3340267539024353 +2.0182993412017822 +-0.44326683878898621 +0.018361423164606094 +-0.043426446616649628 +0.16663195192813873 +0.34728258848190308 +0.0053596543148159981 +-0.21229445934295654 +-0.096558623015880585 +2.0896990299224854 +-0.74941086769104004 +-0.0023459217045456171 +-0.20486646890640259 +0.11372750997543335 +0.17585104703903198 +-0.010059971362352371 +-0.17848257720470428 +0.040573980659246445 +0.057735249400138855 +-0.16827292740345001 +0.043690863996744156 +-0.083322323858737946 +-0.00089406035840511322 +0.80938446521759033 +0.74373233318328857 +-0.9186592698097229 diff --git a/results/search/topology_19/resume.obj b/results/search/topology_19/resume.obj index 3e14076b..9691a9fd 100644 --- a/results/search/topology_19/resume.obj +++ b/results/search/topology_19/resume.obj @@ -1,47 +1,47 @@ -v 0.62063723950513194 -0.72695792644310242 1.9577788855921074 -v -3.48919794623728 1.5098474469989736 7.9523070790872294 -v 0.82621683777211086 -0.86173038151254411 1.5227265936080818 -v -0.99071862651561415 -0.24092612503364716 1.9983376776087516 -v -0.1753063788657358 -0.80906266595089626 0.074391681852994843 -v -1.028117402941674 -0.98259850882513056 -2.4490632584142364 -v -0.071882595998991772 -0.9238267896484077 -0.42192275904931287 -v -2.4902415027752154 -0.72628068116680478 -3.5034507516768962 -v -1.3079390193561211 -0.52076903444475653 -0.21223244653301038 -v -0.47634549170787199 -0.82336934218868096 -0.53899947212993338 -v -0.99811148070970068 -0.57700324758312949 -0.00014753538186393356 -v -3.4667261239885878 0.33467365624874912 9.9817590398166693 -v -4.9476316702446974 20.752722298595732 -22.635966589938221 -v 0.8647054346144103 -0.56375496353793331 1.0768248698516152 -v 0.82526965740718461 0.55085445990121518 -0.80411367483538343 -v 3.1943295147698518 -3.2142376804605348 0.13056699284461923 -v 2.3925747332349006 -2.3915917695331443 0.61499750043401413 -v -0.25560412937571458 0.79578107694983202 1.3812788129358935 -v 0.60668466196687887 0.077610404713782027 0.56486757041484137 -v 2.2256561455278097 -1.9376583845904232 0.21460572206402989 -v 0.25848163835191634 -2.6373067728782824 1.8934563666504214 -v 1.4164568696918078 0.31934061470192088 0.88013226354477603 -v 1.6672938533155421 0.83230626306947686 0.61131635543328589 -v 0.69035167660279095 1.2575774404676046 2.5955132908645289 -v 1.0548374450580618 1.1842297743493584 1.8882314564068983 -v -3.0486394983355272 -11.140832104377683 4.764453491724721 -v 0.62745130663858084 -3.739965585926067 0.77970045442461888 -v 1.3982158881798614 -1.6660293873186107 0.14619762891954255 -v -0.059797014872033726 0.10410523510830867 -2.049078689109133 -v -0.097062060648174325 0.96712598194089006 -3.5203875232235271 -v -0.032687142900066246 -1.6868306317973203 1.187853919988759 -v -0.44165306933590881 0.25931307846489998 -0.94161244404890831 -v -0.46997641068212226 -0.25908735539317457 0.12763128040195582 -v -0.041526096909866132 -0.77909346366579879 -0.47071501405411065 -v 3.2046639042946299 1.7178792824127809 2.5975404928366435 -v 0.26969118037259215 -1.4956572909879544 1.2560568210021312 -v 1.905074083097031 1.1101151000630634 0.69190388770281808 -v 13.641202093091264 4.0752504412746013 2.8294861231916895 -v 8.4828141436799509 0.72840490839587135 1.6231814497898003 -v 2.0941845697529593 -2.4888499539682485 0.59342534826409898 -v -36.3453422912254 -10.424554440168471 -15.023331348097376 -v -2.7579344535631791 -0.2882615749365155 -1.1874932562874423 -v 7.9928417691336353 0.596551769507635 1.4494424578720557 -v -3.6718987104445864 -2.1890102794186368 -0.64748009077843338 +v 0.62935573853034954 -0.70675487156290628 1.9423787979032161 +v -3.5608130153485225 1.5177787174582045 8.0613591824380251 +v 0.83926569332996104 -0.83814553900132882 1.5142866075760169 +v -1.0741863898063873 -0.20443805389463479 1.9802741708444342 +v -0.28728348035723861 -0.74015672266181942 0.11245447503535891 +v -1.0501684226519505 -0.94172612921811782 -2.4692753082447902 +v -0.08911814353070438 -0.88933530782502734 -0.44485506309512485 +v -2.6241876686345655 -0.66672845427558802 -3.5865797804750246 +v -1.3547833149117521 -0.48120975138022309 -0.20391573506653682 +v -0.37759536844724756 -0.81914353426708975 -0.52904045195920957 +v -1.0074192300181777 -0.54217281253525551 0.040982785614460865 +v -3.8712322233869698 0.58340121551186908 10.549039293193619 +v -2.5482035360465058 12.558398802958898 -14.846450255947403 +v 0.86573864506459497 -0.63465126977731223 1.2314683392400543 +v 0.81551477888500057 0.54630575320935826 -0.83156818730446558 +v 3.0579408680261122 -3.0067284345528975 0.26639993119005462 +v 2.4267659227321037 -2.3705719972241153 0.63089306617816687 +v -0.25269174585802001 0.78783606415468932 1.3309287835674342 +v 0.54279063906114589 0.12332432209487754 0.61752897262336282 +v 2.2782187544616108 -1.9928620803584238 0.29470950385437689 +v 0.17436275204186619 -2.7742551773114039 1.9892967497327667 +v 1.4227112165700304 0.31085963777251557 0.89151355485965889 +v 1.7018699495038592 0.86167882026020326 0.59393475265497186 +v 0.69758989574664709 1.2159791701059381 2.5393331816134359 +v 1.0760363415630101 1.1446893682027015 1.8295457161575397 +v -2.4509166286751314 -9.6214332931425393 4.1634162506950849 +v 0.67836803167367343 -3.5990869599173405 0.77065663786183991 +v 1.3700352981991046 -1.7956920386034056 0.19763225078776114 +v -0.082901909697821796 0.12295352660907272 -2.1050217985266548 +v -0.094541131043177642 1.0153578242405423 -3.6061806389450357 +v -0.14035517501015349 -1.662903791310256 1.1857349378363646 +v -0.47479874041311015 0.27623928000703374 -0.978595941502585 +v -0.54774538923789928 -0.22418358761647081 0.14534998601111088 +v -0.092914556071859999 -0.79511740405437115 -0.48262743312387557 +v 3.1915999889550606 1.6542056773695306 2.5558397701742295 +v 0.39844318818594165 -1.307690548934755 1.3178760763776349 +v 1.8707694333159497 1.0566182671908555 0.64260761334827576 +v 14.733149469359319 3.9632195513444328 2.7709140516760837 +v 8.373025546362511 0.50692892275586354 1.574662868483621 +v 2.1097794688841236 -2.4693685989778946 0.60752626976723845 +v -23.965425101839227 -6.234915812526034 -10.790309653523867 +v -2.8354181896518718 -0.23143175711937178 -1.2422427661580091 +v 7.6956138244829084 0.33993453242438376 1.3376696911508281 +v -3.656260385009769 -2.3757449968266378 -0.56058248448748405 f 1 2 8 6 7 10 9 11 5 4 3 f 1 2 18 19 14 15 17 16 20 13 12 f 1 3 24 25 22 23 28 27 26 21 12 diff --git a/results/search/topology_19/resume.planes b/results/search/topology_19/resume.planes index 009269a8..37f74c9d 100644 --- a/results/search/topology_19/resume.planes +++ b/results/search/topology_19/resume.planes @@ -1,37 +1,37 @@ 36 --0.2326032966375351 --0.78220540285110474 -0.1324007511138916 -0.52565830945968628 -0.38459396362304688 -0.21688231825828552 -1.369035005569458 --0.28428322076797485 -0.73499029874801636 --0.42501267790794373 --0.2164672464132309 --0.11620783060789108 -0.45587614178657532 --0.33059012889862061 --0.20545950531959534 -0.14637058973312378 --0.80662131309509277 -1.612031102180481 --0.1086818054318428 -0.50856351852416992 --0.108747199177742 --0.0069229584187269211 --0.22223816812038422 -0.18818376958370209 --0.089748464524745941 -0.086954563856124878 -0.15416640043258667 -0.76390331983566284 --1.0928257703781128 --1.3249703645706177 --0.031423483043909073 --0.038739487528800964 -0.22626397013664246 -0.12534938752651215 --0.24239286780357361 --0.64102709293365479 +-0.22062914073467255 +-0.75761580467224121 +0.12434563040733337 +0.51046532392501831 +0.38674286007881165 +0.20895856618881226 +1.3719501495361328 +-0.28467503190040588 +0.76009243726730347 +-0.46792185306549072 +-0.22780320048332214 +-0.13179571926593781 +0.44131937623023987 +-0.33220452070236206 +-0.20090968906879425 +0.12784342467784882 +-0.78769767284393311 +1.5961631536483765 +-0.10103464871644974 +0.52517002820968628 +-0.10661708563566208 +-0.012402988970279694 +-0.21726158261299133 +0.18854296207427979 +-0.12914286553859711 +0.11691827327013016 +0.21228094398975372 +0.73622918128967285 +-1.1225014925003052 +-1.3134505748748779 +-0.03262753039598465 +-0.031811382621526718 +0.24062827229499817 +0.12777279317378998 +-0.25593137741088867 +-0.65122723579406738 diff --git a/results/search/topology_2/resume.obj b/results/search/topology_2/resume.obj index 3385c7e1..1d22b6bb 100644 --- a/results/search/topology_2/resume.obj +++ b/results/search/topology_2/resume.obj @@ -1,47 +1,47 @@ -v -1.2405750629885866 -1.9335687273241078 0.21452002717024521 -v -0.97946889334286535 -0.84822665858683954 -0.093480381837472315 -v -0.3640508447375968 1.3098339723000556 0.310193900530779 -v -0.2541357227359814 0.82601566725659403 2.8367844196684615 -v -1.0844330077010116 -1.5713058670760411 0.84009355454337276 -v 0.51640888654326633 5.1587491985349638 -1.262356809882311 -v 321.3815555139301 1190.1508544827184 40.269813103995105 -v -0.85139450571556174 -0.53515268826301532 0.37465914610282247 -v 0.13459606381522499 2.6733415476586782 1.724607388858773 -v -0.67334040940169826 0.48718997130219499 -0.63228315359501841 -v -0.74903389936015174 -0.1495880705780035 0.36663190949249458 -v 0.38237864178920183 -2.6553797723279025 -1.6858930319728669 -v 0.31988381746726263 -2.3267454982791751 -1.6132789251003272 -v 0.69484533553591066 -3.5419588306387553 -2.0503753016497677 -v 1.7074588193265472 -14.763849493639032 -3.215882028703017 -v -1.1573922826862755 0.67628634813671318 0.11214711782918463 -v -2.8664196991506299 -4.970789487420876 2.1253779338519432 -v -0.78052806597349766 0.62503097197302759 -0.32936406491178294 -v -0.4206666973426722 -0.4727464241618895 -0.74898664585782382 -v -1.0275011083858412 -0.35146011358039925 -0.038129135123927238 -v -132.05667012571561 730.16252409653191 1177.3999793320445 -v -0.52507554252831024 2.4043704763742273 7.4804301096392498 -v 0.42187087508999482 -2.8704463621660192 -1.9401504113926744 -v -0.57199068233765726 2.3376196820837647 -1.299378476263696 -v -0.23031260222562755 0.62917775517409802 0.79224043750391926 -v -0.5810596773135176 2.5086024760502181 2.1859704230814918 -v 1.3002166583301169 -7.4309088656407791 -1.3150203247343608 -v 2.1231141511854292 -3.895866844870429 -2.353285772032871 -v -0.7497557016977201 -1.2212070530814345 1.4804957415462616 -v -1.0562411480231602 -1.2918038397648286 1.3047585144428067 -v -3.2633554631549124 -8.8324026025764386 -11.513347534261236 -v -3.4345311186870005 0.45971942051008341 3.7184407387146079 -v -0.92698594695126402 -1.452835770335543 1.0654170287118592 -v -4.2544369990989797 -1.3478704328130204 -0.91685775525245039 -v -0.2352742326470969 0.1439114448022292 -1.5536672628194972 -v -1.831332455462837 -0.78303169463306743 -1.3297737353569634 -v -0.0051250677123412247 -0.70930845554606337 -1.6714761139465009 -v -1.0477045547136146 -0.20594516188463638 0.69209612423439026 -v -0.37155968383304677 -0.14142658068211564 1.1317714280702853 -v -3.0016603812399807 -0.86679252440147103 -0.3082059012291104 -v -2.4344517009792637 -1.0174433410042778 -1.0784722097640222 -v -0.20879813713433787 -0.023591822172097349 1.3684790829391982 -v -0.53954392419547748 0.35871636201145546 1.6828340506545678 -v -0.96003133307728405 -2.0105576482697094 1.45260193556515 +v -1.2370663182497774 -1.9027833059563488 0.2297173545599015 +v -0.98692147101075089 -0.86300426847613465 -0.065353084455248567 +v -0.36927291765368592 1.3052309863620726 0.33313987881307749 +v -0.26038684446519145 0.8259422246674708 2.8360757140604083 +v -1.0940954208459543 -1.5710786942028692 0.80252143888754968 +v 0.51440699774841225 5.1682233890444405 -1.2451628532167665 +v 324.94119674036801 1203.3138422308161 40.748045803469914 +v -0.85627597716468107 -0.5436453170387332 0.41218431234672559 +v 0.14035116005085466 2.6995474022027843 1.7764514330608081 +v -0.67627266627226046 0.4898892528087968 -0.60578121596003975 +v -0.76179441008242688 -0.16249344953597294 0.33343336447766503 +v 0.38052021682377191 -2.6775809720515156 -1.6643069292522046 +v 0.30748427151840929 -2.2935152711083147 -1.5794448663343226 +v 0.69527690498423422 -3.5086159813840503 -2.031576866050846 +v 1.7271563049340777 -14.944011046385958 -3.2192584017824615 +v -1.1598441770594308 0.67634900139124599 0.13438677254436138 +v -2.8932596591829656 -5.0513101019461333 2.1763465943731384 +v -0.76947415707150102 0.62325675679407178 -0.32294696870275619 +v -0.42333087877296577 -0.4638893656780172 -0.72651470986519517 +v -1.014547798926015 -0.34572449754115803 -0.033951856897886712 +v -130.55224907151384 721.80271619143616 1163.923825685079 +v -0.52660061582213613 2.3767658389133723 7.3987230279512133 +v 0.42125294834595772 -2.8994030952136489 -1.9265508366748709 +v -0.57133257901061185 2.3019770477246704 -1.2866014618018922 +v -0.21719480712823105 0.53123453033308865 0.88129088970256153 +v -0.59121835862821348 2.531145102654345 2.2480736263047123 +v 1.3027988829155146 -7.4756829103548927 -1.27662759016875 +v 1.9462513827415504 -3.8185925254087616 -2.2968863203598042 +v -0.71074362949325953 -1.1850738657895077 1.5114011888002099 +v -1.057096047161258 -1.2648537369750901 1.3128044128570511 +v -3.2582181859662325 -8.5883256150237592 -11.147436883509469 +v -3.3672124356255972 0.4781297294517593 3.7257505501032946 +v -0.91778434142198417 -1.4384144813468474 1.0548413497565807 +v -4.2584249097562381 -1.3411038217112623 -0.89952013515401097 +v -0.23293865965199667 0.14248275805539068 -1.5382450233330358 +v -1.8131541532450133 -0.775259468605351 -1.3165739657852527 +v -0.0051602771151143551 -0.70194797226323991 -1.6548403180433149 +v -1.0488868014209627 -0.22064130164141191 0.7236395191718723 +v -0.34265689610661465 -0.15325191783896688 1.1828782001190004 +v -2.9879997693363589 -0.85324876859066412 -0.28229377467468852 +v -2.4528625115685334 -0.99538133452772792 -1.0090071015042386 +v -0.19182985222341298 -0.044057382599038949 1.4022292493116602 +v -0.55882198887488377 0.38014792502890571 1.7510342995174901 +v -0.95472428931202025 -2.0618666948823261 1.4876579111165122 f 1 2 8 10 9 7 6 3 4 11 5 f 1 2 12 13 19 20 18 16 17 15 14 f 3 4 22 21 26 27 13 12 23 24 25 diff --git a/results/search/topology_2/resume.planes b/results/search/topology_2/resume.planes index 9b29a207..4f08016b 100644 --- a/results/search/topology_2/resume.planes +++ b/results/search/topology_2/resume.planes @@ -1,37 +1,37 @@ 36 --0.68833905458450317 -0.18409927189350128 -0.065198324620723724 --0.61367547512054443 --0.00098321400582790375 --0.52370572090148926 --0.11102345585823059 --0.021279636770486832 -0.0007550407899543643 --0.18956230580806732 --1.5971126556396484 -0.97218507528305054 --0.29417082667350769 -0.13374492526054382 --1.5433220863342285 --0.5080292820930481 -0.410785973072052 -0.72098219394683838 --0.27338618040084839 --0.66209524869918823 -0.5175776481628418 --0.4828752875328064 -0.71192097663879395 --0.49481916427612305 -0.55755084753036499 --0.17685689032077789 -0.80170971155166626 --0.68059515953063965 --0.14643910527229309 --0.26902604103088379 --0.62127870321273804 -0.24775800108909607 -0.30385911464691162 -0.021719099953770638 --0.10204413533210754 -0.035951584577560425 +-0.69404417276382446 +0.18562513589859009 +0.06573871523141861 +-0.60411256551742554 +-0.00096789258532226086 +-0.5155448317527771 +-0.11706175655126572 +-0.022436982020735741 +0.00079610577085986733 +-0.18768064677715302 +-1.5812592506408691 +0.96253478527069092 +-0.29125073552131653 +0.13241735100746155 +-1.5280025005340576 +-0.51731663942337036 +0.41829565167427063 +0.73416244983673096 +-0.28262034058570862 +-0.68445873260498047 +0.53505986928939819 +-0.47808203101158142 +0.70485407114028931 +-0.48990738391876221 +0.58027338981628418 +-0.18406453728675842 +0.83438277244567871 +-0.673839271068573 +-0.14498549699783325 +-0.26635560393333435 +-0.61511170864105225 +0.24529865384101868 +0.30084291100502014 +0.021444840356707573 +-0.10075558722019196 +0.035497605800628662 diff --git a/results/search/topology_21/resume.obj b/results/search/topology_21/resume.obj index d6df2a54..424abfa7 100644 --- a/results/search/topology_21/resume.obj +++ b/results/search/topology_21/resume.obj @@ -1,47 +1,47 @@ -v -0.41425986467815867 1.7214007512710192 -1.0563250058446023 -v -0.088424891789022034 1.0623434924980057 -0.6621802804550081 -v 0.010343210040527861 0.92237130851544125 -0.54437182945387197 -v 0.9304178201297284 0.72029312349439512 0.52237994183286895 -v 1.6093457740804706 -9.4326942723372014 1.5882152171725823 -v 0.99289226103702855 -0.21233113039213072 0.6204114514673692 -v 2.2707164900723842 1.232901365323668 2.0538676553475592 -v -0.54629407276065822 0.2905989993485793 -1.1687429208469036 -v -0.28419042300226321 -0.9284070555370193 -0.83250132041112446 -v -0.45986891152684861 -0.17455467537895078 -1.0561111531805585 -v -0.60092292007458403 0.6823635497487226 -1.2426596132767895 -v 0.18841685838321084 0.33848482115475265 1.0249175079248916 -v 0.085324047890120241 0.62699561646720425 0.24028568808035339 -v -2.1283532526839575 4.5906009255230353 1.8026758634578279 -v -2.9270244684344742 5.9807965401151169 2.6949884916204305 -v -3.4325747769946298 6.9188749075973481 2.7804731775660492 -v 1.1202310652729148 -0.96676318952806806 -2.6290362139576482 -v 1.6950898424808152 -1.6323403421523102 -6.0355061306749045 -v -0.343239971135607 1.3144678344246814 1.2017547793807004 -v -0.4146069764304316 1.8780437388545044 -2.3433084417580146 -v -1.6552626402460611 -0.60998518749791564 2.2730314352692975 -v -2.7483726019968038 -0.90588034507511006 2.3464767045571717 -v 0.63144322686537602 0.0072267424728657374 2.1238398126841411 -v 4.9746189239109446 1.485327427348559 1.0754279613069473 -v 5.6505438854888217 1.383217237249478 1.7431704402907278 -v 0.61224971572904729 0.029173744170049962 2.0572288790124262 -v -0.47442888042226478 1.370971299341869 -1.9623042400391508 -v 1.2018769409585093 -8.3324417415418441 1.6738271211653806 -v 0.89242399462093069 1.8430752725054012 0.38241387491663731 -v 2.499143468714109 -0.012452661587138607 -0.31576660104417298 -v 0.5102635340043018 0.9167092446259254 0.74710806419946962 -v -4.7046682452656157 0.70101224949511753 3.9191610495318039 -v -1.9964251722695987 1.0817529541324318 2.2328088779623378 -v 6.8762605583962966 1.7241021050667744 1.7139225170438217 -v 5.5544788038806878 1.370046548828906 1.80113934932453 -v -2.3632620531935817 2.3877115191454048 2.4759850551666531 -v 1.6583380959734144 1.7052724611882955 2.1251772144217442 -v 1.2888549470174517 -0.63213038403156152 -1.4504107866094218 -v 0.33054036825499777 -0.72490201683968947 -1.7507187979362917 -v 0.56006883347230374 1.5444104758159234 0.070776159318983956 -v -0.50897017015043533 0.20995989533624074 -1.2226448430455124 -v -0.82071867978452007 -0.83299087426152263 0.18577580132542376 -v -1.5800136350106502 1.3169643671054754 0.99791360555162834 -v -0.39719759866606452 1.9688593561879937 -2.4202196976466883 +v -0.54009715873455733 1.7886753333026595 -1.4224820110223861 +v -0.15446523937143222 1.0550775347483399 -0.84792957882072129 +v -0.10044683704964791 0.9252293502035478 -0.76520108155665401 +v 0.89908650434893755 0.73489995713342038 0.58208799329795968 +v 1.152007248865754 -9.799675013683899 1.7927156527676229 +v 0.90946034070638715 0.32055308254183273 0.63027190997823002 +v 1.9642994566379675 1.3315037863670425 1.9516047038146971 +v -0.57081394024328624 0.33290663666895298 -1.342663600020412 +v -0.37468865350038144 -0.89358698635105827 -0.97967848717546446 +v -0.486312982497346 -0.26235109927720329 -1.1807288683173813 +v -0.60563226875302978 0.63782316556309926 -1.4143348260886872 +v 0.21859299516584388 0.3733797237355746 1.0337533636311431 +v 0.081906196699606568 0.62078922865523478 0.23241901662196965 +v -2.0977066631895847 4.869350126888957 1.8289711995077549 +v -2.5165411614865922 5.6906645351756016 2.3684609562744474 +v -2.8550310618315136 6.346025675500262 2.4063635991137775 +v 1.1296994133425071 -1.4609971151088676 -2.4020092989810631 +v 3.1668698017303059 -5.557854876878987 -9.8623321258374119 +v -0.28218159576739754 1.3453835292014984 1.2053559373337994 +v -0.45056607109003821 1.5993376310669527 -2.1903668035926489 +v -1.4950512984165474 -0.53620516176208366 2.1688991836277403 +v -3.1546693109247643 -1.0635740984253161 2.2827823869583539 +v 0.60091752488982819 0.12852100559135668 2.0286969283330678 +v 4.3543922741842866 1.6408165988945489 0.88034142524029835 +v 4.7972474875795168 1.5631506180189922 1.458704697820751 +v 0.3012397487208805 0.41597643884179808 0.98255060614022693 +v -0.57940638937860989 1.1616078696208902 -1.8154704313336076 +v 1.0065561858809304 -9.2912597590117798 1.8134631453576602 +v 0.9061657173276878 2.104867175256572 0.40187904752550851 +v 2.0384725940890043 0.14692430328032149 -0.017825505960334387 +v 0.49047392217476371 0.94649497122298776 0.79829777788060707 +v -5.9500244663313167 0.44823685434011867 4.6875876564367349 +v -1.7908670188776983 1.1065361299075545 2.1325091416811541 +v 6.3876166816609876 1.9751066442670682 1.6373881757677144 +v 2.1353048028443085 1.342475314146006 1.9391835303321263 +v -2.0660276586723527 2.3517431632504273 2.2695026793646154 +v 1.3527018684314023 1.6409828548515351 2.0028870239413683 +v 1.5617509233243243 -1.1030244905625666 -1.9443485879096021 +v 0.7624509051324897 -1.1258471156321337 -2.1571214147752 +v 0.44372732597137193 1.6092676317646799 -0.098086120811972544 +v -0.54349212195191743 0.26436361609437231 -1.3895482829837857 +v -0.72957590698240626 -0.55039707922957226 -0.29608538893403397 +v -1.4592767299798659 1.3336323056536832 0.9238320974052443 +v -0.37816641898485398 1.979144377906247 -2.4706797401630261 f 1 2 11 8 3 4 10 9 6 5 7 f 1 2 20 17 18 16 15 14 12 13 19 f 3 4 13 12 21 27 22 23 26 25 24 diff --git a/results/search/topology_21/resume.planes b/results/search/topology_21/resume.planes index 4ef2bd83..c15ef93e 100644 --- a/results/search/topology_21/resume.planes +++ b/results/search/topology_21/resume.planes @@ -1,37 +1,37 @@ 36 -0.26254004240036011 --0.0063413321040570736 --0.22764234244823456 -0.33769962191581726 -0.1800052672624588 -0.021817952394485474 --0.14043910801410675 -0.57596451044082642 -0.23023568093776703 -0.51684343814849854 -0.12463260442018509 -0.85817801952362061 -0.17021310329437256 --0.10463372617959976 -2.1548411846160889 -0.18105292320251465 -0.59230071306228638 --0.76073348522186279 -0.16070809960365295 --0.56604057550430298 -0.13771679997444153 -0.036581303924322128 -0.32760441303253174 --0.21793888509273529 --0.041506979614496231 -1.4915741682052612 -0.27010491490364075 --0.74932253360748291 --0.34618464112281799 --0.57838362455368042 --0.78035449981689453 --0.16437005996704102 --0.29444628953933716 --0.25445267558097839 -0.15378285944461823 -0.1239873468875885 +0.26564455032348633 +-0.016538795083761215 +-0.19941407442092896 +0.31588444113731384 +0.16335169970989227 +-0.0034473373088985682 +-0.16415359079837799 +0.55996876955032349 +0.20088896155357361 +0.52554303407669067 +0.11423946171998978 +0.88491213321685791 +0.15212181210517883 +-0.040485069155693054 +2.0585381984710693 +0.21376185119152069 +0.6847224235534668 +-0.87646067142486572 +0.031851503998041153 +-0.16636243462562561 +0.10005601495504379 +0.048879209905862808 +0.31672888994216919 +-0.21759234368801117 +-0.078310184180736542 +1.5194499492645264 +0.26400300860404968 +-0.8304518461227417 +-0.37851876020431519 +-0.72735995054244995 +-0.81726419925689697 +-0.15277093648910522 +-0.25291335582733154 +-0.22729022800922394 +0.11462544649839401 +0.096605546772480011 diff --git a/results/search/topology_22/resume.obj b/results/search/topology_22/resume.obj index 99f742e3..47729edb 100644 --- a/results/search/topology_22/resume.obj +++ b/results/search/topology_22/resume.obj @@ -1,47 +1,47 @@ -v -0.39831120522755359 2.8283544565392971 -1.709190222993072 -v 0.2996923563049762 0.72508433376542181 0.49875809510241315 -v -3.5005207050905218 2.9108421535192117 -3.3921937014163714 -v -0.97470712545985372 1.3219634515642449 -0.68663504946268228 -v -2.6157168776809776 2.0630049830557442 -2.1888651144323266 -v -0.89245807903286878 0.27585785124689005 0.27399295087080539 -v -0.16304049910937235 -0.045222110942877071 0.93443397098691683 -v -0.13055310629531988 -0.0030947798104637493 0.91433552703220133 -v -0.067175715374154454 0.0087103358231847769 0.93688154165777493 -v -3.6760957222765955 -1.4737876942687478 0.36402797754707406 -v -0.65929170058800812 -0.6470745258720253 1.2048943721029994 -v -0.52329824886265786 2.4405847039518802 -2.2664847219219966 -v 0.28833369780973628 0.39068038717580461 0.38473578595908109 -v 0.27949907530631496 -0.66515723126159931 0.12747732307808052 -v 1.1869584230618493 -4.3770104877685796 2.7909189114835424 -v 0.19237720347586207 -0.015610994846624185 -0.06612056719320164 -v 0.68754182034047628 -1.5842967700187673 1.4839685986326265 -v 0.67976226971821896 -0.60834088572023537 1.6611445429877993 -v 0.40607465319160374 -0.65291891211052222 0.61125663642729056 -v 0.37802161105208704 -0.87688134833021292 0.45716573928998616 -v 16.668747459850959 12.247196049755722 19.906469271154222 -v 5.0441448621954326 7.1489600773156123 6.8321720617144441 -v 1.3324971025106505 1.1208296646420333 -2.8497099829824135 -v 2.638881907699147 6.7917078133915689 5.0000960516565121 -v 2.175202186741144 3.8517395321602259 1.0534866116875903 -v 1.3676606190983889 3.9739850432521666 0.74150713497330856 -v 165.45542404936103 -85.612785215396755 -16.902767244218808 -v -3.1196218220617906 2.8494933713131116 -3.2496564343228242 -v 0.055213036848479002 -0.38590279324771665 -0.035998724309298215 -v 0.75319688966352127 1.5675596988407967 1.1363298289929522 -v 8069.7841762731769 -5766.5134681656991 6888.3386364108283 -v 0.11384199580378972 -0.1248105055077406 0.085280706023978761 -v 1.4949800472864636 0.5438183831235035 1.6534472657371071 -v -0.32538069958282301 -0.54441895692610121 0.5122938196877389 -v -0.24038156372600419 -0.48567489199259439 0.36652671188278707 -v -0.46231572285118872 -0.4529816122108184 0.56126632549848132 -v -0.18150548208743286 -0.65357249448827881 0.47390613512243812 -v -0.02386343085654228 -2.148808888384802 1.8058995371358859 -v 0.18208268447235521 0.00019847967254898964 -0.0069694329413506062 -v -0.2142875556750356 -0.4738426022803009 0.31055138945253014 -v -0.019088549042260313 0.30462481960212906 1.1430452537314564 -v -0.24599185842199908 -0.65778932554657954 0.73637588006014254 -v 0.01338967931943579 0.35691780380627336 1.1850657925549299 -v -0.45625930791859548 -0.81503288745154545 1.3180416882394395 +v -0.38803396497729892 2.8430377160998463 -1.8129500222627386 +v 0.31837860697561299 0.73223744705387883 0.42537079452834176 +v -3.1066066195930659 2.770441672820672 -3.1919941898304001 +v -0.90251430694892942 1.2050886261867539 -0.64014255603950865 +v -2.3953374891111956 1.8604682533248345 -2.0111362183711594 +v -0.82595777545308136 0.17932737459860312 0.30599690969079285 +v -0.18176003865493379 -0.095838328425065844 0.89086832784492742 +v -0.14429695136297854 -0.047192178606790751 0.86781242455651897 +v -0.073866494083759712 -0.033927305773659176 0.89349008921995654 +v -3.3487125359155718 -1.5278563129602829 0.47384806879208696 +v -0.55515219104955971 -0.71705431625255911 1.2410406844351201 +v -0.48556410187253179 2.413781962259645 -2.2746535066376974 +v 0.34209219134539687 0.53166156271591802 0.47302899635219375 +v 0.33171092382845996 -0.70924111197371964 0.17068605638916517 +v 1.2311154419486747 -4.4294179638173743 2.8017437015361075 +v 0.20556408031173826 -0.046414755797911926 -0.16845499501691841 +v 0.73418101766947408 -1.6160831032927692 1.5085977274624289 +v 0.72673249557702924 -0.68165012102873113 1.6782356060357151 +v 0.44377776234349031 -0.65513720669267972 0.60817825740417297 +v 0.41458495364546993 -0.88733672944400133 0.44800950262296568 +v 12.28055332318058 15.052449001206073 16.083258750078336 +v 7.4269880778746096 11.466615593247193 10.281804568673556 +v 1.277187022022241 1.0627541973046366 -2.731307748337183 +v 3.7403312618279427 9.4743962817632497 6.5819243427668876 +v 2.4840504221706401 4.3428334667884743 1.0189621817961301 +v 1.5483623820954298 4.4452366076951417 0.66740130214162308 +v 66.469268587724926 -34.959780281398245 -6.1483902223969373 +v -3.0222488713914464 2.759081516743767 -3.162354906805211 +v 0.05368347677199993 -0.3805372428128091 -0.036069285544361514 +v 0.74250752058231517 1.5453785394950375 1.1204206947226463 +v 7505.0812976115694 -5363.049361485997 6406.3611314650188 +v 0.10901161253287087 -0.13414522644402188 0.078381152402031876 +v 1.4820127160583751 0.52476327807794609 1.6359544947104354 +v -0.319955461397682 -0.53668793185440977 0.50273435148217838 +v -0.235997985036007 -0.47866378585901115 0.3587536804407363 +v -0.45682700185032921 -0.44613317516143569 0.55252333715838553 +v -0.16762588462978931 -0.65287781872680717 0.46271256802586513 +v -0.010328708717346436 -2.1448644095462384 1.79181299809157 +v 0.17909352719020474 -0.0057633967366493523 -0.016358116840570591 +v -0.20430783807121158 -0.46429394577546584 0.29077386718240306 +v -0.020093117332694584 0.29796802434912095 1.1253234287255787 +v -0.24320849859514809 -0.64837957202169216 0.72544297597276475 +v 0.013513043317807763 0.3514679024677847 1.1686879037198132 +v -0.45064609354587265 -0.80350689281639753 1.2992805651411572 f 1 2 9 8 7 6 4 5 11 10 3 f 1 2 16 13 14 20 19 17 18 15 12 f 1 3 28 27 22 21 24 25 26 23 12 diff --git a/results/search/topology_22/resume.planes b/results/search/topology_22/resume.planes index 7f59e4cb..2dbc4f0b 100644 --- a/results/search/topology_22/resume.planes +++ b/results/search/topology_22/resume.planes @@ -1,37 +1,37 @@ 36 --0.24932076036930084 -0.42137381434440613 -0.480214923620224 -0.19481508433818817 -0.010856135748326778 --0.051245871931314468 -0.99736416339874268 -2.1679282188415527 --1.7321444749832153 -0.00081597774988040328 -0.00018778485537040979 --0.0007987265707924962 --0.12267826497554779 --0.11959416419267654 --0.11973204463720322 -0.12085603177547455 --0.0737605020403862 -0.040747646242380142 --0.54223638772964478 --0.1038736030459404 -0.54836845397949219 -0.15100765228271484 --0.05265389010310173 -0.040353942662477493 --0.14823397994041443 --0.4191058874130249 -0.63613355159759521 -0.0064409170299768448 --0.023765970021486282 --0.027440903708338737 --0.37317308783531189 -0.27120417356491089 -1.0722060203552246 --0.16340270638465881 --0.29015982151031494 --0.1375085711479187 +-0.23251065611839294 +0.38665255904197693 +0.43800458312034607 +0.23061595857143402 +0.012851144187152386 +-0.060663249343633652 +0.97235310077667236 +1.9512991905212402 +-2.0195648670196533 +0.0007047101971693337 +0.00016217443044297397 +-0.00068980763899162412 +-0.12142699956893921 +-0.11837438493967056 +-0.1185108870267868 +0.11916305124759674 +-0.072727277874946594 +0.040176857262849808 +-0.53464090824127197 +-0.10241856426000595 +0.54068702459335327 +0.14814150333404541 +-0.051654510200023651 +0.039588015526533127 +-0.15032348036766052 +-0.41250497102737427 +0.62541425228118896 +0.0082418667152523994 +-0.030411146581172943 +-0.035113558173179626 +-0.36794576048851013 +0.2674051821231842 +1.0571869611740112 +-0.16128560900688171 +-0.28640037775039673 +-0.13572694361209869 diff --git a/results/search/topology_23/resume.obj b/results/search/topology_23/resume.obj index 036dff8c..6283fd70 100644 --- a/results/search/topology_23/resume.obj +++ b/results/search/topology_23/resume.obj @@ -1,47 +1,47 @@ -v 1.2190026242547287 -0.38226357296553509 -1.3296261177903022 -v 0.91196944928861146 -0.16700128098336239 -0.93377466021363298 -v -1.688800727483492 1.1995199046394365 -0.59260638498402129 -v -1.7936603603604397 1.2308649843070316 -0.73542602589514616 -v 1.3607316125763969 0.55822834967602597 5.3426925423160849 -v 1.8528138206276803 -0.62677360327665788 -0.82926605629854444 -v -2.1491827064428932 1.4423878720192771 -0.52582088828232543 -v 1.2787385909838156 0.2732282653382575 3.1906401931294175 -v -1.279481364472546 0.89223196526414728 -1.2542381676967118 -v -0.96431343146399806 0.85667157873092226 -0.43833323594384127 -v 0.97092347303555759 0.61917677293649709 4.4454067468603027 -v 27.852883246270704 29.784986029170213 38.307102805570224 -v -0.50766120068760667 0.90586302299301191 1.0139929538400063 -v 8.1182760830358927 6.3824293851824097 7.3477557046397282 -v -0.41542652570017019 0.85399370977304134 0.91445919316881008 -v 1.4510875373639462 0.23996337232215201 -0.43994849270491304 -v -0.88499433775593261 -0.35388244180427469 -0.80826691241634063 -v 0.1159738556165513 -0.26369364462196032 -0.89924769235744828 -v -1.3346758940662369 -0.098680331955565664 -0.31948825866491726 -v 13.95866754659812 15.343296628515219 19.592286070034273 -v 19.614215148374907 20.555282551592057 27.503560510320437 -v -0.26485404384380901 0.80084553940006531 1.3458566534566154 -v -1.4312446610627114 1.2008443634404331 -0.24460994829525717 -v -2.1021263210721326 -3.6567133735280262 -0.9777091471833097 -v -1.9275908512054554 1.7084197142282389 -0.93346614242763959 -v 4.7955952538174103 10.803637605975901 7.8269599993497962 -v -1.6157513551149134 -3.0754867568458448 -0.34121326353254294 -v 4.3668143775511492 -0.67755312864088513 -8.7902069860123504 -v 1.8818127576533459 0.080807355019442806 1.8594170420450755 -v 0.38247562718552414 -1.8427196491001501 -1.0640723590010437 -v 1.6099792484783333 -0.88705825585881692 -1.1015237139090488 -v 0.12627722515954268 -2.0207665609836321 -0.97217700252342798 -v 1.8779261658570865 1.1783350010639313 6.1806970972797437 -v -1.2044471081550387 1.1278224078502703 -0.6467469071677624 -v -1.5902223404216713 1.2594979121959671 -1.0798515639177473 -v -1.0930675174338966 1.088855164115532 -0.37952770572662758 -v -1.3207971380732344 0.3269058562403182 -0.70549998328863051 -v -1.5048850919438201 -0.053408522519077094 -0.7206700752770473 -v 1.9305331591245116 -1.1884923724585916 -1.1596316257034447 -v -1.1445756529136943 -2.1437338143922386 1.1315734263824835 -v 0.25425589712157687 -2.1904508920234331 -1.0282306023447001 -v -0.6843718710921638 1.526152256299192 -0.52010722993958103 -v 10974.666330824934 12405.406471636765 12718.808455329523 -v -0.93308190990555895 1.8588489436406157 -0.41105903047182563 +v 1.2487342142845301 -0.38969053081244759 -1.3556092985752806 +v 0.75854687595677184 -0.046018054555796051 -0.723620974080049 +v -1.7168953545747483 1.223802437561784 -0.60226313723998559 +v -1.8251493755657406 1.2561621799575557 -0.74970596141375401 +v 1.3865327451659217 0.57108798006926798 5.4373453909432019 +v 1.8679137041503096 -0.58814400810858369 -0.60039295458544562 +v -2.091985731169701 1.4216760301960294 -0.54785050037063465 +v 1.300840254338121 0.26448635765266587 3.1305607653181857 +v -1.3007701323235559 0.91081138993344113 -1.2788102170807867 +v -0.97912356066041084 0.87452003474747664 -0.44613337452249369 +v 0.97010076969393311 0.63619915680098682 4.4787750860941724 +v 28.321948730572721 30.286589503683381 38.952227154597182 +v -0.51621129805700317 0.92111880178864558 1.0310697352292491 +v 7.9635836453504201 6.1443391450388143 7.0143340810733648 +v -0.43272667774054308 0.85798995506438636 0.91647135626967269 +v 1.2310441098168872 0.31065641741799033 -0.29081878370032077 +v -0.89989914198653165 -0.35984231912997761 -0.82187930987466418 +v 0.11792683935142326 -0.26813461237205743 -0.91439234237627476 +v -1.3571539449473322 -0.10034228720662161 -0.32486898508773443 +v 14.000804490571689 15.4072067582707 19.671532834027737 +v 19.944564840214529 20.901483726560343 27.966783881203064 +v -0.27972767033611928 0.80398528341050923 1.3548209649168865 +v -1.4559408689096389 1.2073526408143218 -0.24903951147835335 +v -2.1342344471418153 -3.6795859776940603 -0.99110534535390926 +v -1.8951928919780017 1.5059157103105747 -0.8532777928830183 +v 4.2551439352522253 9.8261752833927378 7.160715963649686 +v -1.6413812157549752 -3.09061759455453 -0.34613166752715635 +v 4.4185556959230707 -0.69587012964927031 -8.8980510574027569 +v 1.9420529213657589 0.05989671822971325 1.7151509932188596 +v 0.388917040125068 -1.8737540648655773 -1.0819929463128319 +v 1.410558736876365 -1.0783644996180544 -1.1131634133346675 +v 0.12840397682427085 -2.0547994958020945 -0.98854999259505949 +v 1.9095537463182504 1.1981804527143751 6.2847904767928169 +v -1.2279928863228478 1.1339952092446188 -0.65844146057716879 +v -1.7472618642630833 1.30907024538835 -0.91746559790537208 +v -1.1141809453938563 1.0941769833829105 -0.38538661295131227 +v -1.3430414087419895 0.33241127789275382 -0.71738165709772905 +v -1.5302297528017401 -0.054308325960437116 -0.73280724374818718 +v 1.6885792960402439 -1.3398022174232367 -1.1635611592673971 +v -1.1662580769261357 -2.1539554171884743 1.1322661805933327 +v 0.23857490088390584 -2.2008728954112913 -1.0368039373784375 +v -0.79199130828078146 1.3220471030571015 -0.50079673939786862 +v 10572.988104048598 11951.364893745691 12253.448268314911 +v -1.0070594469612624 1.609741363572732 -0.4064990227755802 f 1 2 6 5 11 8 7 3 4 9 10 f 1 2 16 15 20 14 12 13 19 17 18 f 3 4 25 26 13 12 21 22 23 27 24 diff --git a/results/search/topology_23/resume.planes b/results/search/topology_23/resume.planes index 77871ede..b396da43 100644 --- a/results/search/topology_23/resume.planes +++ b/results/search/topology_23/resume.planes @@ -1,37 +1,37 @@ 36 -0.1722596287727356 -0.34075024724006653 --0.051689233630895615 --0.032175261527299881 -0.2143426388502121 --0.14151459932327271 --0.8279765248298645 -0.021882602944970131 -0.61271142959594727 -0.87474793195724487 --1.1124703884124756 -0.28333428502082825 -0.21667350828647614 -0.64906841516494751 -0.0043387617915868759 --0.083959318697452545 -0.074538029730319977 --0.84982907772064209 --0.93593955039978027 --0.50929534435272217 --0.59516000747680664 --0.85738623142242432 -0.40110257267951965 -0.34867298603057861 --0.93232578039169312 -0.21088680624961853 -0.4193551242351532 --0.28318330645561218 -0.028792932629585266 --0.73371082544326782 -0.76064449548721313 --1.2045345306396484 -0.51869791746139526 -0.32433784008026123 -0.49120223522186279 --0.75888717174530029 +0.17682425677776337 +0.3497796356678009 +-0.0530589260160923 +-0.032717142254114151 +0.21795250475406647 +-0.14389792084693909 +-0.84192091226577759 +0.02225114032626152 +0.62303042411804199 +0.8894801139831543 +-1.1312061548233032 +0.28810608386993408 +0.21614326536655426 +0.64748001098632812 +0.0043281442485749722 +-0.085373319685459137 +0.075793363153934479 +-0.86414146423339844 +-0.95170223712921143 +-0.51787269115447998 +-0.60518348217010498 +-0.8718259334564209 +0.407857745885849 +0.35454514622688293 +-0.94802761077880859 +0.21443848311901093 +0.42641770839691162 +-0.28795251250267029 +0.029277851805090904 +-0.74606770277023315 +0.759380042552948 +-1.2025319337844849 +0.51783567667007446 +0.27165791392326355 +0.41141968965530396 +-0.63562643527984619 diff --git a/results/search/topology_24/resume.obj b/results/search/topology_24/resume.obj index 0176f20f..71d04ebc 100644 --- a/results/search/topology_24/resume.obj +++ b/results/search/topology_24/resume.obj @@ -1,47 +1,47 @@ -v 2.0549793599443316 0.56924052405811831 0.73409085784008754 -v 2.0211403840929529 1.0618807831509613 1.379358097880895 -v 1.9366879767530945 0.063809352038147943 0.060475465320590727 -v -1.3167753965153777 0.0054307589355598613 -0.26282849618224091 -v -0.94075670288180513 -0.29209641769245553 -0.62558920750047797 -v 0.26485408027903218 0.018296854462897118 -0.12605951176142605 -v -8.6549837228095114 10.94769329061352 13.570396151484331 -v -1.1071513674009885 0.1253292299159697 -0.089275192183452604 -v 1.053653053658522 -0.047034286505401236 -0.15219905671534284 -v 1.4524200291322842 0.0099523334901704778 -0.047043520627640723 -v 1.1630749607564146 -0.089828900271790607 -0.20018322513513753 -v 2.0495100117565084 0.068901821208417091 0.1547876287456964 -v -0.34193142069176569 -1.3231484565915057 3.0791626716200264 -v -2.1555803419209485 -0.27211021559559651 7.7801968541979765 -v 0.58991554396383039 -1.3372296894944928 1.2837050763992273 -v 0.69879517429872418 -1.4082633558862541 0.99213138802124812 -v 0.9029929363839847 -0.60407661186293682 1.5502121944099057 -v 1.8436314219050667 -0.49610229841841241 -0.11816247947552741 -v 1.6406958482270599 -0.7867711808889104 -0.073374612988237026 -v 2.0252110596238384 0.061917047914960825 0.19294051906750553 -v -8.2507531945433872 6.4105883305620273 -0.63308093739081905 -v -30.343374834527822 25.990738776208282 4.5474151029641519 -v -0.5310995603701435 1.598650447596683 -0.11050845041460899 -v -21016.366606373125 31845.396149464144 20118.666728083968 -v -1.2872511668326589 2.0262362290021185 -0.21197578241904447 -v -1.0771332217462395 2.0329546446483127 -0.039508828756939174 -v 1.600790506180167 0.080865127818571941 -0.18328809905335147 -v 2.6959679574584499 0.11167894484919012 0.71081335606787943 -v 1.0322265677596389 -2.3947387277443375 1.6326356207725223 -v 1.9773845406363326 -2.9040643520213414 -1.1124230568887321 -v -0.96254498953385659 -0.34913817474688269 -0.033690512552958435 -v -0.60751712285329629 -0.88125819768781066 1.5543624338613007 -v 5.3441789920517744 -5.9831191784531494 -1.1706672080132354 -v 0.34610826452667337 -0.15337927692101644 -0.10701276439362971 -v 0.36176242988494955 -0.14368601083720062 -0.18863028798530582 -v 0.29507502041186257 -0.41558507564959069 0.61893378978327573 -v -1.4013217413825962 1.9067507104003434 -0.3071326578186333 -v 1.7068138385547442 -0.16823647243540679 2.2154016394087059 -v -0.047201199811588969 -0.29049959232929123 0.77481604475445709 -v 1.7803416569063348 -0.67504020949666721 2.2690440816552813 -v 3.3260358923997875 0.43080733802764437 -0.2917448347440581 -v 3.8525648885262469 -3.535071475538373 0.19798616049987619 -v 1.6159347730426117 0.018638335809343178 0.018796423121325567 -v 4.1088134124912656 -2.9891709842979322 -0.34026682199328478 +v 1.7882319239758255 1.1564048321565379 1.5365557929128273 +v 1.7821821170162473 1.2101172337096933 1.6114148670407482 +v 1.3980093108789389 0.047182101157709079 -0.044178530720656473 +v -2.0379319090461565 0.010023259319381285 -0.32841159306075884 +v -1.6708372945980974 -0.34819501188459373 -0.80558319061912331 +v 0.27058218189876798 -0.050553472869705511 -0.25731532921880318 +v -7.8732001187578717 9.6546628704920341 12.792459757019186 +v -1.7478523132670851 0.087195169852616078 -0.20066935464021074 +v 0.64728078683526169 -0.063806005020316206 -0.25043324898093033 +v 1.2542629725882211 0.031239888973059904 -0.076231295867151161 +v 0.79448350050347616 -0.11837915692207847 -0.31696099148793189 +v 1.7761694700025696 0.052925139792917922 0.25892298002313119 +v -0.60872856653927176 -1.3493721577573246 3.1587285220680257 +v -1.9828664034985706 0.0076074816216925014 7.3813617667808895 +v 0.41733692861746613 -1.1763966201437057 1.4038935368519041 +v 0.73283067484707975 -1.3822261593458964 0.55901911675532812 +v 0.83011527105735783 -0.51829192115725431 1.3916165189568912 +v 1.611260313187129 -0.63081969997028942 -0.23219445534548286 +v 1.3888708841915542 -0.94935281141877081 -0.18311316056833332 +v 1.8373971434509961 0.070525115908614808 0.16278661884329182 +v -8.3146527429778434 6.0785299556187624 -0.72798337447615213 +v -18.101923666223801 15.566546044398489 2.5022930143834556 +v -0.29313614594545706 1.0527493703939605 -0.2144936492601458 +v -20525.915662102572 31102.044299197722 19649.252440373468 +v -1.033827291955445 1.474860913555246 -0.3101299382300835 +v -0.85073712918632127 1.4444667142339842 -0.20150631281327808 +v 1.0445750015536019 0.065128318500438029 -0.30066852204151212 +v 2.521483976232497 0.10224378609071115 0.89997586970170551 +v 1.0732768530933483 -2.981335425459557 2.3933181086589652 +v 3.0339060101884487 -4.9039132470580649 -1.5739682936223516 +v -1.612648496548013 -0.40010881627688033 -0.14309055628597711 +v -1.0803501924458339 -0.90409450052255946 1.5064036742950662 +v 6.0910346260846406 -7.8618421446948759 -1.7148628031559503 +v 0.30057084010148366 -0.11391430973753391 -0.25028571411638684 +v 0.27882433487569186 -0.12738000260374044 -0.13690417270976546 +v 0.25763049697679902 -0.21379179638011542 0.11974637887980194 +v -1.2138612043543091 1.439891671767707 -0.39398635532608822 +v 1.9200387699780193 -0.06795573206802831 1.8148250342203651 +v -0.41828573917010747 -0.29946685233040732 0.64686673265017225 +v 1.9110851690806407 -0.505228556953914 1.9647995967797032 +v 3.3666350118281922 0.53612589019804091 -0.44664348525366199 +v 3.993527950762199 -4.1857028735680233 0.1364364495374808 +v 1.6770033479340674 0.053582617595197786 0.094339776037068335 +v 4.2945002630862446 -3.544526023036493 -0.49575868513580107 f 1 2 7 6 8 4 5 9 11 10 3 f 1 2 14 13 17 15 16 19 18 20 12 f 1 3 27 21 22 26 25 23 24 28 12 diff --git a/results/search/topology_24/resume.planes b/results/search/topology_24/resume.planes index 505684b5..9c7c9279 100644 --- a/results/search/topology_24/resume.planes +++ b/results/search/topology_24/resume.planes @@ -1,37 +1,37 @@ 36 -0.0047152657061815262 -0.081828698515892029 --0.062226235866546631 -1.2611603736877441 --0.77870422601699829 -0.6606525182723999 -0.40901270508766174 -0.59951573610305786 --0.52165764570236206 --0.61004847288131714 --0.6654200553894043 --0.086583465337753296 -0.18438263237476349 -0.092409320175647736 -0.046339366585016251 --0.40076187252998352 --0.0064377719536423683 -0.48850235342979431 --0.0041229822672903538 --0.014372934587299824 --0.11196033656597137 -0.029921829700469971 --0.20709080994129181 --0.01885606162250042 -0.043440934270620346 --0.23787827789783478 --0.076504044234752655 -0.17170406877994537 -0.19630627334117889 --0.45232820510864258 -2.0950369834899902 -0.45876774191856384 -1.4626796245574951 -0.19970603287220001 -0.18904460966587067 -0.28680551052093506 +0.0046610604040324688 +0.096666149795055389 +-0.068982586264610291 +1.1349719762802124 +-0.70078903436660767 +0.59454947710037231 +0.31905162334442139 +0.46765434741973877 +-0.40692099928855896 +-0.97893273830413818 +-1.0120810270309448 +0.0066747050732374191 +0.13738888502120972 +0.06885693222284317 +0.034528851509094238 +-0.2896043062210083 +0.19175373017787933 +0.54179650545120239 +-0.0091839609667658806 +-0.032015815377235413 +-0.24939262866973877 +0.025288986042141914 +-0.17502675950527191 +-0.015936540439724922 +0.035715878009796143 +-0.19557671248912811 +-0.062899447977542877 +0.16099967062473297 +0.18656955659389496 +-0.42345711588859558 +2.0660641193389893 +0.45242348313331604 +1.4424526691436768 +0.057400651276111603 +0.054336261004209518 +0.082435242831707001 diff --git a/results/search/topology_25/resume.obj b/results/search/topology_25/resume.obj index 76e15273..193bbb4f 100644 --- a/results/search/topology_25/resume.obj +++ b/results/search/topology_25/resume.obj @@ -1,47 +1,47 @@ -v -0.0074550265672108313 -0.17103729565541317 -0.45208019352706758 -v 0.21905988756826786 -0.2815547464088774 0.43607645129573169 -v -0.13660335817686123 -0.059433292494261193 -0.6812123019017482 -v -0.25856353117003023 0.19846528299576674 -0.027430115512758174 -v -0.56224419882563492 1.0961129558107274 3.0581927263739321 -v 0.61437231887644006 -0.17033271576849099 3.7211774377803062 -v 0.48515952837443577 -0.57392925990048949 0.55201197785135414 -v -0.30239807352609976 0.23780261585213341 -0.096883970083057686 -v -0.40193124207911729 0.3662189815750922 -0.031524885458999563 -v -0.48553964527645338 0.50290841195991753 0.18781077782517447 -v -0.59787532264338195 0.632633300331233 0.17479749790589222 -v 0.023526258338711612 -0.34705818766435131 0.012108456980027216 -v 0.11935604586542778 0.454432362969385 -1.4188292785848113 -v -1.6281444429945335 -4.0056174587505664 3.0447431820986441 -v 2.2855529917861905 1.2272971750861408 3.1775363211051353 -v 1.7186574800248731 0.267803137400487 3.5875006196492665 -v -0.023715162642115251 -0.3476856759173208 -0.12269422115283679 -v 2.1749948388396634 0.36635353569911844 4.692659566592229 -v 17.049724190964501 7.5983036525354297 32.154932486006558 -v -0.34426941830861685 -1.3391886619616868 1.0653462405221767 -v -0.58894153964210616 -0.5321421859772163 0.88415116628478985 -v -2.2860331726024383 -1.3275662298524924 4.0752858950999258 -v -6.2619809533064323 -0.17775828197728372 3.289266662529577 -v 0.20532672387216439 -0.49785807037428381 0.31737089083333742 -v 0.41832035678665097 -0.60116567721833847 0.4738474605494275 -v -1.0578311962477231 0.35413236955192201 -1.2668156998348741 -v 0.91991461017644938 -0.52422700589994486 -0.035676799577993301 -v -14.35375227568662 0.25337711911152172 6.9236542144175939 -v -1.3337565301010073 -0.68575707614392167 3.8373424289426268 -v -4.9557218963003349 -14.794000105396899 10.163819853536284 -v -0.30001451827436015 0.40746998328350414 0.26774640073653205 -v -0.29332901440827824 0.70371432494316088 0.41855220361611029 -v -0.27426249298924804 0.33568666262989616 0.11927973410186199 -v -0.7347666654652617 -0.81711748322036271 1.3090670027773079 -v -3.429322763838333 6.6767596602290959 0.28346454805750765 -v 0.51984190467511815 0.93278671672188251 3.2025967998766456 -v 0.34474104344848377 1.1939695706523485 3.0701446697438528 -v 0.11577690119268942 -0.3136832837379811 0.320144241359969 -v -0.41239888012161097 0.45075166703275521 0.17971324727288099 -v -0.5918798815732923 0.61936342900968899 0.087587945570288095 -v 5830.3217548941711 4181.861059145067 22356.613184202921 -v 0.30418309105751262 -0.64094731618162704 0.39823348036067791 -v -0.66738213676242653 0.62901505971480254 0.19822398357518345 -v -0.43705843564039376 -0.79211553873918672 0.82895349906435989 +v 0.033205198380794658 -0.42247798790785612 -0.52164476129084858 +v 0.33045855161109833 -0.67905939656389269 0.81291360011907698 +v -0.16173959115810427 -0.23376626623840208 -0.93344120845783018 +v -0.2500771888396669 -0.12297941035117366 -0.54702658419435446 +v -1.6847431545554765 1.5689175918162275 3.2944885662140977 +v 0.41457007867742546 -0.66332375416097789 3.1933930185933566 +v 0.54228427060522488 -0.89944513419961269 0.91273636194287744 +v -0.20888535309913031 -0.16094235898879675 -0.41666793175969863 +v -1.029412117557496 0.72699266573838528 -0.026804797912776457 +v -1.3435244277423963 1.0903659485450075 0.65424377282046187 +v -1.4539580839275423 1.2075752413493923 0.65464192025662349 +v 0.11994307256637358 -0.71622243308607914 0.24794148033208674 +v 0.37851806973808416 1.0562772609688396 -2.0574910504227995 +v -19.561700736672012 -54.338477445416252 34.529326200113402 +v 1.5223858291986021 0.47894514881171324 2.3658792019189394 +v 1.3634085155784161 0.094508230863217038 2.5582086068971788 +v -0.0090978673095939381 -0.65432506586240036 -0.24544979544455783 +v 2.5450408023963349 0.30284462680425323 5.7298748622606057 +v 21.804156096628265 10.984092159238253 44.769565937547284 +v -0.27148114251334482 -2.1759958928188885 1.6129277815035947 +v -0.91767099792877638 -0.89393245006300548 1.3603762033004272 +v -2.6339216029762555 -1.7551712275758897 4.7860638274007927 +v -33.721147789738779 0.6501016443199138 16.509883957307927 +v 0.27326464801577427 -0.89981040325503581 0.6701151917706728 +v 0.40361546677043114 -0.96053535054717876 0.76250066540825212 +v -2.0722851644976923 0.67595549153171997 -2.3425365532863909 +v 1.4630726061456898 -0.77216029540726749 -0.39270577582322519 +v -20.521477671439406 0.031334723476322261 10.40685413365871 +v -1.7838573560779603 -1.2146437056841077 4.2631852392530671 +v -6.7694407187680561 -17.677826429206021 11.765171630099699 +v -0.45373418667206133 0.58390826353072156 0.6281689056099522 +v -0.41422715260239285 1.4026790475743651 1.0022215460960942 +v -0.29319345044393263 0.28379224713046031 -0.13629341210906698 +v -1.2217616351494143 -1.2898750264191992 2.2010057062032784 +v -344.7445736434878 605.04418451452921 -59.82692924284131 +v 0.17400860596595405 0.82649563073689403 2.7932342702954127 +v -0.14233501439122406 1.6833088720575566 2.6348193479143363 +v 0.20671820170613414 -0.67516104464670645 0.70299654642745091 +v -0.61611524062802658 0.64133810678961178 0.50555219393024009 +v -1.3415700816124996 1.1338010505191105 0.055255148669250409 +v 4287.0558725612382 4486.386669703641 26146.504184901649 +v 0.32546436970601977 -0.98208722355845635 0.78437070161323097 +v -1.579119772584699 1.152017832298236 0.39746110196598189 +v -0.73540899428105866 -1.2347158784265695 1.4116086819827274 f 1 2 7 6 5 11 10 9 8 4 3 f 1 2 15 16 18 19 13 14 20 17 12 f 1 3 21 22 23 28 26 27 25 24 12 diff --git a/results/search/topology_25/resume.planes b/results/search/topology_25/resume.planes index 638f25c4..7a114bf8 100644 --- a/results/search/topology_25/resume.planes +++ b/results/search/topology_25/resume.planes @@ -1,37 +1,37 @@ 36 --0.049002859741449356 --0.041701022535562515 -0.0073086069896817207 -0.16549910604953766 --0.12231943756341934 --0.057429563254117966 --0.062090218067169189 --0.28601181507110596 --0.10431194305419922 --0.27228477597236633 -0.040042616426944733 --0.066589199006557465 --0.1869971752166748 -1.3724477291107178 -2.9535439014434814 --0.16057749092578888 --0.080566704273223877 -0.1653846949338913 --0.11078508943319321 --0.054454587399959564 -0.039077967405319214 -0.04555409774184227 -0.06773984432220459 --0.024850565940141678 --0.068174168467521667 -0.64442181587219238 --0.1027425155043602 --0.15999782085418701 --0.071618393063545227 --0.10294079780578613 -0.19224701821804047 --0.70807182788848877 -0.082335419952869415 -0.068560674786567688 -0.07380472868680954 -0.14389149844646454 +-0.181629478931427 +-0.17115548253059387 +0.0075490567833185196 +0.3126119077205658 +-0.18157510459423065 +-0.10453925281763077 +-0.10895626991987228 +-0.51323246955871582 +-0.1836162656545639 +-0.34371721744537354 +0.060392603278160095 +-0.095891453325748444 +0.99308514595031738 +0.82232969999313354 +2.4645836353302002 +-0.36164760589599609 +-0.16585798561573029 +0.40124645829200745 +-0.1469559371471405 +-0.048271041363477707 +0.032378930598497391 +0.063249379396438599 +0.11271656304597855 +-0.030968097969889641 +-0.17352254688739777 +1.2586809396743774 +-0.18745829164981842 +-0.31884375214576721 +-0.20218439400196075 +-0.2105693519115448 +0.32833075523376465 +-1.0605126619338989 +0.12818334996700287 +0.16730603575706482 +0.15645912289619446 +0.34598761796951294 diff --git a/results/search/topology_26/resume.obj b/results/search/topology_26/resume.obj index 6adfe920..dd19e957 100644 --- a/results/search/topology_26/resume.obj +++ b/results/search/topology_26/resume.obj @@ -1,47 +1,47 @@ -v 3.6203006671089097 0.63595688631957392 1.8946957222898297 -v 3.1376275254446946 1.2864050447276476 0.86949533613877739 -v 3.0583664123201082 0.32043657181341928 1.4582520258873168 -v 2.8465591448066072 -0.041937353368491422 1.4655559745064857 -v 2.3139018418624131 -0.28538468195087563 1.0125876054355891 -v -1.3676125075877701 15.78734970747526 -14.648866976649106 -v 1.5693715274358955 2.7397374229820461 -1.9956683907272319 -v 1.2720148750086684 0.69464758275407124 -0.90114376656861972 -v 0.71376139270327577 -0.41483927751830596 -0.77293342309462998 -v 2.4693832470791857 1.2594839082226597 0.10467845203757431 -v 1.27098788044964 1.6190101169685909 -1.554711174540687 -v -13.638955111142588 -0.53871947450511148 3.9226980091627417 -v -0.89266096485675794 0.55231898613553143 2.0710685522451313 -v 2.9690745524827946 0.8285516343080479 1.5960879841706854 -v 0.64681149829976292 1.5767345382727957 0.43404955311754989 -v -0.4024441465837667 1.9703641672296608 -0.17899517362017131 -v 1.1304564094372369 3.0157771791679568 -1.8491969331310898 -v -16.026502255122075 -1.0035350998875896 4.6819209469080931 -v 3.2222253491949258 3.7877771703289138 -3.0919264171693275 -v 0.3384813853835375 -0.29929872630884929 3.4075069047663011 -v 2.8939446943737379 0.71084856671582908 1.5097084378257706 -v 7.2138494122821495 -14.887410484562327 -0.20627286752956142 -v -14.97632081599931 11.953900582296932 4.9763185337034965 -v 0.76446737620943706 0.34301735306798048 1.8064053744060362 -v 3.1236627487248541 0.89555147271275837 1.4875874388225552 -v 0.067205378150169942 -0.3606140911711615 1.8638014900118947 -v -6.3269502570370175 -0.62148483427212842 2.8121933124596543 -v 0.9686190963348007 0.091818714399452189 0.18581702858927152 -v 0.78661115279776972 -0.39006445001936962 -0.096460833903958765 -v -1.4726748757740593 3.7263336813848955 0.14734866366290644 -v -4.7861253883209569 7.2049631693091767 -0.44461400032925785 -v -0.44573919622505204 0.86797069803033799 -0.32989350182558175 -v -3.2115567347397032 5.2574322503484474 -0.27259813280771389 -v 0.16051923456670936 -0.43031497867116519 -0.46720228117122031 -v 1.7410937454386637 0.29273531943819431 0.79407248625407179 -v -0.23700923866249402 0.92990304092055598 -0.39521886465673545 -v -0.010930526305292459 0.067588051874929347 -0.51176568870670691 -v 0.37952020466219716 0.89618731088097925 0.028181347287129732 -v 1.6370938566843904 -0.29672599135622008 1.6258874276253543 -v 0.11014938514031583 -0.31235753357639046 3.3233764866814877 -v 1.1086721022332024 0.82819447988383654 -0.8410551764574703 -v 0.17158157030615548 -0.032569262630114587 -0.57648873586131777 -v 0.8786560992781145 -0.35723120575841016 0.80650081580458211 -v 0.92569518701797859 1.4815138659711056 -1.3469462055606733 +v 0.96565225567668933 -0.0059051139619342025 -0.0060937388325226216 +v 1.1822500933722588 -0.18321278267189101 -0.26961851500426004 +v 0.39526863636141191 -0.23538381966235111 0.75225631081374633 +v 0.78524183247155455 -1.5881815320312116 0.37335891523938308 +v 0.75333733799210389 -1.3346361110854044 0.39114721682544396 +v 10.466374109449534 0.080126264633886168 -12.292252009430324 +v 2.0892337818897988 -2.3214538478688338 -1.2440478891068363 +v 4.0813780861878355 -3.8188820755075343 -3.6801291579734006 +v 126.65856844515392 -470.70817212733022 -118.9225934957837 +v 4.7945151464331417 1.4299867496915932 -5.0870681166095331 +v 4.836621226928937 1.4323058100586274 -5.1416980940599162 +v -6.5892017398194289 4.5141688395402042 2.2697950278968637 +v -16.603419183032653 10.232233616593946 4.1503262984512421 +v -0.99514000788254797 1.2641817039317185 0.98741424538320721 +v -2.1146626955446299 1.5818404858846942 -0.13860297292316981 +v -4.7913401114669245 2.832329028052357 -0.79061357085231887 +v 1.6009898524958368 -0.82510698491790246 -2.0219596443653778 +v -4.2727825484817368 2.9941299321287294 1.0146626020430136 +v 1.662664932503737 -0.85922652980507996 -2.0289847638604011 +v -1.0489539310083329 1.2759624082977454 0.918791733580543 +v 0.54053259752577354 -0.37056417012105086 0.71084960083345106 +v 0.1590042946287879 -2.8416049772882932 0.05522872565722925 +v -6.5162897491943852 4.2988734994994946 2.2091324015783846 +v -3.3560426853746463 1.4242961732251114 1.3262528628020323 +v 1.300357276050593 1.0642381156735425 1.0735825039596938 +v 1.4664299677297348 -4.8959457549583387 -0.54401148391567999 +v 1.3050397871504666 -3.3923017788619232 -0.13193753985173767 +v 0.70535221135829695 -0.29942964784392062 0.48793470127389604 +v 1.1531160338648572 -0.95690158126194069 0.54899099358700887 +v -646.63341183796979 397.14978747425454 345.61538198198559 +v 44.356506596980687 -52.23565504372035 -3.0877619120190989 +v 1.9278246918144955 1.3436508241400218 -2.0395448229854236 +v -89.676237738639486 479.24586628513947 -283.62392816920965 +v 6.6171459663293835 -6.7614163990996312 -0.44446809296371093 +v 0.081990994898503713 -1.4865743162611906 0.17774795951597769 +v -2.1379759824431916 1.4809609232358154 -0.15625323996608265 +v -2.1887008911906145 -0.50366005371186706 -0.38371306620513645 +v -3.9594907347050765 1.6869503304205091 -0.66903715843242662 +v 0.029053097354132293 -1.5071228072881109 0.25223313856568952 +v -2.8290328697076115 1.442199024776269 0.74692969476435722 +v 0.73911359219082962 -2.1807976601807977 -1.9392850402681947 +v 1.934109254663112 -0.66226706598425311 -2.2958590441047813 +v -0.62125302267883475 -2.8616360832612324 -0.21714121863624802 +v -3.1201575456390325 1.6975618193437449 -1.4236052080833326 f 1 2 10 11 7 6 8 9 5 4 3 f 1 2 19 17 15 16 13 12 18 20 14 f 3 4 22 27 26 13 12 23 24 25 21 diff --git a/results/search/topology_26/resume.planes b/results/search/topology_26/resume.planes index e6e59d61..a0e48ded 100644 --- a/results/search/topology_26/resume.planes +++ b/results/search/topology_26/resume.planes @@ -1,37 +1,37 @@ 36 -0.77665483951568604 --0.46730008721351624 --0.66213876008987427 -0.008153858594596386 -1.3259185552597046 -0.83740276098251343 -0.27920195460319519 --0.12595009803771973 -1.8477637767791748 -0.15512356162071228 -0.1013069748878479 --0.27296453714370728 -0.23163618147373199 -0.10518477857112885 --0.32891845703125 -0.91284942626953125 -1.0108215808868408 -0.83044487237930298 --0.15310858190059662 -0.023028401657938957 --0.46738576889038086 -0.19844633340835571 --0.26645365357398987 --0.1640097051858902 --0.13461698591709137 -0.721019446849823 -0.25343641638755798 -0.5025177001953125 -0.44047170877456665 -0.38707855343818665 --0.18899047374725342 --0.099056743085384369 --0.37964513897895813 -0.019179796800017357 --0.42150107026100159 -0.013371380977332592 +0.59887450933456421 +0.042846996337175369 +0.4634016752243042 +0.19832184910774231 +0.37717980146408081 +-0.090772442519664764 +0.025738062337040901 +-0.20874521136283875 +0.77178466320037842 +0.37177777290344238 +0.28723442554473877 +0.36654594540596008 +-0.08369811624288559 +-0.030530538409948349 +0.28504869341850281 +-0.37864533066749573 +-0.30756193399429321 +-0.35395795106887817 +-0.49559250473976135 +0.13643229007720947 +-1.0798720121383667 +0.67596340179443359 +-0.44816634058952332 +0.35678157210350037 +0.10500966757535934 +1.2635842561721802 +0.13457581400871277 +-1.1028016805648804 +-0.93252593278884888 +-1.2398000955581665 +-0.51767367124557495 +-0.71820658445358276 +-1.0565917491912842 +-0.076608680188655853 +-0.17838922142982483 +0.62093222141265869 diff --git a/results/search/topology_27/resume.obj b/results/search/topology_27/resume.obj index 65dc095f..6362cc72 100644 --- a/results/search/topology_27/resume.obj +++ b/results/search/topology_27/resume.obj @@ -1,47 +1,47 @@ -v 0.38448491246057026 0.44990912216031564 0.17839398408115717 -v 0.1778701784924086 1.7229643405611466 0.69324087224736042 -v -1.2189441362610471 1.9149257594291851 1.5362969204431207 -v -0.30664765757330981 0.64543170456122334 0.62704650799890194 -v -1.2842705087503037 1.8475446529348261 1.5517901321862217 -v 3.5300281985782629 -0.74515054795371027 -1.9592125964513478 -v -0.23803114737717534 1.2132674368008081 0.76657852052611819 -v -0.5792906694611627 1.0113928447158673 0.89456900212597956 -v 0.20461799071640985 -1.0781903042864849 -0.19978257189935619 -v -1.4511168729208932 0.44656301395391385 1.2061613486957625 -v 0.30777952825526256 -0.9411310466128503 -0.21464073471171558 -v 0.80361110384497059 -1.1573130585663496 -0.25169711779910658 -v 0.57062936294768651 -0.60077218154997103 -0.2248185575375245 -v -1.2050888845740308 4.2311748299484364 0.35178415046470191 -v 1.4577444783433025 1.6750968060180611 2.4412602404679706 -v 0.17801735623150353 0.58265515709834581 -0.024840808951350435 -v 1.3011006175726636 -0.091503764382192584 1.110839712003171 -v 1.3789777911744718 -1.549451714179737 0.30066869962223763 -v 1.3733384396562129 1.6648027806590162 2.3175079063407509 -v 8.1442706945899541 -4.6751107205303724 7.7310446626841376 -v -0.98891812724472949 0.35169109650840807 2.4056489312292384 -v -0.44507805656410865 0.74902349751509156 0.84370169548175489 -v -0.40529479068475732 0.74276176056282017 0.7606615492782296 -v -0.078469098731004661 -0.46444300207182992 1.099861924151917 -v 0.74078857683359456 -1.2734616146580147 -0.0091839483378013398 -v -0.47596815879453175 1.1697471173019056 0.54066780223346267 -v 3.4609093984555686 7.4406307924573403 -13.76623094516005 -v -0.58641559872732218 0.57013635524299311 2.4111324420198099 -v 1.5032622863217404 -0.64315615666584891 3.6441449734502092 -v -8.0205184010793911 -0.002302838956624911 0.53327042017571702 -v 12.305361661665433 14.724578971967887 -1.0862133274478423 -v 12.959805254416981 -9.5051216748104519 11.538187545312308 -v 7.8902808557929713 -4.5472743291613975 7.5132400247172342 -v 0.029340768414762283 0.50589634227792868 0.91912896793810872 -v 26.016521162180346 -14.704860615684549 17.02642863376655 -v 1.3560324110104423 -0.31720216188417755 2.0359996654965293 -v -0.39056417232832996 0.22950929994397426 3.9622008156855353 -v -0.51920426931813279 1.0784107893177972 0.77569486153152167 -v -0.27661595333403394 -0.34167386366295055 1.0642638952907353 -v -4.0912417990484036 -0.91670512538083937 0.94589622459174938 -v 0.26881143794103962 -1.642177280225031 0.85288164857693904 -v 0.20969428196568859 -1.4014606381430497 0.83044634354435864 -v 0.43551039037434808 -0.93806974026010581 0.28754441698435845 -v 3.143608275515783 9.3969011836268876 -21.148840293112677 +v -2.4700164846746082 -0.9539165912519636 4.734574356203753 +v -1.2472736150949619 -2.5005381400930911 1.0293901050213594 +v -0.45757897086438737 -0.97226712899987788 -0.88959993454825348 +v -0.18132536070010807 -1.4406445845830542 -1.7490190553021208 +v -0.43699581822089451 -1.8083128432927724 -1.1038877920338228 +v -2.6904046748789741 -1.0635522129672539 5.3295559882591839 +v -0.47577373035456111 -0.49256929992116483 -0.7488153841174634 +v -69.460440147439954 -68.62089628814114 179.14780682212862 +v -0.53256277738198554 0.94709263239581276 -0.32019720900055249 +v 1.5257641446037606 5.2630748272274266 -5.2596426510924861 +v 0.27915251215781384 3.4308446217708379 -2.1214917752334292 +v 14.043765188209127 -1.7821692499514215 -3.9363230552564703 +v -611.63905708240327 -664.33773334183547 -1106.5311821864361 +v -0.64100838934936555 -3.6507153649974242 -1.5982696744871694 +v -3.5823004347901142 -4.48308272294648 -2.0747317656173929 +v -1.9924456135369601 -1.024455411823572 4.3877403444541887 +v -2.4251996269871987 -3.0939390664922857 0.30225901518217224 +v -1.9828523133638432 -0.92711598777341586 4.5844408819455351 +v -3.7252123122844556 -7.5135800932193035 -8.2643417466200884 +v 6.8717835747950016 -2.8391357887848865 -3.0921786579392165 +v 2.4522813478531162 -0.5868076360579324 -0.53145508488516091 +v 0.16940725401402029 -0.42531347069665654 0.0083214539344876326 +v -0.60163132231766292 -0.25495306223224606 0.3955375108422523 +v 0.96749830207350351 -0.064334832334072931 0.55816526723820115 +v -0.78895008707058956 0.25303553409054508 1.3151412975984376 +v -2.3428037383007374 -1.8413510042335421 -2.2174243926645638 +v -2.3337816749612528 -1.7550119590212272 -2.0656732603845382 +v -1.6074679207259963 0.46454075672915485 -0.6203405781157163 +v -0.97521631594169655 0.22308400602755526 -0.62658919765060017 +v 0.89527137556418868 0.54002975790196439 -0.37849012315834429 +v -2.0862618273082063 -1.6812645297830533 -1.217562404548626 +v 3.2731583193046956 -0.19388391221289961 -0.35696044579798247 +v 2.1388515106219992 -0.29119223463163929 -0.48288327092625827 +v 0.034131789439246961 -0.22265827472155314 -0.45220253791161602 +v -2.5500916156452491 -1.143105219222174 5.4075989168073182 +v -0.94380612381157314 0.061708080926082438 -0.16997300396593232 +v -3.7875550324980853 -1.0837999224498287 6.6839803346044331 +v 3.9791393469417926 9.2313042466712005 -8.4121563391430332 +v 1.6778636611303708 4.0567955782574616 -4.2426568569456604 +v 0.12402107637559578 2.6262049424051686 -4.2999345095210302 +v -0.43809539623710742 0.58197911974095906 0.39223504324550079 +v -0.45345687949369656 0.69579172564852354 0.51270471516432981 +v -0.077933957319753333 1.7162343993604552 -0.0577343002105839 +v -0.5486506699487651 1.9645528945204003 -2.4648673482705368 f 1 2 7 4 3 5 8 10 11 9 6 f 1 2 17 13 12 18 20 19 15 14 16 f 3 4 26 27 13 12 25 23 22 24 21 diff --git a/results/search/topology_27/resume.planes b/results/search/topology_27/resume.planes index 67723f1a..13365f8c 100644 --- a/results/search/topology_27/resume.planes +++ b/results/search/topology_27/resume.planes @@ -1,37 +1,37 @@ 36 -0.10034411400556564 --0.056118462234735489 -0.17903278768062592 -0.26691663265228271 -0.12101639807224274 --0.1921185702085495 -0.17007745802402496 -0.067509263753890991 -0.07639089971780777 --0.62271827459335327 -1.0938947200775146 -2.1317665576934814 -0.25688797235488892 -0.52712053060531616 -0.083322979509830475 --0.058619968593120575 -0.18814155459403992 -0.9751477837562561 -0.21905067563056946 -0.067671552300453186 -0.14887320995330811 --0.15580007433891296 --0.87730491161346436 --0.46053355932235718 --0.40692517161369324 --0.058932587504386902 -0.43994072079658508 --0.62572842836380005 -1.1485564708709717 -0.3312421441078186 --0.31531015038490295 --0.48479267954826355 -0.083154462277889252 -0.65568792819976807 --0.51126372814178467 --0.16365766525268555 +-0.6275290846824646 +0.042138304561376572 +-0.22467944025993347 +0.43944838643074036 +-2.1494584083557129 +1.0422507524490356 +0.020944613963365555 +-0.3329799473285675 +0.18820424377918243 +0.049400147050619125 +0.14374424517154694 +-0.55607420206069946 +-0.1096443235874176 +-0.28469371795654297 +-0.093073271214962006 +0.2275790274143219 +-0.24027612805366516 +-0.17258398234844208 +-0.37829095125198364 +0.073453605175018311 +-0.11763173341751099 +0.14664225280284882 +0.48179516196250916 +0.22747007012367249 +0.0020348429679870605 +0.10809007287025452 +-0.10185762494802475 +-1.5554765462875366 +0.7129133939743042 +-0.31313541531562805 +0.53151261806488037 +0.48255807161331177 +0.49288493394851685 +-0.70786124467849731 +0.35854944586753845 +0.17541056871414185 diff --git a/results/search/topology_28/resume.obj b/results/search/topology_28/resume.obj index 7422cb2d..6c350ca4 100644 --- a/results/search/topology_28/resume.obj +++ b/results/search/topology_28/resume.obj @@ -1,47 +1,47 @@ -v 0.89393921399907317 0.46143480907161882 0.60768798240321209 -v 1.5059377961846323 -0.70105632915519212 2.5728083977501695 -v 1.0434496710613665 0.55564060291373818 -0.31263437093423957 -v 1.4154764212703126 0.040904285403367033 0.17126855168994798 -v 1.5359743712126146 0.067104875718735593 -0.38634555682742766 -v 18.019846008407942 -14.823661185762553 -8.2579213927309922 -v 2.9258708623835852 -2.2648473691117763 2.9355597818096912 -v -1.2635513900413808 4.7766373229407257 -7.1236792266052129 -v -7.1287356009429317 14.231125829808605 -19.712230778979215 -v -0.061400324392664837 1.3536587403219202 0.95571817812830173 -v -0.77417894028570844 3.5326242345864194 -4.3879663806037232 -v 1.1844414457979504 1.2850516903394025 0.45528133956548467 -v 5.0114384120221169 0.39356514420878452 7.7115900208965993 -v 1.7927724557845719 0.051136965409126406 2.4704747587744369 -v 0.7268464067393271 -2.0228200471062694 2.2816447137856217 -v 0.22650654832146308 -0.39414717358159768 0.13990072377854385 -v 0.097555406641834638 -0.58993227743491938 0.073572698752504384 -v 0.19658048970809258 -0.47442441749487202 0.15199708477822671 -v 0.11213893439267467 -0.67719169851784389 0.1673912964117501 -v 0.17340424971588048 -0.19542380368922962 -0.10781783615919727 -v 0.77736995457577518 -0.0462281564583416 0.21640853605255028 -v 0.85238031340559417 -0.02662965300612119 -0.3159703004204284 -v 2.4100072152170218 16.419904854845196 29.58839412083746 -v -0.11016369298694899 -2.1664179735269502 1.693537586974641 -v 0.66221591384975886 -0.4590173763941684 0.056415065402673104 -v 0.60212722332396329 -0.57376928965341145 0.2299441116577155 -v 0.52206867183182437 0.20110523049065143 2.8303284763527636 -v 0.60182845417817887 -0.60023891603232715 0.16466970403824649 -v 0.85222218725271404 -0.12232127796077842 5.0736610792264392 -v 9.7983090594870781 1.2459614553942153 -3.8240901588474592 -v 0.32234404495988478 -0.0967094893014986 -0.40780968804157058 -v 0.22761300221650554 -0.12089368085771833 0.23259940706423027 -v 0.19943301102217575 -0.12314111491239832 0.14442790316827492 -v -14.119391112390016 3.6676188539148793 3.704227184848615 -v 3.0260494166482843 -2.5147349399234735 2.621619943158521 -v -3.7100391456079382 0.65548471610584702 4.1137088457617121 -v -1.5398241907681272 -1.9959980005344315 1.2872130206379708 -v 0.75930733468592682 -0.46055842617929887 0.043280158801624002 -v 0.22116217654170017 -0.2760543952047666 0.19059488328962559 -v 0.18874564584529466 -0.050258613377969087 0.29037697589976785 -v -0.82500291298730755 1.4952146403574951 1.0751468977801151 -v 0.23114108126834632 -0.45918386013385437 0.12475122819184412 -v -1.3628361657577808 5.9237407466859633 -6.9889177720494846 -v -26581.819492510775 21192.534745467583 -26454.509225865138 +v 0.72055450607447813 0.5221297517046054 0.41379838035287764 +v 1.734827363561676 -0.74133308721382729 3.1473963890765115 +v 0.81494135510146493 0.5592457983735577 -0.20205857948793793 +v 1.3978931853820387 0.057032468735488631 0.10915499874821818 +v 1.4678350370026045 0.073493069910035694 -0.28507970577714631 +v 28.911416412552494 -18.973666147272315 -11.486719291261817 +v 2.9273828425755846 -1.8138636140727962 4.0380116686211505 +v -0.54046769653212157 2.168020434167143 -3.4070607257358141 +v -27.014318624686258 28.380114058308518 -36.694822666171952 +v -0.26949158104342369 1.1783066885900826 0.99208866344917124 +v -0.3895933028836151 1.888218794193161 -2.4836640583694432 +v 0.96898835565450436 1.2192505334455241 0.28916337955554006 +v 5.6004151412278222 0.47116055811046115 8.8097530974654124 +v 1.5502362561915772 0.040269331163511272 2.2146410322663597 +v 0.74225100196141847 -2.1443494290137064 2.5547923077091279 +v 0.17736353131696339 -0.28558876330958982 0.12098472854074172 +v 0.05666799706269382 -0.46883949195261354 0.058903098846909363 +v 0.13894857288063489 -0.38268339231382265 0.13181449065418335 +v 0.069956725475532167 -0.54835170938260636 0.14439214098897243 +v 0.13714784727983351 -0.13509064904311607 -0.066618727315652437 +v 0.56055457641670781 -0.057304790393669827 0.16838879605454526 +v 0.61468544805859215 -0.043385378462259074 -0.20319458905938564 +v 35.116772579807787 303.25587772580224 497.93354025533768 +v -0.3988605402751409 -2.2620013273377935 1.8666096229487392 +v 0.47476819284717114 -0.36264514586739283 0.050119589886670743 +v 0.44371888354045225 -0.42076471074025884 0.1381058574709102 +v 0.40231751161802648 0.31318105688309011 2.2810287788645267 +v 0.44360086004038568 -0.44019874772637146 0.090478686594950453 +v 0.91562788780770243 -0.10977252045673819 5.8304776136041516 +v 8.5639996163582506 1.0870717089501947 -3.3001158270271578 +v 0.26023373353353324 -0.089507474087897998 -0.30643722341024632 +v 0.19334521953149508 -0.10695660136282452 0.16675848854734923 +v 0.14591673764330601 -0.11073915572109692 0.018360962499660793 +v -17.639968915506877 4.1008080959918445 4.2690755016656139 +v 3.2113795881119835 -2.6369804266082042 2.8689475367693156 +v -4.2145729962130707 0.42340716533533362 4.4066593380803667 +v -1.8774979101204408 -2.1030572798311429 1.4645202110388267 +v 0.59046302481291546 -0.36448147218615068 0.034467938712024915 +v 0.17428399879306944 -0.21754139834663128 0.15019569243790309 +v 0.14607459696110098 -0.02104996403043612 0.23702780677510416 +v -0.74693673452465137 1.3403577288698856 0.92833178751156153 +v 0.18224241996417256 -0.36359162951623919 0.097683754633143161 +v -1.1978498958733572 5.1713451624467783 -6.0549044636011988 +v -23080.774122643972 18401.321710889515 -22970.205976004188 f 1 2 7 6 4 5 11 8 9 10 3 f 1 2 20 16 17 19 18 15 13 14 12 f 1 3 22 21 25 26 28 24 23 27 12 diff --git a/results/search/topology_28/resume.planes b/results/search/topology_28/resume.planes index 9fdc03b1..532104e1 100644 --- a/results/search/topology_28/resume.planes +++ b/results/search/topology_28/resume.planes @@ -1,37 +1,37 @@ 36 -0.74740946292877197 -0.72401010990142822 -0.19553092122077942 -0.21013316512107849 --0.096826061606407166 --0.12272053956985474 -0.7294456958770752 --0.23990254104137421 -0.093944855034351349 -0.019598780199885368 --0.14486202597618103 --0.0025714158546179533 --0.67576897144317627 --2.1337528228759766 -1.482770562171936 -0.036114629358053207 --0.11895319074392319 -0.28091052174568176 --0.025491390377283096 --0.23067030310630798 --0.16136550903320312 -0.22775308787822723 --0.076147265732288361 -0.24630367755889893 -0.16316567361354828 -0.016661286354064941 --0.021611159667372704 -0.36572146415710449 -1.3622466325759888 -0.72371041774749756 -0.042002703994512558 --0.27661445736885071 --0.26380446553230286 -0.026696575805544853 -0.022130582481622696 --0.0090964343398809433 +0.54352009296417236 +0.70899796485900879 +0.12602983415126801 +0.15340718626976013 +-0.070687621831893921 +-0.08959178626537323 +0.53356653451919556 +-0.17743954062461853 +0.07108113169670105 +0.017287110909819603 +-0.12777562439441681 +-0.0022681185510009527 +-0.67332541942596436 +-2.4010369777679443 +1.5269578695297241 +0.028459670022130013 +-0.093739517033100128 +0.22136789560317993 +-0.020247451961040497 +-0.18321815133094788 +-0.12817032635211945 +0.17947790026664734 +-0.060006860643625259 +0.19409637153148651 +0.12858060002326965 +0.013129711151123047 +-0.017030389979481697 +0.32371684908866882 +1.2057868242263794 +0.64058923721313477 +0.033099688589572906 +-0.21798247098922729 +-0.20788772404193878 +0.026541221886873245 +0.022001799196004868 +-0.0090434988960623741 diff --git a/results/search/topology_29/resume.obj b/results/search/topology_29/resume.obj index a6e06e48..48e24dff 100644 --- a/results/search/topology_29/resume.obj +++ b/results/search/topology_29/resume.obj @@ -1,47 +1,47 @@ -v 7.6873993832268148 -3.3407059292189771 9.7177149876403153 -v 3671.2551783652457 -5732.3980084761824 5362.6711819663433 -v -1.1500051879761781 0.23427083197600052 1.0118882042450188 -v -1.6624781677943199 -0.52970167128771151 0.90587573543149014 -v -1.3129838513865493 -0.46204314650804684 1.1643304872342495 -v -0.57612552078255441 2.3616113924630251 0.60836313182528889 -v 23.37467662032088 -14.181181230010703 27.016985888905769 -v -1.5974721848639593 0.21797828232145566 0.65210150602076522 -v 2.6658521689434882 7.6560355686068808 1.0895419423033152 -v 2.000405322945003 -9.661889125412328 7.6556710755589155 -v -0.65192234724243803 3.3079324183291527 0.1577044642353751 -v -0.030829438660957227 0.50545606338375981 -0.5818130789739413 -v -0.67197576472387721 -0.85119208374838973 -1.2380840936272453 -v 1.0056107730378028 9.6354394360596629 -0.34575349152725782 -v 1.0403012740884585 -0.10124101422798137 0.85622027154595048 -v -1.224237358289072 1.4638667747067013 -2.2175933883984129 -v -1.4338703437388169 1.4961214214649172 -2.4887503191592417 -v 1.9263203182452242 15.151144122770207 0.17248223744243163 -v -1.1514760437117353 14.592980461805608 -3.6859219327709813 -v 0.69215891607457891 -2.8641349731630736 0.74079392907506414 -v 0.59997004567044088 0.6361238889827453 -1.5090425869531263 -v -0.0365221072323446 0.99167070821333203 0.0632418482480408 -v 0.0051792798639840772 1.8541886058672132 1.1173746764898671 -v 2.5606975890079648 5.1344175526735123 0.95442534642762844 -v -1.0116532822982147 -1.0683049587228659 -0.93048353623637325 -v -1.0970343262915154 -1.0602683971480529 -0.77137748316944943 -v -0.92375382916369586 -0.41300115548472516 -0.22744527623731819 -v -0.20830305356262671 1.0374370235660024 -0.20869049398120204 -v 0.30187572154036879 -0.81772309756410677 -1.3456146871801518 -v -0.69854845592976189 0.61111004342254727 0.44783612334152489 -v 0.50353433213133514 -0.7235815543479559 -1.631702561407973 -v 0.42555935862072897 -0.80276846141439517 -1.5295257405220481 -v -0.54030954149006072 7.2163533856440774 1.5124002999037884 -v -2.1511285568919125 0.075229598239914541 -4.9579716299274557 -v -0.3077815694551207 -0.30068182494892781 -1.9096253883340961 -v -1.5784697911352261 0.9100118587666215 -2.9346966288122518 -v -0.38785929840079836 0.1050443395652369 -1.601622939609475 -v -1.5819061911402517 2.1259851569087207 -4.2418179358315893 -v -0.89413655745277709 2.0309329775685336 -3.3799014709074187 -v -7.6385807004524517 -2.3893342861586948 1.9356311352580455 -v -2.0284173033908459 -0.17708787252087377 1.2814515285762396 -v -0.00089767641894459259 0.21911052192458289 -2.2627109543881341 -v -0.72751635003166026 -2.8645780056198156 0.93957659544560845 -v -0.6560531718630197 -1.6577861629745216 1.0012802791055648 +v 7.026728607436084 -2.656157840022964 7.6578038511035214 +v 1868.7643452410803 -3407.1459755853311 2731.8172329846025 +v -1.4163766953660453 -0.17547024811621403 1.260766191287324 +v -1.6951183381457928 -0.53630595439634055 1.2530982417672591 +v -1.5632493776304215 -0.82071653074533957 1.4659432332560545 +v -0.17777344052523225 3.9101163492350994 0.1537743486241655 +v 31.378642480336875 -19.387295086603046 30.510575956134176 +v -1.9583793317036389 -0.42262157491446645 1.0369316026928019 +v 2.0627352938540549 5.7348018212298033 0.70990385679418622 +v 9.6614622226964411 -27.32034729253667 20.636315044092022 +v -0.19526318993325753 4.5689311293039987 -0.15997194944321608 +v -0.026901002778746682 0.22149156463421513 -0.4874856092691901 +v -0.75789552701697738 -1.0960757347601315 -0.98078398343337447 +v 1.0660186894711674 8.0944232073337137 -1.0316446331040823 +v 1.3051820070348492 -0.38359501953100944 1.064141855761354 +v -1.0237773758825366 1.0355394715210435 -1.7270914155095549 +v -1.3815545158435676 0.94232864230182511 -2.0883098045655766 +v 0.50619165301422542 5.3752174448055952 -1.0381152339614883 +v -0.9098960696498164 5.5290498747375043 -2.5813285280516149 +v 0.88615495571564418 -3.2438894132991476 1.2384241132099127 +v 0.64384933120813992 0.37840850055451375 -1.3756682966679483 +v 0.088372299217068351 1.0163979360755973 0.33859044558711432 +v 0.22587529626505032 1.8030995485454582 1.1181461798225911 +v 2.2481546179385372 4.0908537953804576 0.75304867232527384 +v -1.0375780802929022 -1.2876786448364876 -0.77124305132345972 +v -1.1609696608916116 -1.2848698850419078 -0.56748324917462001 +v -0.85060874364205008 -0.45619690587278566 -0.014866335133357667 +v -0.22240921696594548 0.98694873012838369 -0.13243166823583 +v 0.18844231734405864 -0.86782075338478915 -0.90774843461063437 +v -0.58329005908279963 0.62768087394046224 0.31285005798078269 +v 0.6344057864084397 -0.74123882106988748 -1.4956386497455989 +v 0.52449442678645852 -0.87382366231408204 -1.3627680474486876 +v -0.69680021338936382 5.7804796587511325 1.0771816201685485 +v -2.764068877517309 -0.9797464154185126 -5.2586764972000113 +v -0.41715842320618091 -0.52728238474521971 -1.5318366442614746 +v -1.5195616293914782 0.55504531660108281 -2.3265093325221144 +v -0.494610135417763 0.074667732903701309 -1.1994212530858621 +v -1.1038049173874405 1.4681915209872713 -3.1921383044176563 +v -0.74224861895395278 1.5490409338705846 -2.7863676375872757 +v -6.9778783833686733 -3.8089489622079449 2.3138163965887539 +v -2.3733832662900269 -0.84438870912272601 1.5752999631636357 +v 0.044714399651491848 0.16175879726333528 -2.0561620832665906 +v -0.8049189869526775 -3.8915022998563096 1.4914210079906334 +v -0.55640227583993251 -1.8272702037947826 1.3728532467770305 f 1 2 10 4 3 8 11 6 5 9 7 f 1 2 13 12 14 18 19 17 16 20 15 f 3 4 27 26 25 13 12 21 24 23 22 diff --git a/results/search/topology_29/resume.planes b/results/search/topology_29/resume.planes index 01e28988..0075805e 100644 --- a/results/search/topology_29/resume.planes +++ b/results/search/topology_29/resume.planes @@ -1,37 +1,37 @@ 36 --0.91275978088378906 -0.45762941241264343 -1.1144767999649048 -0.23298949003219604 --0.021725043654441833 --0.18270975351333618 --0.39319100975990295 -0.29510012269020081 --0.22590371966362 --0.33120426535606384 -0.043266572058200836 --0.21922288835048676 -0.31984138488769531 -0.19197925925254822 --0.1697351336479187 --0.28211817145347595 -0.80837035179138184 -0.31426441669464111 -1.1026934385299683 -0.0011573475785553455 --0.87977093458175659 --0.22755800187587738 --1.1222836971282959 --1.043426513671875 --0.95571619272232056 -0.20871053636074066 --0.52340787649154663 -0.1379547119140625 --0.058538902550935745 -0.98512089252471924 --0.60139232873916626 --0.57469165325164795 --0.45117840170860291 --0.7881397008895874 -0.036025922745466232 -0.2082076370716095 +-0.80287456512451172 +0.59280812740325928 +1.2895541191101074 +0.20051142573356628 +-0.040833551436662674 +-0.18806427717208862 +-0.25105872750282288 +0.19722871482372284 +-0.15475329756736755 +-0.26170921325683594 +0.0229501873254776 +-0.19358660280704498 +0.21457062661647797 +0.10957319289445877 +-0.14842493832111359 +-0.4363078773021698 +0.73788636922836304 +0.24174290895462036 +1.0512083768844604 +0.093493469059467316 +-0.95529305934906006 +-0.16586151719093323 +-1.0086830854415894 +-1.1437153816223145 +-0.87735629081726074 +0.18189938366413116 +-0.53381133079528809 +0.16045062243938446 +0.049574300646781921 +1.1993776559829712 +-0.53305596113204956 +-0.50609117746353149 +-0.38700872659683228 +-0.68361485004425049 +0.096078872680664062 +0.23985759913921356 diff --git a/results/search/topology_3/resume.obj b/results/search/topology_3/resume.obj index fb255151..adcd1b2f 100644 --- a/results/search/topology_3/resume.obj +++ b/results/search/topology_3/resume.obj @@ -1,47 +1,47 @@ -v 0.23060313819527142 0.21766140154190944 -1.467390672552211 -v 0.17820295246050971 0.1352065626692136 -1.5223188362672988 -v -1.1129162018400791 -3.0000916643558981 -1.0771332653795116 -v -0.23289730742542741 -1.5053336714516308 -0.33391688466742175 -v 0.34483537020834243 -1.2785005812347607 1.383563009381779 -v 2.8415903090715742 0.79912033616256695 7.0175990663657783 -v -0.50076248914969979 -1.3925973961887235 -1.4853448148664854 -v 3.8408181079216961 1.8658771235952043 8.8889826607658389 -v -3.2340954329692764 -5.4969821955431293 -4.6710681468235542 -v -0.20345333857309367 -1.6181321939769009 -0.043720066327280538 -v 0.23439365215098121 0.58085384866932277 -2.0455861022445294 -v 2.0715254759236701 -3.4656288589851667 -3.0730023310278058 -v 1.0728845795283068 -6.2010592894073469 -4.7452192174279224 -v -1.8367217740162383 0.64463497362977862 -1.6572453793586814 -v -0.16630258913316875 -1.0127715390409577 -2.2089702344099122 -v 1.1307187368973739 0.087054856540245945 -1.3550171282403933 -v -4.6891459998351293 -9.1373124768985541 -7.4913615259748685 -v -2.3713269923720128 1.1889001162050872 -1.4732423143327291 -v 0.59202886488999484 -0.18842529201884867 -1.6122745665156808 -v 7.3689039043329663 -6.104720243613813 -3.4166095405636496 -v 0.59887467306721742 -0.58785733213796298 -0.026506400488535031 -v 2.0917887653936917 -0.47636966811116932 -0.69921198922533934 -v 0.77049159701411241 -0.38553777915125936 0.047304554899102902 -v 0.015666393178201829 -1.0606314980539397 -0.10604521262922517 -v -0.87980141847511995 -0.80603239779085145 0.55384542363196609 -v -0.92074333597852343 -0.95711920093921243 0.45423081651215713 -v 2.2076322484891375 -0.65772641800013565 -0.90295439254103682 -v -0.11615550908071282 -1.3644126466908266 1.6905977061598927 -v -0.0018377395024194337 -1.2297504403457755 1.3958012415842436 -v -0.99225486814313746 -0.56649586785410866 0.42005239456245752 -v -0.49062665530960176 -0.1543740718619199 -0.52867112039487385 -v -1.5275786417418706 -0.034629936636479751 -0.44176830348142315 -v 4.7966155352197219 -1.9752636225219007 1.3628605826522868 -v -0.26606468759089585 -1.1936294661362983 -1.330358044194579 -v -0.42847017774877133 -1.5678257596116796 0.88248890404300384 -v 0.059882809535545145 -0.50769176984353415 -5.1331988082768163 -v -3.4240335361405818 -5.4268719675686006 -4.6179301045539418 -v -1.977979802782881 -3.4500256072759599 -1.8172088018973342 -v 4.3586566635106587 1.7525075356890958 9.7164960489532461 -v 0.37521533846428395 -0.64969672498506148 -0.90666150237797893 -v 1.3545957388250343 0.40266256859115784 -0.088339318540771983 -v -0.20859254138266678 -1.7983006559976364 0.63034806265915833 -v -0.55080834684136137 -1.5032334784416639 0.94152684502783957 -v -11.111996633645026 10.774980672634999 -0.95775123505894977 +v 0.19510968271111925 0.20653547580497408 -1.3575865328421197 +v 0.12995786979845864 0.10202106051625862 -1.4280947259796573 +v -1.2847677631917696 -3.2838111575319955 -1.1639000400025725 +v -0.26533341388047199 -1.5195347047741099 -0.26798987925731865 +v 0.31544050671507279 -1.3609722113131222 1.603738509856161 +v 2.7924447577213947 0.71823917259923653 7.3306176230635227 +v -0.57030307515554535 -1.4195717499196203 -1.5454943427256254 +v 2.9309743192983673 0.87353767672982108 7.5881593179364817 +v -4.0176350478754426 -6.5618565485580467 -5.8998819552413897 +v -0.23442344751232683 -1.6519259649381346 0.058094828171135759 +v 0.14011071672976064 0.19329203500304667 -1.537688243443696 +v 1.2940008939380434 -4.7486824492357425 -3.8375432048168068 +v 0.57346603533582829 -6.6792715094006994 -5.0404516125289884 +v -2.0807535344962123 0.85124655457284337 -1.4744362454412159 +v -0.19290084919706102 -1.0397879861503814 -2.1182475311456921 +v 0.72608529134423561 -0.29258589718135891 -1.5207776146300107 +v -4.5518093159475654 -6.8597178860700128 -6.1951386478022927 +v -2.5502621189270029 1.3220947008784545 -1.3140210774425272 +v 0.56547600566177159 -0.24218634036309206 -1.5263465387082567 +v 7.6572844820483423 -6.8119253683448262 -3.6531866294714757 +v 0.59141722490182114 -0.6053907145900923 0.011117138083117206 +v 1.4855806612096281 -0.58309992817669309 -0.47408229317119188 +v 0.77854782222218877 -0.39004461201695118 0.085146127928556026 +v -0.00090511152278304461 -1.0584611111893021 -0.032733177762981458 +v -1.0258552364925637 -0.78199655136610757 0.77512048878835904 +v -1.0659475896882171 -0.92046748525147348 0.68231362110131966 +v 1.7003193620959165 -0.88713457626908232 -0.84843497003099977 +v -0.2126303016680797 -1.4226318807400868 1.9837434910414142 +v -0.079554824736533913 -1.2755924862186756 1.634557574872483 +v -1.1833102768521591 -0.44638349677001282 0.58244162970288538 +v -0.59213175886675207 -0.03777531232096408 -0.49740111286483824 +v -1.8152837501668833 0.24585735197819275 -0.43905188580997695 +v 4.1728956770688992 -2.2277757326155503 1.3663614004270317 +v -0.27880306750210254 -1.1849188056509685 -1.3295305905183441 +v -0.51543388448203475 -1.6092034899097125 1.117949582284508 +v 0.040817150569697272 -0.64090881712047543 -4.3091885287280238 +v -4.4136058897412083 -6.4901202853113009 -5.8962671877232875 +v -2.4161148498258052 -3.8291854131803285 -2.1003399546680521 +v 3.3597622813731651 0.73793725196347515 8.2649266430724087 +v 0.36546898591157428 -0.66622955653206517 -0.8521625594510005 +v 0.94103612657543745 -0.079232683389978312 -0.33168346157033085 +v -0.24902760956923303 -1.8725280586298456 0.84415521883673339 +v -0.64141097988616802 -1.539335332347632 1.1784612303010933 +v -9.4061453305124232 8.6034187417015406 -0.31920249277265156 f 1 2 11 8 6 7 9 3 4 10 5 f 1 2 19 15 16 20 13 12 17 18 14 f 3 4 26 25 24 23 21 22 27 12 13 diff --git a/results/search/topology_3/resume.planes b/results/search/topology_3/resume.planes index c076aa82..b36a3384 100644 --- a/results/search/topology_3/resume.planes +++ b/results/search/topology_3/resume.planes @@ -1,37 +1,37 @@ 36 -0.42073985934257507 --0.18979786336421967 --0.11646292358636856 -0.24875339865684509 -0.65901559591293335 --1.2265793085098267 -0.20119081437587738 --0.31453442573547363 -0.3943684995174408 --0.06219593808054924 --0.39135593175888062 --0.20288898050785065 -0.53771698474884033 --0.58761656284332275 --0.05990280956029892 --0.95290422439575195 --0.12375696003437042 -0.57935047149658203 -0.001377620967105031 -0.19678513705730438 --0.25471371412277222 -0.64589917659759521 --0.50084054470062256 --0.12894284725189209 --0.39178776741027832 --0.39562717080116272 --0.3790128231048584 --0.21299967169761658 --1.4201091527938843 -1.1123372316360474 --0.8926965594291687 --0.8020738959312439 --0.22118857502937317 -0.72537922859191895 -0.84347832202911377 --0.33836859464645386 +0.37489232420921326 +-0.16463232040405273 +-0.10237766057252884 +0.23216487467288971 +0.61535292863845825 +-1.1266664266586304 +0.23770225048065186 +-0.35159426927566528 +0.42190352082252502 +-0.086085110902786255 +-0.33543112874031067 +-0.1740545779466629 +0.52291697263717651 +-0.60034537315368652 +-0.053515888750553131 +-1.1483916044235229 +-0.13678716123104095 +0.70019352436065674 +0.031659342348575592 +0.18715369701385498 +-0.24608233571052551 +0.6385224461555481 +-0.50975936651229858 +-0.13119716942310333 +-0.38138750195503235 +-0.38173049688339233 +-0.35324245691299438 +-0.27110493183135986 +-1.5586953163146973 +1.2353019714355469 +-0.90511780977249146 +-0.81854939460754395 +-0.2465360164642334 +0.37926563620567322 +0.45218890905380249 +-0.14969329535961151 diff --git a/results/search/topology_30/resume.obj b/results/search/topology_30/resume.obj index 9ffd9066..fb75c02f 100644 --- a/results/search/topology_30/resume.obj +++ b/results/search/topology_30/resume.obj @@ -1,47 +1,47 @@ -v 0.47030340597596237 0.17303466745315682 -1.965454505193033 -v 2.7804332973448251 -0.27880644764749674 0.55948778915818931 -v 0.046571968482739035 0.45853908941062027 -2.0286641080008452 -v 0.62976092559981844 0.8591937365237966 -0.37534083186166889 -v 0.38445699197530564 1.7664659946094328 1.0525313723624712 -v 0.18690990090702825 1.4933383356008447 0.22128221705803641 -v -0.66878900380959305 1.4124905150074156 -1.2038875807282312 -v 2.3589459177638856 0.32598195748225073 1.1297679026621805 -v -0.17520405673754502 0.64127979791010425 -1.9960012201313897 -v -0.15823744210627858 0.68680659843736958 -1.8810509329270559 -v 0.051645408493587834 0.52105804829106217 -1.897766711432807 -v 1.3174542501216393 -0.10913513279002329 -1.9187271157447756 -v -0.59999298300571768 0.87118051321650669 0.55442809623041434 -v -0.056181451478914395 0.57951690863102168 -0.24990461873938163 -v -0.51876595428029237 0.72553987785339435 -0.33622328026792675 -v -0.61115971075443754 0.73453457249538956 -0.50572322057454766 -v 1.2572203400271647 -0.032084008175861267 -1.4918780075521254 -v 7.2162868028776508 -1.942501052439134 -0.60132455942249619 -v -2.4654539049005559 1.9380890423783679 3.8147950315551076 -v -0.10172820629075387 0.74811347299225794 0.9057040670208395 -v -2.2334305437149706 -1.4492530400831785 -1.4184235501623235 -v 0.25581014574696742 -0.38359519795600511 -1.8039727308672167 -v -0.065184776613517459 4.947553536783059 -3.2632714709105395 -v 2.5876889743797222 -1.9861520338082537 -1.4474615967063764 -v 7.0204533503351696 -0.94405303456593603 -1.897940707567598 -v 0.16850955946686003 0.93353144628364326 -2.1642168115871634 -v -0.096137254889398532 0.69489695430638321 -2.0886405171669966 -v 1206.67253447296 -276.83272393029267 30.140639785699314 -v -1.2024393455923468 -0.30973981132065664 -0.61955920800630282 -v 1.1323318603717187 0.15710345644177981 -1.7125634233849056 -v 0.11670621961470147 1.7959690393156933 1.291891807089202 -v -1.0632064656480325 0.31383058206349523 0.13320160698336059 -v -0.10945879938189586 -0.0513661194738321 -1.0765429974655767 -v 0.14772331173446712 1.5541063137607591 0.099208351066102152 -v 0.44327863269754858 2.6639122235503137 -0.36184905638076437 -v -1.1680263206504384 -0.026069206605833808 -0.80933716393218047 -v -1.1164503994986879 -0.24765070386886662 -0.52389562070352669 -v 0.013280631597719202 1.7134725194215594 1.5258034275028762 -v -2.1672255634924809 4.9836716355757549 -1.089584964794478 -v 0.11671478912072696 1.5857474036477077 0.62045269843636408 -v 156.21262857884705 -221.96113426771723 -208.77894664010103 -v -0.17775681099431681 1.6157063662860056 1.8755851481400581 -v -0.25442359507045614 -0.28246837798138236 -0.31616202304854163 -v -0.1073961403921455 0.057128268660502184 -1.2240849711123853 +v 0.45743459048292723 0.18218916539862948 -1.9955698221984639 +v 2.7876996974278128 -0.2718779781719779 0.56430512532972577 +v 0.04567856972618585 0.4591512358534634 -2.0568623514398343 +v 0.61323373054136565 0.9230971717333184 -0.29138220372356383 +v 0.38495596558981915 1.7507172585407824 1.014482236669592 +v 0.2062460725626209 1.5057510940335963 0.26203030943560091 +v -0.67793137949964388 1.4247224815796964 -1.2127821789461584 +v 2.2541523367818521 0.48533469783161892 1.2766375298666031 +v -0.18312229339719174 0.64513639476518847 -2.0271451107465261 +v -0.16414563180724309 0.69648289731351665 -1.8968878649763465 +v 0.05066039180641569 0.52128164896988693 -1.9259642555414551 +v 1.3507172559677938 -0.11534628743152602 -1.9462978748132997 +v -0.60885265264456256 0.88404458098572891 0.56261494325776784 +v -0.057011097854895124 0.58807418477182483 -0.25359482055345506 +v -0.52642622279574769 0.73625337909925237 -0.34118803151648275 +v -0.62018428966519612 0.74538089428349941 -0.51319084856010455 +v 1.290678384555529 -0.038544645062466389 -1.5208308494095275 +v 7.0960229328221756 -1.8996800901588367 -0.65325009081891017 +v -3.2630745110111508 2.460784189538773 5.644761093587201 +v -0.10293328828083086 0.75806044907428416 0.91153922162860646 +v -2.2664101258486467 -1.470653119364137 -1.4393684236297246 +v 0.25958751846500122 -0.38925936976005338 -1.830610740998271 +v -0.52412699243736072 3.6694686810156076 -2.9217866354952049 +v 2.6349586507472571 -2.0130610728089926 -1.4698357181236628 +v 5.862820621489627 -0.67793239970808783 -1.9568903624235643 +v 0.17099773928843973 0.94731621431071034 -2.1961742326726168 +v -0.097556857023157265 0.70515802876873335 -2.1194819781087468 +v 1216.0315694164603 -278.98513482732204 30.362547634706736 +v -1.211986903412803 -0.30524147711372085 -0.62234778394206658 +v 1.1612532075492743 0.15751527613936991 -1.7495329342849806 +v 0.11790789598810675 1.8188194572293597 1.3063176940423493 +v -1.0704525586275477 0.32863612375955281 0.14285570939304071 +v -0.10740301733758804 -0.055464476668113737 -1.099752479567945 +v 0.15293281220393456 1.5884257967797477 0.09594909798505824 +v 0.31462607929776831 2.1955817647432885 -0.15628765045290449 +v -1.1894538988260166 -0.031293277404652486 -0.82433405861113307 +v -1.1381060065023285 -0.25189510115175429 -0.54015452822481513 +v 0.0052922701069370495 1.7630737470013591 1.6762202761116782 +v -1.4291250925045933 3.9700238421787351 -2.1366598207058174 +v 0.11718839495145601 1.6248993980612174 0.69680247408480067 +v 159.36102504602394 -226.42857188714163 -212.98664042222811 +v -0.11982032607247244 1.7263497976145574 2.0135052746595012 +v -0.25748102453019744 -0.28502379592821925 -0.32514983588991253 +v -0.10507483350303212 0.066996450832070592 -1.2662876098507168 f 1 2 8 5 4 6 7 10 9 11 3 f 1 2 20 14 13 15 16 19 18 17 12 f 1 3 26 27 22 21 23 25 28 24 12 diff --git a/results/search/topology_30/resume.planes b/results/search/topology_30/resume.planes index 34e57b3a..cfb4bbcf 100644 --- a/results/search/topology_30/resume.planes +++ b/results/search/topology_30/resume.planes @@ -1,37 +1,37 @@ 36 -0.62697499990463257 -0.83667278289794922 --0.42391088604927063 -0.17824061214923859 -0.52363920211791992 --0.06937079131603241 --0.064823180437088013 --0.48669257760047913 --1.7637393474578857 --0.23496870696544647 -0.43439221382141113 --0.31638038158416748 --0.43778219819068909 -0.22058771550655365 -0.2503390908241272 -0.82507956027984619 -0.56211298704147339 -0.014961563982069492 -0.99436843395233154 -1.4132928848266602 -0.93811023235321045 --0.636726975440979 -0.65387964248657227 --0.16499260067939758 --0.0095885684713721275 --0.038169149309396744 -0.033392008394002914 --0.11498986184597015 --0.5469018816947937 --0.40376964211463928 --0.1990513801574707 -0.04690755158662796 --0.014688879251480103 --0.37073850631713867 --0.15181951224803925 --0.11682283878326416 +0.63043880462646484 +0.84336751699447632 +-0.42429575324058533 +0.18087255954742432 +0.5313713550567627 +-0.070395134389400482 +-0.065780371427536011 +-0.49387919902801514 +-1.789783239364624 +-0.23843833804130554 +0.44080659747123718 +-0.32105213403701782 +-0.44424661993980408 +0.2238449901342392 +0.25403568148612976 +0.84456205368041992 +0.57538598775863647 +0.015314850024878979 +0.97295564413070679 +1.5468945503234863 +0.52933597564697266 +-0.6461290717124939 +0.66353499889373779 +-0.16742891073226929 +-0.0089648934081196785 +-0.035686492919921875 +0.031220072880387306 +-0.11774181574583054 +-0.55999046564102173 +-0.41343274712562561 +-0.20199064910411835 +0.047600194811820984 +-0.014905780553817749 +-0.37621292471885681 +-0.15406133234500885 +-0.11854787915945053 diff --git a/results/search/topology_31/resume.obj b/results/search/topology_31/resume.obj index 2d30daec..b21363d2 100644 --- a/results/search/topology_31/resume.obj +++ b/results/search/topology_31/resume.obj @@ -1,47 +1,47 @@ -v 1.2262178844154312 0.29982705891571554 1.402491991570314 -v -3.4500847971196911 1.5797122347064412 -3.4307521609690395 -v -0.41491899906747798 -0.065372193715216145 0.58134430537493487 -v -0.60029339441435092 0.35053511149731897 -0.0026389461340907694 -v -4.1260917399504056 -2.6324941719954111 0.59550817090268882 -v -2.0363466087196964 -0.97326372421903817 0.35791042554222952 -v -3.5689834219297274 1.083558368049643 -2.9855411752485823 -v -2.0700701058913684 1.1714413182246262 -1.9715781733662363 -v -4.042746830863714 -1.261102266163785 -0.81646365072810045 -v -0.88593066689400612 -0.056119346046276233 0.22310457024189367 -v -0.50936372412454101 0.62911051279888797 -0.23473731169927936 -v 1.4493435651697784 -0.55912993165010283 -3.0961675076035196 -v -0.027279764619152921 0.36229089073866511 -1.5563365076401565 -v -0.49338849300023918 0.55453345072574423 -1.6547710543922873 -v -0.28030334379488481 0.59093666012608659 -0.87308441696339734 -v 4.1626256980990615 -1.1918671938377521 0.35944278990674439 -v 0.09750992199535051 0.37619757465167247 -1.1424891233044203 -v 1.6209359828501322 0.10190202166673479 1.2776443556609036 -v 0.57951561462027423 0.47347617193875879 0.7142254095938223 -v -0.40889854925585656 0.72390020604439898 -0.42650393828575606 -v -0.44632585935700758 0.41281287526503291 -0.57317135329132884 -v -0.49773586006724868 0.30404262061385745 -0.15490368764207257 -v -2.3318286277563076 2.5779498163478425 -1.1663424480609956 -v -0.17593296436070421 0.41254618393855796 -1.2912758150103802 -v -768.56356457245056 1033.314250285498 -632.80845695074106 -v 2.390850094601531 -2.7049879000481885 -0.043450734048842921 -v 2.2551561561383586 -2.5902625002933117 0.020248887238808216 -v 1.6104623950572978 1.7825381064254768 0.79127467977357258 -v 3.0192136628534052 2.6305409045557391 2.273036329117768 -v -0.71174981848935237 0.069173036078129302 0.26360642528939315 -v -3.5206005834975689 -1.9895448940010549 -0.45777003256748677 -v -3.954393575151967 -2.4031380921462175 0.011352719541026846 -v 4.4311389443785512 -1.5583845850825084 0.27699330915263609 -v 1.023319007205461 -1.726132066125013 -2.0061321637005376 -v -0.18334343997710884 0.16874695319048968 -1.4644202424480788 -v -1.66185816406339 -2.2838572792111624 0.52128955309977043 -v -3.8348974047959534 -1.7106997204655954 -0.59639126607565851 -v -0.70628294120763513 -0.59519255037894347 0.45645331508309406 -v -1.7948105925035052 -3.2689468754582434 0.095177391078786089 -v 0.28710436033933151 -3.5957444073825418 -0.24410316470454962 -v -0.016388598399736536 -2.9758984984388444 0.060060002621718733 -v -1.6508449855746516 -3.0587709726824284 -0.12082473254467063 -v -1.5913675309223467 -2.775785024264648 -0.054925687476872043 -v 0.0064896279593739444 -2.768877015025518 -0.039911986306001235 +v 1.2225417696214429 0.033274757871531578 2.1686827042135746 +v -2.5162623462419593 0.56571360496473677 -3.0096639169815926 +v -0.54391109389799264 -0.22561465333127406 0.41262152556922699 +v -0.57722474427996984 0.15276088641448182 -0.13896049798354365 +v -1.0968885236370061 -1.3713356336538503 1.3031730138829203 +v -0.67827634408966664 -0.31634610347715425 0.37514701341236667 +v -2.8039120393518639 -0.24083370086854819 -2.2615690417772827 +v -1.6858807688186146 0.18863537292785265 -1.5094294750083606 +v -2.7914498468880224 -0.98257587454485573 -1.2432941284756074 +v -0.70115554616309006 -0.12017230089783484 0.082485990176148757 +v -0.55599524365840336 0.2208801574746341 -0.2057973828289672 +v 3.3945580288100015 -2.1619853300778709 -2.2359092913627614 +v 0.58901572082168452 -0.43435762199269939 -0.90146063044719671 +v -0.64695125592655223 0.076433835190620775 -1.2974280491158161 +v -0.50203239748359696 0.21611385150823989 -0.46656684216356753 +v 4.0015059529083503 -1.7195042630753685 0.68368575315387103 +v 0.16055021154823532 -0.16934951453576252 -0.69309126073682736 +v 1.7534221196480642 -0.29536919928326405 1.9093606805957757 +v 0.089110354988964441 0.19165756107231133 0.58694762696769864 +v -0.52769676195783721 0.27810656877599477 -0.2728099274087647 +v -0.46806174458674882 0.29939786735139101 -0.52997935654704909 +v -0.51835722551691454 0.12650793927706891 -0.1828122177765209 +v -1.5440686772787942 1.5208081334674597 -0.90424064600963883 +v -0.39823107891965709 0.38251858194986732 -0.76317382046286897 +v -587.28875120671421 941.6685185850838 -641.07888447707819 +v 2.2505838212867579 -2.661960807327175 0.21796355767006811 +v 2.1886551243132581 -2.6241105892360865 0.24787154135732081 +v 0.54324817190326724 2.2159168066510571 0.45740315576430968 +v 280.73592454886773 517.97997077222021 351.79360274290298 +v -0.63651879718564819 -0.18399094324988791 0.14405254509823628 +v -1.8922496368448471 -2.6880081997338414 -0.44701921562519487 +v -1.9391876726444757 -2.8079111937599959 -0.33474057815190505 +v 4.0868487000126166 -1.902902334650058 0.65484527151193039 +v 2.4385014864673633 -3.527550964429651 -0.84964147935206369 +v -0.50563223946634628 -0.35089513292571645 -1.1115892604828328 +v -1.4282007091026083 -2.964520303966852 0.19977323385473111 +v -2.4724936291913218 -2.1555058655243293 -0.74443516468278181 +v -0.52709774840172074 -0.63314356636428881 0.32582272244985511 +v -1.462156042138552 -3.3067086729722837 -0.039186764890325909 +v 2.3738808491122869 -3.8103745705163643 -0.59656256137593666 +v 1.1028425959228603 -2.8903581372817788 0.11800721072826947 +v -1.3374841338885626 -3.0283871927120609 -0.30382072040610758 +v -1.3121827848218519 -2.8988241239863535 -0.27219783539137399 +v 1.0758980892314349 -2.77335780007602 0.069039405304938684 f 1 2 7 8 9 10 11 4 3 6 5 f 1 2 12 13 14 15 20 17 16 19 18 f 3 4 22 21 24 23 25 12 13 26 27 diff --git a/results/search/topology_31/resume.planes b/results/search/topology_31/resume.planes index aeed8e22..d3c945ae 100644 --- a/results/search/topology_31/resume.planes +++ b/results/search/topology_31/resume.planes @@ -1,37 +1,37 @@ 36 --0.22389030456542969 -0.32533866167068481 -0.30277281999588013 -0.22331571578979492 -0.49839380383491516 --0.084085352718830109 --0.12435309588909149 --0.12110818177461624 --0.046778563410043716 --0.31635165214538574 -0.40806189179420471 -0.067232921719551086 -0.49491578340530396 -0.53764218091964722 --0.77821916341781616 --0.20503714680671692 -0.13396923243999481 -0.46734204888343811 -0.10670052468776703 --0.51018393039703369 -1.1461554765701294 --0.51851463317871094 --1.4647772312164307 --1.7708582878112793 -0.012848612852394581 --0.54145556688308716 --1.1183030605316162 --0.0047819316387176514 --0.13161003589630127 -0.569480299949646 --0.63804733753204346 -0.19006676971912384 --0.24031901359558105 --0.37902802228927612 --0.070936292409896851 --0.23363369703292847 +-0.21200360357761383 +0.24052293598651886 +0.17779877781867981 +0.032651867717504501 +0.065992757678031921 +-0.016789495944976807 +-0.18978993594646454 +-0.20724652707576752 +-0.13070480525493622 +-0.4536224901676178 +0.21743778884410858 +0.042566362768411636 +0.25770148634910583 +0.19793134927749634 +-0.49608308076858521 +-0.26035580039024353 +0.081295736134052277 +0.35760870575904846 +0.07808220386505127 +-1.0380984544754028 +1.4754515886306763 +-0.45947840809822083 +-1.5065308809280396 +-1.8009176254272461 +0.1616864949464798 +-0.37814947962760925 +-0.99249249696731567 +-0.065818324685096741 +-0.1093875840306282 +0.50083613395690918 +-0.59153872728347778 +0.14604577422142029 +-0.1250806450843811 +-0.26376649737358093 +-0.16707567870616913 +-0.25406187772750854 diff --git a/results/search/topology_32/resume.obj b/results/search/topology_32/resume.obj index bf02cad0..a37b58cc 100644 --- a/results/search/topology_32/resume.obj +++ b/results/search/topology_32/resume.obj @@ -1,47 +1,47 @@ -v 0.54477650133800259 -1.9800331675768521 0.40840254765014755 -v -0.31612570385512712 -1.0616717154838053 1.4284174375594412 -v 2.1392872966483201 -1.2685680733929112 -0.52181032581407338 -v 2.7037084853549005 3.2683146716659741 0.85234000968786205 -v 357.18912789432682 -520.34484188712986 -476.97715138063859 -v 0.84008250349996316 -2.4242441986248373 0.0071590005717920291 -v -0.13470599496736207 -2.9003075980884083 0.55949063660678533 -v 2.0280750192004229 0.36019406100919232 0.21027468643856206 -v 1.5837943133952099 1.0658488962988373 0.82878359104468013 -v 0.83589086171390037 1.4741959141023739 1.5600883222399076 -v -0.80883179553642048 -1.1149094992234365 1.782085115676534 -v 1.5930435388085959 -2.4461339895887293 -1.2779845615901402 -v 3.1085065079028884 -7.5761722185744791 -0.67939724077517771 -v -1.0655639509995942 0.29218224360749467 1.938588057622691 -v 0.99906262946864499 -2.638596789125597 -0.011306384521662475 -v -0.88316984839323243 -2.1796367037469855 3.2742605694156253 -v -0.47050050345964617 -2.819265932846915 2.9212091754806431 -v 1.4986500964495573 -2.3377029940719689 -1.1714177343246974 -v 0.28339104514445773 -0.061358119307957676 -0.39933379268411573 -v 0.14569833915586081 -0.069323123017546451 -0.13067542010270766 -v -1.4579943668931188 0.32107908681272901 -3.8331176930531869 -v 1.1049808627596791 -2.938773421701927 -1.8537180148756303 -v -1.80483827503007 0.97040807598140522 -4.0638167931803588 -v 3.3764870641898774 2.0173251792989833 1.3013526753747229 -v 1.1775126354115755 -3.8708523406970552 -1.9476530675627362 -v -8.1204578560548892 16.523622791627425 -7.5986346789386756 -v -1.7085034598583904 5.7657445566290724 -3.1113270380300611 -v -0.19373949674782801 -1.128052683263127 -1.0090703496266198 -v -2.998654934083326 2.7228488587541051 0.11961652005394072 -v -1.2670601716638459 0.54790975315605184 1.776506888954503 -v -0.7069666851607731 -0.26475660000166085 1.0428306181224261 -v 0.22507288619340002 -1.6195445674545126 -0.20652532001957224 -v -0.35298775404591071 -2.0875117133250245 -1.4935669384215164 -v -4.3390060485955804 4.3756286317372295 0.57170401530738668 -v -1.8848766419251655 -0.10334488800393042 1.6591752367732884 -v 1.9660531611132728 -5.7003378539690752 -3.3909101546838141 -v -3.3273055584746318 2.6639373767124885 0.38394224628895923 -v -3.473522961937372 3.0504679321949597 0.15967634844576012 -v -0.37414806808561324 2.7205732223382362 0.74029894042506184 -v 0.79470814354781705 1.592202556582782 1.4920729463294573 -v 0.39006194243007547 -0.73265402068831698 0.27867306784800405 -v -0.41064281103306832 2.5624623055326294 0.81943394460755881 -v 0.40030284544499761 -0.29672300973236221 0.36837614613765862 -v -0.11615946435561296 0.11210894448619492 0.37025610943260107 +v 0.84938411493628707 -1.8246705413635873 0.70662021832111088 +v -0.036554503168287164 -1.0867757363899733 1.5922809928876944 +v 3.0717340888009672 -0.27096895125318043 -0.22463730315882846 +v 4.5365288198067493 3.5689265347994663 0.22876374395262933 +v 235.77151966504627 -419.64002453051592 -318.33776727073803 +v 1.5277988200486368 -3.4032302179642007 -0.35570784884164386 +v -0.91616964192421069 -1.6898732047907272 1.9653729924524794 +v 2.7454116222418996 1.3307654344451882 0.60563801419605046 +v 2.4821307737116234 1.3803499198123883 0.8045186456124449 +v 1.2202099173147611 0.86569748791119272 1.4726343394576564 +v -0.79822522232462745 -1.1728499134980279 2.0806519970245096 +v 1.606421304326076 -0.83241791260810305 -1.0856771001226593 +v 2.2498472108959766 -3.5450271137832177 -0.33995038911257613 +v -0.65562404537697305 0.30787979322334585 1.6502453653034437 +v 6.2413298104371 -10.899225217312452 -1.7588299662885993 +v -0.45629053953163057 -2.990304602981618 3.4496016912615861 +v -0.30217801148058709 -3.3022284726307838 3.4126695340944977 +v 1.4355325579825804 -0.73476688372250254 -0.88633071672903863 +v 0.47157325336099476 0.68359523958676127 -0.31541336903239975 +v 0.2891868450303845 0.48197781895051289 0.092500530822134608 +v -1.5095743625067681 0.75608526950061239 -3.2623678978212043 +v 0.2360937900729129 -1.6800057113344826 -1.8508310243958412 +v -3.8458030260473217 6.1127254030780618 -5.4118845901806569 +v 4.9452821402397493 0.78951874210065631 0.83372110733926952 +v 0.038076553985202773 -2.3890711302119412 -1.8885218797724888 +v -9.6350177365615188 22.8870175072622 -11.173314407881602 +v -6.7846831513900323 17.504957434876221 -8.6940701070141255 +v -0.52857677666579383 -0.38321024061417885 -1.1647603910008213 +v -2.3158197067493238 2.5857013086865832 0.086393092970749277 +v -0.74645339065878247 0.43443561874364922 1.5756819955427084 +v -0.54629013156460149 0.030830299195353246 1.0317935602122761 +v -0.0020396402507389983 -1.0690753492434353 -0.46119434581423369 +v -0.80831735687368522 -1.0808601976960999 -1.6290853123635958 +v -4.3727229230314713 5.646847561308463 1.3242916325761851 +v -1.7124488806176752 0.032477497683509285 1.6787707306746753 +v 0.049177184163292267 -2.7201338091226219 -2.2499546410519304 +v -2.538191675023866 1.99733547917614 0.61040044184614084 +v -2.7621207514024499 2.8553325876864863 0.13089352503502655 +v 0.65972110001631978 2.3092581838057842 0.65368283140778161 +v 1.0951845781034173 1.1411423016434818 1.3151711123723682 +v 0.49073574281288068 -0.082835865093711741 0.33604579165033055 +v 0.51869125131158411 1.9954365000920986 0.81427439918580469 +v 0.51112610581204554 0.11267631796344742 0.38222188611346669 +v 0.15158479637800512 0.34014552484191019 0.41032980231534177 f 1 2 11 7 5 6 9 8 3 4 10 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 26 27 23 21 22 25 12 13 24 diff --git a/results/search/topology_32/resume.planes b/results/search/topology_32/resume.planes index 0ca4589e..f23d211c 100644 --- a/results/search/topology_32/resume.planes +++ b/results/search/topology_32/resume.planes @@ -1,37 +1,37 @@ 36 -0.70521008968353271 --0.36850112676620483 -0.92698073387145996 -0.037577498704195023 -0.0133943110704422 -0.019656313583254814 -1.197559118270874 -0.21395276486873627 --1.1982723474502563 --0.62197023630142212 --0.46474280953407288 -0.039962265640497208 --1.2913503646850586 --0.74592387676239014 --0.15801097452640533 -0.08149363100528717 -0.16018415987491608 --0.3440021276473999 -0.25266572833061218 --0.34286585450172424 -0.5726667046546936 --0.22497676312923431 -0.91248351335525513 -1.7193799018859863 -0.16453592479228973 -0.012258448638021946 --0.07835666835308075 -0.12015033513307571 -0.15090732276439667 -0.19010154902935028 --0.053679343312978745 --0.069389954209327698 -0.34334337711334229 -0.060764197260141373 -0.001585182617418468 -0.031189844012260437 +0.84006446599960327 +-0.46547138690948486 +1.2281389236450195 +0.34399104118347168 +0.14335586130619049 +0.2246609628200531 +0.98914140462875366 +-0.1934603750705719 +-1.5571677684783936 +-0.44876140356063843 +-0.29180243611335754 +0.051384564489126205 +-1.213897705078125 +-0.58372896909713745 +-0.13532502949237823 +0.14417544007301331 +0.33639723062515259 +-0.59229910373687744 +0.15677754580974579 +-0.30409890413284302 +0.28336149454116821 +-0.095136053860187531 +0.77641934156417847 +1.4337004423141479 +0.17128804326057434 +0.010088898241519928 +-0.11835405230522156 +0.22228150069713593 +0.30192822217941284 +0.39988765120506287 +-0.020375283434987068 +-0.069875910878181458 +0.3048558235168457 +0.14834111928939819 +-0.043801326304674149 +0.04467681422829628 diff --git a/results/search/topology_33/resume.obj b/results/search/topology_33/resume.obj index 164d272c..6fc58cef 100644 --- a/results/search/topology_33/resume.obj +++ b/results/search/topology_33/resume.obj @@ -1,47 +1,47 @@ -v 0.46068354703662356 -0.34330631587684968 -0.88055715034877335 -v 2.1721398870987043 -5.5861969779241951 -1.7041286879685784 -v 0.13984527925970616 -0.8458144732979086 -0.9543963571088917 -v 0.38554001365583013 8.4429456890118217 0.47026077049443687 -v -2.1835856537624938 23.561321317025115 2.820238565771509 -v -0.64062214115178007 4.6560503424956048 -0.1008184940017815 -v -1.8052106516172177 22.410972288016605 2.6395076455857458 -v -1.8230600907957517 0.076273361663992165 -0.79208324807891273 -v -0.18885225300259648 0.21662492619818527 -0.78769511783474977 -v 34.612398430158514 -113.43975816170023 -18.617060233656787 -v -1.5663215569825533 22.243496484504288 2.611263626855191 -v 0.87394409985667998 0.30608572909369125 -0.51666429501715838 -v 2.7019994211343135 -9.8314541299224327 -2.7294979608867926 -v -0.29290960061124566 0.20935283687062481 -1.0338232952643871 -v -0.58612563575756238 4.1218564216367719 -0.0071021727051921446 -v 30.826376747855459 -85.60183487719334 -13.211713735223995 -v -1.0306018902979239 11.643190134484048 2.0165759343880398 -v 16.00351449868338 -53.650054121856392 -10.032513282491424 -v -3.7090836901117252 0.37611811103241388 -2.4156938663316918 -v -19.129041424361528 49.109466728076178 5.4440147595765058 -v 2.4748882959442824 3.1959523912377272 48.133866966200657 -v 1.4107364129323041 1.1715387394095207 2.7266875912743296 -v -0.031289157246553734 -1.0958989161614898 1.2728207613815969 -v 0.85941608591683738 0.29493779749279797 0.94537354215915093 -v 0.42314739182907934 -0.38639392644727616 1.0933939870341631 -v -39.581833791114711 -63.203569856312399 -28.310854927900067 -v -0.4975117126405188 -1.8567774529463315 -2.7060682309102546 -v 0.43451632546326852 -0.36718894992579354 1.2725874205117036 -v -3.2504219668179357 37.151831508622138 5.6052089284278299 -v 1.4603606820618418 0.34812084603753801 0.71486232787903181 -v 0.814840633977304 5.3311140583231493 1.114008566646675 -v 1.4755836282050092 0.34597765813069503 1.2244907183261449 -v -1.302226073111312 21.704288744934882 2.5616399512612076 -v 1.2331149649960986 2.6293617344203155 3.2265868268179894 -v -0.53131189140492863 4.6190678875664437 1.6125411680347062 -v -0.36423295241234138 0.21102027847227733 -2.1848871758823663 -v -0.80233817282015341 9.5372424685860704 4.4809914537036848 -v -0.28832554678073596 1.8412153235349953 1.446479120992163 -v 70.113110150313261 -215.9876969122536 -32.306104137245214 -v 0.45773556854974867 1.4585591811791476 1.1355050857760618 -v -5.2091124163840439 -0.19504977783233743 -3.678457055620755 -v -1.3141198162464478 0.11665045852222936 -0.29856878900200323 -v 0.99780424143530899 0.30468547782621869 1.261426576989731 -v 0.66652015515256779 1.2387639870460256 1.3370664529941849 +v 0.45615924844125932 -0.33292089268149888 -0.87319356325528952 +v 2.2677852220535768 -5.9044961884465668 -1.7483212261905015 +v 0.14277895049283151 -0.85255957561884943 -0.94974331399458778 +v 0.42725816386010323 8.5481033332063383 0.4917004033215075 +v -2.1647469899928811 23.386415427787082 2.7988864849208595 +v -0.63405413416934098 4.631492343098536 -0.098940565573303274 +v -1.7926631447442882 22.255193423345027 2.6211605870656363 +v -1.7439285072574249 -0.0076419227996633544 -0.80008849154684802 +v -0.1756070640247345 0.17655015770594562 -0.78827162559843234 +v 34.35321586496859 -112.46965902128127 -18.459559276520345 +v -1.5187586517226992 22.063169679468491 2.5887766695376033 +v 0.83212127381630241 0.30279582597422711 -0.52740911341578922 +v 2.7944091053008449 -10.12392654528842 -2.7678702397156383 +v -0.28432124062485858 0.15590487037763337 -1.0418681679500326 +v -0.57985897120575047 4.1002523100262271 -0.005742465932044305 +v 31.573330299258597 -88.153061071510152 -13.585737858269617 +v -1.0232195659350205 11.559220922953028 2.0023830365784963 +v 16.420241392809267 -54.954488594053913 -10.210828910346384 +v -3.65757842220646 0.43974457026552805 -2.382113291237498 +v -19.152866280210674 49.254069522576778 5.4442532047539007 +v 2.2718350052425333 4.9975341859092586 47.438132143476523 +v 1.4316812495855773 1.4526283913578628 2.8310428628829367 +v -0.03303123894830938 -1.0345787673886337 1.2669243914313557 +v 0.81534955748538951 0.34703084140627039 0.95514343341919461 +v 0.42045707100997637 -0.29664078484902484 1.0883148979177029 +v -68.115353022640448 -115.54534756886369 -48.761507694460029 +v -0.46848179717167593 -1.9443132390331721 -2.7122454908030651 +v 0.44948636965582117 -0.24010506739454648 1.2687415692684227 +v -3.3287043896400994 38.213416909178761 5.8362982409107325 +v 1.5051826882318589 0.41965144682411326 0.69088417698209126 +v 0.83601984852825661 5.5851507498292881 1.1046494251725745 +v 1.5182304691590898 0.43756169453674509 1.2165361157739336 +v -1.2132074207380259 21.43932118121031 2.531363434322937 +v 1.3726077863652641 1.937472062357134 2.9972996167852406 +v -0.52388954663106257 4.5750438526607224 1.5995338816626168 +v -0.35183280151866092 0.11194579944989788 -2.198559184555867 +v -0.78138269657535253 9.2476399539587533 4.3247547742246271 +v -0.29319363196513204 1.9382556815605607 1.4426947499034504 +v 69.430704125107113 -213.79509116655674 -31.985416902192441 +v 0.45455399246954648 1.4484203934988686 1.1276123760736607 +v -5.3693865215240413 -0.52594865261250645 -3.796098743549722 +v -0.80892039863135834 0.13112452472198299 0.13607273711702328 +v 0.96550460118365988 0.37408253573290184 1.2584495058892642 +v 0.66188709995139816 1.2301531605920373 1.3277724632744317 f 1 2 4 6 5 7 11 10 8 9 3 f 1 2 13 18 16 17 20 19 15 14 12 f 1 3 27 26 28 23 21 22 25 24 12 diff --git a/results/search/topology_33/resume.planes b/results/search/topology_33/resume.planes index eaa6c25f..447bfa8c 100644 --- a/results/search/topology_33/resume.planes +++ b/results/search/topology_33/resume.planes @@ -1,37 +1,37 @@ 36 --0.0084497891366481781 -0.12352064996957779 --0.80389702320098877 -0.32287779450416565 -0.22648844122886658 --0.77086549997329712 -0.47966843843460083 --0.30661255121231079 -0.002428482985123992 -1.45868980884552 -0.19239082932472229 --0.042762976139783859 --0.20738428831100464 --0.018907023593783379 -0.01282276026904583 -0.42599257826805115 --0.033160347491502762 -1.1029154062271118 --0.019399795681238174 -0.22583708167076111 -0.0015292188618332148 -0.54020029306411743 -0.43677714467048645 --1.8710657358169556 --0.39263695478439331 --0.19207441806793213 -0.42062428593635559 --0.42482110857963562 -0.041870731860399246 -0.48570361733436584 -0.24256549775600433 -0.097744479775428772 --0.14467142522335052 -0.10755399614572525 --0.068329557776451111 -1.3148633241653442 +-0.0083910552784800529 +0.12266208976507187 +-0.79830926656723022 +0.3229566216468811 +0.22519409656524658 +-0.765156090259552 +0.46186977624893188 +-0.2805442214012146 +0.013595623895525932 +1.5126638412475586 +0.19950965046882629 +-0.04434526339173317 +-0.20322181284427643 +-0.01852753572165966 +0.012565391138195992 +0.4230315089225769 +-0.032929852604866028 +1.0952492952346802 +-0.025608668103814125 +0.2184843122959137 +-0.0068086343817412853 +0.53870940208435059 +0.43557175993919373 +-1.8659019470214844 +-0.37309017777442932 +-0.1825123131275177 +0.39968428015708923 +-0.42186820507049561 +0.041579693555831909 +0.48232758045196533 +0.24087944626808167 +0.097065068781375885 +-0.14366580545902252 +0.10680639743804932 +-0.067854605615139008 +1.3057236671447754 diff --git a/results/search/topology_34/resume.obj b/results/search/topology_34/resume.obj index c5a4e901..e3e57283 100644 --- a/results/search/topology_34/resume.obj +++ b/results/search/topology_34/resume.obj @@ -1,47 +1,47 @@ -v 2.0008827524659383 -0.13354107801116605 -1.9639984137581972 -v 1.8886504490350526 -0.81515037303510762 -1.5807898465229044 -v 1.6046973110037412 -1.7944013769231317 2.2798251181121101 -v 1.6600245574366601 -1.6290534958899263 1.428847493276723 -v 1.6234701983003832 -2.4305243310247477 -0.6942876208192944 -v 1.364074886826649 3.8840654482265831 30.799063368940594 -v 1.5715929519339151 -3.7911864029625186 -4.5733817172683828 -v 1.88461777318693 -0.51018927353407129 -0.28896838885764087 -v 7.7942797380042252 62.134553891080053 83.321062797394319 -v 3.3917501633969538 10.49240747954212 1.7397725829995714 -v 1.820165173438399 -1.0594317401427762 -0.6810916893308937 -v 0.58084447317227095 -0.83617564656424248 0.59294965882622552 -v 1.4318042691663337 -0.99500503790138406 -0.77154720415447708 -v -0.78318674815725342 -0.66524260255277612 2.8043485602572069 -v 0.65997799529153556 -1.7213747541179867 0.71787149833906994 -v -1.7504145501652657 1.2926357494734106 3.8411008270860654 -v -0.76513316932180897 0.043259441833510132 2.5694590270245961 -v 0.4899176013822889 1.9003792741177719 -0.048013126065202055 -v 1.2455454153339409 -0.95830365295510145 -0.47344515739116744 -v -0.94951689798063399 2.0808348415727158 2.2856100786001066 -v -9.9434599476505134 3.8469458827511738 5.6714903310892097 -v -1.4112426826293174 0.2704237690179217 0.59896374104555805 -v -1.1613898228462496 0.074171142576651028 0.84753146318699402 -v -1.0621631004184844 0.34890142041552535 -0.58400726134271563 -v -0.96971991126161339 0.2964674614278075 -0.57959149163387902 -v -0.98248676144366531 0.35591461148653536 -0.80672499801931796 -v 1.2870931416637097 -0.60287659938881588 -2.1237748367059539 -v 0.58093181862334109 -2.0029909825185914 -0.77519544093157711 -v 0.58080282112488724 -1.6999628051674807 0.65937288604626021 -v -1.5535284532416571 -1.3328666013271055 -1.9124303848857296 -v -1.7856839867412257 -0.85404510928230459 -0.11403236219100998 -v -0.96714125587763444 -1.088350727269866 0.42947384633339025 -v -50.627162733180938 26.769470470503094 32.053705142211378 -v -0.61977601368563906 -0.79878073166581121 -0.73318953018922617 -v -1.0244148241236104 -0.55183817953531189 -1.4714913843199886 -v -0.35817202730700309 -0.92020953234833269 -0.074841569186498091 -v -1.5053051657841336 -0.67745225846426693 -0.84783869705175618 -v -0.977202393033482 0.17587686435021258 -0.60365770859022205 -v -0.52466643364793408 1.1298664028273528 -0.35210911588480831 -v -0.57866364071239684 3.2232848577307007 3.0465591010207445 -v -0.89279047466349992 0.68903149810032083 -0.58252431627660672 -v 1137.5028860970453 11643.026298477353 8365.7230948165234 -v -1.02165740196779 -0.80659966578733466 -0.5599942256838838 -v -0.41995948449826209 -0.99189425494336758 -0.11369287607754094 +v 2.0263856482740215 -0.14527768716829975 -1.9989931672156755 +v 1.8970901722144906 -0.8164311062386338 -1.5905276540517059 +v 1.5086256281362656 -1.7451064742342606 2.2929633606622999 +v 1.5917919064463695 -1.5804977195847936 1.3780074562556479 +v 1.5925350643595491 -2.4267607519274716 -0.70025302165040904 +v 0.85781657162373337 2.9750475061593877 24.124502894269714 +v 1.6211573020722778 -3.862332649967025 -4.6590063515306035 +v 1.8590577539157194 -0.53431507389487642 -0.29939484191193022 +v 5.5868793305322519 48.646043167696234 60.765295086377179 +v 3.7751326892993138 12.76752854848452 1.8419179530960283 +v 1.8015559038646429 -1.0618374392660315 -0.67702800750033987 +v 0.58189198958781352 -0.83852040054921173 0.59577169456237378 +v 1.4360330605108029 -0.99794351947539461 -0.77382604270036826 +v -0.78517011154565164 -0.65426965185664532 2.8083410616526683 +v 0.66090175135876639 -1.7223349425553161 0.72049816208005169 +v -1.7240522619350445 1.2564698604915183 3.8117478054115521 +v -0.76739287862445704 0.043387319750191305 2.5770469779871807 +v 0.48557053068290484 1.9288237444919418 -0.045156964262917321 +v 1.2496044800312467 -0.96166067833414326 -0.47532165004327487 +v -0.99088153446994065 2.1403679024977871 2.3408277597057441 +v -9.6911485318977526 3.7372974829141419 5.5335145046600633 +v -1.40470359625424 0.26281241823511486 0.61138358204945054 +v -1.1648193271092286 0.074389854160794064 0.85003411062919132 +v -1.0804834185394716 0.35864030398717844 -0.58687636999999038 +v -0.97260744007250532 0.29745285019273565 -0.58172341305892528 +v -0.986110476567715 0.36032794764210496 -0.82195430834588956 +v 1.289557875669755 -0.60103512963091155 -2.1425369822334881 +v 0.58830525438043679 -2.0146769741548387 -0.77813840230117337 +v 0.57663854248302515 -1.6997766434336223 0.65825791182766147 +v -1.5121535984717367 -1.3758201697444203 -1.9748869322325249 +v -1.7374334079119302 -0.8711124833105891 -0.081608861263883004 +v -0.97037175327906466 -1.0896309012120862 0.42395027696533205 +v -51.178351859840937 27.288532531365814 32.567191360381173 +v -0.62185139981237403 -0.8009901993485935 -0.73580192215921625 +v -1.0335476670949597 -0.54974061436372479 -1.4869808220936367 +v -0.3600250086529817 -0.92194267817976427 -0.07414936732771249 +v -1.475443148858123 -0.68403754140306405 -0.84631616016125044 +v -0.97958912609249116 0.18493327932270823 -0.60417889625351895 +v -0.51157379607969855 1.1715550744762877 -0.34402585006960407 +v -0.52238330862683191 3.8258935797620128 3.481664521503979 +v -0.9453791126523049 0.65206556125161719 -0.61555212610537868 +v 1151.4811640213456 11786.016464042958 8468.456925086115 +v -1.0245831214743766 -0.80945500977223361 -0.55998603142907744 +v -0.42280185944038456 -0.99477528643148383 -0.11362279986539515 f 1 2 11 8 5 3 4 10 9 6 7 f 1 2 13 12 15 14 17 16 20 19 18 f 3 4 12 13 27 26 25 24 22 23 21 diff --git a/results/search/topology_34/resume.planes b/results/search/topology_34/resume.planes index b6dd306f..0b7c48da 100644 --- a/results/search/topology_34/resume.planes +++ b/results/search/topology_34/resume.planes @@ -1,37 +1,37 @@ 36 -1.905253529548645 --0.274004727602005 -0.070632092654705048 -0.56841862201690674 -0.099211521446704865 -0.34294229745864868 --0.15368054807186127 --0.27630782127380371 --0.063679270446300507 --0.55340898036956787 --1.2976232767105103 -0.27405110001564026 --0.61667507886886597 --0.61944383382797241 -0.13079153001308441 -0.071144700050354004 -0.086898207664489746 --0.45754784345626831 --1.0543045997619629 -0.5262102484703064 --0.27620327472686768 --0.9375033974647522 -0.045288775116205215 -0.064549058675765991 --0.21796229481697083 -0.61070364713668823 --0.82018166780471802 --0.052642971277236938 -0.0056402380578219891 -0.073314301669597626 -0.075568802654743195 --0.2424759566783905 -0.32721209526062012 --0.098814353346824646 --0.97966539859771729 --0.27351543307304382 +1.8706022500991821 +-0.28846931457519531 +0.11813296377658844 +0.57009726762771606 +0.099504537880420685 +0.34395512938499451 +-0.15413440763950348 +-0.27712389826774597 +-0.063867345452308655 +-0.55447453260421753 +-1.2982861995697021 +0.28011897206306458 +-0.61849629878997803 +-0.62127315998077393 +0.13117779791355133 +0.07141895592212677 +0.087233185768127441 +-0.45931166410446167 +-1.1032906770706177 +0.482595294713974 +-0.25992941856384277 +-0.94027215242385864 +0.04542253166437149 +0.064739696681499481 +-0.22114768624305725 +0.61962860822677612 +-0.83216816186904907 +-0.053534649312496185 +0.0057357731275260448 +0.074556104838848114 +0.075791977345943451 +-0.24319206178188324 +0.32817846536636353 +-0.099106185138225555 +-0.98255860805511475 +-0.27432319521903992 diff --git a/results/search/topology_35/resume.obj b/results/search/topology_35/resume.obj index 695c2ea6..7943b468 100644 --- a/results/search/topology_35/resume.obj +++ b/results/search/topology_35/resume.obj @@ -1,47 +1,47 @@ -v -0.69295456961577162 -0.76104916838010617 1.7706726503908756 -v -1.0971043702696428 -0.013638208973278816 0.55514602717837969 -v 0.1002371549793489 -0.41951447960886973 1.2472957577003358 -v 0.84349477883273993 0.12513967856037816 0.39554659205656251 -v -2.9803217051985755 0.77833978953843841 -0.78057232440991298 -v -1.1751603861963529 0.36711300447453926 -0.059884089985855482 -v -1.8511800513161136 -0.0036946451478935818 0.51442316274239497 -v 0.28913078791323882 -0.33878550767879678 1.1236306254310757 -v 1.1074603875088405 -6.7090823843048515 11.39762607388962 -v 1.519073278998937 -0.47729569870695648 1.3867684902088997 -v 0.41812007633345338 -5.5643480609735567 9.5336192334377898 -v -0.59258950552833312 -0.93475223377519867 1.9574885138455285 -v -0.50732738906867469 -0.95762961259237567 0.91140764040665934 -v -0.31011903926400897 -1.0895448493186912 -0.74479894255825974 -v 1.7140946715191621 -4.0730513589396979 -1.9998064096246182 -v -0.71777387378018198 -0.72743332593976828 1.8147151383287083 -v 0.1936586916182203 -2.3121296231926465 3.5814552950801111 -v -3.0391356466930888 3.2786404138957641 -2.3947167271475376 -v -0.96073361832026916 -0.19315010597203267 0.26298677425524941 -v -4.3938864012113097 5.7615449592933912 -6.251954402197148 -v 0.82304177826364455 0.15688745392350228 0.93824946009570298 -v 0.66605743946478002 0.0062993965285409598 0.72315257962518387 -v 1.1966993865898476 0.74741365582289321 4.0289414181621925 -v 0.97353355619310489 0.27687572361612006 0.87366341141653714 -v -0.45753956035257948 -0.91894570625643524 0.87879281836929879 -v 1.6374689692843594 1.2466470963399994 5.4819857793099631 -v 4.2585369505021013 3.5754429313900062 7.0125404171170924 -v -1.6661347159493234 1.6949993378616055 0.73874562724216974 -v 0.50368567873255743 2.6648361679238852 2.8025916344113542 -v 0.19274292492724387 -0.27160348213831081 0.21868692020360331 -v 1.1839234571166541 -0.25569054155640947 0.81210722941208735 -v 0.72772125155302347 0.88969565883204227 1.4818245824700504 -v -0.95012184314337123 -1.5083388685083605 1.5420023248082457 -v -5.8025271102264622 0.035429008241694725 -4.0351792015199708 -v -6.4208110067478277 0.72270009150954861 -4.7425643001731226 -v 1.7229235278388664 2.0968283576049713 4.6438085726902045 -v 1.6200643719818952 2.2195676722008448 4.5261819758615873 -v -3.1873079117247496 -3.0367352201973281 2.6617714347333736 -v 0.50102513113332592 0.41401228860158101 1.3977436188642538 -v 0.85628958602408556 1.1539806580509837 1.5308335984314625 -v 0.5437482351009284 0.37355700544124665 1.3328158216134658 -v 0.11855913130114672 -0.2838206006158952 0.19244091515444423 -v 0.82066927105174781 1.1959374490970203 1.489511052207074 -v 1.6347626932912012 2.2759509284613486 4.6223323910496239 +v -0.69160313454050248 -0.7577401483680426 1.7620414008686132 +v -1.0953738480578503 -0.011030229600943882 0.54765484657887287 +v 0.099646652537318817 -0.41704327097621685 1.2399484981387729 +v 0.90514715353362363 0.17322198067734115 0.31687108187024671 +v -2.962766456388997 0.77375508363014611 -0.77597458407506059 +v -1.1682381517985929 0.364950552575591 -0.059531403961529117 +v -1.8439042077128087 -0.0011597890043714475 0.5072314492407578 +v 0.28742767740631608 -0.33678984235304255 1.1170118278675434 +v 1.1009374000885208 -6.6695615852783048 11.330487256828388 +v 1.5168759929596933 -0.37227658365974942 1.2144115693280471 +v 0.41565734798145237 -5.5315701210168129 9.4774599505591066 +v -0.59109556559910448 -0.93112308721436099 1.9436461726386902 +v -0.50664732914504784 -0.95378209257988167 0.9075509272812754 +v -0.30970680304357578 -1.0858244982670135 -0.74344646476222309 +v 1.9033172830636678 -4.3476203083150544 -2.1155157344336466 +v -0.71457902660236816 -0.72662106642284385 1.8028127076750811 +v 0.19276742916456904 -2.3052459091459534 3.5716135376495353 +v -3.0234264762220207 3.2576706438801759 -2.3821332642776398 +v -0.95964610237328007 -0.18969570639159253 0.25687320308048489 +v -4.4939761192652483 5.9528043350764541 -6.5690724273557279 +v 0.81819360242140715 0.15596331754823653 0.93272267591227198 +v 0.68729010462790863 0.030393453949132076 0.7533612648596919 +v 1.1896501059328033 0.74301091688625431 4.005208365709815 +v 1.0460505292841142 0.33763540448295559 0.83493407119328023 +v -0.45484455009211466 -0.91353262360983523 0.87361616631157102 +v 1.627823365690791 1.2393036381117897 5.4496936649977084 +v 4.241657314691035 3.5616719170514073 6.9760240856270297 +v -1.6563206025382073 1.6850148844228692 0.73439373167956112 +v 0.50071876404018589 2.6491389214305068 2.7860828626292693 +v 0.1752162552365551 -0.27026674798799838 0.20758525952623486 +v 1.3344522211454914 -0.2516557515647494 0.90162047338037177 +v 0.72343461468140624 0.88445494170837968 1.4730958911732379 +v -0.9445250980108193 -1.4994539377336651 1.5329190976024538 +v -5.7683499000282152 0.035220689979881641 -4.0114123730852569 +v -6.3829911778612454 0.7184423357098686 -4.7146298280263705 +v 1.7851895270792479 2.2701732906112406 4.7010669468363915 +v 1.7562715056035789 2.3046804644731846 4.6679971826995832 +v -3.1685329151630781 -3.0188472328667291 2.6460921683363559 +v 0.50060191854443981 0.41683927001337334 1.3904572650264 +v 0.91897875709161747 1.2882623006321399 1.5471905499622636 +v 0.54259077334331185 0.37707925036458023 1.3266453241314351 +v 0.11777110445634906 -0.27972722809417389 0.1872613368483651 +v 0.86521548780494018 1.3515894881878652 1.4848206571366966 +v 1.7640660946550244 2.3345807880638594 4.7189862224167065 f 1 2 7 5 6 3 4 10 9 11 8 f 1 2 19 18 20 15 14 17 13 12 16 f 3 4 24 21 22 27 26 23 12 13 25 diff --git a/results/search/topology_35/resume.planes b/results/search/topology_35/resume.planes index aef9ab04..0eeaa2f2 100644 --- a/results/search/topology_35/resume.planes +++ b/results/search/topology_35/resume.planes @@ -1,37 +1,37 @@ 36 --0.0052011106163263321 -0.25513461232185364 -0.15860815346240997 --0.74872958660125732 --0.48679676651954651 --0.050380077213048935 -0.3014691174030304 --0.36063733696937561 -0.032458610832691193 --0.095458082854747772 --0.13333839178085327 -0.16301767528057098 --1.3099384307861328 --0.0075329169631004333 -1.1376217603683472 -0.66075193881988525 --0.44533902406692505 -0.71226334571838379 -0.053189951926469803 --0.14019212126731873 --0.085082992911338806 --0.50795221328735352 -0.13962137699127197 -0.57962262630462646 -0.14576780796051025 --0.043507620692253113 --0.029269276186823845 --1.6729865074157715 -1.0517971515655518 -1.2646334171295166 --0.013114624656736851 --0.28996738791465759 -0.17204365134239197 -0.53854978084564209 -0.23842999339103699 --0.2221439927816391 +-0.005170473363250494 +0.25363174080848694 +0.15767386555671692 +-0.74668222665786743 +-0.4854656457901001 +-0.050242319703102112 +0.29969325661659241 +-0.35851296782493591 +0.032267414033412933 +-0.094895787537097931 +-0.13255295157432556 +0.16205741465091705 +-1.3022221326828003 +-0.0074885440990328789 +1.1309206485748291 +0.65685975551605225 +-0.44271573424339294 +0.70806771516799927 +0.052876636385917664 +-0.13936631381511688 +-0.084581807255744934 +-0.50496011972427368 +0.13879893720149994 +0.57620835304260254 +0.14490915834903717 +-0.043251335620880127 +-0.029096866026520729 +-1.6631317138671875 +1.045601487159729 +1.2571841478347778 +-0.01287644449621439 +-0.2847011387348175 +0.16891910135746002 +0.62301498651504517 +0.27582493424415588 +-0.2569846510887146 diff --git a/results/search/topology_36/resume.obj b/results/search/topology_36/resume.obj index d8c649ad..d361d22d 100644 --- a/results/search/topology_36/resume.obj +++ b/results/search/topology_36/resume.obj @@ -1,47 +1,47 @@ -v 2.2840764235214452 3.613739214823787 4.1118516180475897 -v 1.3730263376935243 -1.9635781167400137 1.1369426816864308 -v -0.52967999059883819 0.63426697912231145 0.98982398708066055 -v -1.1397245976476136 0.75302348275857556 0.63856489837969965 -v 0.33557613704812228 -2.4694562620154366 0.23819030611134084 -v -0.36668386293779065 1.4398485307645892 1.4402024988404849 -v 0.5217083955388786 -1.7392603921096712 0.67170902164498125 -v 1.246214054999411 -2.0388806864703741 1.0213499302106475 -v -0.50192412922236895 -0.1255349551654216 0.6845833249047053 -v -0.71627272472031234 -0.43188225637588373 0.41295333570059767 -v -0.71092349044438308 0.0006729840230628606 0.60065839754609796 -v 1.846728164026088 -1.2904790699865636 0.93860209244375103 -v 3.5392046567253397 -22.0606753277502 -17.932136136261235 -v -0.58140016995625221 -7.9210144903934516 -0.53712172948552506 -v -3.1739169976284241 -12.801659462943105 -0.38958520526208695 -v 0.76234326710980604 -3.0333295479431213 1.234323704410019 -v -0.49430395608572641 -8.4846601948330527 -1.1123007015958284 -v 1.1790074583830457 -0.59647047245024087 2.5056218304268851 -v -2.7873841878802392 9.0177093608463252 16.117764316242887 -v 4.0496099252604862 2.0657298463723053 0.19340830358947092 -v 0.68640890254275111 -0.91357976480916558 0.41712113122194322 -v -0.16364134035464009 0.49406866506432523 1.1336525792677903 -v -0.50202161858127858 0.4157979976637533 0.79887220188693964 -v -1.4401806287902255 0.26319294192409431 -0.066781872138431675 -v 0.92767788418252106 -1.6318467431777004 -0.09570147706617016 -v -0.17638468489726875 -2.1519825073431567 -1.4450608903877444 -v -0.13557735343176081 -2.0693878022117134 -1.3336632607985435 -v 2.5123026109494013 1.5472290999600047 0.096279486037512074 -v -0.59155875428692961 -3.867206242370461 0.36817915423341752 -v -0.16586764849108976 -0.2581586039105776 0.96761761849218941 -v -1.047600264903656 0.74732394757041454 1.6098676943873731 -v 0.31787316284353417 -2.6178943918173769 0.21362815561822601 -v -0.37834759799695278 -0.57636930167442157 -0.058178902972334856 -v -0.33138240751129439 -0.12824814754321673 -0.21026670921920426 -v 0.58565371174692393 -2.8509023228969275 1.1081805202209234 -v 1.5471011504156131 -1.6209413835296991 0.96383462905415151 -v -0.10712812317507781 0.49392580641964789 -0.36925548580049455 -v -0.50290914642316842 1.1224753080223369 0.95205602126412514 -v -0.18281576394523219 -2.0808570793790193 -1.3997149079751807 -v -0.077201169214958926 -0.16597210698759088 -1.5510608360572828 -v 0.99944066944701482 -0.71143171158268537 1.9629931998850192 -v -0.9851887768842269 -3.6967481195421432 -0.55110789959745854 -v -10.588141586393796 -8.4604520308288667 -10.606013464122992 -v 0.13365558756405282 0.2273978242318562 -0.96840466132513303 +v 2.2745585662713728 2.6364777694588923 3.7225847022098146 +v 1.5217654008834722 -1.8271260352367995 1.2773362113279259 +v -0.43742956850624359 0.75985112412006073 1.0569857673063427 +v -0.82804100329211827 0.78253638504395351 0.79977780758253036 +v 0.30194761313867535 -2.3306556296735277 0.22568320124739677 +v -0.33826056624296474 1.1402333176780377 1.2893039359969598 +v 0.4863251004411096 -1.6741797560763911 0.63566828118970065 +v 1.3175437004224173 -1.9414071604126408 1.088301258532115 +v -0.45254351999867654 -0.050808352245570114 0.69601934700050205 +v -0.74743847838085442 -0.34354628674572335 0.36781267401086026 +v -0.71692196493057359 0.1687909504287986 0.61027486982919432 +v 2.0403928209388189 -1.0841538959284311 1.092224598248162 +v 3.4853731258728402 -24.439081193544133 -19.807081350269026 +v -1.2913516025627694 -9.4706961316266458 -0.6156406184887635 +v -8.4417641960675205 -22.3117336432 -0.14595885839815304 +v 0.96695131244269417 -2.8757697374168854 1.2718635157929676 +v -1.1509751573826768 -10.919054048647434 -1.9881379512126141 +v 1.194511974742944 -0.70227157840393895 2.6718084830724198 +v -1.7654330137718401 7.8615886216779387 13.993597357913837 +v 3.7716192894690144 1.4695414428056581 0.53329928003322391 +v 0.6707674054779984 -0.78474979719465732 0.39680347942247235 +v -0.17398104663059391 0.59876866252178285 1.0935747738618586 +v -0.41962100054632656 0.54148462805219699 0.86464371054717515 +v -1.1507360266930482 0.40064125405307938 0.21110569143450952 +v 0.59284854739453241 -1.683566586315888 -0.50271565463041457 +v -0.2012383061010119 -2.1286457796345095 -1.4868214903109211 +v -0.13622765163858144 -1.9935086295949447 -1.3135786337679927 +v 1.8037776366242277 0.96214477252927255 0.25874723928756083 +v -0.87015875541046273 -4.1108533578190212 0.3744673712302794 +v -0.16435335157152414 -0.23261034514811424 0.90531041024129077 +v -1.0485330626248117 0.98113586215576032 1.5827927915108591 +v 0.26745927832656674 -2.5796901837491268 0.18658297394081336 +v -0.33042148259195747 -0.5722441863368567 -0.10927207812813983 +v -0.23157248620428372 -0.038115386515282325 -0.25783524566029559 +v 0.50422781548066076 -2.52751506438165 0.94854449135252938 +v 1.4652473142698275 -1.7588708408490628 1.0864674267923489 +v -0.069541431774960291 0.30894527321898829 -0.31235480799256177 +v -0.39627827705506991 0.96236182371095291 0.98469104189257117 +v -0.20408914409884624 -2.0053245662420642 -1.4126804795883021 +v -0.00053570257822229696 -0.26637649832464616 -1.3822630335335755 +v 0.86913694136332531 -0.88381030351655709 1.657401306785208 +v -1.1969290275209907 -3.6575900689069685 -0.81041085136113278 +v -16.993742774563174 -11.684406394665286 -16.560245929706891 +v 0.18937001145187818 0.057645917763987323 -0.85513371968179674 f 1 2 8 7 5 6 4 3 9 11 10 f 1 2 20 19 18 17 14 15 13 12 16 f 3 4 24 25 27 26 13 12 21 22 23 diff --git a/results/search/topology_36/resume.planes b/results/search/topology_36/resume.planes index 1aa96447..9da8b4e1 100644 --- a/results/search/topology_36/resume.planes +++ b/results/search/topology_36/resume.planes @@ -1,37 +1,37 @@ 36 --0.43580448627471924 --0.28172183036804199 -0.66163092851638794 -1.8484717607498169 --0.94541037082672119 -1.2063573598861694 --0.23575548827648163 --0.29928156733512878 -0.30826172232627869 -0.35254311561584473 --0.1648334413766861 -0.74205660820007324 -0.039316575974225998 --0.044799923896789551 --0.11986025422811508 --0.35293790698051453 -0.014146470464766026 --0.067306272685527802 --0.57414931058883667 --0.13326959311962128 -0.6114811897277832 --0.36345863342285156 --0.45745730400085449 -0.21719266474246979 --0.31171342730522156 -0.072141118347644806 --0.1573617160320282 -0.38486862182617188 --0.025727506726980209 --0.12191018462181091 --0.15707983076572418 -0.52096515893936157 --0.29487490653991699 -1.1603556871414185 --0.92741543054580688 --0.66881865262985229 +-0.42450392246246338 +-0.26859575510025024 +0.62098747491836548 +1.938306450843811 +-1.0322343111038208 +1.287534236907959 +-0.19552092254161835 +-0.25748461484909058 +0.27422013878822327 +0.32266020774841309 +-0.15416552126407623 +0.69729846715927124 +0.056293565779924393 +-0.046867839992046356 +-0.13104796409606934 +-0.26815003156661987 +0.032467473298311234 +-0.0616878941655159 +-0.53069132566452026 +-0.14320527017116547 +0.60525804758071899 +-0.3759782612323761 +-0.37906906008720398 +0.18843483924865723 +-0.24774095416069031 +0.090514764189720154 +-0.16008225083351135 +0.40378808975219727 +-0.036613594740629196 +-0.12296421080827713 +-0.066948510706424713 +0.36949330568313599 +-0.20300561189651489 +1.1248342990875244 +-0.91682648658752441 +-0.66093391180038452 diff --git a/results/search/topology_37/resume.obj b/results/search/topology_37/resume.obj index 583b70a1..e10c6b35 100644 --- a/results/search/topology_37/resume.obj +++ b/results/search/topology_37/resume.obj @@ -1,47 +1,47 @@ -v -1.9675767106284798 -1.03759650617407 -1.8849232915320508 -v 0.4431557973379357 1.1939683299140682 -0.45271290948056758 -v -2.0036642498931858 -1.350399992177074 0.88700411342187513 -v -1.1326163662867672 -0.6118726928758389 2.0821785364538341 -v 0.47328802770952105 1.1064445218113927 0.71910116533001156 -v -0.023532402358724714 0.50648632217370515 1.8242528210287474 -v 5.0181593754899172 3.1364389384418221 25.185403534114091 -v 1.2911167981475229 1.8195794809398502 1.6439957879158391 -v -0.69152901246346221 0.015011570547469898 0.15891818217292519 -v -0.40661516743343212 0.21266364345810157 0.98890714264593504 -v -0.477334158535974 0.19357965072455555 0.48320390015595721 -v -7.4027436399880884 11.41960807939603 4.2795092671349568 -v -2.2296363889723372 -33.810951730702563 -19.513669206164177 -v 0.87836638597210737 1.7137675174021922 -0.13134739213579205 -v 0.97391932688966465 -0.78329950415620542 -1.4633234779779212 -v -0.14605463280039663 1.6569330824522783 -0.2611339029782429 -v 0.77432169234197523 1.1160795560174452 -0.46246113052365911 -v 0.61154299555240998 1.1458335424566373 -0.46225169158670454 -v 2.6519213989061496 -1.4286960369499406 -1.6473945169650757 -v -1.181333006018342 7.4741197957969501 2.7631050451683414 -v 0.14009001972006002 -12.256312386553789 -4.0931734436872667 -v -0.42266963847686506 -1.8591639374878244 1.9049776828866138 -v -5.2066449495875933 1.4150038958225657 -0.095323957169279161 -v -4.0403994017281812 1.5232166878118552 0.95663332224519149 -v -3.9090767557933113 1.494398052723418 1.0495579159219723 -v 1.352619474461771 -3.3373837244984754 2.4833992479548441 -v -1.6800312230832037 -16.074047459963801 -8.0066988595332589 -v 0.50175533868407485 1.7455136742130679 0.91488441248817598 -v 0.45342049269749657 -0.26099176115805145 0.18763682987030023 -v 0.85667741314241308 0.95558764854152978 -0.39675444479369115 -v 0.13271510892496879 -0.32820091415845287 1.0381792398722027 -v 0.12396495995069517 -0.65471788108570883 0.92226048878277533 -v -0.097937626878060846 1.6417018691085359 -0.62704162066248359 -v 22.939591067155096 2.0522131575663516 -15.738399728715644 -v -0.6341798758723074 1.6912408947092967 0.95277501085355976 -v -1.5407811772569373 1.590004715759999 -0.22065922466869559 -v 0.93698060428541385 -0.42909528513421641 0.22308649774006739 -v 1.1840207685866921 -0.44075069145350748 0.20760921802200033 -v 0.082733538459831391 -1.1507553114977223 0.62140392236702591 -v -0.12760586108550442 0.092579389560132716 0.89510719296310171 -v -0.44316018000075724 0.13080996700971106 0.5183396427406376 -v 0.88060719493894324 -0.34971361193823336 0.5147753479359084 -v 1.263444738883891 -0.27508646378173068 0.25489656175031361 -v 0.97053869162668105 -0.10591476458489885 0.32117346867110891 +v -2.7398058782359782 -1.4011126794782263 -2.4093865140700474 +v 0.70972898068533252 1.4436461338379158 -0.71209065716666198 +v -1.7629515354670489 -0.80118881785930263 0.69477312108434264 +v -0.97391476308740832 -0.21361840151796008 1.8883203920055616 +v 0.61459921811145701 1.2308018693198419 0.9554284996391107 +v -0.030486559038728132 0.57910752565849533 2.1649997333833038 +v 5.970868764847352 3.6880423450365778 28.592368420920124 +v 1.6158502141285485 2.0182274983239474 1.9364471988046779 +v -0.94580786699131503 -0.058569914238183508 0.22001266400383057 +v -0.53522822557667549 0.2119327897254365 1.2906420980865458 +v -0.70279980202764825 0.12339166872281064 0.57482998513262173 +v -18.281307218681679 14.770972248748402 4.8812861398652263 +v 1.0686222662045235 -9.4878702538768582 -6.3209133280701506 +v 1.3359205413507125 1.8759772783678981 -0.44730521189581851 +v 1.2386141061786378 -1.0136245365077026 -1.9428158559286606 +v 0.45781513154825532 1.8145294687102478 -0.53787847405915379 +v 1.2175565322803488 1.3874281531470938 -0.70699037379149798 +v 1.0057499076680825 1.4006148330934403 -0.71440497102595479 +v 3.2305389306771697 -1.6950480221950652 -2.160313391530214 +v -1.8969675913620601 10.907328853727925 3.9895728374265773 +v 0.0073342984169484544 -2.487967706897301 0.22736855608119777 +v -0.18432669913383126 -1.104601428125664 1.5347381197853469 +v -6.6620541960865829 1.3488580090708626 -0.64715860768836997 +v -4.9897292631548531 1.5306840052299633 0.76938926023112231 +v -4.6919420291940463 1.4661223962691377 0.92016928340536674 +v 0.73746480971769801 -1.5269007738391112 1.7686441736022864 +v -0.23039290652776365 -2.6458710101435492 -0.11221598547494116 +v 0.69217911515447772 1.9189712538994965 1.1765348855955673 +v 0.48057093700045767 -0.30092213264114842 0.36735129341866418 +v 1.2444678165455982 1.2311064197004378 -0.60794577358725499 +v 0.10203728200183093 -0.33304096624088914 1.2876981706020252 +v 0.083808872897575618 -0.66569288963124906 1.1329766536801422 +v 0.37994399498499665 1.7876607785249916 -0.95712556991857745 +v 29.055789424787523 2.6742536923397955 -19.5027955856748 +v -0.89098242658235638 1.8132198522374889 1.1098935142928881 +v -2.2401342771631083 1.6423779814132413 -0.49661056361449618 +v 0.8745417796552144 -0.41284824580755353 0.43658538476962938 +v 1.1815584077370833 -0.42098857874083767 0.44037143720429917 +v 0.022821273934257334 -1.0836133762489975 0.86591934808777338 +v -0.16539329528904664 0.067297192350466897 1.161250459018933 +v -0.69998743412797049 0.11951755207930852 0.57770608817917157 +v 0.85586594525017834 -0.34077105190867063 0.76134190813905678 +v 1.2647148772729826 -0.26481753617619924 0.49191134559923905 +v 0.99577111723797018 -0.09741287311800273 0.53971459117577769 f 1 2 11 5 6 8 7 10 4 3 9 f 1 2 18 17 16 14 15 19 13 12 20 f 3 4 26 22 21 27 13 12 25 24 23 diff --git a/results/search/topology_37/resume.planes b/results/search/topology_37/resume.planes index d9ad0536..1dabae94 100644 --- a/results/search/topology_37/resume.planes +++ b/results/search/topology_37/resume.planes @@ -1,37 +1,37 @@ 36 --0.35422810912132263 -0.3595852255821228 -0.035966414958238602 -0.084879040718078613 -0.47052416205406189 --0.87600666284561157 --1.3743873834609985 --1.0135719776153564 -1.6279697418212891 -0.48610928654670715 --0.075967550277709961 -0.17728939652442932 --0.082409508526325226 -1.6687777042388916 --0.080301143229007721 -0.0074601024389266968 -0.040187738835811615 -0.088810212910175323 --0.041609127074480057 --0.11479873210191727 -0.023200294002890587 -0.29088059067726135 -0.33034932613372803 -0.44230982661247253 -0.017552552744746208 --0.11258676648139954 -0.3649497926235199 --0.46150228381156921 --0.15959668159484863 -0.37032797932624817 -0.56196135282516479 --0.46740871667861938 -0.69362539052963257 -0.0818619504570961 -0.22315043210983276 -0.31903505325317383 +-0.38207557797431946 +0.44260048866271973 +0.034697182476520538 +0.079425796866416931 +0.61005938053131104 +-1.1839148998260498 +-0.78696709871292114 +-1.1233245134353638 +1.0732530355453491 +0.5745052695274353 +-0.13912555575370789 +0.23143559694290161 +-0.11632578074932098 +1.8005689382553101 +-0.093788385391235352 +0.00057159236166626215 +0.080792099237442017 +0.1273585706949234 +-0.062079381197690964 +-0.19407831132411957 +0.039504166692495346 +0.36063230037689209 +0.41866549849510193 +0.56279128789901733 +-0.01037546806037426 +-0.15918777883052826 +0.49909496307373047 +-0.60282886028289795 +-0.23490342497825623 +0.53123986721038818 +0.61598658561706543 +-0.58230280876159668 +0.77057892084121704 +0.044263418763875961 +0.28609845042228699 +0.34209266304969788 diff --git a/results/search/topology_38/resume.obj b/results/search/topology_38/resume.obj index 02526739..09c1e254 100644 --- a/results/search/topology_38/resume.obj +++ b/results/search/topology_38/resume.obj @@ -1,47 +1,47 @@ -v -0.33404691876228931 3.5832943038113405 -1.7034614182975432 -v 323.67573945656159 2426.8439790718567 187.84003640285056 -v -0.59364917151244001 -0.99299279780349103 1.3502098393932784 -v -0.26110802563839663 0.12278223345544301 3.2131228453576117 -v -0.50965818809835195 -0.22020105264736425 1.2233858328470251 -v -0.60371082497213979 -0.48321012785595774 0.63254411676818989 -v -0.52623172679088881 -0.61180265186031035 1.5393244272539433 -v -0.35764525968275374 1.5419256574788187 0.55163251309289096 -v -0.47752506314155241 0.90868091933940531 0.16111994201481594 -v -0.67921892121256777 0.21218571127989375 -0.94474847482791857 -v -0.61653424714317528 -0.68300031112816972 0.75143291818343427 -v -4.7003197735078075 -1.3316328072161718 -1.2324572974940349 -v -1.0220844764133019 -3.2463581748860584 -2.2895910258667178 -v -1.9456967128653562 -1.7259520617765174 -1.9107665514832035 -v -2.9060334034955111 -1.7457866708435117 -1.6914444924817218 -v -0.30254900298878529 3.4493487207524605 -1.7253334217600624 -v 1.5289452283673313 4.3573214275993593 -2.0487163176588288 -v 2.4104855372944516 2.9186265654774659 -2.4089265347382058 -v 1.4586454962736128 0.33456988767072027 -2.4712075289111728 -v 0.63142021441999041 0.48516826761175158 -2.2639986102911616 -v -0.98042912859080167 0.96148607080939419 4.1253077421299453 -v -3.1143493132325095 -1.0548271480810667 -0.013158885996789493 -v -1.9853303329204375 -0.62131458223497238 1.2141413629897253 -v -1.6372748332439824 -0.66234964972580079 1.3270663080740186 -v -3.0845407731960104 -0.93526313576313835 0.18353293769649243 -v 4.9601397047497926 -3.5021372704650129 0.33435973949049475 -v -0.047710997435205606 -1.1712982865841111 1.3542016142501963 -v -1.7946264307267517 -0.42543285577607254 1.0977314221704244 -v -0.44409855146746069 0.13117464396594528 2.0293755769147488 -v 0.70778042153019083 -0.64755050050342033 -0.11596095891146033 -v 0.27694864257075263 -0.50946895482580168 0.32716817370049911 -v 0.31901209626495475 -0.61792843205404946 0.061136511266250859 -v -1.8262473195336733 -0.52215747531836443 1.1694860720137725 -v 0.43023624582691156 0.86139190409595989 0.55479934636339012 -v -0.40195950892543592 1.0055136158609799 0.24723493667318702 -v 0.67616711175683153 1.6376538749695626 -0.022855984484589253 -v 0.35565027216917988 1.5416349638450291 1.3726821826373479 -v 0.46433785034994191 1.8858907163622207 1.1128618507263646 -v -1.5706388095120363 0.31442213435609756 0.52829720145399184 -v -1.8522927520401771 -0.46638717583883599 1.0771668550777216 -v 0.24977717694507398 -0.44989591863618572 -0.22258756044827416 -v 1.4318293033165692 1.5512142047829844 -1.2711124436320937 -v 0.2141663591945675 2.7392686834350908 2.8377078379629275 -v 0.40328886224866167 -0.087593117183309491 0.040011073545018948 +v -0.39183544191802211 3.277998603825885 -1.040331902413727 +v 309.63889637719473 2321.9895600052228 180.3254852949039 +v -0.67837574342186968 -1.1304863058466081 1.5483082863063957 +v -0.29689933207272767 0.15507016786587197 3.6785593184342513 +v -0.58343245717874748 -0.25493680256085266 1.4025292586530784 +v -0.69100901808689374 -0.55390638586483576 0.72446949937588312 +v -0.60227770242835854 -0.70021454571083042 1.7617730401429013 +v -0.40924189785876797 1.7722584806812052 0.62305482005018697 +v -0.55088288153372988 1.0240640565940282 0.16165444454646538 +v -0.77750206282007572 0.2446896518748356 -1.0847626912978185 +v -0.70562988759392098 -0.78170095549177654 0.86002283244011857 +v -4.456380117559152 -1.2972860435555653 -0.60187624835868991 +v 0.3501668939373811 -3.8165211976863262 -1.9851608639100755 +v -1.0587368905472283 -1.4972516617353846 -1.4072915575714171 +v -3.4619136333672222 -1.5428382240548308 -0.85801171626817674 +v -0.90631871770971784 2.5930537343777624 -0.99637244293986638 +v 1.3499892154809157 3.7116299036601714 -1.3947637269801121 +v 1.8395211093325998 2.0559142154330261 -1.6882313119047507 +v 1.0831241103330618 0.0024464576921175507 -1.7377240488609274 +v -0.53021094015491099 0.29615804619651875 -1.3336051404261866 +v -1.0998843377389549 1.0415838391469172 4.6118202118012057 +v -3.5696336542390341 -1.1909910510848714 0.0040501593802755309 +v -2.2705551257453491 -0.70704587799238716 1.3866692706790635 +v -1.8806055392204426 -0.75307530271427214 1.5132315683543553 +v -3.5380647761821242 -1.0706554856676345 0.2013736999885819 +v 5.7395386517930147 -4.043966094306783 0.38033114639805815 +v -0.05382962888513855 -1.3393920182747314 1.5471615230450328 +v -2.0538975771992978 -0.48669470050404889 1.2562037101318411 +v -0.51206291861429831 0.14345105389132087 2.3257517437370545 +v 0.82652994061579155 -0.74324432809438468 -0.13855190883694757 +v 0.31643317030607576 -0.58488727589133771 0.37566903349742586 +v 0.36468963625498629 -0.70786394253412666 0.071463147754639911 +v -2.0901591634241421 -0.59761469936290335 1.3384891385278441 +v 0.49774788312470997 0.99409384634954245 0.62947907492985922 +v -0.44588800570757675 1.1575150480916672 0.2807283821895627 +v 0.77229720458891371 1.8692630149433302 -0.022398049411049503 +v 0.40704545125493252 1.7644174124084668 1.5710492323530998 +v 0.53415767391865321 2.1670311708964638 1.2671843237220637 +v -1.7970500127381015 0.36141910459258236 0.60354528584139722 +v -2.1199684686915417 -0.53378494056870518 1.2328287078997702 +v 0.29049165200143945 -0.51191316998084857 -0.26334567710699941 +v 1.6354771902641361 1.7708169772721625 -1.4510039241703918 +v 0.24885235362869004 3.1034908229096843 3.2090934823259185 +v 0.46430261869563744 -0.091120940621118557 0.039578402167652196 f 1 2 4 3 7 5 6 11 10 9 8 f 1 2 17 16 18 19 20 15 14 13 12 f 3 4 27 24 23 26 13 12 25 22 21 diff --git a/results/search/topology_38/resume.planes b/results/search/topology_38/resume.planes index 18ef5470..3112efc0 100644 --- a/results/search/topology_38/resume.planes +++ b/results/search/topology_38/resume.planes @@ -1,37 +1,37 @@ 36 --0.59264802932739258 -0.07445516437292099 -0.061196975409984589 --0.47016829252243042 -0.22232140600681305 --2.0386011600494385 --0.4464128315448761 --1.3469876050949097 -0.88645350933074951 -0.067283302545547485 --0.57007670402526855 -0.24305523931980133 --0.15400227904319763 -0.55101072788238525 -0.67489165067672729 --0.86509686708450317 -0.84057766199111938 -0.75185960531234741 -0.25206759572029114 --0.095314063131809235 -0.10226090252399445 -0.030784009024500847 -0.035329326987266541 --0.066739186644554138 --0.47317814826965332 -0.66495001316070557 --0.33249649405479431 -0.034069281071424484 -0.05353965237736702 -0.093647018074989319 --0.11122152954339981 --0.35720247030258179 --0.18440879881381989 -0.39715519547462463 --0.059642788022756577 -0.087111979722976685 +-0.67829185724258423 +0.085214719176292419 +0.070040576159954071 +-0.3222510814666748 +0.15237802267074585 +-1.3972475528717041 +-0.51217561960220337 +-1.5367985963821411 +1.0191401243209839 +0.075640536844730377 +-0.65457230806350708 +0.27661287784576416 +-0.17625722289085388 +0.63063758611679077 +0.77242052555084229 +-0.99011248350143433 +0.96204996109008789 +0.8605111837387085 +0.28849402070045471 +-0.10908794403076172 +0.11703867465257645 +0.039035547524690628 +0.044799219816923141 +-0.084628365933895111 +-0.54019147157669067 +0.76315581798553467 +-0.37897935509681702 +0.038992647081613541 +0.061276696622371674 +0.10717999190092087 +-0.12729419767856598 +-0.40882197022438049 +-0.21105778217315674 +0.45454829931259155 +-0.068261794745922089 +0.099700577557086945 diff --git a/results/search/topology_39/resume.obj b/results/search/topology_39/resume.obj index d8c3b452..5c9589a7 100644 --- a/results/search/topology_39/resume.obj +++ b/results/search/topology_39/resume.obj @@ -1,47 +1,47 @@ -v -2529.6558985417723 -459.07477410592679 -1303.4325450461326 -v -10.581463458401242 -3.9010139894319145 -2.2271695226049051 -v 0.12972285411533466 1.5053799695591201 0.47342989111773015 -v 0.90112440792350812 0.82333176795017049 1.5421442000148176 -v 0.2656967989663046 2.030871543066584 0.13493531732240349 -v 0.31471844117589426 0.55397468594650678 1.3725677747423992 -v 0.51635610126189657 0.83845555110669567 1.2743265848774135 -v 3.5518125629153028 -1.3349770339709481 5.0632254731592328 -v -5.4214834909253229 -1.9509924477264184 -0.3921942508414924 -v -1.8670930748447425 0.30092233443778749 0.13037496238420454 -v -1.3173743982198012 1.6265811324396426 -0.58630411129968518 -v 1.3103773748013299 -0.73434050191641165 1.3459945386878083 -v 2.2661293467014616 -1.0296221203289806 3.0209526173726298 -v 0.6531886157140625 -0.71198061087329523 0.65034357781079644 -v 0.22129508361714206 -1.1315598984311224 1.2893717056478646 -v 1.4152440633094803 -0.26039543043432573 0.25165545586699939 -v 5.5380081938182313 2.4299214821757515 -2.5292927666487661 -v 1.1292870184049557 -0.80938746476332746 1.3592926090611952 -v -0.86981166188218839 -1.0629258757547828 0.054867921837584877 -v 1.5417026697956446 -0.28957680576482181 0.44831442670703825 -v 0.80489159488732398 -0.60806183194532337 0.44105298736338366 -v 0.89277143292848327 -0.63354950773061303 0.59612392187944296 -v 0.80736251526235137 -0.025338925125764026 0.81774547138315667 -v 1.1113940158594586 2.4367804696130317 2.9817508060896558 -v 3.7938948390566423 0.24474098327965099 6.8128428883356751 -v 5.1668041967374272 3.8795083072391656 11.80914943260526 -v 1.2204709182355737 0.53223023697791749 1.9789916622552468 -v 0.22884005575987842 -0.70744804427383134 1.1327371669778916 -v -0.10359928863666448 -0.53746121642179623 1.4525578433892594 -v 0.35251654577790537 -0.094915345612634053 0.77788771816153401 -v -0.26152428255949406 0.3991260365960298 1.305772912738292 -v -0.87773219679747139 2.0205463766007958 1.4426362907278039 -v -0.26542512326432011 1.3567226368615519 0.97598825688956903 -v 7.4485662647923796 2.5106925923346712 -4.1060527653342609 -v 0.23286226348760816 0.64144813453762639 1.4625855623687882 -v -0.18490844627143677 -0.2946505191928625 1.5804905151204827 -v -1.659559300519754 -1.5015904361642771 1.2785282673043477 -v 1.6094817054878601 -0.37625454471257858 0.36082669770488723 -v 29.118358707228577 5.9969994301220995 2.6232832574013965 -v 7.2187680961376666 -1.6533376012297516 9.130963030031424 -v -0.87866802157618917 -0.34535598980051746 0.70826204840935114 -v -1.4771239354026182 1.7224793880335474 -0.67443317432962457 -v -4.2258427840423511 1.3416868505266764 -0.93973954381538383 -v -3.3891478074854446 1.4863681657622414 -0.58346755111384696 +v -1548.8715158976017 -288.85557984290097 -813.64325823820786 +v -4.7692858932516637 -2.7971297161070869 0.38889617624388695 +v 0.085487062948255491 1.0875412528270814 0.72334168780815955 +v 0.63976353282313758 0.60894433875190856 1.448779058706207 +v 0.34966864861083857 2.2423738196613217 0.038394040185025013 +v 0.3720429367625574 0.48754899323255996 1.3611508949321662 +v 0.4678312247397769 0.63404393764510336 1.315692372488968 +v 4.0601809612081539 -1.802271347625076 5.5213316012918368 +v -2.3721839604274058 -1.4860221992447573 1.0064264126814333 +v -1.8166145461502821 0.27934853485924599 0.060293358169999589 +v -1.5298928671460457 1.5896024145654559 -0.72549484123204944 +v 1.0848178573828025 -0.66722413389402091 1.1574097378598522 +v 2.0549987481111596 -1.0365235511744759 2.8861321578237304 +v 0.2968512550316072 -0.97596152461491037 1.1028552103600524 +v 0.21314994084364489 -1.0713772424850447 1.2358946076116295 +v 1.1671434862531429 -0.29689138896822448 0.41356571678124554 +v 4.9735205619517542 2.5150675995119234 -2.2506994886353171 +v 0.36080956613827592 -1.0189466106284033 1.2581447159956802 +v -0.70758902596726858 -0.96400019199210374 0.13424894765623019 +v 1.255754344405136 -0.32171338310670161 0.5517082836123901 +v 0.74573702844619849 -0.64735593638902056 0.44622055587404597 +v 0.83637099441684826 -0.68575629051599507 0.60389550814268889 +v 0.73480184741278975 -0.23760170134025449 0.82413075941857772 +v 0.5731718769129085 2.6868879678171687 3.3412367640945204 +v 3.2881277861799099 0.24474478484105122 6.798670016092462 +v 3.9847635805253061 4.2202758724544536 12.194979290781122 +v 0.84456336286231493 0.47551005592968371 1.7593467471596638 +v 0.25428093527215334 -0.80087857468625656 1.1010937174976612 +v -0.023054617419036451 -0.64953315062630657 1.3967615078918736 +v 0.3949520297539858 -0.19521315180940135 0.73924810238346728 +v -0.20966256139427553 0.37595875391373984 1.3089344391514735 +v -1.2033007594001068 2.2940646279166961 1.941085460522237 +v -0.18247171695590048 1.0931950704095372 1.0526573919393811 +v 7.4977903048725469 2.5320238712265901 -4.5443106191624931 +v 0.29417254020191608 0.59081255101578345 1.4614915863445301 +v -0.14530429763878158 -0.32367088407676642 1.6009660707888251 +v -2.0962532817083197 -1.4741578800918917 1.1296361863754552 +v 1.3852669562460236 -0.49435177400320951 0.38401321863271493 +v 65.167562340005219 10.776251745536854 5.2332012491741082 +v 7.7067922143050724 -2.515528514659775 9.560518755345111 +v -0.79545090664798002 -0.39148469909026479 0.66152812605826961 +v -1.9218532623151914 1.8411057678348655 -0.95245715388305097 +v -4.7351677328989821 1.4686325737690398 -1.1943441358093179 +v -3.5928083708658289 1.6649494084450021 -0.7394302432286175 f 1 2 9 8 10 11 7 6 4 3 5 f 1 2 13 12 18 14 15 19 20 16 17 f 3 4 24 26 25 27 13 12 23 22 21 diff --git a/results/search/topology_39/resume.planes b/results/search/topology_39/resume.planes index bffaf1da..b6546492 100644 --- a/results/search/topology_39/resume.planes +++ b/results/search/topology_39/resume.planes @@ -1,37 +1,37 @@ 36 --0.50921374559402466 -0.62576895952224731 -0.76691484451293945 -0.20840080082416534 --0.54084336757659912 --0.21426242589950562 -0.27706620097160339 -0.090689748525619507 --0.14210955798625946 -0.53989666700363159 -0.16522563993930817 -0.47337999939918518 -0.71188914775848389 --0.21041914820671082 -0.85181623697280884 -0.15008582174777985 --0.58357197046279907 --0.18097144365310669 --0.084367722272872925 -0.28578495979309082 -0.46391034126281738 -0.063341610133647919 --0.44859525561332703 -0.49351441860198975 --0.75389069318771362 --0.58634942770004272 -0.63372159004211426 -0.35366576910018921 -0.4401734471321106 --0.1621040403842926 --0.24788917601108551 -1.9297654628753662 --0.20151282846927643 --0.56276333332061768 -0.39729812741279602 -1.1602922677993774 +-0.49178129434585571 +0.55094867944717407 +0.73923009634017944 +0.18486876785755157 +-0.43699750304222107 +-0.1971045583486557 +0.17178891599178314 +0.078112207353115082 +-0.079723343253135681 +0.54953396320343018 +0.138090580701828 +0.44477596879005432 +0.7439950704574585 +-0.23292374610900879 +0.81709349155426025 +0.11123362183570862 +-0.54488539695739746 +-0.19664084911346436 +-0.065007127821445465 +0.24313206970691681 +0.38168781995773315 +0.043781276792287827 +-0.47088450193405151 +0.51857799291610718 +-0.71131819486618042 +-0.6026037335395813 +0.53577351570129395 +0.25131067633628845 +0.29383307695388794 +-0.10840490460395813 +-0.25881105661392212 +2.1295692920684814 +-0.2690950334072113 +-0.52832508087158203 +0.42806991934776306 +1.1419738531112671 diff --git a/results/search/topology_4/resume.obj b/results/search/topology_4/resume.obj index 6dfd7bc2..ceb544f7 100644 --- a/results/search/topology_4/resume.obj +++ b/results/search/topology_4/resume.obj @@ -1,47 +1,47 @@ -v -1.9655789992608599 -2.2880746762229478 0.56422521112023361 -v -3.1806895890672657 -2.8541787536131613 1.0273249851362145 -v -0.27715572923560089 -5.5757663457235997 1.508403956335429 -v 0.04807792236458764 0.032684250648949975 -0.74199166548543849 -v -1.1579553759415155 -0.18091266801890804 -0.41806764509779604 -v 0.72727902766656827 2.3740073783248063 -1.7899023968035863 -v -2.9541937997614864 -0.22293305258487317 -0.043214962381322608 -v 2.4203721296006453 0.2359975131945109 -1.2946609942418446 -v 1.4154971509031302 -0.081770556682419476 -0.97028929665561259 -v 1.3445060856622713 0.17548659037065187 -1.05636886906052 -v -20.177210924212158 -44.402688193106918 20.609877030493823 -v -0.27100311786824566 -1.1421184457993441 0.56525298958008219 -v 0.33127610949032349 -1.768660486091244 -1.3103739885531038 -v 1.7593757010160771 3.3368569382851092 6.2025057355781135 -v -0.48952909616521201 0.49062742827501776 3.7960570099140472 -v 1.5670446593093459 -0.50241559986973838 -0.52833643490916504 -v -6.3694857318341151 -6.4492088193167225 -1.5851053315251584 -v 1.5549323778567679 0.10373243085238218 0.58643491306363971 -v 2.3563682652337992 0.32937330793840552 0.012909325311050157 -v 1.5809494391005456 0.47666922372611387 1.2312552275923743 -v -0.084121374988224668 1.2421669178678676 -0.55337298499437371 -v -0.34495147432819689 0.85077583543793489 0.39682429815202092 -v -0.079949631995060111 -0.52916345041576252 -0.19864744702521706 -v 0.18580993341009294 4.5354366813572575 -2.1377753214870086 -v -0.43183597559531633 -0.54667258937706653 0.97702485056060873 -v 2.0112002064003249 -5.1993536147006063 -6.1917608243239846 -v -0.30199490836365162 0.11886622944043709 0.40606185762034258 -v -1.7583526861539254 -1.0284973428408697 0.6990465349222913 -v 0.7354677048006798 2.3848236850577611 -1.7902202033612471 -v 769.36556576563794 744.93125511721894 5439.1242111631782 -v 0.86290683579352467 2.4885699901348191 -0.49959970167908585 -v 6.0593365474478524 9.3720556303739126 -1.0943576241534574 -v -1.0722884538758766 1.0093884255219627 -1.8498861605370853 -v -7.3116796719587995 2.8396521751422661 -2.8992901131942102 -v 1.7861056349056665 -1.0963740353500659 0.13879023957693093 -v 2.8288284700492463 0.30383621344902478 -1.715882120106345 -v -1.0546340703868053 -0.096171598288395735 -0.53758591626744101 -v 2.7181900903828042 0.34090821568807872 -1.2692270826859617 -v 2.7182013823213702 0.34090992801748776 -1.2692258278380077 -v 7.9951924811234694 13.644130878399739 -2.2861316621025392 -v 1.4993600372302913 0.30204245801742879 3.0496611430158649 -v -0.4280335045711357 -0.54529784105723844 0.97774911441276813 -v 1.5429555308913263 0.4701824676318741 1.2208514895968186 -v 1.0765948182773608 2.0230883972439671 0.37998347206441674 +v -2.0289068517657896 -2.1516614747963065 0.53689112395926242 +v -4.1832883547885054 -3.0796320903530336 1.3341656071832404 +v -0.38460847381644625 -5.7196507472191032 1.5922000511137737 +v -0.052482516527770862 0.021132548349590854 -0.70869063953191391 +v -1.1350742707476549 -0.16868424092654377 -0.41563416720158775 +v 0.7148285336665855 2.3385513673485692 -1.7657235887949536 +v -3.879572153334732 -0.24280364846277544 0.16890727190430244 +v 2.3691836202884615 0.22625968324216444 -1.2788383749570269 +v 1.3960181358239752 -0.081255201538203314 -0.96214406093961191 +v 1.3260242044348416 0.17253631525337912 -1.0467177785778237 +v -78.777381956276173 -158.59258269175686 76.945366116144498 +v -0.36608430240189915 -1.115972035462981 0.57245910340602324 +v 0.23509993897752132 -1.6735704372631759 -1.3138681877785356 +v 1.4901170318803121 2.9472716412694222 6.5358414050667264 +v -0.4460976411612057 0.51965877468891242 4.0051448682776005 +v 1.5431123972674767 -0.4848593000796424 -0.52377632076870706 +v -6.4927777711152617 -5.9550826840650029 -1.64331058164199 +v 1.5448949103203042 0.11680875942517631 0.69999028457697143 +v 2.2660536382085583 0.32307387596381043 0.22045214787852485 +v 1.6835134143293149 0.49783086352461747 1.3034181549171269 +v -0.13664943909643218 1.1606451465881984 -0.6654924584765004 +v -0.50639469954650851 0.6058203358172759 0.68147990872756337 +v -0.1911275435889033 -0.55465989464312049 -0.12708084516855558 +v 0.084296236717278705 4.8618396522123906 -2.1716288409728093 +v -0.58217018104276885 -0.57411737131392393 1.1794148296213913 +v 1.9950544532284811 -5.3282184603523151 -6.4152065634577022 +v -0.36355847453821571 0.09771415508538539 0.31147376843748642 +v -1.7335344207458303 -1.0135342903336626 0.69787557960994784 +v 0.72557502392292117 2.3527462543861701 -1.7661406654986747 +v 758.82982221601378 734.73041066451958 5364.6431152475107 +v 0.82457353427499192 2.4333394865828204 -0.76354826057554237 +v 6.223045748325676 9.5901619400115088 -1.4957523855191743 +v -1.0142579766299185 0.99223811651320004 -1.8188518264440874 +v -10.872825366262935 3.8841518960223032 -3.4769653297246657 +v 1.7618840565589171 -1.0780333786882712 0.14246924245667553 +v 2.7884790956889587 0.30052011017695363 -1.6835169287801461 +v -1.0525040289862533 -0.09511217374398695 -0.5181096854896724 +v 2.6816272794106499 0.33632252345805713 -1.2521554222992046 +v 2.6816398520195253 0.33632442999038387 -1.2521540251333532 +v 7.1165588528201118 11.516695318304782 -2.106788011564841 +v 1.4957194899175261 0.29850716994096704 2.9500802786729134 +v -0.21642407834815894 -0.44458260591594384 1.218526132307316 +v 1.528234328288957 0.47281672730566027 1.2736563856619159 +v 1.1530957141479539 1.7341343593628169 0.62170550102341493 f 1 2 7 5 6 8 9 10 4 3 11 f 1 2 20 15 14 19 18 16 12 13 17 f 3 4 27 21 22 25 23 12 13 24 26 diff --git a/results/search/topology_4/resume.planes b/results/search/topology_4/resume.planes index 7437d54e..fd19ff6e 100644 --- a/results/search/topology_4/resume.planes +++ b/results/search/topology_4/resume.planes @@ -1,37 +1,37 @@ 36 --0.12052237242460251 --0.23532842099666595 --0.60390526056289673 -0.487751305103302 --0.72161597013473511 -0.39767247438430786 --0.1578117311000824 --0.0098601439967751503 --0.047380920499563217 --0.63757753372192383 -0.48339745402336121 -0.024098196998238564 --0.062246549874544144 --0.4095420241355896 --0.3441852331161499 -0.19967512786388397 --0.19609926640987396 --1.5292153358459473 -0.14811371266841888 --0.42965775728225708 -0.037932556122541428 -1.4118341207504272 -0.33397132158279419 --0.16625429689884186 -1.8351069688796997 --0.68881833553314209 -0.51169008016586304 --0.015172814019024372 -0.10946963727474213 --0.012844261713325977 --0.33351501822471619 -0.24433356523513794 -0.21032795310020447 --0.23595108091831207 -0.29584291577339172 -0.67722225189208984 +-0.12075117230415344 +-0.2320353239774704 +-0.59636431932449341 +0.44443660974502563 +-0.72578519582748413 +0.35618683695793152 +-0.24124880135059357 +-0.015073327347636223 +-0.072431817650794983 +-0.62900173664093018 +0.47689542174339294 +0.023774059489369392 +-0.060686465352773666 +-0.39927759766578674 +-0.33555892109870911 +0.19698935747146606 +-0.19346159696578979 +-1.5086464881896973 +0.14612148702144623 +-0.42387849092483521 +0.037422340363264084 +1.3928438425064087 +0.32947909832000732 +-0.16401804983615875 +1.810423731803894 +-0.67955321073532104 +0.50480753183364868 +-0.014968727715313435 +0.10799719393253326 +-0.012671496719121933 +-0.31168290972709656 +0.2508540153503418 +0.20053593814373016 +-0.22466957569122314 +0.37580320239067078 +0.85633665323257446 diff --git a/results/search/topology_40/resume.obj b/results/search/topology_40/resume.obj index 775ad420..1641aa52 100644 --- a/results/search/topology_40/resume.obj +++ b/results/search/topology_40/resume.obj @@ -1,47 +1,47 @@ -v -0.056495288929782235 -0.68703312031876174 1.3730168246249368 -v 1.2523341448265513 -1.1646716238624972 1.2653174184109801 -v -0.73295708769176282 -0.12663072487491156 3.5486843900643272 -v -0.043913649419322458 -0.95600785764246965 -0.41566326774727164 -v -0.57377247743896742 -0.632564716927842 0.50747332941666901 -v -2.5925144971365781 -0.15718822185083645 -1.0934406866686137 -v -7.65877344045456 1.4780033153110259 -2.1212772150631647 -v -7.2471582562826455 1.418302997639906 -1.5431399058981325 -v 0.10556166414194397 -1.2221092729283607 -1.8583896239271307 -v -0.13411041589759448 -0.75199949481818118 0.74861094510377091 -v -1.1424283858540003 -0.10761273997469412 2.7005845054383393 -v 1.3760559728343886 0.18234792222907562 0.73469672590452473 -v -0.70867900581527898 0.47980756496632176 1.0794529374339299 -v -0.1734969743709357 1.4905610951094979 0.58454849865208891 -v 10.350140191814051 -9.5741529466287947 2.4192648460991917 -v 0.074544646962724004 4.1170849030455781 -0.45158418314449283 -v 1.0163265250421958 -5.3423815175801996 2.878703682116623 -v 7.028883136313425 -6.5798664943807887 2.0262987004614823 -v 0.47942969401256186 -3.6108149325525121 2.348811618347161 -v -0.96884181712874229 1.672748588438556 0.69039217407403042 -v -1.2259618059057527 -1.790074983860479 1.1348597317594795 -v -0.39889505210815829 -1.7516285790334831 -0.12835218157432726 -v 1.7449816406191105 0.13066076543271488 0.038342043589512043 -v 0.42435712420287719 -1.1460163709784752 -0.29056042157899442 -v 1.1159157815204188 -1.4440943179127661 -1.9842596058851736 -v -0.58310515021562348 -2.0987941744602803 -0.50062620727724605 -v -0.10901594664538854 -0.96458398691804681 0.92217296538575966 -v 7.3536087339702805 8.8823629674360962 7.8627340881835348 -v 0.0867165670388826 -0.26340525723704428 -0.39060169132379718 -v -1.1617123280887274 0.54348150853922705 1.7991067560771494 -v -2.0605930961183132 -3.5281913150449551 1.8537429526029638 -v -3.5696683949555963 -4.6337318966876033 3.8199157633600533 -v 0.59704436697973395 -0.6540687190785115 -1.3055999421452069 -v -6.9969385997702762 1.3836238663171951 -2.2668727290252924 -v -11.404029120254155 3.753389801951279 -3.4519400011214612 -v -1.4730414582697473 2.0551268421753806 -0.82954552323421882 -v -3.3162394178365684 -0.30392258740854561 -1.2809798907167314 -v -2.232050989377711 0.69959833300876684 -0.2882126518370316 -v -0.19561023082007084 0.40869173625928301 -0.39974867343549791 -v -0.79941961068795908 0.49273110986322943 1.1102913050642693 -v -1.7479932688570943 0.62921763827599841 0.50727466239865804 -v -19.00427819762637 -428.07958245194681 533.88260960010939 -v -2.9921367972937212 0.64361279867304211 -0.39605287057537175 -v -2.2637895150853855 0.3015128971310268 -0.095082631275084262 +v -0.38231125864115928 -0.68638381086757261 1.1571201510009763 +v -0.090619632406512191 -0.78261537794471858 1.1413240671559461 +v -0.97755272983286234 -0.10908011511333825 3.5678982133617989 +v -0.28254822146465419 -0.97446557914840237 -0.44157594863433591 +v -0.8568140174557346 -0.59957917639681324 0.74736780848856832 +v -3.0068418431890409 -0.24006098976307164 -1.3203417047781849 +v -17.558428738213784 4.0124200680364881 -3.9553992393775452 +v -16.499496924008763 3.746093288438614 -3.4943369345298469 +v -1.8819978998928921 -0.6763528341237226 -1.7883453438829735 +v -0.66134119155641646 -0.6350598762305586 0.91790690500492111 +v -1.476946078363685 -0.11814006554558928 2.5096346983596094 +v 0.84395491475513751 0.12483553856371772 0.63942837591147228 +v -0.75967490369519075 0.33212179757143068 0.84570673872675506 +v -0.33537613468005772 1.4036176004926899 0.37304012415003779 +v 8.2844130143795898 -10.399939963514997 3.2320564927186499 +v 0.62776339263809722 4.2252566872501047 -0.84443081977856371 +v -0.68320870192036953 -5.2353566407470815 2.8988023373674094 +v 3.7142439708288202 -5.2796521713371209 2.1385988503944295 +v -0.776472122427869 -1.339743936282298 1.4692556354220003 +v -1.0683918724678532 1.4897047544437485 0.47054513240925466 +v -1.3574290571110936 -1.3853063376217121 1.4490399049582257 +v -0.75530761400516522 -1.379241120397743 0.32253391064548775 +v 1.3480551960715337 0.21096235025237337 -0.1234533274880556 +v -0.0097569618450691203 -1.0485036642743135 -0.35351867293184308 +v 1.0516892005125797 -0.91626171146250557 -2.0690698335239244 +v -1.1067673632444064 -2.0343850057339861 -0.46896024170234502 +v -0.73058078192640463 -0.9600252167364014 1.2079725449331542 +v 5.7988237836544405 6.6781592824684619 5.8317021440188874 +v -0.11617673217137403 -0.13568698396512277 -0.50093588403918488 +v -1.4365490454380727 0.17389919555964264 2.0665060839022753 +v -3.8909305659075542 -6.3606799577619704 4.6994293289875069 +v -6.6514740181003633 -9.748296877612443 8.8530714711789038 +v 0.37406681050816193 -0.36952297646602833 -1.4899827933089549 +v -11.126750004097705 3.0282381376782772 -4.0776144907575391 +v -29.435386695998414 12.135236610166974 -10.516938054743438 +v -1.1206408750790231 2.2936224437628074 -1.1010420612083045 +v -3.1948790903249069 -0.28779743481792802 -1.3684063427375364 +v -2.4966514691910384 0.83236549247712655 -0.20303736603215486 +v -0.23460903336291844 0.54666837492497589 -0.52490405417038266 +v -0.97423914768682895 0.28340618829854203 1.2260480460369281 +v -1.8063566256429087 0.55402767244769824 0.58072046873221728 +v -227.93788148001119 -709.51623782675324 802.74843919254806 +v -2.7860988708339738 0.81583192362162316 -0.21741947143009555 +v -2.147997475462343 0.39522406724708126 0.13373583024416968 f 1 2 8 7 9 6 4 5 10 11 3 f 1 2 19 17 18 15 16 20 14 13 12 f 1 3 28 25 26 22 21 27 24 23 12 diff --git a/results/search/topology_40/resume.planes b/results/search/topology_40/resume.planes index 6238c74b..c6861b9d 100644 --- a/results/search/topology_40/resume.planes +++ b/results/search/topology_40/resume.planes @@ -1,37 +1,37 @@ 36 --0.28004971146583557 --0.7938685417175293 -0.11740897595882416 -0.20328599214553833 -0.34746667742729187 -0.92946869134902954 -0.57444608211517334 --0.685738205909729 -0.3552381694316864 --0.07551206648349762 -0.016013503074645996 --0.048952877521514893 -0.10209941118955612 --0.0051453872583806515 --0.38998183608055115 -0.053245522081851959 -0.37252175807952881 -0.00055869412608444691 --0.49089869856834412 --1.5321699380874634 --1.2382833957672119 --0.064133442938327789 -0.17926357686519623 -0.35896396636962891 -0.030976315960288048 -0.37524506449699402 --0.41313856840133667 --0.13024510443210602 --0.055378716439008713 --0.048998188227415085 --0.49805271625518799 --0.46338343620300293 -0.67857843637466431 --1.4356809854507446 -0.94659000635147095 -0.71438801288604736 +-0.28300929069519043 +-0.88100171089172363 +0.1410941481590271 +0.12612725794315338 +0.26508504152297974 +0.71414637565612793 +0.38932779431343079 +-0.45729181170463562 +0.20563498139381409 +-0.27599424123764038 +0.044320356100797653 +-0.14728127419948578 +0.12704741954803467 +-0.056409671902656555 +-0.44100716710090637 +0.058071527630090714 +0.3695543110370636 +0.080094210803508759 +-0.23983561992645264 +-1.4052256345748901 +-1.3054670095443726 +-0.036074746400117874 +0.28136521577835083 +0.40256765484809875 +-0.0052977772429585457 +0.54912436008453369 +-0.52464902400970459 +-0.29676508903503418 +-0.056207865476608276 +-0.13380937278270721 +-0.81561547517776489 +-0.55290859937667847 +0.81983006000518799 +-1.3197318315505981 +1.1130770444869995 +0.613250732421875 diff --git a/results/search/topology_42/resume.obj b/results/search/topology_42/resume.obj index b1cedd39..1ba5655e 100644 --- a/results/search/topology_42/resume.obj +++ b/results/search/topology_42/resume.obj @@ -1,47 +1,47 @@ -v 0.65797635868038606 -0.65202078871977387 0.26318077674171647 -v -0.65981379371307081 0.0018928630067637227 -1.6821479789027509 -v 1.810108137744489 -0.95014955983523575 0.21602083986929249 -v -1.4462989350929401 -0.16007872191602598 0.68516393556257538 -v -1.5467759325800887 -0.097438309988156571 0.4551754770090059 -v -1.335595632867272 -0.054751035159912469 -0.17533841419812568 -v -4.4201627161028849 0.27775859325756524 2.9260799473783337 -v -2.4287375372059201 0.1331809014120319 0.4759401118886365 -v 1.5617961583175171 -0.84245966463445554 -0.051332188067386486 -v -0.85134933716605943 -0.49975682748187689 1.8474419552690302 -v 1.3050051135763578 -0.74017783247018554 -0.26976735921371509 -v 0.72693199560515953 -0.69572213711416653 0.3639318333425251 -v -0.064797765516025674 -2.0169018297270589 -0.99307243803146927 -v -0.74400534801957119 -0.043949019156847055 -1.8160549436566849 -v 0.15095297920515649 -3.075967879535265 -0.77913575114171663 -v -3.008618020676447 -1.4828001757801652 -5.4405296333944557 -v -3.180269182252125 -1.3195788018283403 -5.685350594482844 -v -1.6414978335988863 4.3493977480041215 -2.7073430390618505 -v 0.25762600472490943 -2.8788352263078374 -0.59420055583254472 -v 0.28046035156526494 -2.7779972360554677 -0.54817323940562357 -v -0.16841072002901272 -2.0733968336283284 -1.057502155319241 -v -1.252471746773054 -0.62351003620470646 0.25244764604985537 -v 4.3042915756807592 2.5622753050548357 3.8594223051836876 -v 7.476210302562869 3.6437103411501686 5.2018370559190883 -v 7.0222647814790617 -2.4393123045563763 -0.75320638565500597 -v -1.3828881089697465 -0.56494337115708193 0.29741053250151978 -v -1.339068990699696 -0.62329488791299781 0.24470834185111745 -v -1.2689675590414153 0.14067836776991693 -0.58432206901953077 -v 0.77399792286500568 -3.8518422571299715 -1.5982942120718246 -v 2.5707543624692644 -9.0189324435247507 -0.57870843419879159 -v 0.43865872747037826 -4.4076544942567457 -0.033708739743268934 -v -1.4334309095311568 0.078351259782105359 -0.05971622361282769 -v -0.40759956293931082 -0.057416978413078759 -2.186145386544863 -v -1.7185247542376831 0.33861500164417163 0.62974408787987124 -v -0.32324582715951444 0.084607568852634388 -1.6975493839143008 -v -0.57183957947900532 -0.014693985245887746 -1.8609214839073458 -v 2.3544998279722904 -1.2996664779027209 0.77850721300028658 -v 1.9425670922798706 -1.0751633759748913 0.34454783769191633 -v 1.9220285596083722 -1.1723861774514521 0.30030428405910836 -v -0.45077502847195555 -3.3209570614289405 -0.96789786571015046 -v -0.068696427841721266 -3.0591037186784642 -0.74328888461692888 -v -0.11711053108084782 -3.0002114509773139 -0.6810129264707081 -v -1.6006967766303608 0.0098965105654547775 0.49709234062507851 -v -1.6427554895675998 0.039402011641432408 0.42255031187582603 +v 0.67585770968973147 -0.66347850051347479 0.27977291789282521 +v -0.66749855219658882 0.0034398882088523199 -1.697161368307847 +v 1.814019407298423 -0.96377721970343155 0.21955997004860717 +v -1.4714674624869721 -0.14262252415830493 0.69293190723394948 +v -1.5695244163964674 -0.081416213536894225 0.46653661277434932 +v -1.3580648915600497 -0.042978195411421886 -0.16224060018206893 +v -4.1510894980577548 0.24556394357748701 2.9242453644740105 +v -2.165941728787836 0.078343700975708683 0.48237302295229917 +v 1.4912639159169707 -0.82361281694114763 -0.12388152019711896 +v -0.86561472781765869 -0.48730045937586064 1.8722379630385202 +v 1.4006818207200049 -0.78720296797824696 -0.20108146404904836 +v 0.73635168377783755 -0.70153865190418874 0.36790331416572808 +v -0.06679085706878661 -2.0297972098461616 -1.0065422678586355 +v -0.71689991193606017 -0.16572088184404096 -1.791452907002316 +v 0.15493573624597307 -3.1099132689079458 -0.78837309192441318 +v -2.9755677683533293 -1.5601350634720723 -5.3958298194779575 +v -3.0600296162886553 -1.4801917206143047 -5.515889856030042 +v -1.6004072727295737 4.12068650555607 -2.6627357750490916 +v 0.26435722533436112 -2.9032666315046209 -0.59825344115948886 +v 0.28733981082587784 -2.8015111810415076 -0.55181662699908807 +v -0.17174955584473173 -2.0862691208089674 -1.0720242026178859 +v -1.2800088465042683 -0.59935398657782357 0.26685072747030825 +v 4.1407578997013461 2.240794373789623 3.5742779131360569 +v 6.3227890940331628 2.9485387466133379 4.4811766439128116 +v 6.3261678406588553 -2.2512375793494628 -0.58621413402622147 +v -1.4085308352048709 -0.54180513760163473 0.31014925772130159 +v -1.3665690680502998 -0.59786325520334127 0.25969024208200941 +v -1.4168821200979773 0.086933552296674169 -0.1502833297250965 +v 0.76743630185130673 -3.8736418399847978 -1.5955906194153513 +v 2.5581075553508938 -9.0039983266985253 -0.59771757439382767 +v 0.43898514193581512 -4.4318249787499777 -0.041281013041851278 +v -1.4453909562201803 0.076157818624034285 -0.059029979774638974 +v -0.38995701791250587 -0.18565958071648647 -2.1629985426937663 +v -1.6902421495928335 0.20827086386065088 0.58194114809552189 +v -0.1742578842200265 0.0062162645487532633 -1.5823100142931323 +v -0.55599437213251435 -0.14085640614746181 -1.8346375462711875 +v 2.3409817997590885 -1.2903870491513865 0.75991208854405046 +v 1.9470808644862161 -1.0778823138648639 0.34940655757848516 +v 1.9201968654886901 -1.2036807688456896 0.29213550929491794 +v -0.44501904732305891 -3.3586741995403697 -0.96908968041597232 +v -0.067942176540978505 -3.0930995807703514 -0.74906971157070845 +v -0.11281042028042225 -3.0384894498281141 -0.69123972282195534 +v -1.6184996770729891 0.0092998357123548602 0.50166767340372043 +v -1.6580133630420482 0.03682647566047572 0.43177111123657008 f 1 2 6 5 8 7 10 4 3 9 11 f 1 2 18 17 16 14 15 19 20 13 12 f 3 4 26 27 22 21 13 12 25 24 23 diff --git a/results/search/topology_42/resume.planes b/results/search/topology_42/resume.planes index e2bdfbef..cea42c4b 100644 --- a/results/search/topology_42/resume.planes +++ b/results/search/topology_42/resume.planes @@ -1,37 +1,37 @@ 36 --0.10568714886903763 --0.3985646665096283 --0.062381945550441742 -0.30675825476646423 -0.022009648382663727 --0.20040345191955566 --0.045743610709905624 --0.48447135090827942 -0.49837005138397217 --1.0874210596084595 --0.45609059929847717 --0.39509227871894836 --0.12306635826826096 -0.52346962690353394 --0.13091476261615753 -0.82402104139328003 -0.1472209244966507 --0.70603311061859131 -0.10021293163299561 --1.1282058954238892 -1.1448129415512085 --1.2800049781799316 --0.64692330360412598 -0.46614730358123779 --0.1064983457326889 --0.33744049072265625 --0.073477573692798615 -0.66411232948303223 --0.2135678231716156 --0.880729079246521 --0.04812929779291153 --0.23196989297866821 -0.53208357095718384 --1.0832527875900269 --0.36237818002700806 --0.49944537878036499 +-0.10830257833003998 +-0.39829230308532715 +-0.060770615935325623 +0.30972009897232056 +0.022610081359744072 +-0.20283190906047821 +-0.049676179885864258 +-0.48654446005821228 +0.49922230839729309 +-1.0978521108627319 +-0.46047624945640564 +-0.39736026525497437 +-0.087147392332553864 +0.39404302835464478 +-0.097831659018993378 +0.81328088045120239 +0.14686276018619537 +-0.70435851812362671 +0.11846030503511429 +-1.1225773096084595 +1.1519836187362671 +-1.2914949655532837 +-0.65599864721298218 +0.47175836563110352 +-0.10714266449213028 +-0.34106236696243286 +-0.073747538030147552 +0.67158716917037964 +-0.21623176336288452 +-0.88998430967330933 +-0.048469748347997665 +-0.23419585824012756 +0.53717434406280518 +-1.0933799743652344 +-0.36570152640342712 +-0.50297486782073975 diff --git a/results/search/topology_43/resume.obj b/results/search/topology_43/resume.obj index e67d78c7..5d098c6f 100644 --- a/results/search/topology_43/resume.obj +++ b/results/search/topology_43/resume.obj @@ -1,47 +1,47 @@ -v -0.95476361413062205 -0.56189373284658806 -0.22274682880948293 -v -2.6604589607521807 -0.63397605294318593 -0.99322254196796245 -v 0.4519120103712348 -0.20038735166820124 -0.55025138884156011 -v -1.4389630126302571 1.7182717789387503 -7.7754201446524398 -v 1.2389800892237879 -0.24358362592835378 0.049005390509873625 -v 0.51248497795223869 -0.25471472858528876 -0.34154477748442169 -v 0.40381434188867626 -0.46344153966855461 0.26010894637091209 -v 0.45293796676316223 -0.30728508115597025 -0.20888042651953453 -v 0.52898551659485094 -0.1867998156994764 -0.54836809636939199 -v -2.4434902972469024 2.3132914655763974 -10.261306631362642 -v -0.66769581427449687 -0.4068733899176209 -0.54857837380601682 -v 0.52272403513238042 -0.67127429993433652 0.09845380208711102 -v 0.45566372758244866 -0.72770695765534121 -0.039832026569917744 -v -0.19555179502810208 -0.9789854748533845 -0.78483391701468352 -v 2.0279677692202784 -0.78320412577151688 0.42469228791294089 -v 0.65543757439557748 -0.74052348488254127 0.0075734809441021511 -v -0.013127379745980761 -0.29755736198256127 0.65502147044531411 -v -0.8290569464746782 -0.82859204689229737 -0.7140290014732984 -v 4.4328657010910293 4.5921566282879782 12.136859724601216 -v -7.3614950142593214 4.2515566561131219 7.1272567656868677 -v 0.23676991592686902 -0.8579231135192299 -0.54237441857281554 -v 0.49786098684450031 -0.27208973148657667 -0.35091277476066984 -v -0.84347201265947802 -3.6420347268593711 -0.99313070220438471 -v 0.46035612314991814 -0.68617177999152013 -0.065772905065440757 -v -0.92376340359944753 -3.3174815473340318 -1.5302757935609104 -v 0.85476227276932526 1.5687910642439811 -1.0747681578325894 -v 0.38764723976379672 0.49880552771810266 -1.396578480832698 -v 0.92544626869402447 -0.87669927667544578 -0.17473084893761592 -v 0.21037044841694527 1.1887505286310358 -0.37676585604767521 -v -1.0854614167045546 -3.0796623615481082 -1.4465432235734248 -v 0.90686432936924344 2.8195601703512385 0.13995734367454082 -v -2.6360902904673642 -0.30295611133002043 -2.0341598855448031 -v 1.5808777459963481 -2.5752411017608399 -1.3700774248270189 -v 1.9414963154895286 -3.1228623888380249 -1.8148336930784295 -v -9.1315978666534594 -20.214923210751856 -6.8176655929922383 -v 1.7963121461924456 -1.472819335155493 -0.84906991792272235 -v -2.2106569482318608 -1.9122160429388639 0.5024477230886385 -v 1.2040108574802508 -1.6482104723287541 -1.0522011575487529 -v 4.0644645794823306 -11.266878893470215 -2.3953592287327701 -v -7.3838441982607517 2.0471163813084994 13.410064121177333 -v 1.8431193605692795 -2.063961071621613 -1.2105592574810367 -v 1.7133160142984012 -1.3096090481533407 -0.95783786940133941 -v -0.91735498246711289 0.59167371154048054 0.91564878764988178 -v -8.463545692780281 6.8297052419987345 5.0146144301471178 +v -0.71792750825809393 -1.0467892702871486 0.33214549484014083 +v -1.0686673946511807 -1.3904119276102687 -0.02539349816641745 +v -0.078583637447682889 -0.83907732531437484 -0.99243457960556403 +v -1.9877244081336347 -3.3862441902237843 -6.1333264722432963 +v 2.360846538273194 1.2731126218623996 0.18318893344136999 +v 0.97336711037767276 0.073528947100751196 -0.47711399444395863 +v 0.49371135079882605 0.098754969040313237 1.3713294845303279 +v 0.76185197910517233 0.015781891227638196 0.012886745001834843 +v 0.78006711012549257 -0.091773492052120834 -0.56051221311242483 +v -2.1005607110261235 -3.5050772725576063 -6.2874671506654787 +v 0.10007182893729184 -0.54836163644905489 -0.26421110630030153 +v 0.55674247909302077 -0.55649098609569925 1.4466186691220888 +v 0.49705184132922786 -0.69793877473666432 1.3655451378621488 +v -3.4743189756446045 -4.0933461770067989 -2.5620495309784421 +v -419.48321640851077 262.37036468456802 -262.32204415028826 +v 0.33044943322252029 0.16816921817518535 1.4466400593790392 +v 0.045448038678928972 0.20205633579321422 1.2324417659103495 +v 0.0090768040486710003 -3.4735461565864725 0.30802461196300113 +v 27.112738981092111 4.120701232475537 23.315220005694634 +v -2.1903561366154567 -0.29175541629094343 -0.63310577252086175 +v -0.071644785312802814 -0.82923068982935066 -0.9745087119892033 +v 0.12200069571009317 -0.20262773395449699 -0.92766013320940399 +v 0.22689928364968448 -2.0090100923766947 1.863276491178814 +v 0.50800159034546888 -0.18285627058466411 0.75001301850159086 +v -0.46260886524951977 -2.4703515317393703 -0.58446242115973179 +v 0.77152733443145249 2.2070249146317136 -1.1673436499868257 +v 0.2612118014258426 -0.10203656741484539 -0.44306118586215337 +v 2.4282354237056452 0.18014649830497381 0.3288513492100576 +v 0.53114164865948266 1.1491808496938503 -0.83142970532497618 +v -1.2450067463678929 -1.9839073241018252 -1.5190779576591735 +v 0.40257450850512322 3.1084815616540533 -1.0969073007688059 +v -2.4202019064503286 -0.90376098282161044 -2.2851863900557254 +v 1.558341930854003 -2.4178494500162455 1.222985136297329 +v 8.788616405441708 -13.193650715880997 -0.8332436812500732 +v -13.275105003740563 -74.154313984336696 21.025901405237867 +v 3.0771025489235386 0.15615542784008252 -0.012293010749204081 +v -25.741114825652733 35.309050503062338 9.4781888673418084 +v 1.1388238448971317 -0.64695914281828015 0.021976644408900847 +v 10.869097248640832 -16.968602026684309 -0.64785835650455381 +v -75.144141006115888 108.15787901802389 27.346175299016664 +v 17.274487751329936 1.8628831529145762 13.484027644311773 +v 9.4768509022690584 1.7830259471308412 6.4532958307671189 +v -1.0169186339824674 -0.033829393229010601 0.33943523766262074 +v -2.3046340193906469 -0.3798464867932152 -1.0600100131459915 f 1 2 10 4 3 9 8 6 5 7 11 f 1 2 20 17 13 12 16 19 15 14 18 f 3 4 26 27 22 21 24 13 12 23 25 diff --git a/results/search/topology_43/resume.planes b/results/search/topology_43/resume.planes index 309b677c..dcf82c92 100644 --- a/results/search/topology_43/resume.planes +++ b/results/search/topology_43/resume.planes @@ -1,37 +1,37 @@ 36 -0.074108690023422241 --0.40285578370094299 --0.12637396156787872 --0.08887770026922226 --0.48853296041488647 -0.24246431887149811 -0.57685083150863647 --0.19115903973579407 --0.20172841846942902 -0.24590829014778137 -0.04027855396270752 --0.45858260989189148 -0.18391412496566772 --0.25452712178230286 -0.46251696348190308 -0.20363961160182953 -0.045289594680070877 -0.10935130715370178 --0.014208452776074409 -0.13919530808925629 --0.42278403043746948 -1.3924009799957275 -0.39631441235542297 --0.46779686212539673 --0.42997950315475464 -0.26388826966285706 --0.25327572226524353 --2.3080997467041016 --1.3941991329193115 --0.49739116430282593 --0.12989257276058197 --0.25834789872169495 -0.15403598546981812 -0.038320537656545639 -0.03301650658249855 -0.020301725715398788 +0.26682454347610474 +-0.34935474395751953 +0.074006460607051849 +-0.53685778379440308 +-0.16766740381717682 +0.68779003620147705 +0.34436199069023132 +-0.10058651864528656 +-0.078045770525932312 +0.43048253655433655 +-0.07568620890378952 +-0.76706266403198242 +0.66982704401016235 +0.20913286507129669 +1.2593244314193726 +0.49173265695571899 +0.28306993842124939 +0.24562279880046844 +0.58313137292861938 +-0.29817602038383484 +-0.6433519721031189 +1.2729325294494629 +0.63186442852020264 +-1.4189596176147461 +-0.13097940385341644 +-0.037144314497709274 +-0.21070416271686554 +-1.1940515041351318 +-0.93550199270248413 +0.51267480850219727 +-0.071382306516170502 +-0.32682648301124573 +0.14649207890033722 +0.0020752835553139448 +-0.033103052526712418 +0.0062752347439527512 diff --git a/results/search/topology_44/resume.obj b/results/search/topology_44/resume.obj index c212b83f..01d4c3a7 100644 --- a/results/search/topology_44/resume.obj +++ b/results/search/topology_44/resume.obj @@ -1,47 +1,47 @@ -v -0.34496257032058208 0.30732103865255128 -1.5018075062684479 -v -0.83658490678845221 0.99865913586204713 -0.75034333712529067 -v 2.0844284203574541 0.72343224970874931 -0.77124980380720132 -v 2.3462195657462872 0.31349063442337127 -1.2198792833932544 -v -0.33543767051608064 1.3998474434511472 -0.23396673197287043 -v 2.0723940012122557 0.1580249698142443 -1.4281116989385896 -v -0.50698381472713849 -0.0066485051068627954 -1.8824219377615663 -v -1.2919257058942897 1.4576950379357934 -0.26454699840860707 -v -5.6617008064911944 -2.2551232129352989 -5.0160060775610713 -v 0.83992450964140497 -0.060854430066597201 -1.8077563250489748 -v 1.0888317853524532 -0.20444734853157598 -1.9488495007364584 -v -1.9504632129109198 6.4980174611815498 -5.5521292880361841 -v -5.4353596924364629 11.887474511812881 -1.0338120285497665 -v -1.256852175777728 1.7009349360869466 -0.29198380566031845 -v -0.95529789359665573 1.3815789345810843 -0.92607700114921743 -v -0.024763418885721099 -0.90913529515982339 -0.72413004725292751 -v -0.1454902990127469 -0.96612011922496677 -0.16458412171645431 -v -0.30660688001530928 -0.63574537475917137 -0.08998698328747512 -v -0.029856378077610796 -0.93441675250020506 -0.66269015998181824 -v -0.67016172915722005 -0.56576406286179826 1.1954857875550353 -v 426.6945511918646 -707.33510433068966 -1656.7709048797249 -v 2.3642442491768922 0.31218270406213761 -0.67175369364191351 -v 0.74553103775194163 2.7979641693953163 1.0486298836112584 -v 2.0131354345195676 0.93229091690378663 1.4422289839767459 -v -8.2527041398585972 16.10865148158679 -0.30431782097212806 -v 4.2008639734362374 -2.0047955312058527 8.2055989411616448 -v 1.974821608713675 1.1194914123072293 4.2441831961459258 -v 0.43255326264605654 1.3263807027784686 0.33931679281515892 -v 1.91709489875874 2.0110494673634958 3.892436679269863 -v 0.46259832705589077 -1.3807532544853829 -7.6362386053776712 -v 2.1823646800768408 0.29999434644880546 -0.8950270616555881 -v 1.4795587806895281 0.058252450897149748 -2.3334547710116675 -v -0.14337421882215484 -0.87606167443349836 -0.98107657526385394 -v -0.080268340937606208 -0.89951899724536966 -0.82846315473104837 -v 2.092421151576541 1.3414804671006233 4.3345518261798217 -v 1.3919741323211081 0.58862303916720271 2.6709731110965613 -v -0.10068033921802513 -0.68703798022277862 -0.88396672826459111 -v -0.1269193611458431 -0.93045972835802282 -0.81023805720436437 -v -0.22234816775319324 -0.72849142703854597 -0.82038122415588366 -v 2131.2674512626395 1955.9868491972827 2274.7616736564355 -v -1.508195331065423 2.3718410692086214 -0.83700963067554968 -v -0.20022754949213523 -0.71511880701007791 -0.7989619727092464 -v -1.5028238045587217 1.9519443081463324 -0.70076402405374427 -v 0.7860369714126344 -0.34389198334251581 -1.115496163666521 +v -0.022837036319866624 0.4252041733264359 -1.0899652664124981 +v -0.31832850411331126 0.70308436070426927 -0.49309900532209427 +v 2.284144045598294 0.98383879682391462 2.3435389229096928 +v 2.6025065545328663 0.5501768559181891 1.302130648839567 +v 0.53521080723772863 0.74664429950348044 0.29329848273443559 +v 2.1512930451746013 0.35882855907405786 0.38706043061889517 +v -0.44736623918438168 0.061490914510173016 -2.4958382433004824 +v -1.3514335671926252 1.2694744777452853 0.39176290374526834 +v -13.030443141019736 -0.63599174600060748 -14.253185885290897 +v 0.96606919932573565 0.045243847432193611 -1.4557839220601885 +v 1.112965816365173 -0.015892629054706894 -1.5240540696550853 +v -0.835429356104881 6.237406893137063 -4.8471484016785613 +v -2.2387880581791655 8.295993169989945 -2.8026599658511864 +v -0.97883942970443782 1.3007275227175281 0.86620695030996564 +v -0.09954675512715308 0.54139615555944831 -0.98213153285843358 +v 0.15592224649838285 -0.73887703052211795 -0.38591238270289785 +v -0.037753686194156172 -0.9383272394112433 0.4133735461174789 +v -0.18997036925252786 -0.70547187958046054 0.62489782543588601 +v 0.13384478002802205 -0.80466335992757965 -0.24876052519033789 +v -0.56015562591406365 -0.8921186943398598 1.9445390588576386 +v 107.66806689321533 -139.75298357252558 -391.11654960336625 +v 2.9022305606862395 0.14278204889942764 0.3064747700630619 +v 0.75278002796331756 3.4310614521565834 1.0950138073863873 +v 2.2954777717577208 0.98901286315291537 1.9494046602679849 +v -42.85291706856335 71.289969734341767 -2.8271354132271309 +v 4.4312215696586055 -2.7219192840662636 8.8505452301609715 +v 2.5096705983522232 0.44669741494958481 5.5889058979907604 +v 0.34209774511324315 0.74541642154397802 0.11731668213449603 +v 1.5130493901602302 1.5725953952811116 4.0238826062998356 +v 0.22966300615193802 -0.77844369001892144 -5.2611947448116538 +v 1.5584601124630395 0.1100948629277643 -1.0017179219784136 +v 1.1795536025583548 0.037982707665028391 -1.5884565429124453 +v -0.24868893697640126 -0.35292817963259765 -1.7421231325879991 +v 0.070681850387834921 -0.69367128244115261 -0.58384894714238533 +v 1.5566633428298562 0.40898718000486206 4.365057366464506 +v 0.71612268156715919 -0.30859398502373314 1.5811014354066026 +v 0.0633943627060327 -0.57270417355603431 -0.62882176382219501 +v -0.084696525104883583 -0.75000158545292117 -0.6073435581975013 +v -0.135095697016959 -0.66257812206069078 -0.63353709351789456 +v 536.09933736588664 444.37196755442511 587.35780463164815 +v -2.0657208127382471 4.2999119082181494 -1.2740092080398433 +v -0.043150465448279433 -0.62224356312472273 -0.54080817498087741 +v -1.8925717266452589 2.2796132104878053 -0.55559308363244631 +v 0.88754528198441107 -0.19460342863504956 -0.95371689127952108 f 1 2 5 6 4 3 11 10 9 8 7 f 1 2 16 19 17 18 20 14 15 13 12 f 3 4 27 26 22 21 25 13 12 23 24 diff --git a/results/search/topology_44/resume.planes b/results/search/topology_44/resume.planes index bc6fac7f..df87b536 100644 --- a/results/search/topology_44/resume.planes +++ b/results/search/topology_44/resume.planes @@ -1,37 +1,37 @@ 36 -0.079032965004444122 -0.89758396148681641 --0.77406167984008789 --0.48164445161819458 --0.20667064189910889 --0.12496654689311981 -1.7853245735168457 -1.2012315988540649 --0.055842645466327667 -0.38376089930534363 -1.1025829315185547 --0.37280282378196716 -0.23456913232803345 --0.0029199675191193819 --0.09744349867105484 -0.19006501138210297 -0.077516153454780579 --0.24468407034873962 --0.49939122796058655 --0.23733906447887421 --0.027472561225295067 -0.4297541081905365 --0.82756179571151733 --0.30490368604660034 --0.89133918285369873 -0.2030889093875885 -0.66104316711425781 -0.40091359615325928 --0.50731223821640015 -0.060781646519899368 -0.17306837439537048 --0.39952182769775391 -0.0706968754529953 --0.53531783819198608 --0.23550371825695038 --0.70469629764556885 +0.17287978529930115 +0.66612774133682251 +-0.22453807294368744 +-0.18862088024616241 +-0.066670142114162445 +-0.062341518700122833 +2.121046781539917 +1.3675339221954346 +0.078945368528366089 +0.17856581509113312 +0.69556093215942383 +-0.20080175995826721 +0.25109907984733582 +-0.011916385032236576 +-0.072741098701953888 +0.17514768242835999 +0.043295551091432571 +-0.19249983131885529 +-0.4196440577507019 +-0.24995791912078857 +-0.026818601414561272 +0.30333158373832703 +-0.71417957544326782 +-0.29373615980148315 +-1.1599481105804443 +0.21937739849090576 +0.89648854732513428 +0.44690659642219543 +-0.54555785655975342 +0.0056893415749073029 +0.22944840788841248 +-0.50636500120162964 +-0.0072542419657111168 +-0.3328375518321991 +-0.21479399502277374 +-0.52381551265716553 diff --git a/results/search/topology_45/resume.obj b/results/search/topology_45/resume.obj index 58a7d483..6f472ce8 100644 --- a/results/search/topology_45/resume.obj +++ b/results/search/topology_45/resume.obj @@ -1,47 +1,47 @@ -v 19.350228278878586 6.2840705814629274 -8.7710053032219086 -v 6.8901949204576658 1.9756961814407046 -2.6582828158122238 -v -0.35957824865423277 1.2003553579663151 -1.0864604400684001 -v -0.2593492487970433 1.1837850646345784 -1.0769083207523036 -v -0.92747567611589665 -0.34551798493809482 0.7391247554874586 -v -1.1630832048215465 0.022904618625792891 0.33898809205001257 -v -0.42013755931658348 1.6570774105547557 -1.6043093326339226 -v -0.2907282281512758 1.2547178226041009 -1.1552643805830316 -v -1.756098049907417 -0.62327726721010568 1.1355959842551879 -v -0.37448973142068193 0.035678296134907798 0.25004918482253075 -v -0.45569069844037868 0.1027210704803788 0.18084622917692561 -v 0.81461796788189633 -1.4339370066724795 -1.6564800921645919 -v 1.1705758414712144 -1.1003772128802383 -1.5128947443692371 -v -1.7611713510580596 -1.7994836694706791 0.40104134770119293 -v -9.0332491121706706 -9.8275561940605467 -4.3671096578192232 -v -7.1384912925524375 6.8280273031185157 18.893727036646311 -v 6.02555482649458 -0.094974643616658083 -4.9126615049846505 -v 0.49530705249654811 -0.84882172357911589 -0.44829468129586936 -v 3.5500388654706674 0.26140021451024981 -1.8653087109514181 -v 0.18534943186619149 -0.4763839909630147 0.42887415085970554 -v -2.4805662920899665 0.95132273536818479 -1.4561830379145693 -v -3.2410714088255079 -0.12158615205360181 -1.8636302660772532 -v 3.2110424058207654 3.6341898522690466 0.098950792761526074 -v -0.3418628506880329 1.3280176267222756 -1.0482774367598087 -v 2.19982183478837 0.2556585899483349 -0.98829758696395986 -v -0.32579138800710788 -0.30420505278239363 -1.5021404258231517 -v -0.33371352963002876 1.100328725960382 -1.1107536868588967 -v -22.735963922833232 -12.751839644115352 -18.121125556258338 -v -1.7423988984343415 1.1930756543781877 -0.74816930949571592 -v -0.69416624866515597 0.10142317325828011 0.81808426849133919 -v -0.79658792798231093 0.49488730705306261 0.55295373193540198 -v -1.2369744593936056 -0.0071273487515216335 0.27039474709942157 -v 2.0435365421123466 3.451827329521258 0.76559163877954672 -v -2.0555451657862682 1.5963095546665771 -0.14902622883467487 -v -3.2935927379028058 4.1359749448172831 7.8786610920242479 -v 902.67177473550771 -239.16093319990196 -1540.1724578602691 -v -7.4091472641340363 -2.8431250911636541 -6.7437411731203012 -v 2.3073158545690338 3.3333659083936937 0.53244812886707127 -v 2.1933946437579506 -0.5693139457530606 -4.2205338555537351 -v -0.29532878963339626 1.1640876704318643 -1.2649905511299919 -v -1.610837636810291 1.5525223871201146 2.1655508291983736 -v -0.0019428199375930569 -0.34388244094975923 0.13677130001729387 -v -0.34379348110520286 1.1536203812145949 -1.1543384740368483 -v -0.82505323535688857 -0.22686170402119829 -0.86609194967767877 +v 13.812402135937182 5.7107569873304227 -4.779196510207818 +v 6.9218110259054395 2.5590528349335324 -1.9681918639665112 +v -0.33840663923949488 1.4285805269802911 -0.94927084786959071 +v 0.045698250318450866 1.4512224302812953 -0.97020951785278187 +v -0.69573573485481677 -0.32954232511079706 0.61104275822248866 +v -0.91631688587443139 0.17109371127838705 0.1674511547270035 +v -0.8512988704266764 1.6835532286698669 -1.1742998934754521 +v -0.0072841474281991597 1.5826358449584359 -1.0866601147310508 +v -1.8284714362500922 -0.82390592101647186 1.0520810732547836 +v -0.36148574237751785 0.03928909694879458 0.28313234533433229 +v -0.5805833299821479 0.19562317392535197 0.1449457582364429 +v 0.61767599659773942 -1.4572756461120517 -1.2358965447642678 +v 1.0523051510149668 -1.1500511505848798 -1.2371443904369974 +v -1.9282418545173443 -2.3223397268292882 0.28888225534790501 +v -6.5892934981642339 -7.1316997293939695 -2.1570710885690816 +v -11.878786821263946 10.131240977523113 31.959514045187131 +v 5.4375264454657755 -0.49725044999561024 -5.2229383835882812 +v 0.75607611046189438 -1.0328697479068505 -0.70602364546452867 +v 3.1564139712203358 0.13372371964207438 -1.5736917880567129 +v 0.37559120242051008 -0.60932417856200805 0.41949677829340287 +v -1.3078753757672656 1.6283663557423105 -0.87594363678673615 +v -1.423908893830772 1.3987717005421909 -0.88737280768030158 +v 6.0619944854577685 4.2500762255961337 -1.1033614387609065 +v -0.28449937499586009 1.6392495914295726 -0.93567155388004297 +v 2.6384958208716776 0.16726812314585926 -1.226068817169822 +v -0.7474168334211746 -0.090850144370961616 -1.046157858394966 +v -0.36210651610334238 0.83414013684247224 -0.9952469458391332 +v -9.2600557605335787 -3.4057396012510135 -6.4765361805568897 +v -1.9545959707489236 0.98727012762534705 -1.2271152223409625 +v -0.49152862630491534 -0.001996612739959313 0.66560365504351371 +v -0.59893333987942743 0.31457457820722806 0.41683677781509526 +v -1.1136307481904482 0.11490001114380489 -0.0024481970706504708 +v 2.8136940854029913 3.7226742307409455 0.66200111454719979 +v -2.1620528630473714 1.3884035458326143 -0.68019920124901034 +v -2.1774775838614038 3.4084667961484558 4.6898865754331114 +v 1479.1264196210032 -504.01865069408308 -2783.0888046371706 +v -5.6097526262103896 -1.2920166238738893 -4.4281637031529915 +v 3.0238987169927962 3.6131761004722569 0.46699583739038442 +v 1.9468167375695025 -0.59583334446682967 -4.3031386878732727 +v -0.1029776574598944 0.95421103879278402 -1.8182469078928736 +v -1.6504308003906965 2.1272771003677358 2.5985791663809046 +v 0.064536363399723962 -0.44759379491059065 0.062060016478217767 +v -0.40468816881878383 0.96486218929034884 -1.10226919862989 +v -0.78606418651524346 -0.058000285362666458 -0.88719714243388081 f 1 2 8 4 3 9 5 6 11 10 7 f 1 2 17 19 18 13 12 20 15 14 16 f 3 4 27 13 12 26 25 23 21 22 24 diff --git a/results/search/topology_45/resume.planes b/results/search/topology_45/resume.planes index 4d0ea77e..30ecbd83 100644 --- a/results/search/topology_45/resume.planes +++ b/results/search/topology_45/resume.planes @@ -1,37 +1,37 @@ 36 -0.010369226336479187 -0.12616637349128723 -0.11006108671426773 -0.31414294242858887 --0.46868279576301575 -0.31000435352325439 -0.17667101323604584 -0.34890910983085632 --1.248522162437439 --0.75082230567932129 -0.26992812752723694 -0.69063156843185425 --0.69808131456375122 -1.8899396657943726 --0.7055671215057373 --0.35474961996078491 -1.3094972372055054 --1.0667271614074707 -0.1206650584936142 --0.095697797834873199 -0.18514537811279297 --0.18159289658069611 --0.18759089708328247 -0.03134121373295784 --0.14395764470100403 --0.085404045879840851 --0.07113116979598999 --0.020804839208722115 -0.12251455336809158 --0.031228356063365936 --0.90629231929779053 -0.23776191473007202 --0.37445709109306335 -0.029353877529501915 --0.015644991770386696 --0.025918060913681984 +0.00039488612674176693 +0.15745650231838226 +0.17750853300094604 +0.42704957723617554 +-0.60263770818710327 +0.37114426493644714 +-0.063509836792945862 +0.085490547120571136 +-1.0725977420806885 +-0.52198225259780884 +0.23753561079502106 +0.52764374017715454 +-0.70159852504730225 +1.9097671508789062 +-0.72041165828704834 +-0.35033544898033142 +1.4235364198684692 +-1.1769769191741943 +0.13097521662712097 +-0.11602607369422913 +0.20633408427238464 +-0.19050312042236328 +-0.20072607696056366 +0.07495986670255661 +-0.13610886037349701 +-0.09019508957862854 +-0.056014023721218109 +-0.017827969044446945 +0.20177657902240753 +-0.046032354235649109 +-0.90946227312088013 +0.25770565867424011 +-0.38707795739173889 +0.099503107368946075 +-0.061122123152017593 +-0.11424741894006729 diff --git a/results/search/topology_46/resume.obj b/results/search/topology_46/resume.obj index 75e06ed4..a4317564 100644 --- a/results/search/topology_46/resume.obj +++ b/results/search/topology_46/resume.obj @@ -1,47 +1,47 @@ -v -0.58836329489590034 0.81041075133494955 0.38711503119022173 -v -0.50887534239001431 0.47618524262747763 0.44746503674193838 -v -1.6756294317060456 1.2506321680908596 2.8041660074311086 -v 0.21361754757071913 1.3537708857794302 -2.077034132013047 -v -1.2415980693226671 0.34222977398179227 2.4143219809744507 -v 0.11632018825642784 -1.1931902547616222 0.16915167452447749 -v 1.3574383122337765 0.17481817199780839 -4.0579910841078659 -v -2.3432697207295474 2.7582392352443073 3.3172873702859449 -v -0.16306437866281318 -0.87217113429130244 0.62706961634431724 -v -0.26054506859806015 1.0417148849536706 -0.62735271259382175 -v -7.0352229312441912 8.3105256993530574 10.881050237900865 -v 1.6398376716523522 0.70800974005534389 0.73143463526287988 -v 1.4840493403290813 0.74756808767387017 0.7026500159242477 -v -0.092492826084002111 0.96470045840170782 0.43799286929971265 -v 1.7777818881424881 0.87801917321642797 0.72710888068225621 -v -2.985916427447596 2.8936545071782342 -0.27026695544982737 -v -1.6445563810441004 0.37886217296988778 0.29371070852700654 -v -0.3648519192484157 -0.98952022044029964 0.68187914966907603 -v -5.0427432890668351 3.1744555407826476 -0.61518988140927988 -v -0.10175163398409469 0.6782601611936524 0.47827383824611003 -v 0.26564725871114953 0.91761628882171498 1.7278206894268411 -v 0.19594570853681212 1.2213448877960931 -0.85172007548022655 -v 0.84398934401379588 0.026481310449579343 8.513411613885264 -v 3.6012506905432446 -2.3894826339694299 24.419710908862204 -v 12.095106763444331 -1.3779284906948466 -2.4417650834545577 -v 1.5740069470316056 0.74382305034957796 0.54790307296500429 -v 1.2852447553882989 -0.16892711880899733 9.3429937498017672 -v 0.50656607932176545 -0.26658828890116887 11.706149527746781 -v 2.3255283484550189 1.5907107395126436 1.684916433100325 -v -1.3408620848779418 0.35004665992942613 2.0981945639264121 -v 1.2625784653805212 1.2952136289846476 1.2972936954141581 -v 1.0640707368808688 1.554538632869872 -1.2612690290031674 -v -0.59667592682492165 1.2060546942176495 -2.7617177707138496 -v -0.72145506383216829 -2.3232145067444394 -2.3315729916178434 -v 1.6816063184886181 0.75302021628030846 0.56251858624424877 -v -4.4459645775470937 -7.7355254239670463 -23.518587559425427 -v 0.28656876457339814 -0.85805643752441452 3.4113540835137819 -v -3.8724131646520767 8.1332543408003115 10.454682370406816 -v -3.7180208382008049 7.6679621034039522 9.9741528528983991 -v -1.3873967572457102 0.082290108480079185 0.97741875891952734 -v 3.6122301099841052 1.4640276087169779 -0.28721431043832218 -v -0.21827625471658771 -1.209820657455279 0.40064400097520303 -v -9.074752065670463 11.490836328176728 15.206151874785673 -v -0.12792825816079242 0.58248891738253161 0.34902465655057097 +v -0.66553870581903651 0.77154838007562132 0.4427046514469366 +v -0.58744484411741671 0.42818203111617659 0.5038104501391979 +v -1.735046081288145 1.2856968829073807 2.7763204978198899 +v 0.1267135298508254 1.3522282576528171 -2.0138228044867281 +v -1.2646581600841376 0.32640173315802762 2.3049468725576165 +v 0.064410299006211008 -1.2629999504596878 0.12447117636313412 +v 1.3115512501056383 0.116444250618043 -4.0947890971465126 +v -2.4381579846900996 2.8018257921322007 3.4186642228539501 +v -0.15250338242515526 -1.011469585025712 0.48629939183725029 +v -0.3195168941544313 1.0270380806952886 -0.6316195254335899 +v -7.1725936781278223 8.4527850254144994 11.194207136645707 +v 1.6425175315730398 0.6950067757223356 0.78880202460743076 +v 1.5077866656316883 0.72959161700740305 0.76423345661047404 +v -0.14091271369059352 0.94117333468476827 0.49426436362894044 +v 1.8014153412911975 0.88960657607890692 0.78365804350550394 +v -3.2098426477436206 2.923172003153732 -0.23846552069471971 +v -1.6675154959744554 0.30890736077092656 0.36433249408447438 +v -0.40671929852136884 -0.93628315310157184 0.72782074927574869 +v -5.2118795056113427 3.2125016985641253 -0.57098931177863488 +v -0.13657509987557867 0.70264783119891983 0.52946816073215885 +v 0.27801153502919662 0.91334003809912889 1.7830101441888813 +v 0.16410204018838268 1.2205983803647373 -0.85722596038864463 +v 0.90197383593575642 0.058204716312947845 8.4447100039315117 +v 2.6065892167871909 -1.3441838573527629 17.846013372678577 +v 11.680693018730055 -1.3575165004470904 -2.3199930989529856 +v 1.5051952669677919 0.7486639429764369 0.59033054266663265 +v 1.2037897936564692 -0.070574791541588869 8.9831349130174853 +v 0.64309908157228801 -0.16901814000088711 10.990672524296375 +v 2.3645237730321824 1.6151577446756888 1.7802833424010065 +v -1.3652183955596715 0.33268653409664639 1.9986200726769927 +v 1.3346961069822709 1.3215692276757651 1.3781782214603451 +v 0.96166876409060431 1.5365487296138907 -1.2225829091620246 +v -0.65217171131489826 1.1911206655390327 -2.7287450402164111 +v -0.99470210070886944 -2.7338954994837534 -4.7520255615749427 +v 1.6921002132496827 0.75095134800494279 0.65218823723151897 +v -3.4441466439584025 -6.2774692921264945 -20.035865160834902 +v 0.31596448834954505 -0.83773101964595409 3.4273846220611883 +v -4.0006739487915572 8.3350372240390715 10.965073326917224 +v -3.9311079654684629 8.1298738044310213 10.745551927180031 +v -1.4459159097743273 0.089818276377217204 0.89354542153979644 +v 3.6247051199812961 1.4608807334993106 -0.11872221540138078 +v -0.18456181789977502 -1.2707749591356738 0.29334252696327179 +v -9.2429619403364107 11.684511680782746 15.640031063957004 +v -0.165258151404585 0.57452507810274012 0.35337394987806647 f 1 2 10 9 6 7 4 3 8 11 5 f 1 2 17 16 19 18 13 12 15 20 14 f 3 4 25 26 22 21 13 12 23 27 24 diff --git a/results/search/topology_46/resume.planes b/results/search/topology_46/resume.planes index defc2f74..8c3fba62 100644 --- a/results/search/topology_46/resume.planes +++ b/results/search/topology_46/resume.planes @@ -1,37 +1,37 @@ 36 --0.14850261807441711 --0.045871477574110031 --0.058446537703275681 --0.083907656371593475 -0.082522444427013397 -0.56753522157669067 -0.25636023283004761 -1.0986876487731934 -0.12243813276290894 --0.30360811948776245 -0.93668955564498901 -0.11849448829889297 -0.65668100118637085 --0.53230279684066772 -0.02053963765501976 --1.1806958913803101 --0.58730858564376831 -0.1893322616815567 -0.40537416934967041 --0.4380970299243927 -0.55445045232772827 -0.4039912223815918 -1.8750007152557373 --0.8826257586479187 --0.093081772327423096 -0.6116936206817627 -0.30034473538398743 --0.0017694726120680571 -0.21048557758331299 --0.15560753643512726 --0.21031148731708527 -0.011581108905375004 -0.034012652933597565 --0.73636919260025024 --0.76108920574188232 -0.21240048110485077 +-0.21102164685726166 +-0.062744766473770142 +-0.082888141274452209 +-0.09069351851940155 +0.090571559965610504 +0.62484794855117798 +0.2597883939743042 +1.0945757627487183 +0.1161733865737915 +-0.31330779194831848 +0.93194162845611572 +0.12197226285934448 +0.65913271903991699 +-0.53770273923873901 +0.019031886011362076 +-1.1757057905197144 +-0.64132988452911377 +0.22680386900901794 +0.39276161789894104 +-0.46357172727584839 +0.557716965675354 +0.40679287910461426 +1.8312103748321533 +-0.8558509349822998 +-0.10601557046175003 +0.61187583208084106 +0.2977030873298645 +-0.00022071533021517098 +0.20773589611053467 +-0.15110868215560913 +-0.2189515233039856 +0.0011576318647712469 +0.034821581095457077 +-0.7309267520904541 +-0.77643567323684692 +0.22401703894138336 diff --git a/results/search/topology_47/resume.obj b/results/search/topology_47/resume.obj index 3a9f095c..40c58b35 100644 --- a/results/search/topology_47/resume.obj +++ b/results/search/topology_47/resume.obj @@ -1,47 +1,47 @@ -v 0.46846966529283568 0.21097063927269 -1.6256328918689225 -v -2.3640574688101315 3.0372035655546306 0.039087195403061568 -v 0.56089542426797223 -0.76326995194350444 2.1676172417891957 -v 0.20427575447320032 -0.32443181950023403 2.0150959072183339 -v -0.31089616788584906 0.48248863824223576 1.0402040647970745 -v -0.81931836966382021 1.0591686003692551 1.0363276692475736 -v -0.2827178586452932 0.45594277165282099 1.0167952974151975 -v -0.87270396304782438 1.1935187974134795 0.71399994529983579 -v -2.3108801317789194 2.957690009423863 0.12323401853153924 -v 0.69048884515426545 -0.15829706247126335 -1.1116337790084025 -v 0.5625899059415681 0.23956331180292123 -2.2153377494236008 -v -2.080650639780238 0.8532122168880315 0.20170018885173868 -v -1.4492893578291492 -0.82265630511287613 0.011727907699174311 -v -0.45380525077362915 -2.7828500876071898 -0.40592103105729543 -v -1.3993753251414336 -0.80139030970262537 -0.029912224238967611 -v 4.014484211924751 7.702015767462238 -5.6192689708032155 -v -6.2497553598812337 41.729382275762006 -3.7051048727121234 -v -2.1489045254269152 1.2965711270035247 0.17684224208120169 -v -1.117057473624786 1.7780451210049122 -0.6912091480120599 -v -1.1047610169572435 -0.13090153213968017 -0.37004588125009569 -v -1.7856613177380261 0.48027239834111562 0.32277626311428875 -v -1.8924969665420468 1.1579800644457086 0.55659905804006793 -v -0.51399675383427001 -0.038016242347495968 1.4021796125396637 -v -1.3542694449975021 2.2620992502757677 1.6906870875554916 -v -2.0798250775463729 1.212674643076288 0.38651224082956182 -v 1.0623156004748198 0.25588220924979499 3.2193082888699709 -v -0.45590029169603313 -1.0568850336884139 0.94224741795440625 -v 0.29855090877492624 -0.90008570779071184 0.75338996638725431 -v -0.35059731956067824 0.25700728611322998 0.92585096246035226 -v -7.323139221731445 -17.224190438631712 -9.8318808297300713 -v -2.4637341993993926 -0.40887654460183831 -0.3815284944316113 -v -0.47221626323668026 -0.019153573783563367 0.750332365685484 -v -0.16518861913553159 0.039706790573625764 1.0021016979767912 -v 0.037586463048447982 -1.0512044939453729 1.0779520786006447 -v 1.9026220920542047 2.6303837001170942 -1.9478841635341066 -v -0.31201645634825803 1.1921459354016508 0.8487612802063409 -v 0.38470484458089677 -1.0661804418413068 1.2241709226838313 -v -0.82933499972530544 -3.7271862303491474 0.68878823975624259 -v -2.143368163358518 -0.35194232577383822 0.16460435063582834 -v 1.0668311274494453 0.25500269749023186 3.3333395637718475 -v -895.40073864967337 -186.72726969963807 224.09085439555471 -v 18.125552267054669 -11.161969622557599 33.663469676437671 -v -4.714810411783084 -11.858632740860781 -5.0269689518611997 -v 7.8669906120584727 -5.9898954893485294 16.687058708972522 +v 0.43415461064321448 0.0242493119676267 -1.0421099167425383 +v -2.2379986967565535 5.0671192529672027 -0.020954735783924518 +v 0.33202613302799494 -0.95500241360518401 1.7515987394099404 +v 0.11402100361329701 -0.49657170672481304 1.7244080512321907 +v 0.039537168463761756 -0.0043751481609250256 0.92638588205484096 +v -0.79548766168101004 1.5625751548278748 1.2664139735901896 +v -0.2023565041624647 0.44444279131265041 1.036881288906089 +v -0.80344604125676689 1.8111645023841327 0.72046349151601852 +v -2.0998384109623753 4.6925294066868357 0.19385566603559173 +v 0.4386038522833724 -0.7359691898940578 0.72329784834050415 +v 0.46395512257625732 0.017429225690080458 -1.1696547709291449 +v -1.7471433158342142 0.9131115501200866 0.32455096067205774 +v -1.1941379460041415 -0.66245479499523807 0.20107704819491079 +v -0.23467420040040821 -2.0695946429106651 -0.23223036454020424 +v -1.0325316927835699 -0.60066058485966978 0.078742595843292296 +v 3.6400200048141289 5.6689710119118377 -4.1987464631279749 +v -4.2601814444109616 25.030719245902176 -1.9150942271425637 +v -1.9014595428411971 1.9239562694233594 0.26466934009037091 +v -0.92201603941979138 2.3515224673773347 -0.48552242504109838 +v -0.93473613209300077 -0.0019747206635735291 -0.087991103088699507 +v -1.5395404651477806 0.60323115667821725 0.40951740966916605 +v -1.4932948404637174 1.6475494892774949 0.94763522335425798 +v -0.46257113603680899 0.13146298424125982 1.3799449580397396 +v -1.2367021707311221 2.2889893074283414 1.5303846824495224 +v -1.5772663096829429 1.6764800102251427 0.8683085715800849 +v 0.9910204837262776 0.34763840974288807 3.087483025491895 +v -0.37793740190494651 -0.908189510356611 0.98867055190264708 +v 0.42577922784377981 -0.75094544282339448 0.75838344460860774 +v -0.27653887863151383 0.34128868329589979 0.93324453684770825 +v -7.0290665301633899 -15.524572424907237 -10.368686623259084 +v -2.1017284606968349 -0.08993377876176728 -0.22232763328891991 +v -0.42649476271246783 0.089010703218900242 0.73152807237697748 +v -0.086297403880579854 0.13131551383318818 1.0114159945607366 +v 0.12698320736477955 -0.9092958465562021 1.0956746846031451 +v 2.626226433061245 3.6406773439307649 -2.6342735685028185 +v -0.25891804641087551 1.8723471952125834 0.68999931616618559 +v 0.34404309068027128 -0.92728345905661558 1.1857960596630603 +v -0.80171261662960491 -3.2044517187063537 0.70013179571463102 +v -1.8171330248156856 -0.035184144916068374 0.291487225014748 +v 1.0315259131284624 0.42136672601794872 4.1131575511225584 +v -911.74549758561398 -63.435966117219877 -29.581037515710925 +v 25.237876286256771 -17.15523306181808 47.210210983120867 +v -2.4998493000934392 -6.5695633702870033 -1.4937875774613474 +v 101.72229248044135 -63.60141193317066 180.01777862078859 f 1 2 9 8 6 5 7 4 3 10 11 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 27 13 12 21 22 25 24 23 26 diff --git a/results/search/topology_47/resume.planes b/results/search/topology_47/resume.planes index 2c58343c..f28b5e04 100644 --- a/results/search/topology_47/resume.planes +++ b/results/search/topology_47/resume.planes @@ -1,37 +1,37 @@ 36 -0.17888981103897095 -0.1579592227935791 -0.03621070459485054 --0.58294403553009033 --0.1327214390039444 --0.76655715703964233 --0.87309378385543823 --0.42252868413925171 -0.825725257396698 --0.33945748209953308 --0.29458150267601013 -0.69870853424072266 -0.40169504284858704 -0.10037199407815933 -0.36971727013587952 --0.38351565599441528 --0.0080407131463289261 -0.90962910652160645 --0.13520953059196472 -1.3283936977386475 -0.57608509063720703 -0.67310994863510132 --0.30126500129699707 --0.028978122398257256 --0.017552470788359642 -0.085755050182342529 -0.0013564807595685124 -0.064703218638896942 --0.56617659330368042 --0.21159179508686066 --1.6694341897964478 --0.072160542011260986 -0.98682659864425659 --0.67420059442520142 -0.05871141329407692 -0.37478518486022949 +0.17928838729858398 +0.087467178702354431 +0.037213198840618134 +-0.33888339996337891 +-0.080667711794376373 +-0.48841902613639832 +-0.82923626899719238 +-0.34984403848648071 +0.75020205974578857 +-0.31089296936988831 +-0.29621809720993042 +0.60158467292785645 +0.46307942271232605 +0.13319076597690582 +0.47275790572166443 +-0.3709036111831665 +-0.0037464352790266275 +0.89258408546447754 +-0.15776799619197845 +1.8173052072525024 +0.82977908849716187 +0.64348840713500977 +-0.32330751419067383 +-0.0021720882505178452 +-0.0044824089854955673 +0.066500455141067505 +-0.0046032192185521126 +0.03411434218287468 +-0.41642478108406067 +-0.16528090834617615 +-1.5072391033172607 +-0.072728864848613739 +0.84258997440338135 +-0.63769310712814331 +0.068954072892665863 +0.38782277703285217 diff --git a/results/search/topology_49/resume.obj b/results/search/topology_49/resume.obj index 1ec732eb..0fb0c43c 100644 --- a/results/search/topology_49/resume.obj +++ b/results/search/topology_49/resume.obj @@ -1,47 +1,47 @@ -v -1.4010447268888515 -1.5656132955103825 -1.652465451898242 -v -1.5499101386612411 -2.0543236863654637 2.8935640491964136 -v -4.0866056842588678 -0.90788218677336319 0.7697103237573657 -v -5.4890804909425919 -0.50482841810252554 1.5342262823328565 -v -0.13009796717480901 -3.0078267241023076 6.7018701899867308 -v -2.4614213597696359 -1.5549783433013471 1.3962304640975709 -v 0.14829592969340674 -2.5569373831990228 2.0902405100799433 -v -0.67200502243094462 -1.5763941554982375 -3.7193903346797086 -v -0.84107337976058449 -1.5778174205312461 -3.2070998234574231 -v 1.436466983840097 -2.9437902295474352 1.527892307784589 -v -0.61512855653721166 -1.6745740880396516 -3.0629333978477162 -v 0.67084823221192724 1.8722785888514943 -1.157515858924004 -v -1.0177889578526516 -0.97131158598104506 -0.77169171325556629 -v -1.2393063448909454 -1.5161886661028789 2.5365148023470865 -v 0.021966200631273459 0.77380845458015968 -0.89966331044866032 -v -1.1598998228112896 -1.1792345384571878 -1.3341596647487699 -v 0.11268758154058034 1.0387799705297731 -3.047251894291549 -v 2.4576101561552077 5.0857076379204296 -5.4441490777371238 -v 1.1953264753603485 2.699870026710482 -0.2232781619760012 -v 0.56415060748800239 1.625136423244832 0.1457778317003933 -v -1.0655528595588037 0.087394126775060907 -0.57781043347998517 -v -0.055402816123134316 0.77140926524850095 -0.97196764674793612 -v 0.85720195948520606 5.9797627808750997 -0.59075566390442913 -v 0.56731329938163322 4.8181081064814233 -0.63269776276804457 -v 0.19638007069245364 0.037560814314938205 -1.2154675630553395 -v 1.0053096891345956 5.3048487898527386 -0.77305987921135266 -v 0.71716112560582779 4.800216119813066 -0.71033950525345213 -v 0.7161374246730704 -0.41954650936018256 2.2398807006509194 -v 0.81150308407665395 -0.48702214778103547 2.4734088997256061 -v 0.65512877161397609 -0.018380370329476248 1.3564946335539261 -v -2.2863112111461414 -1.4437781830539129 1.343022239986142 -v 0.29151822211057549 -0.12181018086593935 1.2056263322436427 -v 0.542153350265558 4.3648497267618476 -0.46410502238979878 -v -0.46996664214067302 1.2250862041763617 -1.058208063297021 -v 0.022160284166949772 -0.31903285363049755 0.73133100648094251 -v 0.25416024811852972 1.9838137062626693 0.093841688399288026 -v 0.84480667811605636 0.23615677167451612 2.0381486110875371 -v 1.1631208035514689 3.2402724785578196 -0.36102111912803136 -v 0.85354556545860549 1.5090792854514778 0.33551057159071224 -v 1.081042483996951 2.8286820278438163 -0.24152546485056928 -v -2.1362194812644799 -0.035711689182151882 2.5330023012594829 -v -1.8155607676634649 -0.48955340831777011 1.0276139548888126 -v 1.2830812747808995 0.86756861511875638 0.31418076381442905 -v 1.6129308129475155 -0.39587175571925226 -0.19982133673624936 +v -1.143955887395351 -1.3763581113310857 -1.5222525047714599 +v -1.5759698026856241 -1.8505365933352822 2.6476205226609952 +v -4.0342332399570804 0.4089534183066128 0.41595939979633201 +v -5.3283091836049286 1.1950705243177477 1.3530264934500811 +v -0.37142759733347491 -4.3104820652202793 10.824625021289776 +v -2.2010031843735409 -1.1512570587032558 1.4268026586932558 +v 0.23442247211410649 -2.9186789233750563 1.1710928454111822 +v -0.36391891827708445 -1.6674446196092665 -3.0440838925065052 +v 2924.2432088763171 418.98931795625691 -13626.132598543671 +v 1.353000123939669 -3.9263776304211864 2.0795771436844022 +v 45.935890011194324 -27.827900142560374 -46.862214088195152 +v 0.2500311103327621 0.72890105208313283 -1.8700914376368794 +v -0.90763266252144603 -1.0254651325768769 -1.7182255806479036 +v -0.91590317364280471 -0.87448547285239553 2.0087325528104238 +v 0.24107186633090164 0.76169171569751626 -0.81236065567822668 +v -0.68685608534551112 -0.64367262896661759 -0.67122411970180662 +v -0.00281328551975001 0.30201428013072179 -2.8330772362716323 +v 5.0339720642826515 7.2018558475048229 -20.198244348365236 +v 1.3476011806026009 2.4746423008881937 -0.13548957240410503 +v 0.091634182477352263 0.5951876045076242 0.57349769819370899 +v -0.12818275155906456 0.94001662936807229 -1.6014250362883242 +v 0.096604120852508857 1.0675453653861871 -1.6904389839661564 +v 0.45217545657429936 11.735293809736863 1.0919601432584494 +v -0.39807125482724642 5.0279848637379212 -0.30999885381000836 +v 0.29042771441146586 0.93554331503164301 -1.8347733325118281 +v 1.0127934695665963 7.7826025148690219 -0.32287782569555645 +v 0.26958658648405137 5.1437145795897683 -0.64785845112852236 +v 0.8842971764059393 -0.28071537729066309 2.326959430830601 +v 1.0045903426762681 -0.32846526135665577 2.5590698963640217 +v 0.78533665974138511 -0.0082862881876071583 1.5737341432678507 +v -0.97516120328127076 -0.49838599296554792 1.0440871336842028 +v 0.26164825637999906 -0.063682254485100828 1.1981850608590863 +v -0.1145810761218963 2.9362324538062317 0.30404813396432473 +v -0.38628897948828333 1.1491383108305018 -0.15603633713122411 +v 0.080016258315233485 -0.19779067052270213 0.78307245216464427 +v -0.016497298241511374 0.68689828097247296 0.56817667086380863 +v 0.99206901074994269 0.28917222696798617 2.405258055694091 +v 1.2804818769200241 6.1303587058284084 -1.0807990136431278 +v 0.67744416188086876 0.017916595215858852 0.98440635128554987 +v 0.95172734590692587 3.1291547053173572 -0.23840647625534389 +v -0.92251785063942071 0.31231122906960795 1.5917544044613978 +v -0.83732527726958772 0.01226609568377802 0.88660294961505159 +v 1.3556645496845137 -0.52741437970317928 0.87575010089741734 +v 1.4097138295747518 -0.514972982457503 0.60151041076487122 f 1 2 10 5 6 4 3 11 9 8 7 f 1 2 14 15 20 19 18 17 12 13 16 f 3 4 27 24 23 26 21 22 25 12 13 diff --git a/results/search/topology_49/resume.planes b/results/search/topology_49/resume.planes index d3e889ea..1c676a12 100644 --- a/results/search/topology_49/resume.planes +++ b/results/search/topology_49/resume.planes @@ -1,37 +1,37 @@ 36 --0.69816064834594727 --1.9818475246429443 --0.23591607809066772 --0.30357256531715393 -0.18157315254211426 -0.0095787392929196358 --0.43976002931594849 -0.14156299829483032 --0.88135486841201782 --0.10704628378152847 -0.21988621354103088 -0.10724829882383347 --0.19643600285053253 -0.045647688210010529 -0.093407802283763885 -0.37383657693862915 --0.094505131244659424 --0.068734981119632721 --1.0263583660125732 -0.39473763108253479 --0.33762660622596741 -1.3474892377853394 -0.18488013744354248 -0.4102778434753418 -0.51912492513656616 -0.31670388579368591 -0.92892402410507202 -0.073148518800735474 --0.49957066774368286 -0.16619081795215607 -0.57608300447463989 -0.40667212009429932 --0.62992984056472778 -0.081799700856208801 -0.15726916491985321 -0.59788340330123901 +-1.180103063583374 +-1.5824043750762939 +-0.30220657587051392 +-0.19754943251609802 +0.12986473739147186 +-0.0056992238387465477 +-0.7744099497795105 +0.3901083767414093 +-1.396715521812439 +-0.098986372351646423 +0.2455420047044754 +0.10181353241205215 +-0.25549787282943726 +0.00451667420566082 +0.13334305584430695 +0.45839187502861023 +-0.074700288474559784 +-0.087242461740970612 +-0.60342741012573242 +0.12410872429609299 +-0.12571164965629578 +1.429678201675415 +0.10028722882270813 +0.28632175922393799 +0.4343031644821167 +0.3455493152141571 +0.9766075611114502 +-0.076516635715961456 +-0.41706699132919312 +0.16821956634521484 +0.38030624389648438 +0.45394375920295715 +0.095547705888748169 +0.11722388863563538 +0.17757278680801392 +0.67838925123214722 diff --git a/results/search/topology_5/resume.obj b/results/search/topology_5/resume.obj index 434403fd..7aba7d45 100644 --- a/results/search/topology_5/resume.obj +++ b/results/search/topology_5/resume.obj @@ -1,47 +1,47 @@ -v -1.7789742192804823 -0.63521371493691736 -1.4719160159676559 -v -7.4976741702698728 -1.6276984694591772 5.6862285011525486 -v -2.1964307843174717 -0.85807581021460921 -1.660702153699829 -v 0.10753653278298712 -0.20394121095210402 -3.3420753434287191 -v 0.12114826758714477 0.18266817232366461 -1.5419558827079825 -v -0.16698738813624794 0.20359277555314728 -0.84585268455890217 -v 1.302012127889554 1.2992686654253287 1.2913161203593686 -v 6.3900481980443846 2.0413986500494956 -5.7437688578726682 -v 0.0319180942539646 0.3305906543941447 -0.65748462126321661 -v 2.675483216821557 1.6875065556087536 0.28089120761986874 -v 0.85973663191215366 0.87264326691510963 0.19034127758367617 -v -0.97957894651349531 -0.9497244625286595 -1.542219115207242 -v 0.1503290085343931 -0.38473811835206573 -3.7136959408691772 -v 4.0626520135978081 -0.041178539475519055 -7.9223056619082355 -v 1.3543341290503277 -2.3613089152109157 -0.73487676880020714 -v 8.930504244605963 -0.23963440566028701 -11.874071999417287 -v 1.6558870409634237 -2.968387600712604 0.24113973824315732 -v 0.72259055327245691 -2.2587985620222808 -0.3795644034922353 -v 0.83305706948805125 -2.4306343210636649 -0.12578601679799484 -v 0.47325399901996335 -2.6211501411368774 0.58745489818798646 -v 1.7109742502115408 3.6784216959667804 1.5338293966485177 -v 0.20183163384064304 0.19725498112215181 -0.70720534058861828 -v 0.13554602544970484 0.36441765200472759 -0.61919060530213399 -v 0.52701786629016845 0.19006847276896138 -0.66546161968021333 -v 2.5931374452956057 2.0516692692560561 0.71079805832616694 -v 0.41069244970174335 -0.33249471501740319 -0.98629980392227257 -v -0.1481369486592703 0.098756474987000728 -0.8140139440016384 -v 2.5025759266435554 1.2737584944887743 0.24485150335291644 -v -1.1055370663568416 0.22171454069568519 -1.0982707948298776 -v 1.3946023439952582 3.5439967454791828 1.6860237214954132 -v -0.21939455927224311 0.84909061600754121 -1.0820011759550932 -v 7.4282378529236741 2.9547635607639706 -6.7787969752388602 -v 0.2642114939723112 1.4304790092678199 -0.65147953290519933 -v 2.2738305049345469 5.4433613121301851 3.9548166442244215 -v 2.3587794362536965 -4.5233971175562324 -0.46619109988843344 -v 1.0382107562353897 -1.2763963318086058 0.92754761758162296 -v 0.7114657301066285 -0.83658630186474192 -0.29808332286127781 -v 1.0686190805955682 -1.438341899955468 0.51889794937327371 -v 0.99065111919428772 -1.1890658090022592 0.84985083237363879 -v 1.413031040965083 0.20149628583312074 1.0098695675300968 -v 1.6129385005730701 0.19429482924251112 0.8953499383356619 -v -0.28520466783210879 0.20794970126035611 -0.77318133148420365 -v 1.0344982719879907 0.20192214847177614 0.56143736300822478 -v 1.2410092447103307 -4.4065579453246455 0.18938937922161225 +v -1.8283474660399424 -0.59711882349350565 -1.4433998352896318 +v -6.6705776778084189 -1.5721516562688211 5.0004224170108671 +v -2.1977647930397044 -0.78372782379819461 -1.5979826751220401 +v 0.10249978199698784 -0.0091525481586663213 -2.8660499852377317 +v 0.10697083055266732 0.056384961289114653 -2.4998149318510068 +v -0.19482165591426015 0.20968868772986599 -0.86555952514518164 +v 1.2793030101001612 1.2278270925601489 1.326077211151234 +v 6.6986751595156315 2.2630141369604391 -6.2085720642552085 +v -0.042389604093484815 0.30487315519430763 -0.69706794180946219 +v 2.6568617867746309 1.6317521453671699 0.22150545902500718 +v 0.94274719694561293 0.9212077114898054 0.398635776650625 +v -0.90589394789130062 -0.98037215773848696 -1.5169402419040594 +v 0.20428666406736631 -0.41010882114918296 -3.6975154910207388 +v 1.9362976530735048 -0.30609310909407222 -5.5060214879727232 +v 1.3607516286438943 -2.4016515222342556 -0.7250356206711881 +v 6.7671899621561256 -0.88138308227476558 -8.7950872074208242 +v 1.6959945491521142 -3.0131341010049177 0.20593114109652061 +v 0.72793409739272452 -2.2911491413741207 -0.36546332001776838 +v 0.80065982108891298 -2.4176143004217239 -0.17605169543790644 +v 0.512555300828889 -2.6402708093447131 0.54126820822637978 +v 2.0549838197823918 3.6607153232628562 1.4241207141796637 +v 0.20809737951720189 0.19631582274248061 -0.71855682335588278 +v 0.13813614463460214 0.37138236897010252 -0.63397451906989444 +v 0.56036049498469109 0.17742611294994001 -0.67766464810881633 +v 2.656649800501762 2.4167262786584445 0.83826340468211702 +v 0.4495989093764689 -0.40801842448267767 -1.0105380640317869 +v -0.17961073174430581 0.099585081242969983 -0.82715784571229889 +v 2.5050887902219738 1.2627626607388249 0.19182707556403569 +v -1.0569113451667376 0.24691624759673561 -1.0752119119379118 +v 1.3826457191227155 3.3975708332252363 1.7292986450194039 +v -0.26798178351985857 0.76450612095401016 -1.0613163408064175 +v 6.8402447465619938 2.3867337316933357 -6.3540060582497722 +v 0.074317528854803513 1.1782644409843004 -0.71825487696283385 +v 2.1219442189681219 5.0502416354919877 3.8224448006455294 +v 2.3055895922336713 -4.4690027409791213 -0.42897219257914398 +v 1.0277719793261872 -1.3110170597579516 0.92435302277523479 +v 0.71241933840857052 -0.85867787492887038 -0.32566800964685416 +v 1.0518980696807088 -1.4408024615500024 0.5589608465910183 +v 0.98166022783115836 -1.222306233663111 0.85088796624051843 +v 1.3854120749051924 0.26857506422711874 1.0663503813022843 +v 1.5979140524790516 0.24538343335418625 0.94740981486855902 +v -0.31524526598956182 0.2231861155643857 -0.79383648661687078 +v 1.0536478992157194 0.25619369631178684 0.66052919181905845 +v 1.2929532226551199 -4.300520644485081 0.15006977868389726 f 1 2 7 11 9 10 8 6 5 4 3 f 1 2 17 19 18 15 13 14 16 20 12 f 1 3 21 25 28 23 22 24 26 27 12 diff --git a/results/search/topology_5/resume.planes b/results/search/topology_5/resume.planes index 7c3f3973..8667d2cb 100644 --- a/results/search/topology_5/resume.planes +++ b/results/search/topology_5/resume.planes @@ -1,37 +1,37 @@ 36 --0.16144755482673645 -0.36840760707855225 --0.077901639044284821 --0.65042346715927124 --1.4908295869827271 --0.72633379697799683 -0.088386975228786469 -0.36453625559806824 --0.62578237056732178 --0.62331616878509521 -0.8935428261756897 --0.50649243593215942 -0.30031916499137878 -0.13561803102493286 --0.031397398561239243 -0.0053255008533596992 -0.21605630218982697 --0.0042902054265141487 -0.73601818084716797 --0.25914183259010315 -1.3011020421981812 --0.34742492437362671 --0.22992515563964844 --0.5513845682144165 -0.21899738907814026 --0.043224506080150604 --0.55444931983947754 -0.68962246179580688 -0.02174874022603035 --0.28545764088630676 -0.29549053311347961 --0.061044648289680481 --0.24948887526988983 -1.3076149225234985 --0.61354565620422363 -0.77018314599990845 +-0.1578485518693924 +0.36499136686325073 +-0.0633879154920578 +-0.67131620645523071 +-1.47613525390625 +-0.72782081365585327 +0.09442264586687088 +0.35213202238082886 +-0.65073436498641968 +-0.57188117504119873 +0.88501954078674316 +-0.49679046869277954 +0.29955175518989563 +0.13297221064567566 +-0.027452254667878151 +0.016777124255895615 +0.26563158631324768 +-0.021819785237312317 +0.70591968297958374 +-0.27808022499084473 +1.3154339790344238 +-0.36071470379829407 +-0.24498791992664337 +-0.5595393180847168 +0.21624927222728729 +-0.042811211198568344 +-0.57361322641372681 +0.71642357110977173 +0.015120774507522583 +-0.26497936248779297 +0.28349193930625916 +-0.043471559882164001 +-0.23043210804462433 +1.3145818710327148 +-0.60241991281509399 +0.76717734336853027 diff --git a/results/search/topology_50/resume.obj b/results/search/topology_50/resume.obj index 63368e3f..9dc92905 100644 --- a/results/search/topology_50/resume.obj +++ b/results/search/topology_50/resume.obj @@ -1,47 +1,47 @@ -v 0.87708987412627015 -0.091305424469163801 -0.81616882097847909 -v 0.58774888091532207 -0.55383274219163214 -1.9756395083566864 -v 4.9151880950231881 7.3953108438509592 -0.84481064706414788 -v 1.9164981193982782 1.8235349656526414 -0.63153130406554725 -v 0.1391778571709808 -1.4626584523046413 -0.75958609998107374 -v 0.29759935938727122 -1.1262205306091626 -1.4321549617259046 -v 2.8377248790903309 5.8332289923643366 -36.811010646909025 -v 0.35143686230846061 -1.0862405356869216 -0.4922105755176136 -v -0.37649870102919519 -2.7611594364128327 4.625654411141813 -v 0.61488700422004638 -0.74267323162630017 1.7825885785736755 -v 1.0524860491519765 -0.021855811400928765 3.2015647248964911 -v 0.12435184427225768 -0.63541392662235718 -1.4318669624037774 -v 0.73693481168559472 -0.15094305107263445 -0.77903961961681967 -v -0.3121859272420861 -0.21832207997834413 0.87932274905453878 -v -0.6608392549001697 -0.018129962861992855 2.2410914217523965 -v -0.4077470378212974 -0.83132490330816478 -1.1798133417847272 -v -1.6399510471751693 -0.55394141804356334 2.0663932782444987 -v -0.71781157821370023 -0.7404843109132152 -0.28632456578512111 -v -1.2370093171337484 -0.40848608182857321 1.8649524293972055 -v -1.1089044046198262 -0.25692858384216799 2.1844598768374466 -v 0.097910531338840881 -1.4687182168855046 -0.59465842092083809 -v 0.20599717123038924 -0.79140891220807641 -1.1099043942626401 -v -0.047028173971167445 -1.169160739382632 -1.1903217593965068 -v 2.0594483090400426 3.1662185209524285 -1.7890304224824507 -v -0.1735733648553297 -1.9115542436524413 -0.64096771787713458 -v 5.0956226555229884 7.6187805398530593 -0.73856122538394575 -v 3.4171377851083027 -1.3033834579732921 5.5628113357982922 -v 0.05090101828222203 -0.97547049672403607 -0.46974715347082618 -v 0.12107685378300338 1.3814691991309282 -1.0456345041994772 -v -592.84674321836758 -3919.3543905314573 2851.4219315837618 -v -0.28587540017846202 0.82132834866048898 0.64377264066142037 -v -0.40140515402911403 0.21051067025899334 1.1802571017951218 -v -1.0645161467064039 -0.090464008357299466 -1.6211979215921062 -v -0.80981726873540216 -0.67487170105369743 -0.36205271187707933 -v -0.91780199563680731 -0.55937991529501163 -0.4114835336324083 -v -3.2344824035294049 1.6715349761405256 -0.56810340190194397 -v -1.7263982128686606 -0.45395685069100944 1.9992552056478103 -v -1.1851881913735844 -0.25834739472872559 -1.0588302037736401 -v -7.1176327849510841 0.98234801591706167 1.8492115109695819 -v -1.6810925342319936 -1.6022325562938085 2.9562723979911096 -v -5.8434163941748087 3.6030671648490573 -0.60538520139339513 -v -3.6916699802018722 1.0944907773075496 -0.35538377556593403 -v -1.1546697539945354 -0.23774459256542183 -0.44989751141913897 -v -1.3099993164206465 -0.42031385842687097 -0.87844563843063217 +v 0.87727752095092559 -0.091325002459105117 -0.81634344513636847 +v 0.58787459013150078 -0.55395131351054638 -1.9760622522885294 +v 4.916240426823296 7.3968940693407568 -0.84499109591590615 +v 1.9169082684207557 1.8239252152908596 -0.63166643693042079 +v 0.13920758043121012 -1.4629714806160663 -0.75974836234509979 +v 0.29766311634731341 -1.1264612945138608 -1.4324616891318604 +v 2.8383322181628761 5.834477454795084 -36.818889522281623 +v 0.35198239109139945 -1.0855826894960761 -0.49260577456873367 +v -0.38730107417420317 -2.7823034354055145 4.6373295726290076 +v 0.61501857324117493 -0.74283211391947157 1.7829699455023924 +v 1.0527113393904413 -0.021860343983018782 3.2022499185345841 +v 0.12834114163302335 -0.63241597593836552 -1.427950384401856 +v 0.73709254259461876 -0.15097535649202584 -0.77920631938671481 +v -0.31225273035248458 -0.21836880028688052 0.87951088947839362 +v -0.66098070170821144 -0.018133820626008192 2.2415710578541086 +v -0.40783428096288998 -0.8315028169968558 -1.1800658585195105 +v -1.6403019967631132 -0.55405994521296587 2.0668354114112502 +v -0.71647231035000891 -0.7387209831009639 -0.28209574062973064 +v -1.2372739945951059 -0.40857347107617592 1.8653514426069489 +v -1.10914161128241 -0.25698347202251759 2.1849274066485127 +v 0.097931500744765754 -1.4690325286949475 -0.59478570371461981 +v 0.20697577597585992 -0.78572234190378565 -1.1145966828728584 +v -0.047038232028035934 -1.1694109332703586 -1.1905765407307842 +v 2.0598890680674913 3.1668961719263713 -1.7894132689813649 +v -0.17361050814679332 -1.9119633280988892 -0.64110494125806561 +v 5.0967127436515014 7.6204105285881383 -0.73871943955847486 +v 3.4178694031773018 -1.3036621655210747 5.5640021359581286 +v 0.050978201500571731 -0.97345296362999356 -0.4703916285659771 +v 0.12110276888883269 1.3817648245884566 -1.0458582448107858 +v -593.01886914386989 -3920.4921248534101 2852.2497316276963 +v -0.28593658355347551 0.82150408592985169 0.6439104231183167 +v -0.40149105344624891 0.21055572052688398 1.1805096436370799 +v -1.0722851825923161 -0.10193115710978375 -1.5535391629005222 +v -0.82000750040923143 -0.66430282716558486 -0.36671551380328493 +v -0.91799837861080946 -0.55949966183253985 -0.41157156999960631 +v -3.2351744589872626 1.6718925203554031 -0.56822493324091727 +v -1.7267678368592734 -0.45405378216950915 1.9996828419816288 +v -1.176886117146879 -0.24730003454898922 -1.0714220109788306 +v -7.1079597756209036 1.0055855093042909 1.8280396003079589 +v -1.6810006012541092 -1.6140323095234961 2.9664536082117774 +v -5.8446668026895434 3.6038383285030542 -0.60551476302941221 +v -3.6924598739982937 1.0947248862352086 -0.35545979972109576 +v -1.1549168500536848 -0.23779549368236014 -0.44999376714069644 +v -1.3102796630027478 -0.42040384291090349 -0.87863361628924808 f 1 2 6 5 7 3 4 10 11 9 8 f 1 2 16 17 19 20 15 14 18 12 13 f 3 4 24 13 12 22 21 23 25 27 26 diff --git a/results/search/topology_50/resume.planes b/results/search/topology_50/resume.planes index a6537fbf..1dc58d91 100644 --- a/results/search/topology_50/resume.planes +++ b/results/search/topology_50/resume.planes @@ -1,37 +1,37 @@ 36 -0.73853462934494019 --0.39844456315040588 --0.025353679433465004 -0.11451397091150284 --0.22983184456825256 -0.063106313347816467 -0.77505743503570557 --0.43267843127250671 --0.40618225932121277 --0.092138618230819702 --0.0029158787801861763 --0.023161569610238075 --0.73893922567367554 --0.78234541416168213 --0.21363833546638489 --0.3456440269947052 --0.87006986141204834 --0.33390936255455017 --0.10453028976917267 --0.15356683731079102 --0.64124220609664917 --0.68229109048843384 --0.69442641735076904 --1.0956109762191772 --0.58411067724227905 -0.46518906950950623 -0.013535070233047009 --0.55269771814346313 --0.36455836892127991 -0.35563671588897705 -0.14371606707572937 -0.61593687534332275 -0.7322273850440979 --0.73607057332992554 -1.0687414407730103 -1.3171738386154175 +0.73869264125823975 +-0.39852982759475708 +-0.025359105318784714 +0.11453847587108612 +-0.22988103330135345 +0.06311982125043869 +0.77522331476211548 +-0.43277102708816528 +-0.40626919269561768 +-0.092158332467079163 +-0.0029165027663111687 +-0.023166526108980179 +-0.73909735679626465 +-0.7825128436088562 +-0.21368405222892761 +-0.34732422232627869 +-0.86572414636611938 +-0.33639082312583923 +-0.10455265641212463 +-0.15359969437122345 +-0.64137941598892212 +-0.68243712186813354 +-0.69457501173019409 +-1.0958454608917236 +-0.58423566818237305 +0.46528860926628113 +0.013537966646254063 +-0.55281597375869751 +-0.36463639140129089 +0.35571283102035522 +0.14374682307243347 +0.61606866121292114 +0.7323840856552124 +-0.73622810840606689 +1.0689702033996582 +1.3174556493759155 diff --git a/results/search/topology_51/resume.obj b/results/search/topology_51/resume.obj index 2f2e6298..ef093520 100644 --- a/results/search/topology_51/resume.obj +++ b/results/search/topology_51/resume.obj @@ -1,47 +1,47 @@ -v -0.74411344300301041 0.39278676496773607 -1.1020636613444292 -v -2.772730742395654 0.16979831127647854 -1.9511553743629526 -v -0.75086764470049727 0.34182061876331293 -0.83930800026229946 -v 2.6127479481025335 0.77201684726086206 0.2488290358454246 -v 1.0506682444750473 0.14582820082619299 1.9983111899863519 -v 0.93328435993664338 0.668471034631688 -0.88278354212907573 -v -0.028087803427795991 0.56450899127940546 -1.2942325506317451 -v 0.16374710746606938 0.44707827482174517 -0.48145920267734793 -v -2.3060604197267374 0.077461563239886858 -0.99629268344050692 -v -2.0874475896994795 0.14960262766687507 -1.1592005701029802 -v 0.42584749160499574 0.31039085772388553 0.50339631558998787 -v -0.93259320191341954 -0.20960245414953968 -1.9615882389736639 -v 2.5688562516860438 0.82146950891823356 0.37118726258519841 -v 2.1258588656922215 4.0582345216030946 4.5950370022426599 -v 2.0791258656344711 0.89104546807009699 0.33182736488116715 -v -0.54477264900317257 1.3973959884755704 0.30020619571150986 -v -0.099630530412910201 0.76865423668787147 -0.42295043787998454 -v 0.3353231267785195 -0.056341396487792218 -1.4122521031436062 -v -2.75742218007034 0.27716329673448936 -1.8029164360520644 -v -0.35187485462462686 0.69005388281329927 -0.5968038286259213 -v -0.19709977976799242 1.7145162270699119 5.6545274080432559 -v -0.1538871356455945 1.8628737980988004 5.7491914743385237 -v 0.77277425348220241 4.7339420957470173 10.880118755352058 -v -0.5997850355315596 0.90489493081621974 -0.95175689591436297 -v -0.32241472741797411 1.5135100723340966 3.0896093235614535 -v -0.61903821988628005 0.87848961646126422 -1.3905599796036574 -v -0.57654474175589054 0.99916559666490723 -1.0455496447894821 -v -0.59722929024634863 0.88201513233802731 -0.62987221992886866 -v 1.940614403100251 -1.8109016902758528 -1.5242064265223811 -v 3.9827981543875119 4.3269031739970902 1.9959411198184083 -v 3.2818936452458112 2.0319763050683859 0.5821427008441411 -v -0.15247578084576693 2.0274642120242832 5.9266890686737925 -v 2.8214986576414849 1.5662891347436234 0.79084081948210916 -v -0.59545558020112332 1.5394790376510981 0.89884970430962419 -v -1.2684056463978699 2.7944293922379537 4.2217947257357924 -v -0.75047222986779949 0.93712958160281079 -0.93233132456151857 -v -0.65699065620654751 0.73914253384126649 -1.4628448330877075 -v 0.5230584151483112 0.97150273828280787 -0.20282367031042292 -v -5.4032149918315655 7.0609888319213097 -0.58635466981820072 -v 0.34430982650955899 0.35172204930338224 0.39469099718132239 -v 5.6764937241701068 5.5108338304954092 2.9412503642982504 -v -0.96159337278264001 2.3427945866409727 4.4355457562205434 -v -5.6627684092814494 7.6978088113304413 -0.49737979748441097 -v -3.214854718196968 0.58793881946255344 -2.5055980858638387 +v -0.69673161652314497 0.42517706794115395 -1.0837708125583543 +v -2.8017270931800979 0.16838462857780545 -1.9080557266282456 +v -0.70406545142407839 0.36633985052670931 -0.83053170129005316 +v 2.750810122277064 0.85917773139760145 0.20688046541385052 +v 1.0881112279847909 0.10090373253875456 2.0108756658964344 +v 1.9867476805273456 0.80505198920808596 -0.26506826518644733 +v 0.020644134492239948 0.59177943229430729 -1.1524341535698954 +v 0.18010912943774676 0.48110152771512238 -0.51479855816360354 +v -2.4936884600754703 0.094620703046180019 -1.2952907276901446 +v -2.3789336373484344 0.13375346755701897 -1.3614470839596367 +v 0.47089432761014477 0.30054098040106914 0.55395698681194538 +v -0.84411556197159521 -0.073541746633181748 -1.7693333368368171 +v 2.7039526509396983 0.90880754730946756 0.33770656964490664 +v 2.4796037726336468 3.198316581314236 3.2757156608837179 +v 2.3285405227788378 0.94646491480396255 0.29969315287734721 +v -0.46431995385707225 1.2662157101163254 0.068612891293341471 +v -0.09522363902584223 0.79574196875512937 -0.46010223920297255 +v 0.19189575732084596 0.12700542895850075 -1.2667903390851725 +v -2.7911595756582086 0.24687480905255871 -1.8030924877451375 +v -0.32111987983014967 0.71505098590478844 -0.61795257588323227 +v -0.19958856497938277 1.5745157275090778 5.7297491771997517 +v -0.0971852691238312 1.9471100187457537 5.9857904636969597 +v 0.6882043561440776 4.514303228435729 10.402728104511034 +v -0.56774514330876469 0.91767714031196945 -0.95707404003003682 +v -0.36086125472011538 1.3684772058809804 2.1105505834062859 +v -0.56161118261724896 0.97509484236015487 -1.2381980792449319 +v -0.54577726106016844 1.0161621316691676 -1.0588682077817353 +v -0.55937071892047929 0.91365726028211192 -0.64481883534298967 +v 1.9376527321328616 -1.5659790911517755 -1.2252242172728371 +v 3.8187970396841471 3.4494443928197822 1.4175843955771166 +v 3.1976147829844606 1.8977775680008111 0.66261930049537576 +v -0.094915135044062557 2.043302068341029 6.0905296934025106 +v 3.0443223779211332 1.7434772247517767 0.73386441056172502 +v -0.47113293686729835 1.287756055556734 0.19862934709983104 +v -1.3267679584513619 2.649781941031812 3.9627969851318725 +v -0.6950374075907445 1.0128787490392772 -0.72122949605398823 +v -0.60791765717927304 0.80070585692257934 -1.326250947652815 +v 0.46217251692828715 1.0003235495569802 -0.29167939804716481 +v -5.2114497496061363 6.5043346422191597 -0.73504801081801241 +v 0.39802206703210785 0.34010653673456076 0.4524182566233208 +v 3.1108988832228528 3.0691169940919516 1.0916451685663611 +v -0.52045390429584459 2.2388056076454133 5.3410052763675067 +v -6.0011441853698191 8.4352359620091679 -0.50134812083849889 +v -3.2437679181321704 0.54960518091900157 -2.5020880641452461 f 1 2 9 10 11 5 4 6 7 8 3 f 1 2 19 17 16 14 13 15 20 18 12 f 1 3 28 25 21 22 23 24 27 26 12 diff --git a/results/search/topology_51/resume.planes b/results/search/topology_51/resume.planes index 5f05d1b5..7269c753 100644 --- a/results/search/topology_51/resume.planes +++ b/results/search/topology_51/resume.planes @@ -1,37 +1,37 @@ 36 --0.057360388338565826 -0.30337581038475037 -0.057370685040950775 -0.13459758460521698 -0.66646957397460938 --0.49660360813140869 --0.76364022493362427 -0.20907667279243469 -0.020924581214785576 -1.1722732782363892 --0.82167237997055054 -0.75260120630264282 -0.16718055307865143 -0.98537784814834595 --0.33828309178352356 -0.34590262174606323 -0.29051887989044189 --0.039667095988988876 --0.63330823183059692 -1.1706466674804688 --0.33146098256111145 -0.44096016883850098 -0.4768766462802887 --1.1508203744888306 --1.290067195892334 --0.60570967197418213 -0.57192182540893555 -0.25668638944625854 -0.31558546423912048 --0.072545535862445831 -0.19779907166957855 -0.15773473680019379 --0.55194467306137085 --0.13965515792369843 -0.22301280498504639 -0.1895449161529541 +-0.062799699604511261 +0.29821664094924927 +0.067468546330928802 +0.1243315190076828 +0.69911330938339233 +-0.53530555963516235 +-0.724712073802948 +0.18419311940670013 +0.021807420998811722 +1.2050025463104248 +-0.84912014007568359 +0.75371080636978149 +0.13755962252616882 +1.0275819301605225 +-0.34055134654045105 +0.36480593681335449 +0.32527610659599304 +-0.034773621708154678 +-0.5314643383026123 +1.1807141304016113 +-0.22346284985542297 +0.43039399385452271 +0.41793078184127808 +-1.054054856300354 +-1.3229525089263916 +-0.61262381076812744 +0.59130489826202393 +0.27815291285514832 +0.32373648881912231 +-0.073477551341056824 +0.19271849095821381 +0.15076912939548492 +-0.59448719024658203 +-0.14026652276515961 +0.22660036385059357 +0.18896344304084778 diff --git a/results/search/topology_52/resume.obj b/results/search/topology_52/resume.obj index 639f226d..e306054f 100644 --- a/results/search/topology_52/resume.obj +++ b/results/search/topology_52/resume.obj @@ -1,47 +1,47 @@ -v 1.2530054653101439 0.51928325134662778 -0.061412005710627021 -v -2.0498914410558462 1.4669592374894584 -2.6060695291393685 -v 1.1815584103262939 0.43774368981408535 -0.054465558405760561 -v -3.0427009472156463 1.4125390468764045 -3.1648405173710716 -v -1.1614176611342368 -1.1482174652974615 -0.48764571011014157 -v -0.18644840255107251 -0.52471247722689118 -0.28524340637736872 -v -1.6036709104749016 -1.6151115901663191 -0.46763101033412291 -v -1.5243008081828975 -1.6664130802446222 -0.38914999423858132 -v -1.0771151663956375 -1.3163112451884178 -0.33527005596333459 -v -0.71937430626892263 0.82570287481576032 -1.4233430405871672 -v -6.2396788601205255 -2.7404896224782589 -2.5475473518095533 -v 2.6919423546500627 0.16046971973561588 -0.46929657670783265 -v -16.229232365788835 6.7058445863145986 -46.371416042131685 -v 0.30237183593875394 0.70173946961193112 1.7398036126948249 -v 1.209599583828203 0.51701959904015937 0.3180848216900487 -v -5.786447790475747 2.7267085288275323 -10.749648316796359 -v -4167.8970544011045 1003.4103494443488 2212.2407064373065 -v -504.89006270343026 174.81578902549847 -1205.7022963914699 -v -1.5991868161106304 1.3021805969712956 -1.2638924377121881 -v 1.7229363965722608 0.37600766289043025 0.53748880717987157 -v 10.671994165902953 3.2741991617988564 -2.0478417231141806 -v -0.47354906789845547 1.1870931602943364 0.45977833802860119 -v -2.7830927557182035 -1.4699345975607869 0.68147923937428312 -v -0.91171255288838471 -0.62638164047473921 0.32648065439514412 -v -2.5883889370195097 -1.5293660666394897 0.62483091191673612 -v -0.91777637058381145 -0.5507510148637359 0.33812577847466019 -v -0.48066962829611776 -0.73982292563037189 0.20349847330591975 -v -3.6063822946383337 -2.7550935020727945 0.71524314211771678 -v -8.3359597269557906 -1.187793122403864 7.5974250581321607 -v -0.14833211682466457 0.87346020871556118 2.6143979090693974 -v -8.186624755067891 -1.029728918545523 6.7899687299223057 -v -1.7435918867387616 1.2589457286404357 -1.0965086746760981 -v -2.0715610953661154 1.3436440981657523 -1.8918299297997576 -v 0.91881673192257596 1.0936652478625559 2.2531278806847688 -v 1.0793868913338287 -0.39783064427762249 -1.459349047700683 -v -2.2401521983348007 -1.1809197053623048 0.67168182892218731 -v 1.6979405189990642 -0.13026476373673815 -1.6003819955906802 -v -3.7700877349756383 0.78616127658677748 -6.3651264486742276 -v -2.6500542648574994 -1.4673475847925057 0.48071807094856556 -v -1.7817086157196713 0.030236062433382054 -6.3846773061056821 -v -1.1416041161233186 -1.4774300350633083 -0.55490089428320077 -v -1.9557293806509652 1.2413302921184086 -1.6366970971764179 -v 0.652409308695443 -0.79466636211814901 -0.6516307530631944 -v -1.5965235319867863 1.2185042967915116 -1.1687517693639609 +v 0.81028521251181684 0.69052887109830308 -0.076275569207460342 +v -3.075237287202861 1.7844498595903424 -3.7545141120730587 +v 0.65652535027548731 0.52196010768836232 -0.04686984109156582 +v -4.2466308889794631 1.7679832711004835 -4.5774593704385236 +v -1.5704012830211491 -1.1366304479968163 -0.26747041784650993 +v -0.68122110926329826 -0.56487115028481971 -0.10465465274183813 +v -1.7986302362078912 -1.397165514278079 -0.21529602487626109 +v -1.5666810213111573 -1.5800874007115253 0.10141520582813118 +v -1.5000640737442967 -1.2331498225801614 -0.13752899070152491 +v -1.0109479819251013 0.88794248276959309 -1.5399330494701591 +v -6.2225559263939356 -2.6061178953885245 -2.376204765756853 +v 2.5498652607607619 0.25670751395448121 -0.41517966599956319 +v -40.792466225884787 14.102941516428478 -99.796531246907833 +v 0.57712817635799174 0.70773143882077494 1.4225835755860192 +v 0.85673718585131509 0.65347354556612136 0.81887448094352111 +v -5.7424369151547756 2.6071100340322775 -8.8262418851801137 +v -1045.4016498934136 249.31548315922939 639.75839582594278 +v -746.82373456171854 239.49534910498915 -1713.0799928305059 +v -1.6623868328441089 1.3613945026277343 -1.5194491907103123 +v 1.2384411241373481 0.54885725463731627 1.0791225579669592 +v 9.4267998234580919 3.2111995964963125 -1.7425355466589563 +v -0.98633944808389118 1.3406058255963855 0.2742786442079887 +v -2.4388925889937436 -1.3464033804356577 0.54916362907832306 +v -1.3774883889377512 -0.80649450583808735 0.3445189275219887 +v -2.2826717224293929 -1.4020373066974683 0.51868446027587223 +v -1.4471525846965505 -0.37724788500467843 0.35918505878258306 +v -0.81502710568552872 -0.7495182971308173 0.23546450927464851 +v -2.9937161222873043 -2.2985677602435817 0.65435695736266164 +v -8.3559097791451968 -1.4721095149579724 9.7601702319420305 +v 0.55727897100241208 1.127547463513213 2.6293638105322525 +v -7.8303800011651798 -0.81428663804424817 6.6088521797955737 +v -2.3020377816948483 1.3809866398701152 -0.96871535774544082 +v -3.5200370391363802 1.726734985163954 -3.7884592567076556 +v 0.72145235760910464 1.1619506450126078 2.5709833341816504 +v 0.43801229648274881 -0.36326951348388037 -1.3493882953927963 +v -1.7102254568365942 -0.89953779378182552 0.62192229521194675 +v 1.0906940613903602 -0.054102718804261866 -1.5391259021613835 +v -4.3358667318229438 1.2425983663665239 -5.9846898980840262 +v -2.3703127760881424 -1.3186558838198634 0.34754592324963285 +v -1.7948223818081943 0.14984633121873728 -5.8027533162783973 +v -1.5836990090837688 -1.4249504984083781 -0.42376379822370203 +v -3.2502244825989592 1.4554684673783536 -3.2474754805374406 +v 0.024371373328241911 -0.79475997278532651 -0.46397615346998961 +v -1.6457987248430763 1.2177513177369292 -1.3631684465522307 f 1 2 4 11 8 7 9 5 6 10 3 f 1 2 13 18 16 17 19 14 15 20 12 f 1 3 22 21 28 25 23 24 26 27 12 diff --git a/results/search/topology_52/resume.planes b/results/search/topology_52/resume.planes index 6ad706bd..9b8f6264 100644 --- a/results/search/topology_52/resume.planes +++ b/results/search/topology_52/resume.planes @@ -1,37 +1,37 @@ 36 -0.17038044333457947 --0.17364071309566498 --0.28581613302230835 -0.20449420809745789 -0.7881433367729187 -0.028090706095099449 -0.042210336774587631 --0.022605855017900467 -0.16879603266716003 --0.18990980088710785 -1.2708566188812256 -0.21365460753440857 -0.10272686183452606 --0.1899230033159256 -0.090228259563446045 --0.73995381593704224 --1.9330418109893799 --0.51525473594665527 --0.95935559272766113 --0.13560828566551208 -0.38117086887359619 --0.28199732303619385 --0.40434172749519348 --0.34772491455078125 -0.17808531224727631 --0.4305894672870636 -0.26358556747436523 --0.70739680528640747 -0.62982851266860962 -0.57373696565628052 -0.3659767210483551 --1.0041143894195557 --0.29986271262168884 -0.28227442502975464 -0.74715369939804077 --0.18023493885993958 +0.027582509443163872 +-0.031896922737360001 +-0.038623154163360596 +0.21401160955429077 +0.83968663215637207 +0.023653687909245491 +0.014820852316915989 +-0.00020279081945773214 +0.076334379613399506 +-0.20908918976783752 +1.4534773826599121 +0.26853781938552856 +0.052966948598623276 +-0.091705076396465302 +0.032773666083812714 +-0.72303217649459839 +-1.7626475095748901 +-0.48852092027664185 +-1.3848323822021484 +-0.24416543543338776 +0.56824487447738647 +-0.38653630018234253 +-0.51321494579315186 +-0.43068596720695496 +0.15156564116477966 +-0.37360459566116333 +0.20605960488319397 +-0.51976943016052246 +0.48853328824043274 +0.50419819355010986 +0.29283860325813293 +-0.76221513748168945 +-0.23464612662792206 +0.2932511568069458 +0.65408116579055786 +-0.16717731952667236 diff --git a/results/search/topology_53/resume.obj b/results/search/topology_53/resume.obj index 04668a7c..dd89bf08 100644 --- a/results/search/topology_53/resume.obj +++ b/results/search/topology_53/resume.obj @@ -1,47 +1,47 @@ -v -2.0353961374245682 1.8203047774084893 0.021679503577642222 -v -0.84844495518930241 0.65161148476711972 -0.59502440872376106 -v -1.9654426143810317 1.9425155037136996 0.82614888111979612 -v 0.97842109010451173 -0.89386080135065438 -0.42968557113012096 -v 1.0403303079426993 -0.8686100763441289 -0.08252592055506576 -v 0.44780425020493908 -0.38572538962351283 -0.21700044690406622 -v 0.23455956339683301 -0.29683796263463019 -0.63896126393287622 -v -1.6453979657609821 1.5766101340492533 0.43640790245411504 -v -1.744006457711889 1.8609691074760035 1.3116444245969077 -v 8.9926432901257254 -7.9528504430211528 -0.93290727568822285 -v 0.36639956068731389 -0.40850381623050219 -0.62761567979078092 -v -2.1342024406434121 0.64506221659369778 -0.29764376189659691 -v 0.30357198145176334 0.62433512901546329 -0.87112667292805501 -v 0.45572518650575472 0.13283080619336843 -1.0497081966208333 -v -0.095193175407404268 -0.25954997274191149 -1.0357618317563877 -v -2.4892164971504571 -1.2253925935791912 -0.75982925482787045 -v -1.9675221967081904 0.79626918082373599 -0.29239895023123397 -v -2.9681619146472453 -0.63719270478776635 -0.47701434737176918 -v -0.65872769017382371 0.4387372975175543 -0.70119089277371449 -v -2.8168936198897634 -0.60906064116947189 -0.50403110831128706 -v -2.5272470364789252 4.0710362978098535 -8.1687164613757606 -v -1.26697162556592 7.8707080115329964 5.0224972177171088 -v -2.2637060085838439 -1.2865825241912046 -0.39735669122170886 -v -2.1998085309595878 -1.7280833616206881 0.78816799040770968 -v -2.1318787619756785 0.60328915591014498 -0.23357621889850178 -v -2.1193578382464469 0.67094888882785542 -0.12689150981507291 -v -2.167730878941077 -3.0128263146479202 2.2495540585512375 -v -2.1235100753472258 0.19942727249633402 0.20364996931802415 -v -0.49624758630084009 0.87092249340078376 -4.2885026488795388 -v 0.54704847524746991 -0.058029743995629469 -0.96278027279171297 -v -0.37828649027352168 4.717395321830324 3.452765621966329 -v 1.0839684274818353 -0.93862901400463694 -0.0015062629078280709 -v 1.621464671871172 -2.620661395507772 -0.5312363666915354 -v -9.0106005248388001 -5.9692570145672699 5.3856684701364532 -v 0.057928476350878291 -0.62993837912989725 0.049833708480551631 -v -1.6639026150069136 -1.072261711962218 -0.39586936736873901 -v -2.0597302663099808 0.66982431818554533 -0.29755652549259742 -v -1.3054112317656521 1.3460114925902356 -1.0072916795536617 -v -1.4802719243159606 0.48147768130106094 -0.31696398553962268 -v 0.36630071094754035 -1.0747759885732826 0.27526598070956509 -v -1.4440711433948707 -0.24125781365885066 0.16823121262286378 -v 0.09935909600100308 -0.61588073215123862 -0.40065219303496225 -v 0.19975515480379144 -0.61173215656850366 -0.40207568997888532 -v 0.44333958524947714 -1.1723237778283766 0.243121726070815 +v -2.0616227119040613 1.953603444697664 0.071281555263111473 +v -1.1690760791196924 0.66745001447099561 -0.51422359683432739 +v -2.0290450962756732 2.176662205225008 0.35522880003238039 +v 0.50060981386195014 -0.71754311175166308 -0.45497128734844788 +v 0.48500644945166294 -0.6526659009746183 -0.396797917993439 +v 0.42022946585441995 -0.40736930398885152 -0.18247641181820101 +v 0.10129905344066506 -0.42376715192711017 -0.51148950614438515 +v -1.5501268863146258 1.5572450768756414 0.12100932902809722 +v -1.0889636063618524 3.427375343177038 2.6846741940420311 +v 7.4481849578940711 -7.1771991943136735 -0.99623528091146551 +v 0.27739927141356235 -0.5648909206740409 -0.49964259392288068 +v -2.1631399690601198 0.62565369125913439 -0.28708274213014445 +v -0.066684349754248071 0.63689123526856106 -0.78828688194172603 +v 0.07507375807917703 0.19843608213071168 -0.94878419514418944 +v -0.083062764481758228 -0.3146439528101368 -1.0586328398433813 +v -2.5326661394257584 -1.3745590372093108 -0.77474412042239915 +v -1.9949387207038571 0.75529512550695166 -0.29018478918739532 +v -3.0213643995863952 -0.72089654550723603 -0.46873194339201429 +v -0.62924753593950389 0.38807482489472755 -0.7246475863895343 +v -2.9186125327260766 -0.69961993895065977 -0.48732268238479914 +v -2.6819491743779773 3.6259305129933987 -10.259954038805905 +v -1.4912334861264558 6.5407207394813467 4.4757460753464002 +v -2.2856351584346126 -1.4173264288339529 -0.35296170843562485 +v -2.2342863744259134 -1.7291627044659859 0.64647962297979555 +v -2.1588181285411587 0.58262974318941441 -0.18900632922487559 +v -2.1512214047013107 0.62784131684908162 -0.11713372913217812 +v -2.1975905631779495 -3.9094306904681195 2.9890477693112865 +v -2.1550108344810694 0.10135391073392643 0.26622575604292842 +v -0.6215868476819566 0.59700716470155757 -4.4412807145867381 +v 0.29390439041120242 -0.28051554365951253 -0.71413056694124921 +v -0.76745764710465725 4.1252341302969464 3.2251383819620321 +v 0.86333265124038172 -1.3385769815844395 0.35536086284417578 +v 0.79280831002825314 -1.502299543613165 -0.49567705649829347 +v -7.7555577757217735 -4.99456242474196 3.9240495932139461 +v 0.095829711235861384 -0.61211805293163024 0.048895408380309674 +v -1.6964774779960401 -1.1789742544169119 -0.37137137420546906 +v -2.0475966553721126 0.68396413514632692 -0.2902887397757789 +v -1.3148592656539768 1.3108822862182994 -1.0412593251073583 +v -1.7162247580063719 0.58423011342484732 -0.30881868612172447 +v 0.54483972107301881 -1.2221330894106521 0.35865397873443261 +v -1.6532375989062427 -0.21648151949026018 0.23892714625838135 +v 0.13015091699001655 -0.63066408740832514 -0.43511652903985881 +v 0.24147016280279518 -0.62194864464628374 -0.43986503107242236 +v 0.61950163193803987 -1.3188030104512758 0.32403182655801777 f 1 2 6 7 11 5 4 10 9 8 3 f 1 2 13 14 19 15 16 20 18 17 12 f 1 3 21 22 28 26 25 27 24 23 12 diff --git a/results/search/topology_53/resume.planes b/results/search/topology_53/resume.planes index 9f3953e5..a48d564d 100644 --- a/results/search/topology_53/resume.planes +++ b/results/search/topology_53/resume.planes @@ -1,37 +1,37 @@ 36 -0.024820456281304359 -0.028643254190683365 --0.0065096216276288033 --0.20074725151062012 -0.25120425224304199 --0.86242020130157471 --2.1306154727935791 -0.13433285057544708 -0.16486288607120514 -0.60764884948730469 -0.23365455865859985 --0.12535734474658966 -0.17642359435558319 --0.4924047589302063 --0.19288517534732819 --1.5866259336471558 -1.1799520254135132 --0.56211632490158081 --0.061119291931390762 --0.16342315077781677 --0.23887117207050323 --0.0059776743873953819 -0.019265351817011833 --0.36544594168663025 --0.25966480374336243 --0.19519509375095367 --0.02997220866382122 --0.21080455183982849 --0.29139250516891479 --0.41832321882247925 -0.015786506235599518 --0.54722768068313599 --0.48142877221107483 --0.17919944226741791 --0.31975796818733215 -0.54088544845581055 +0.039498258382081985 +0.045881491154432297 +-0.040574535727500916 +-0.20833753049373627 +0.24958638846874237 +-0.86584609746932983 +-2.1617236137390137 +0.12477809190750122 +0.14999601244926453 +0.25543949007987976 +0.097178809344768524 +-0.039863165467977524 +0.19732682406902313 +-0.50059831142425537 +-0.16633012890815735 +-1.5866717100143433 +1.1721422672271729 +-0.56963139772415161 +-0.061016879975795746 +-0.16045598685741425 +-0.2275429368019104 +-0.018422061577439308 +0.014190931804478168 +-0.40582266449928284 +-0.23214498162269592 +-0.17581163346767426 +-0.0097247334197163582 +-0.2200041264295578 +-0.31051149964332581 +-0.42861619591712952 +0.021480249240994453 +-0.55698353052139282 +-0.5187305212020874 +-0.20999035239219666 +-0.38493505120277405 +0.62195324897766113 diff --git a/results/search/topology_54/resume.obj b/results/search/topology_54/resume.obj index 08c5779b..dc212bf5 100644 --- a/results/search/topology_54/resume.obj +++ b/results/search/topology_54/resume.obj @@ -1,47 +1,47 @@ -v -0.65062962157214765 0.5095751959117758 3.2448323563513757 -v -1.0270791230131395 1.3852920946402414 4.2317379569259153 -v -0.14077314601972596 -1.6468708799458949 -0.83866780335999058 -v -0.47230228972385213 -1.3616744850215481 -1.3452991070547702 -v 1.0743392502458542 -3.4069578689697315 -1.0051139175944599 -v -1.9893098359294199 1.4586325489251604 0.6257957958011956 -v -1.7980095463120089 0.84615758757122561 -0.34974908001707711 -v 44.958752782744021 50.875678639075161 326.575097148368 -v 0.10545039382966066 -1.6151869162592321 0.2268602052473887 -v -8.2391468739613352 9.676974874537029 -0.88037651249388882 -v 7.9663168369719006 -17.862006323260637 -14.608025585941338 -v 0.22997663122791259 -1.2330663928937049 -0.80669732000945693 -v 0.38767424203652223 -1.7655666875066565 -0.27617952044347949 -v -0.39408996211712138 0.47845267722538104 -0.65092673303017701 -v -1.3483673745863196 2.59716487628073 2.4273586008730441 -v -0.53605268306646603 0.82867017123169462 -0.39258389634765101 -v 0.22912811775059624 -1.4712718607761588 0.56411822671539391 -v 0.22096674871028804 -1.4804701265613935 0.74611056979090629 -v -0.58371898678438761 0.46111509290735808 2.4586222321427984 -v -0.18630327930144516 -0.11609265128991846 -0.56213197792679037 -v 2.1580884109155889 0.76403931672537817 -0.52740854489632372 -v 2.5514270947866589 0.91883098392789997 -0.28612386499294962 -v 2.5197692596261509 1.1834890049630031 -0.50772367652592321 -v 2.4155736488000912 1.3973206441694417 -0.75756469694230699 -v 1.5134119414448386 0.97301336311873499 -1.2604317753929397 -v -0.53438956272267746 -1.2073653762785534 -1.5137930035890617 -v -0.13904804243668106 -3.1583263285405265 0.26562122612294292 -v 2.0855849024264037 0.67976660313489279 -0.66045912261251127 -v 0.66305272450241781 0.67880753605681377 -0.64502249616062168 -v 0.96033501023599022 -0.6252704164193702 -0.76176620446056087 -v 2.3330375762522202 1.378029086944135 -0.60238566931402182 -v -0.13779040622755281 3.1844440990816376 -0.41820730218844437 -v -0.21507113827102498 0.65284546659723874 -0.63770160274522358 -v 1.9394126251738304 -1.3952824411110116 -0.83946605286091647 -v 0.33882503175899475 0.51969088718583689 -0.89400386420101308 -v 0.46383897657375467 1.8478737325912109 1.2150777497095708 -v 0.79245064064840509 2.4146676608981421 2.1118335462410207 -v 2.7620143201892451 1.4628572026413267 -1.5679833421947462 -v 2.4014465497130093 1.0468999645868526 -0.081402948896230232 -v 2.3758440491110844 1.0149378876805084 -1.6359842395005444 -v 0.58651126844064572 0.85956562076612608 1.5455376921291699 -v -0.22555304552237848 0.3067709704636653 -0.66748222281537617 -v 5.6829703316948876 0.3578207087738654 -3.5261820366160439 -v 3.5035229749462173 1.2402445517365954 -2.0332200301274126 +v -0.64120895388176136 0.5200076934193113 3.3118043545033164 +v -0.98855937969531316 1.3410108635148903 4.259160172315501 +v -0.14077652245232919 -1.6469100607821192 -0.83868775082121361 +v -0.47231337923644262 -1.3617070227006765 -1.3453308156752093 +v 1.0743648420169629 -3.4070389408304411 -1.0051378234476533 +v -1.9893573148370185 1.4586672907089202 0.62581069923828958 +v -1.7975342761569315 0.8445187690553978 -0.35239980376353208 +v 44.959798954945271 50.876860732816532 326.582715848791 +v 0.10545286240320008 -1.6152253816182907 0.22686550575805642 +v -8.1810342726317504 9.6101678036666076 -0.83906580376312712 +v 7.9665051071822983 -17.862427491639227 -14.608369615971638 +v 0.22722078736687815 -1.2361776689320538 -0.80695461769748622 +v 0.38007455190789136 -1.7555777324096764 -0.29035668282805993 +v -0.39029071488206568 0.48217431565919328 -0.65066084933719937 +v -1.3176023741902116 2.5844930969513737 2.4068146026879709 +v -0.52653311668780367 0.82455779037165555 -0.39927311018552469 +v 0.2285702235627747 -1.4719623832677258 0.5625954929759267 +v 0.22069801477544546 -1.4808229223405862 0.74623229691062409 +v -0.57022581512743431 0.46572508962766224 2.4481416481922316 +v -0.18767922063758335 -0.10468655318910752 -0.56583873901807391 +v 2.1581398662151816 0.76405759051509081 -0.52742098022947559 +v 2.5514877940557854 0.91885289296121619 -0.28613063497600422 +v 2.5198291918400968 1.1835171022485136 -0.50773563447909353 +v 2.4156311094794964 1.3973538065470514 -0.75758255846048805 +v 1.5134476860977217 0.97303635455440285 -1.2604617607242394 +v -0.53440220895397472 -1.2073940115159973 -1.5138289491349228 +v -0.20398861735316581 -3.2568077378607359 0.27894443570244931 +v 2.0856345716563403 0.67978280240800171 -0.66047483249531747 +v 0.66306859647908567 0.6788237130151783 -0.64503783966620765 +v 0.96337536881676122 -0.62178566656750944 -0.76151265626710662 +v 2.3330931612556403 1.3780618136388938 -0.60240000650594783 +v -0.13779367082349114 3.1845199271278233 -0.41821725009036703 +v -0.21507623349327543 0.65286108410560251 -0.63771676639528041 +v 1.9406690154848147 -1.3925013467420124 -0.83925428209672748 +v 0.34660956924302083 0.52351960149081955 -0.88805345222313126 +v 0.46384999071212263 1.8479177444512926 1.2151066849611565 +v 0.79246944224405469 2.414725149102618 2.1118837986154473 +v 2.7620799409510361 1.4628918544014156 -1.5680207334597571 +v 2.4015037059237483 1.0469248597671914 -0.081404907925995973 +v 2.4134149621875056 1.058474975709218 -1.6294172872863022 +v 0.58652517632550505 0.85958602808267204 1.5455744460876526 +v -0.22462731203380659 0.30741211683279435 -0.66496074342146194 +v 5.6831057194393031 0.35782907122024921 -3.5262660740424128 +v 3.4250092352385186 1.2720967751130929 -1.9794279677681232 f 1 2 10 7 6 11 5 3 4 9 8 f 1 2 15 16 14 12 13 20 17 18 19 f 3 4 26 25 24 23 21 22 27 13 12 diff --git a/results/search/topology_54/resume.planes b/results/search/topology_54/resume.planes index 4647d999..ec3a8445 100644 --- a/results/search/topology_54/resume.planes +++ b/results/search/topology_54/resume.planes @@ -1,37 +1,37 @@ 36 --0.70238542556762695 --0.50166594982147217 -0.17722536623477936 --0.2325035035610199 --0.08344433456659317 --0.01464396808296442 -0.73534959554672241 --0.59575188159942627 --0.8165624737739563 --0.0075449165888130665 -0.06018877774477005 --0.69154757261276245 --0.0058029745705425739 -0.77341508865356445 --0.48671004176139832 -0.85945653915405273 --0.74113845825195312 -0.0010833063861355186 --0.16380414366722107 -0.39355063438415527 --0.038198113441467285 -1.1707230806350708 -1.5185881853103638 -0.81146800518035889 -0.017624756321310997 -2.3215097826323472e-05 --0.006473176646977663 --0.33416596055030823 -0.39785733819007874 --0.72297614812850952 -0.74471652507781982 --0.38500553369522095 -0.7864377498626709 --0.16562266647815704 --0.1543150395154953 --0.55769747495651245 +-0.70240217447280884 +-0.50167793035507202 +0.17722958326339722 +-0.22912594676017761 +-0.081090040504932404 +-0.013734876178205013 +0.7353670597076416 +-0.59576600790023804 +-0.81658190488815308 +-0.00754509586840868 +0.060190208256244659 +-0.69156402349472046 +-0.005803112406283617 +0.77343350648880005 +-0.48672163486480713 +0.85947698354721069 +-0.74115610122680664 +0.0010833322303369641 +-0.16380803287029266 +0.3935600221157074 +-0.03819902241230011 +1.1707509756088257 +1.5186243057250977 +0.81148731708526611 +0.017625177279114723 +2.321565079910215e-05 +-0.0064733307808637619 +-0.33417391777038574 +0.39786678552627563 +-0.72299337387084961 +0.74473422765731812 +-0.38501468300819397 +0.78645646572113037 +-0.1625777930021286 +-0.14955084025859833 +-0.56115454435348511 diff --git a/results/search/topology_55/resume.obj b/results/search/topology_55/resume.obj index 1eece95d..1a48d261 100644 --- a/results/search/topology_55/resume.obj +++ b/results/search/topology_55/resume.obj @@ -1,47 +1,47 @@ -v -0.31241829371684432 -0.51080443010324017 0.014041801753949923 -v -0.47344630270443538 -0.50917750573215648 0.12891624959157166 -v 10.077937365751181 2.5143823551488489 7.2962327073630515 -v 10.840002756094064 3.8173259501181787 12.905371364120438 -v 0.05509935199081694 -0.42938546270717054 0.15151215897084586 -v -0.35131288569361246 -0.55140177969326287 -0.15063955943813179 -v -0.46649527145867098 -0.36144552211726777 0.8178114527719349 -v 6.418667929918314 -0.093852343924619164 -2.5111655280196525 -v 1.3460418511293168 -0.044324726307448256 1.0994650886993187 -v 1.3851948692881344 0.51576482296944504 3.7027180259088324 -v 6.4226319742178521 2.4106911175330126 9.243713837147471 -v -1.1139297122973741 -2.9844531602524564 2.2959912787449475 -v 22.922308890181327 3.1377018010003175 -19.237131258154658 -v -1.2308886506664098 -0.14923080388787896 0.42649685910707197 -v -1.4237252571575467 -0.080130417408800142 0.51778863405722175 -v 1.7925472080899514 3.2943717521082498 -4.1243954327311991 -v -1.3167149314913817 -0.72552573975180767 0.88544479516839714 -v -1.2755407507654801 -0.17699431450467953 0.47779350096936313 -v -1.0804538413303932 0.46584175302048764 -0.10571300968252451 -v -1.2774277153225144 0.69711408914438988 -0.12319328976346768 -v 4.7219510723387597 -0.97803323606916159 0.018411695605800471 -v 4.1689510263155753 -1.343642609809083 -0.76150663017594789 -v 1.8027325060048427 -4.3076546676076166 -12.040443920310249 -v -2.0760883106111674 -3.2598934876100771 2.9856044292940775 -v -17.543397782760991 -9.2032241014294964 5.4725170557191154 -v 7.5945444038697048 2.202949176461988 11.343007855644126 -v 2.6088542162349611 -1.6486733039105312 1.1600493857959093 -v -0.55350266870406151 0.47767466711856965 1.7127032757402394 -v -0.47753847957404466 0.18674206341600097 1.1894614952142979 -v -0.34262040047621295 -0.51989227880332767 -0.090776865462872891 -v -24.331380656805717 -7.2042675256135089 -16.968858173125945 -v -1.2639146880112642 0.34414892013452486 1.3319173900434922 -v -0.60696255535637444 0.37543067664202973 1.9015677339107115 -v -0.28588098883351515 -0.16520819126694317 0.092561305222762374 -v 0.35010329617005281 1.9253465121930915 -1.643474524680073 -v -0.29518709804022392 -0.46773467166335575 -0.040923310906812088 -v -0.2039229663626636 1.1149734935101707 0.45941979869702199 -v 0.98229895236686882 2.3997628814527681 -2.2231936803882664 -v -0.10349286174316842 0.35269317384755278 1.5693584544999348 -v -0.42726561650153999 0.28723449697238951 1.9005177138234215 -v -0.16544495116506749 1.0043196683787297 0.65805972302940563 -v -1.3886668579528207 -0.75190645270058543 0.93169163281050249 -v 1.1723664997455734 -1.4037789904631355 0.42240665534476907 -v -0.34497376533976687 0.55932077917894985 2.4066599527902781 +v -0.35422171522572748 -0.43911222891988205 0.073895723590535922 +v -0.65965227903107859 -0.46276371961121926 0.35071704802989379 +v 16.449985274468315 6.6244407272936003 13.004300297658164 +v 16.668389626929553 6.8767762327615864 13.95687649455486 +v 0.0079746263452494751 -0.33012140961956815 0.14120072357743768 +v -0.59530127261236732 -0.61175878686145135 -0.46010463265439272 +v -0.45172966704582285 -0.36294010238718127 0.57142737372363772 +v 6.2388657666598695 0.54553292264548203 -3.5846827835983728 +v 1.2403411057665181 0.19497780479629387 1.1240799909739274 +v -0.20486982809060941 -0.18090599389602185 1.143878795267453 +v 7.5052487630455991 3.4588445588716543 9.0257948814910449 +v -1.3897190631005574 -2.8620248292745663 2.5919530242461213 +v 30.628436259074718 5.6210333111528996 -30.475013097550296 +v -0.7661669046026871 -0.16685113492363823 0.24217818506534949 +v -1.3823898490998077 0.1164170655666435 0.57751713782867875 +v 3.9206708188610451 5.966351140461569 -7.8961798015881417 +v -1.3024565421720575 -0.63692053047818997 1.0171725457508813 +v -1.1709688290356068 -0.034271955606324581 0.49853815592698497 +v -0.67925027271466365 0.25500663615621855 -0.11649125817000522 +v -1.3568644400250089 1.3082965445646055 -0.24789394023906966 +v 4.0244459693822199 -0.92689264351501732 0.033612542705682813 +v 3.4029008896954616 -1.3310899885482648 -0.77554784522931652 +v 10.689838902758927 -7.0325069294133824 -54.53750065799538 +v -1.2249509976133379 -2.7889555673847171 2.5999873081941138 +v -40.01614616406841 -19.482613763607432 3.7919198883437675 +v 5.1531215775412846 0.92757000401440248 8.291001281492818 +v 2.4569029686780919 -1.3747370853192031 1.4554224916989154 +v -0.53008407646837108 0.81465778502641772 1.9265432099619593 +v -0.39093595526799135 0.012514043455724681 0.6231516167848199 +v -0.41086551881060568 -0.44961799037222872 -0.14981292705429405 +v -48957.5751877113 -15597.8834754458 -36726.494287996436 +v -1.548310229404942 0.74157652649055394 1.5806670121511144 +v -0.63586644984592255 0.62743128378580015 2.2353684043275788 +v -0.27433395060471605 -0.039749949754324401 0.061415684603528489 +v 1.0857163160541097 3.2923537837224175 -3.1176953865498818 +v -0.31176089150658032 -0.38067468260906634 -0.064369218409698281 +v 0.40750819116787679 2.375790732288483 -0.89484468009235618 +v 2.2003750495931973 4.1726287836820442 -4.329278089643382 +v 0.47929465415837352 0.38097364603085354 1.5625445622402243 +v -0.019676978666331894 0.25808090362257186 2.1348462068930876 +v 0.48220679210139666 0.98202412796476624 0.86082157856810415 +v -0.74814289258018785 -0.45059873693157482 0.60404442322719598 +v 0.6323010727245254 -1.0305273815191998 0.36151952897170003 +v 0.71007996015504715 1.1507647877105462 4.4854230496413763 f 1 2 6 5 8 9 3 4 11 10 7 f 1 2 17 18 15 14 19 20 16 13 12 f 3 4 25 23 12 13 21 22 24 26 27 diff --git a/results/search/topology_55/resume.planes b/results/search/topology_55/resume.planes index b472e011..7672ce3d 100644 --- a/results/search/topology_55/resume.planes +++ b/results/search/topology_55/resume.planes @@ -1,37 +1,37 @@ 36 -0.062505178153514862 --0.44061607122421265 -0.093858413398265839 --0.2034127414226532 --0.19458931684494019 --0.2823827862739563 -1.006147027015686 --2.4386298656463623 -0.42977139353752136 --0.039630841463804245 --0.38805186748504639 -0.21001078188419342 --0.23089681565761566 -0.02901085838675499 --0.049652177840471268 -0.39685970544815063 -0.80208218097686768 -0.54655152559280396 --0.030895445495843887 --0.057984795421361923 --0.081144295632839203 -0.10445773601531982 --0.16200448572635651 -0.07010515034198761 --0.67867952585220337 -0.54006117582321167 -0.43231025338172913 --0.12693753838539124 --0.09173005074262619 -0.2167445570230484 --0.32920077443122864 --0.675697922706604 -0.41675770282745361 --0.52357262372970581 -1.0000741481781006 -0.24744948744773865 +0.085449829697608948 +-0.32503718137741089 +0.06650996208190918 +-0.20519620180130005 +-0.16198045015335083 +-0.24024258553981781 +0.96068316698074341 +-2.2063441276550293 +0.36419299244880676 +-0.039765294641256332 +-0.30017319321632385 +0.18048971891403198 +-0.23234017193317413 +0.04483945295214653 +-0.052399743348360062 +0.67255645990371704 +0.90929973125457764 +0.78163838386535645 +-0.028155708685517311 +-0.043094392865896225 +-0.057213529944419861 +0.080860622227191925 +-0.16081185638904572 +0.035968001931905746 +-0.40636870265007019 +0.30280786752700806 +0.25767919421195984 +-0.10928940773010254 +-0.049511119723320007 +0.16671264171600342 +-0.29727986454963684 +-0.58113783597946167 +0.31299313902854919 +-0.74639105796813965 +1.4606401920318604 +0.37454622983932495 diff --git a/results/search/topology_56/resume.obj b/results/search/topology_56/resume.obj index ff1185b3..93411265 100644 --- a/results/search/topology_56/resume.obj +++ b/results/search/topology_56/resume.obj @@ -1,47 +1,47 @@ -v -0.73755213377828444 -0.22141293412116561 -0.64894033573690024 -v -0.34332053648215582 -0.36856934392893109 -0.71044670038105973 -v -2.7891999262186298 0.38749719047075032 -2.6598430951979162 -v -0.98371954123208694 0.070007739430397425 2.3535187630434473 -v 0.32351620184528057 -0.59916983499397802 -0.54245464798081766 -v -0.44641843757581606 -0.24863113431026826 0.51564136391942128 -v -1.0324507957557694 -0.20174889024753032 -1.9460280296344292 -v 2.474165067471207 -1.3177730961430352 0.3724726500523281 -v 1.2227865831039377 -0.79543739736442365 1.3881270629519458 -v -0.19701357633884015 -0.34511660159694613 0.42638507635144773 -v 2.4904014456531245 -1.3127971319441381 0.53388759719875645 -v -1.8063541485502639 -2.2083649445809899 0.040953441839926885 -v -0.91162168437006541 -13.895300912475378 2.3906555797737514 -v -0.1307696452776676 -1.1349177854303529 -0.59297171579557117 -v 1.9200854521993569 -0.43191279789556769 -1.234934616619271 -v 14.718148822997845 12.520518522060611 -7.1191015545456047 -v 1.1694846065998508 -0.31892708960800936 -1.0811693683198849 -v 0.47759744488784639 -0.38418359593520157 -0.90228773497405168 -v 0.96584082802634275 0.27369733872029967 -1.1626715874011453 -v -0.020518705023038198 1.4635945997358588 -1.1889563981455351 -v -1.9652771168855399 -2.8708099123281841 -0.40840381791704355 -v 10.340243705951261 -5.7458628363419715 33.752600497517761 -v -0.77535769931522502 1.0371038345493182 2.9438172338259756 -v -0.84729194341455427 -2.5523681869725197 2.7019770181554446 -v -0.95204450213254588 -2.3643155847892792 2.413088132615179 -v 48.612415114401401 -35.89791523680978 139.75100303064599 -v -0.75937323808955803 -0.71873639164078351 2.9677148475028989 -v 1.4752509242876199 -0.31786753716778027 -1.3930835183325101 -v -0.25750535111945005 -0.79690295757411034 -0.16406355035549439 -v 0.057911413363103334 -0.30844447465791075 -0.023134673403955586 -v -0.1244360830309555 2.1324358301054538 2.3701985805027386 -v 0.27401313684715289 1.5047097234417188 1.4170244373330543 -v -0.29079874774752357 2.0756856583116985 2.4784210258390749 -v -19.554088193868932 22.250880246470935 -19.910271157419174 -v 1.1460375468334514 0.075949800260469588 -1.7090037300021521 -v -0.0731579220008967 0.45785819011855466 -2.1870210063279321 -v 0.069881503465233571 1.1392271535154666 -2.5976903816959709 -v 2463.2338606538856 3107.5424419578835 -1529.434623766547 -v 0.88142443303283913 -1.9648007491385 1.5773436201456164 -v 0.18553938876457957 -0.72909656582940119 2.0759859966727356 -v -0.44743833704641028 -0.30137542094898084 0.44568074029899862 -v -0.48555612384296726 0.080119289455024736 1.412182793020434 -v 1.5565757465222883 -0.41249119351953778 -0.97360464346538733 -v -0.41012368565758089 1.3185246038882159 2.533693868851802 +v -0.64421812827791824 -0.3675854466687315 -0.69519944926747634 +v -0.30242852838841905 -0.51220169371662905 -0.74560516250210374 +v -1.0352601942745177 -0.3346054472546261 -1.7562559035062719 +v -0.54126109790827559 -0.15025005934178695 1.4928386551810768 +v 0.03413787745401306 -0.64551808323603987 -0.71847898942507715 +v -0.31882333571512467 -0.41510090589515275 0.018225361285141184 +v -0.84857243618130906 -0.40153972198092314 -1.6819770848031799 +v 2.8467506995129672 -1.6281814465430051 0.61812842324581185 +v 1.8256063402738185 -1.1005357434278253 1.5759099389139388 +v -0.1235625240237278 -0.47928681798343731 0.14508154166747789 +v 2.819885333183735 -1.5851498024638335 0.88948965875978547 +v -0.52263670750052538 -0.99996400961770127 -0.61376570692546828 +v 3.6848926161797424 -9.8393815875467663 -0.026867656432348896 +v -0.27907263046562875 -0.86575023745569335 -0.69026841519069204 +v 1.7931252055030433 -0.43014082497605471 -1.2203401171963073 +v 12.093910003431963 8.0537806596365051 -4.9360287120710051 +v 1.3265315993611102 -0.38557651433693219 -1.1253837137331297 +v 0.30026403444992006 -0.54279529400020787 -0.87287195008578367 +v 0.96747726573589232 0.36328697901317314 -1.1745337305929713 +v -0.068735426736914462 1.5113718068799784 -1.1430965658512005 +v -0.47734716415074047 -1.2699587638127414 -1.0624145734944528 +v -0.33097899243230777 2.3013915037820474 9.0510321233032727 +v -0.77448616655262448 1.2419489360216425 3.8079616606653817 +v 0.77308335637132575 -2.7039253718082725 2.2162963720731721 +v -0.38804825330881515 -1.0840522799113816 -0.078058012637624907 +v 74.512670439850552 -69.040218686216107 242.9933691856852 +v -0.38209704466558686 -0.65974222892154477 1.0593886122594725 +v 1.1306416474026835 -0.28633309113358985 -1.4237888431802277 +v -0.30716598431431702 -0.77456431953949867 -0.5243388942852496 +v 0.26521206428235472 -0.36581322437921077 -0.56663284929584123 +v -0.11189247456022371 1.7618656861927289 2.9916624170129382 +v -0.082124764687074261 1.7245935809355204 2.9032558935610582 +v -0.19197143350020579 1.7364125723963302 3.0443187808766621 +v -97.087956869512411 104.73432071640875 -85.297531712068547 +v 0.93472109958857674 -0.035385536179191761 -1.6176994311627961 +v -0.17765103473328303 0.2365833657079828 -1.9788824143426667 +v -0.027292869222319324 1.3894957834924484 -2.6934831188724813 +v 15440.460169251945 18959.824190657251 -9577.4884219059713 +v 1.4299528867384721 -2.4171637637280226 1.7875456966825776 +v 0.61999397162787129 -1.1192473268271765 2.3835202475363091 +v -0.33516468941153876 -0.4807976279763852 0.27938002781092952 +v -0.33553858322039265 -0.30089312142463709 0.84380533268089075 +v 1.7270477415126373 -0.46936669568359951 -1.015621849769873 +v -0.20379448607947789 1.6286516373891997 3.047854935504728 f 1 2 6 5 8 11 9 10 4 3 7 f 1 2 20 19 18 17 15 16 13 12 14 f 3 4 23 22 26 27 25 24 13 12 21 diff --git a/results/search/topology_56/resume.planes b/results/search/topology_56/resume.planes index e07b302f..a1a927d4 100644 --- a/results/search/topology_56/resume.planes +++ b/results/search/topology_56/resume.planes @@ -1,37 +1,37 @@ 36 --0.14218272268772125 --0.39193475246429443 -0.026384085416793823 --0.18796348571777344 --0.1732674241065979 --0.79022282361984253 --1.6204901933670044 --0.0068152528256177902 -0.58316147327423096 -0.10931425541639328 --0.10342386364936829 -0.11380715668201447 -0.24722139537334442 --0.83310127258300781 --1.2961447238922119 --0.5034288763999939 --0.32768723368644714 -0.10948900878429413 --0.044404543936252594 --0.65648192167282104 --0.4112364649772644 --0.053307276219129562 --0.28171783685684204 --0.053213566541671753 -0.78809219598770142 -0.65109068155288696 --0.099343754351139069 -1.0212775468826294 --0.048187445849180222 -1.5446685552597046 -0.13511596620082855 --0.072282090783119202 -0.07072814553976059 --0.34685465693473816 -0.052161026746034622 --0.034268409013748169 +-0.18812964856624603 +-0.46377190947532654 +0.054918292909860611 +-0.18355409801006317 +-0.14280611276626587 +-0.83492118120193481 +-0.70337587594985962 +-0.32647380232810974 +0.12546703219413757 +0.068689011037349701 +-0.089872211217880249 +0.061018586158752441 +0.20944130420684814 +-0.80094045400619507 +-1.2481417655944824 +-0.47319731116294861 +-0.34575703740119934 +0.10989288240671158 +-0.014069559052586555 +-0.77095574140548706 +-0.53719419240951538 +-0.061802938580513 +-0.42930442094802856 +-0.10220690816640854 +0.74108219146728516 +0.66976863145828247 +-0.032841097563505173 +1.3143839836120605 +-0.079882152378559113 +1.9602806568145752 +0.14393159747123718 +-0.084285251796245575 +0.065184570848941803 +-0.26960539817810059 +0.029267925769090652 +-0.0095074325799942017 diff --git a/results/search/topology_57/resume.obj b/results/search/topology_57/resume.obj index c7f300bb..a6873479 100644 --- a/results/search/topology_57/resume.obj +++ b/results/search/topology_57/resume.obj @@ -1,47 +1,47 @@ -v -0.39527534091398547 0.8086407104462342 -0.20488892983405202 -v -0.69492913025978187 0.52066658222454709 -0.28893390759432147 -v -3.4023752928796065 1.1203042522593056 -0.17162015185341944 -v -2.6138840831099772 -0.29716606932846917 -0.54611133475246287 -v -1.6656507234686746 0.98669368198288343 -0.17813183073494687 -v 0.079980308288437704 0.83869347200706634 -0.18842958725160552 -v -1.4911075993020346 2.6286187078778522 0.27449858746619615 -v -1954.3468465901717 2224.0397758863651 574.74526343632522 -v -1.7747653696727352 0.044343409400954506 -0.4380648716613651 -v -2.2230832253870521 0.90137698862430815 -0.21114713657755807 -v 0.60481050178091089 2.540991119089524 0.28679857061867509 -v 0.13959083758910867 -0.10620431224776537 3.8624177799981561 -v -2.0008472491410947 -0.8789544164168166 -0.25877170004385786 -v -0.26797394494558957 0.85659055124871708 0.03475831631604559 -v -0.25646933003204153 0.85050236338308005 0.084987124170295858 -v -0.35537268237449587 0.78577388966182815 -0.02587597274736092 -v 0.065333235191403868 0.2280191314799962 2.7296571777176832 -v -1.3333612535165382 0.33174029371005992 -1.6321154383531333 -v -1.088550516444645 0.52192800469855705 -1.4398610152037143 -v -1.1742365349025801 -0.19200002794167093 0.26761493177947882 -v -5.0360196859595012 1.4646618255785475 -2.2783334003771709 -v 282.51956785338933 -36.248835721976242 394.01109211735837 -v 15.953291398621914 -1.8289101337978979 26.046389294931679 -v -0.6248286006048076 0.83708771571359741 3.7463421255008336 -v -2.2576051611939669 1.533362334049525 2.0322572462663873 -v -2.3126913937726501 1.7505864653358705 2.1898450986748177 -v 14.02296451289285 -39.474899024894896 -18.754923207103829 -v 0.0989192446431542 0.88107467924069893 -0.4758976586199104 -v 0.0019580538636680034 0.92559739782894412 -0.83363571250351454 -v -0.21645363921640517 0.58029170946922282 2.6658424161566012 -v -2.0131271464403682 0.90480414587343816 0.87266415745064085 -v -1.546287461596052 0.84452611730901572 1.1063056355548524 -v -0.99032921938330287 0.74973611850384791 1.6068212201043703 -v 0.082400867937861541 0.83910267125818139 -0.1901377012233576 -v -1.8325516282489438 0.65984299135240576 0.15048918113966092 -v -1.3254946839155159 0.90278637295476161 -1.3072820704616883 -v -1.218912116847259 0.69132166266737793 0.22298593351733098 -v -26.554111552181975 14.043445199613648 86.676118205729495 -v 0.18225890522155436 0.74677978728713701 -0.31783218753724185 -v 0.55196483955639175 0.43307711695031087 -0.92052944692216221 -v -1.7713094311729398 0.068506792475198933 -0.40573740183587947 -v -2.2744592941128405 1.0809252933828446 1.8085467079446884 -v 0.30968024315860837 0.20480491832279957 -1.1333888436108288 -v 1.0173612645644243 -9.2270661721995477 -6.20785822683448 +v -0.36344980721799192 0.8032759467479752 -0.20527416698850812 +v -0.66179283943182421 0.51547671602815603 -0.28924855636436964 +v -3.4100061706976263 1.1255270992035431 -0.16978945093121192 +v -2.6298780542270062 -0.28335833253175929 -0.5420746701742013 +v -1.6785096643023185 0.99253785776347991 -0.17622152696184598 +v 0.063942924961971015 0.83094055143137013 -0.19029761480926241 +v -1.506997949915275 2.6517322246265511 0.28108526730356009 +v -1836.3760598590916 2089.8514209338264 540.04395386387262 +v -1.8098911958449497 0.048350288825891576 -0.4370432769740919 +v -2.2689242158046516 0.91646155438974419 -0.20727769029164211 +v 0.54884546699326076 2.4716337766850383 0.26737000701433378 +v 0.18020372229307055 -0.15637750764541641 3.8940489005626522 +v -2.0049208769733937 -0.92043056767182507 -0.29437189868783697 +v -0.23335997508237638 0.86163558328836731 0.0098522357896413393 +v -0.22399201293239451 0.85680370151807361 0.049366986312957217 +v -0.32873490450024406 0.78441046650350144 -0.056291588348850008 +v 0.09902007294557312 0.19083775100772962 2.7396868748516603 +v -1.3566610799253043 0.27664414711599039 -1.6321611378403544 +v -1.0459724926984753 0.51757472872906052 -1.3884176075003425 +v -1.1807748773198157 -0.23956725458510095 0.24114907576848466 +v -5.0017924205338664 1.4624726119933293 -2.2285679182971654 +v 626.61134187851042 -80.166503907863316 872.51208125640835 +v 25.982561116999062 -3.1111334184512627 40.050457993578682 +v -0.63331445531980046 0.84837637227548424 3.7664780452321742 +v -2.2614243589867868 1.4648032777029474 1.9625668917998045 +v -2.3350959007202658 1.7494144889390464 2.1660464829580586 +v 18.03072545236185 -48.323817143907846 -22.315943997723412 +v 0.12189807828605621 0.90859921464788085 -0.70554216567126815 +v 0.10649196033941001 0.91583935413672224 -0.76373509550183272 +v -0.21583621567678057 0.58329018956289291 2.6737530642358345 +v -2.0194211550884842 0.91125255726659204 0.8586015309206434 +v -1.5570585076925323 0.85100623756553351 1.0947574995773526 +v -1.0607837897526757 0.76652132197464107 1.5388460091926586 +v 0.093314114436104212 0.83592481990317113 -0.21084699521099148 +v -1.8497330273575234 0.6474855569118908 0.15967874136117621 +v -1.3496785397228983 0.8886989969593877 -1.2845033488922113 +v -1.2021813639527001 0.6882146383399349 0.19067179025483338 +v -24.833517626526437 13.242727253002558 80.848816271285912 +v 0.183043570936783 0.75262451524582796 -0.32400991430864612 +v 0.52202334969204944 0.46445042587648677 -0.87410690224997034 +v -1.796671060401982 0.13900294786168299 -0.31630544074355704 +v -2.2761800037578608 1.08476719041 1.7798308200994906 +v 0.26322666707976344 0.22056524877791858 -1.1015045029307451 +v 1.1006491746628106 -9.4008346590384253 -6.2378434545535617 f 1 2 10 9 4 3 5 7 8 11 6 f 1 2 19 18 13 12 17 20 15 14 16 f 3 4 26 25 13 12 24 22 23 27 21 diff --git a/results/search/topology_57/resume.planes b/results/search/topology_57/resume.planes index 63281551..78b359df 100644 --- a/results/search/topology_57/resume.planes +++ b/results/search/topology_57/resume.planes @@ -1,37 +1,37 @@ 36 -0.0067554605193436146 -0.10682251304388046 --0.39010563492774963 --0.54216504096984863 -0.50987571477890015 -0.18598130345344543 --1.2595199346542358 --0.91898125410079956 -0.82647675275802612 -0.06384257972240448 -0.82568693161010742 -0.085457988083362579 --0.053633052855730057 -0.78657883405685425 -0.11243129521608353 -0.43275696039199829 -0.36028507351875305 -0.077933698892593384 --1.6821819543838501 -0.32518187165260315 --0.53092092275619507 --0.17944389581680298 -0.56952011585235596 --0.40650832653045654 -0.085943594574928284 -0.35090065002441406 --0.029008442535996437 --0.23526661098003387 -0.15522652864456177 --0.29620873928070068 --0.79246640205383301 --0.54478996992111206 -0.49192479252815247 -0.32727178931236267 -0.5318114161491394 --0.94283211231231689 +0.0067468821071088314 +0.10668686777353287 +-0.38961026072502136 +-0.52189099788665771 +0.48751553893089294 +0.18334096670150757 +-1.2684657573699951 +-0.92166775465011597 +0.82989722490310669 +0.064124725759029388 +0.83071494102478027 +0.086377829313278198 +-0.054364807903766632 +0.77958637475967407 +0.111385777592659 +0.43538692593574524 +0.36247450113296509 +0.078407272696495056 +-1.6938381195068359 +0.32192376255989075 +-0.53272992372512817 +-0.18003386259078979 +0.57566022872924805 +-0.41250580549240112 +0.086730927228927612 +0.35367304086685181 +-0.029638977721333504 +-0.23632144927978516 +0.1536683589220047 +-0.30050140619277954 +-0.7961159348487854 +-0.55415940284729004 +0.50324559211730957 +0.31783309578895569 +0.51647371053695679 +-0.91564041376113892 diff --git a/results/search/topology_58/resume.obj b/results/search/topology_58/resume.obj index 9642ce27..9d147691 100644 --- a/results/search/topology_58/resume.obj +++ b/results/search/topology_58/resume.obj @@ -1,47 +1,47 @@ -v 16.258316250078742 6.7794253899378116 -2.1865096299539903 -v -0.30142039188485825 2.3327963378543828 -0.84969294730206413 -v 0.42367175445579797 1.4448113469116246 1.7097107616948235 -v 0.53353316710171017 1.7098307262105761 1.1313560718064655 -v -3.5968619030051046 1.5172071786911394 -0.75124040472727061 -v -2.1754156422294866 1.0561646707692205 1.1717323047782846 -v 0.16491587289668103 1.9269100437150899 0.39687860857868751 -v -0.020450252061010421 1.5502916424159867 1.2021511629323829 -v -2.2600687524363656 1.2453759889552589 0.66608918553593266 -v 0.46588603354973007 1.7516443132342228 0.99178961516653785 -v 1.6593005652482207 5.609800517415545 -7.6587118941026153 -v 1.7539668452252855 -4.1924104752398783 2.1120554877973077 -v 1.3598061603123774 -0.91807629575618122 0.65003537503840414 -v -0.92100852119951226 -0.50286371707663036 0.37999372578176194 -v 8.5156796654004339 -7.8124782946899813 3.9684765095908379 -v -0.85872182497583327 -0.36627921259102147 0.32199473083063679 -v -0.51853381587469749 -0.47697888098656943 0.38382541737510323 -v -0.33002161645006201 2.1448950632569601 -0.76773679702008046 -v 0.32269811894704903 -0.19916440923861017 0.2929668969547824 -v 8.7268874560368612 -11.314201662786804 5.5240474885150492 -v 1.0210324192422846 -1.4924885578379186 2.2302086371019665 -v -2.9249730064645445 5.4832358227710483 9.1952703793841533 -v 0.2718705608319682 2.2206978965959503 1.5527795929365433 -v 3.3063200984640013 8.3030710781979362 -13.385704300821104 -v -0.25088135812417156 3.2342873893648965 2.4005846539963365 -v 1.9201855567585064 -1.4583504011934156 -0.71609906499356835 -v 0.96175590277519352 -1.0678838718738728 2.0671077558872564 -v -0.73778632339169081 -0.026740443557675526 1.7846800174341921 -v -0.47089219859718229 -1.0614670682049221 0.097666166689830414 -v -0.56544450509218791 -0.96339231301160921 0.11535568862480713 -v 11.95996702909626 -18.078499978439975 -11.134045960371786 -v -1.06507145684187 0.24600938682916471 1.7017749370707205 -v -0.59865199099768274 0.23443084204295411 0.72437015378326652 -v -0.073457290800425332 1.4297192287797482 1.1596220470593006 -v -0.32187692276846042 0.73817202376906754 -1.7195960945997883 -v 0.65110317833773945 2.7928344988514757 -4.2978557598686562 -v -1.2160016790195227 4.6681186093373181 2.8053779116376729 -v -19.83994670624115 10.250406651342416 -0.82732307566431074 -v -0.89743657480294026 1.4109795900221336 1.2293128236867834 -v 2.4188064265388416 -1.5503997215388379 -0.89014413226903955 -v 1.2273149547352296 -0.22821684524352762 -1.5786236433742984 -v 5.1602520650417611 -3.7895639784685295 2.8238806822960552 -v -0.92117938113724596 1.2459801696809436 1.2962295462837956 -v -0.82983153860587489 0.33910562319383314 0.847656210569394 +v -0.0087916502121006355 1.5299033945411162 0.44999443710396742 +v -0.21667016362406186 -0.3632744022156173 1.2292499565347774 +v 4.554769873057098 -20.01171359686921 -3.6050519750157282 +v 4.7727180670455231 -21.093375017562352 -3.7877789995864997 +v -0.22258649383529314 -0.70558272613908668 1.3110855271000974 +v 0.30164044419967595 -0.61583916795813531 0.31488440533985385 +v 0.65728051114333597 -0.94617575225768613 -0.28002826388284602 +v 16.637392167846539 -0.03872950476100176 -30.269275848635846 +v 0.19887522903620936 -4.7103079811277979 1.3534215366704274 +v 0.29612613957403466 0.90185469692489062 0.011252474040295557 +v -0.31794086730357812 -0.22877642597631215 1.390292042953351 +v 22.176851646195257 156.05096183114065 11.947669907175531 +v 3.4426565115020074 25.711769767941814 1.9542091202957022 +v -0.37678571533823568 -1.1934430400783862 0.57856613172477922 +v -0.66341992151958129 -2.3273945434912751 -1.2877621119828833 +v 0.066425014018135289 -0.24208454707285748 5.0618568242770898 +v -0.87685246526647131 -4.3049968470738333 -0.42027815507045391 +v -0.36963242251864731 -0.51034648174146724 -0.67907642456397432 +v -0.48590644607440547 -0.50470296723953767 -2.363603815981369 +v 0.10650294010877456 1.8389492440206061 1.4936318241200706 +v 0.97730703450627243 -0.2317854765551092 -0.3726465044556489 +v 0.16335087970235224 -1.0095251681856878 -0.24462975854105098 +v 0.55001888059461257 -0.99897034145670616 -0.34674859705685224 +v 0.24623461586682427 -1.1035152883755743 -0.2775964840621778 +v 3.4222370670907405 -16.716704280815417 -2.9231886903415139 +v 1674.5535853189019 -4935.2351024933969 -1015.5626135608253 +v 0.32846818040357834 0.81561673024151149 -0.078710539477180458 +v 0.9756104863397278 -1.2235376375704694 -2.5728328618468268 +v -1.4620190527748731 -2.5951814556633273 -0.061459587765790219 +v -1.1425290627342626 -1.5735611885332919 1.4802885340710827 +v -0.71741121123842566 -2.4036044211494172 -1.3339876402962079 +v 0.14330544846715157 -0.96428332946550732 -0.098365740082314579 +v 18.275449332190846 15.475358530819124 55.152177969926562 +v 0.75342049137228129 -1.5589616612407509 -4.0083202569701708 +v 0.51903991042504694 -0.76003867622466514 1.0926197037318572 +v 0.23484575814059044 -0.85675615453060705 1.163542744231691 +v -5.9355979446865925 5.229036725372004 -1.9818598566192906 +v -5.3481187306970766 10.668065200638043 4.0175138148299245 +v -404.35823420048274 352.89087418543244 -483.34606516399339 +v 8.9913306831780186 -36.695828212776313 -5.2454439625832592 +v 1.2258260760621698 5.0003655099558175 1.5168275950508043 +v 0.35846506658797095 0.81836575345316021 0.020951828558436303 +v 1.8656913402283544 -3.6201151382156196 -5.1001134840745763 +v -0.4857027680613788 -0.65221421991621864 -2.3130901871778988 f 1 2 11 5 6 9 3 4 8 7 10 f 1 2 18 15 14 16 17 19 13 12 20 f 3 4 26 12 13 27 21 22 24 23 25 diff --git a/results/search/topology_58/resume.planes b/results/search/topology_58/resume.planes index 1e68c227..a0e00219 100644 --- a/results/search/topology_58/resume.planes +++ b/results/search/topology_58/resume.planes @@ -1,37 +1,37 @@ 36 --0.39350062608718872 -1.6735115051269531 -0.69210547208786011 --0.0061097349971532822 -0.071162380278110504 -0.16102215647697449 -1.1392666101455688 -0.29390692710876465 -0.35108640789985657 --0.69763064384460449 --0.73385238647460938 -0.33973821997642517 --0.57332760095596313 -0.25631797313690186 --0.012097084894776344 --0.20465432107448578 --0.30266037583351135 -0.58412003517150879 -0.91240233182907104 -0.68729400634765625 --0.25910899043083191 -0.096016190946102142 --0.17117014527320862 -0.36560514569282532 --0.26872113347053528 --0.50418466329574585 --0.5032036304473877 -0.11184877902269363 -0.58390235900878906 -1.4794381856918335 -0.031055370345711708 -0.051856242120265961 -0.014205383136868477 --0.56829619407653809 -0.01914449967443943 --0.15443247556686401 +0.30941304564476013 +0.03431691974401474 +0.16591265797615051 +-0.24591115117073059 +0.034035652875900269 +0.017087973654270172 +-0.020891973748803139 +0.0089968983083963394 +-0.078176535665988922 +0.48549255728721619 +-0.47306275367736816 +0.21286258101463318 +0.374675452709198 +-0.97620177268981934 +0.17011113464832306 +-1.782827615737915 +-0.79876154661178589 +0.89873731136322021 +0.1384177953004837 +0.070976272225379944 +-0.27868688106536865 +-1.4388468265533447 +-0.30607500672340393 +-0.88800680637359619 +0.34686535596847534 +-0.13169065117835999 +1.2103304862976074 +0.58050787448883057 +0.41183111071586609 +-0.18608389794826508 +0.24545873701572418 +-0.024726726114749908 +-0.073197372257709503 +-0.39178788661956787 +-0.36641156673431396 +0.059642665088176727 diff --git a/results/search/topology_6/resume.obj b/results/search/topology_6/resume.obj index a857286e..8fc3ebff 100644 --- a/results/search/topology_6/resume.obj +++ b/results/search/topology_6/resume.obj @@ -1,47 +1,47 @@ -v -1.8905242815829091 0.33587952864901433 -1.2124765738270895 -v -1.8210849656182428 0.4155316399124267 -1.2971164633924075 -v -0.24745904105846322 1.4647669615416115 -0.97816185380618437 -v 12.496217444166266 15.005507925800625 -13.323230863494643 -v -0.68379835017654833 1.2346138969824096 -1.2464998104866529 -v -1.7750224147303351 0.34910458328993621 -1.0002729079205017 -v -1.2833071450559785 0.33980210982416009 0.097292420965406912 -v -1.8376702349989995 0.76058580783050955 -2.3544734375020098 -v -2.0363319101522279 -1.5835419510176332 4.1511876667528433 -v 2.4392157771136609 2.6070052870631848 1.4876599787996021 -v -0.74386762830370567 0.57188997457229074 0.58426256308435476 -v -1.0853284348020404 -0.21333218278544586 -0.84097729755560768 -v -0.98890986001255987 -0.12025652494154926 -0.94240491208087451 -v -0.2661268202989937 -2.2578384477028171 0.90179885833922335 -v -0.3366441931164989 -2.170137870712336 0.83288520654343468 -v 0.63703866412047616 -2.4380995659282529 0.91819319613063988 -v 0.66865341041966808 -0.2739366720735425 -1.0750480386888639 -v -1.1759520538490356 -1.7439105615724118 0.5799954740829304 -v 1.9337669011647596 -1.0774176995013742 -0.54594916499590052 -v -1.1407222076704258 -5.1623970030754611 3.7144270238481645 -v -0.5600330366329298 0.79923013137508203 -0.96080812384973968 -v -1.0762242581498376 0.037274040614250201 -0.64352795475035296 -v 11.981360810444084 7.8531571565772573 -18.479442542856724 -v -1.245849612107903 -0.20509086751623176 -0.53239957302517427 -v -1.2347732363506254 0.91617793468466302 0.40674233565386397 -v -0.2253020448784539 1.5933387242235419 -0.90970776873347492 -v -0.90554932282563361 1.7082332817632733 0.46642931924551917 -v -0.26471966926036516 -1.2560904763421332 0.31581789671996913 -v -1.0877356568959435 -0.34369813661700449 -0.42341170529942623 -v 0.90986312460156404 -2.1514853661629716 1.1327531245059064 -v 11.322386656471423 -3.8312876283292816 4.7120580433845545 -v 2.1181407033352841 0.14788526313878031 0.088165261153401314 -v 0.78511124252993314 -2.6633590100857387 0.99153673780193352 -v -0.58167434999308432 -1.0415605577093723 0.72994858023175468 -v -0.47143792181408034 -1.1001218505835 0.68544453819267237 -v -1.3274311578549942 0.017388867001381255 0.4291675007130733 -v 0.13989349728981318 0.35268287546422022 -1.1755245534327745 -v -0.31451833916129857 -1.0997848374594568 0.35722910952040698 -v 1.1734563234041746 -11.027302778150439 -5.1928191982541634 -v 0.66511714059724492 -8.6348897040062269 -4.1163921085029855 -v -6.8775795311389825 10.053684362428942 -1.9344163313878544 -v -0.75244457952184496 -0.07818542852466312 -1.9626558677308499 -v 0.85962779466063877 -2.1577352554525309 1.2572626610965936 -v -1.9481030652790177 -5.4712944056451907 5.5263828895457774 +v -1.8993343983613828 0.33934793509310879 -1.2188466428103437 +v -1.8301152400130867 0.41889774706872596 -1.3033561960988391 +v -0.24677425043177736 1.4798052393432912 -0.97686117888553314 +v 12.415627853767329 14.954076187116762 -13.226172292924774 +v -0.68859101651535415 1.2470074002024072 -1.2562967676857131 +v -1.7839563678816359 0.35327047951498297 -1.0062866983257925 +v -1.2862267395772122 0.35553223729008432 0.082805915312755829 +v -1.8451182121324974 0.76382571197969951 -2.3636126650020799 +v -2.0444384945869869 -1.5746523977537803 4.1617418311889276 +v 2.422202808251523 2.6265041046828306 1.4843345237538466 +v -0.74819263528285085 0.58452613923308649 0.5854072233056824 +v -1.0894683686520985 -0.21414594990606267 -0.84418516907562702 +v -0.99268176196862257 -0.12071502037236535 -0.94599994067491433 +v -0.26714203739716047 -2.2664507731938799 0.90523875039175894 +v -0.33792827242108636 -2.1784158183492659 0.83606234503198817 +v 0.63947485767746559 -2.4469736529519266 0.92130340896117324 +v 0.67120391586366623 -0.27498160727481064 -1.0791487620710138 +v -1.1804375622819145 -1.7505627241689903 0.5822079786382004 +v 1.9171971999779693 -1.0663192539362081 -0.55804636937954732 +v -1.1254201434455358 -5.1089520003569353 3.6581652125137478 +v -0.56216925855207267 0.80227875600829557 -0.96447310436176958 +v -1.0803292782039557 0.037416483687094541 -0.6459827782479246 +v 11.901547015102048 7.8125152842512318 -18.374603532684198 +v -1.2503942262771404 -0.20588385282461436 -0.53482949864066653 +v -1.2392704186651902 0.92018479856876767 0.40833256196474499 +v -0.22616143484806453 1.5994164752983837 -0.91317785960780407 +v -0.90900357511818453 1.7147492923119931 0.4682086271976163 +v -0.26569052862528364 -1.2603878088473131 0.3167432078747015 +v -1.0918846121984056 -0.34500932210339041 -0.42502664757570013 +v 0.89284802454393108 -2.1411529868895238 1.1211153732598791 +v 11.365571951892337 -3.845899787214941 4.7300303616162536 +v 2.1015882967129209 0.15909837245821698 0.076127319623115142 +v 0.76906094751276999 -2.6441100155760764 0.98549019102030666 +v -0.58389303296247153 -1.0455336363857408 0.73273306120412296 +v -0.47323620372638625 -1.104318261131811 0.68805929232399765 +v -1.3324944858744119 0.017455014921105863 0.4308047228796415 +v 0.14042716107416264 0.3540280667274549 -1.1800085414345176 +v -0.31552189417472898 -1.1039795504233025 0.35818160333666749 +v 1.1773275743033087 -11.065925391713719 -5.2116108657935483 +v 0.64972542685734769 -8.5828546484069399 -4.0943940274559374 +v -6.9028157782484332 10.091274447651436 -1.9414302022625045 +v -0.75531447850644784 -0.078483933003114584 -1.970142178505548 +v 0.83944549799022639 -2.147796918033257 1.2534749092780979 +v -1.9570107694082108 -5.4271121418528105 5.5244537244744318 f 1 2 8 3 4 10 11 9 7 5 6 f 1 2 12 13 18 14 15 20 19 17 16 f 3 4 23 21 22 13 12 24 25 27 26 diff --git a/results/search/topology_6/resume.planes b/results/search/topology_6/resume.planes index 24b920b0..720f4957 100644 --- a/results/search/topology_6/resume.planes +++ b/results/search/topology_6/resume.planes @@ -1,37 +1,37 @@ 36 --0.58483082056045532 -0.79542326927185059 -0.26874905824661255 --0.10737420618534088 --0.5970948338508606 --0.64999914169311523 --0.96288692951202393 -0.43886029720306396 --0.51261162757873535 -0.062720693647861481 --0.14724144339561462 --0.25156202912330627 --0.24830049276351929 --0.25445440411567688 --0.28021231293678284 --0.66879928112030029 --0.31471863389015198 -0.3836396336555481 --0.51287221908569336 --0.77848458290100098 --0.24600322544574738 --1.1473060846328735 --0.12187480926513672 --0.2709386944770813 -0.59024327993392944 -0.3592396080493927 --0.86577868461608887 --0.2483464777469635 -0.044910814613103867 -0.77386635541915894 -1.6518465280532837 --0.57843625545501709 -0.63742822408676147 --0.28025221824645996 --0.0537746362388134 --0.1340436190366745 +-0.59445297718048096 +0.8040919303894043 +0.27000293135643005 +-0.10778377950191498 +-0.59937244653701782 +-0.65247851610183716 +-0.96655982732772827 +0.44053429365158081 +-0.51456695795059204 +0.062959939241409302 +-0.14780308306217194 +-0.2525215744972229 +-0.24924762547016144 +-0.25542500615119934 +-0.28128114342689514 +-0.67107200622558594 +-0.31578812003135681 +0.38494336605072021 +-0.51482856273651123 +-0.78145408630371094 +-0.24694158136844635 +-1.1516822576522827 +-0.12233968824148178 +-0.27197220921516418 +0.59249472618103027 +0.36060985922813416 +-0.86908119916915894 +-0.24929378926753998 +0.045082114636898041 +0.77681833505630493 +1.6320875883102417 +-0.57151710987091064 +0.6298033595085144 +-0.2813211977481842 +-0.05397975817322731 +-0.1345549076795578 diff --git a/results/search/topology_7/resume.obj b/results/search/topology_7/resume.obj index 0cca752c..48d122fc 100644 --- a/results/search/topology_7/resume.obj +++ b/results/search/topology_7/resume.obj @@ -1,47 +1,47 @@ -v 1.5278163846044193 -1.1831319713098536 2.9987007382148563 -v 1.44486722476227 -1.8906819901739447 0.23057675682417361 -v 0.91731306774728216 -1.2930621880503261 -0.96432311754516831 -v 0.24374148620466554 -0.27338035412696282 -1.6637345274686752 -v -0.21705221813022951 1.4642718968935522 1.2060368352891477 -v 8.3787235504200304 -10.892423390346567 12.24324620954375 -v 0.91349808582455705 -1.2384131846172834 -0.81094981346933881 -v 0.10651277780805965 0.14778936798932019 -1.1191620054598148 -v -0.68700935314111689 2.3879449848967891 1.4012686274566635 -v 0.59860737894828941 -0.5391839273852993 -0.42153716594359325 -v 1.5573440978562616 -2.3070946795129856 -0.44500825638805175 -v -0.45898582138325128 -1.289138945725363 -0.4851389431045986 -v 1.416915686251822 -2.0581447080847943 -0.43751387058516977 -v -0.58702861703588716 -1.0472885885587571 0.21793069841735813 -v -0.3793503904806681 -1.0489279210410405 0.53464616448100744 -v -0.57065739335915511 -1.079899024918813 0.12174146845272604 -v 10.57958483696946 -5.4396576319153178 1.192469521104558 -v -0.27084149877003555 -1.5206457770352526 -1.0562007295490028 -v -0.36328950003121935 -1.0564979179881511 0.5313760827170948 -v -0.13291334663411153 -1.2230247510796315 0.26833978828211091 -v -0.43304209330850862 -2.1236396855779183 0.27152266697149735 -v -0.3677770224306951 -2.2364286765924741 0.35212716896451846 -v 12.336354176799635 -1.3536311403555727 -4.914365393127258 -v 1.7033227235467212 15.368995511720893 -16.529634169062525 -v -2.8291137275606912 -1.5102003821577876 0.54911751806347175 -v 0.95436009528857235 -2.4391496401423574 0.074364700733118738 -v -0.43377167521271487 -2.2781322816350547 0.41354551404434758 -v -0.40875464676676243 -0.92064658831043777 0.51138982629208951 -v -0.41139370293753741 1.7943965409642393 0.96505278303701003 -v -0.58454031994276112 -0.21690486277456986 0.36171150256498463 -v 2.3489711400965279 -4.9407071150374158 4.0429875055965629 -v -0.37177900116141127 -1.4341362203684216 0.48126595937035138 -v 18.450069837563259 -2.0019758252137985 -8.7435450506793977 -v -0.82999553493995126 -0.94463601575528733 0.58411305646361478 -v -0.6721654603848739 -1.088853787489948 0.13043154036921512 -v -4.6802743768910444 -1.3677088778734454 0.68156572536092352 -v -0.14570863508209783 -0.9570506588822778 0.32295419569599915 -v -0.46950008889592953 1.7369545684049477 1.0759806522996831 -v -4.6780002772214129 3.6992983624513949 1.9353005958564187 -v -0.62291480699865398 1.7047700583894658 1.2288488112773543 -v 4.110467193862938 3.9505154931831461 -4.9556930311152705 -v -0.79049003826202568 -0.5863891679360278 0.67068880456588531 -v -1.574526623628389 -2.6042901576522999 1.53670396121499 -v -3.7372742148695641 -1.5507271834792666 0.58676842773501114 +v 1.5146879388149244 -1.159796958695938 2.9898117150931705 +v 1.4407974061227324 -1.8783159028387486 0.23992964070021749 +v 0.921319218174527 -1.2973947608189487 -0.96098318783439585 +v 0.25852637171801257 -0.29403036177649555 -1.6492024101631604 +v -0.24653223961861537 1.5101158239238519 1.1729433357942454 +v 9.1064000633882127 -11.923488859064776 13.219463547440947 +v 0.91723512543835894 -1.243463561178942 -0.81151160447649917 +v 0.11776633053911499 0.1273444711365446 -1.1248460586094373 +v -0.66828156396105876 2.3489295668543422 1.3799872432774993 +v 0.61270308727829881 -0.56313350867154122 -0.42170176005148263 +v 1.5808653073728438 -2.3484248833877648 -0.44540373755721041 +v -0.44106051156019077 -1.2964465433572316 -0.48395162450499529 +v 1.4207906223520188 -2.0554205975430353 -0.44060321477008668 +v -0.57246770718821149 -1.0440600511109281 0.24282807426655362 +v -0.38086022035257588 -1.0434682875331514 0.53618521129704166 +v -0.55075886109958172 -1.0877050982984935 0.11560350940898928 +v 11.331821903004823 -5.7616703443859434 1.0159685313356261 +v -0.24754098094116428 -1.5289904095716398 -1.0434998085675171 +v -0.35376894206675247 -1.0576006100214033 0.52547773239903783 +v -0.11915573360085593 -1.2277230042976206 0.25752061588864372 +v -0.43261424358802358 -2.1258928197989797 0.27420984465395881 +v -0.36720908519986761 -2.2391454009555307 0.3551906277652887 +v 12.282756804869816 -1.3301611314797086 -4.9163318661871838 +v 1.9225482366322741 14.722491028812614 -16.012516980563809 +v -2.8313380012780929 -1.5062655143571908 0.54705669664694068 +v 0.89180625080890408 -2.4911421421730315 0.14478719654813599 +v -0.45120839590825296 -2.29222658235628 0.43336513557684597 +v -0.4084640386733866 -0.92500026633000088 0.51394038293508382 +v -0.43086558778552436 1.8228276320269921 0.94362004911986541 +v -0.58685644979814311 -0.20987218489616841 0.36165697651279471 +v 2.6510634658279479 -5.3446450741703657 4.4503299873101616 +v -0.37123336102822979 -1.4479562155849137 0.48262220773059583 +v 19.801520009084072 -2.1210179283637807 -9.6458625193370739 +v -0.82911318019351932 -0.9526762708198051 0.58106168236141453 +v -0.6629977375679631 -1.0977856999770892 0.12611043266341315 +v -4.3928174601179624 -1.3653028650497605 0.66052925091826564 +v -0.1432481021547391 -0.96138005266298532 0.32381866923062752 +v -0.54030754853841456 1.7175787129527078 1.1499028713697441 +v -4.6417554404575796 3.694934927975404 1.910080580981238 +v -0.60980082495415266 1.7031745912810081 1.2191758064834892 +v 4.1860524995923356 3.9198443133143983 -5.0006304583849408 +v -0.79294343625767028 -0.57896834208737014 0.67058277699348912 +v -1.5662547368959465 -2.6029257102280736 1.532475242169326 +v -3.5856829901109375 -1.535253295877878 0.57814251683251994 f 1 2 9 7 3 4 8 10 11 6 5 f 1 2 15 14 16 20 19 13 12 18 17 f 3 4 12 13 26 27 22 21 25 24 23 diff --git a/results/search/topology_7/resume.planes b/results/search/topology_7/resume.planes index 24429046..02f1037a 100644 --- a/results/search/topology_7/resume.planes +++ b/results/search/topology_7/resume.planes @@ -1,37 +1,37 @@ 36 -0.28397136926651001 -0.15463519096374512 --0.048035174608230591 --0.45181193947792053 --1.0841431617736816 -0.29065278172492981 --0.32650783658027649 --0.85412317514419556 --0.93079334497451782 --0.58655381202697754 --0.064780831336975098 -0.38428264856338501 -0.10986971855163574 --0.92347288131713867 -0.331778883934021 -0.70520251989364624 -1.1009771823883057 -0.93952107429504395 --0.3196662962436676 -0.067295856773853302 --0.1326000988483429 -0.038206368684768677 --0.18007881939411163 -0.72772467136383057 --0.077996589243412018 --0.040957044810056686 --0.10096651315689087 -0.0017901151441037655 --0.48489490151405334 --0.47875410318374634 --0.39618313312530518 --1.5932573080062866 --0.86506164073944092 -0.15912576019763947 --0.024094536900520325 -0.15462188422679901 +0.28478783369064331 +0.15507979691028595 +-0.048173300921916962 +-0.44775822758674622 +-1.0815746784210205 +0.29463699460029602 +-0.3263704776763916 +-0.85376393795013428 +-0.93040168285369873 +-0.58809292316436768 +-0.064879253506660461 +0.38424631953239441 +0.11457862704992294 +-0.92471343278884888 +0.33677875995635986 +0.70504510402679443 +1.1023775339126587 +0.93650823831558228 +-0.31866201758384705 +0.063571274280548096 +-0.13662886619567871 +0.036772876977920532 +-0.17763893306255341 +0.72670036554336548 +-0.077553965151309967 +-0.040724609047174454 +-0.10039355605840683 +-0.00098533276468515396 +-0.49727505445480347 +-0.4876236617565155 +-0.4211653470993042 +-1.5769819021224976 +-0.87305700778961182 +0.16113688051700592 +-0.024399062618613243 +0.15657605230808258 diff --git a/results/search/topology_8/resume.obj b/results/search/topology_8/resume.obj index c4ad62a1..8ca0a860 100644 --- a/results/search/topology_8/resume.obj +++ b/results/search/topology_8/resume.obj @@ -1,47 +1,47 @@ -v -1.3664935648305909 -0.41900166956440427 -3.111337644101793 -v -0.24347289561671398 -0.75569598450130637 -1.4987040490505135 -v -0.00043057557175269574 -0.12275479867416894 2.7709961371941105 -v 2.0874019014435214 -2.1062101270774529 -1.7717021865366331 -v 1.1725501716466571 -1.7126199030213463 -2.4226688342490403 -v -1.3485899379068325 0.16516278385291716 0.18916682275207908 -v 0.64162485835444327 -1.3918470040609177 -2.2874186506734127 -v -0.51941920415782716 0.062142215097923538 2.1884891264635313 -v 0.52239407608962996 -0.69420843869146476 1.2181148094550753 -v 2.0496504027980276 -2.531919315676411 -4.2535589186324376 -v 2.2638158626614016 -3.3046865251332593 -7.8819942685560758 -v -0.64695238374779374 0.62224229534401942 -1.0969998568343333 -v -0.81096764717761172 0.79044362714082295 -1.2396186236338096 -v 0.32437634674555049 -0.49224693623783555 -0.34477529095705345 -v 2.0094621910427386 1.101472730236956 3.7132290970769133 -v -0.68872191294692231 1.381149002244717 -0.57441173226918141 -v -1.1345955889168227 0.66333593411087921 -1.8792835225366411 -v -0.62022805636486145 0.37144277547560972 -1.2481248857697702 -v 1.0269370899255481 0.60621146730440323 1.685862453484825 -v 2.0926320311035265 10.472782197618603 11.166626769425703 -v 1.5008712667916808 -1.5151115707813549 -1.8622414080047565 -v 2.1238970466026843 -2.1176052949012627 -2.7897469961692409 -v -0.79166645749549369 0.76564684594523991 -1.02107836277049 -v 0.71700598966678974 -0.69671428079714492 -3.1296381314381003 -v 0.83523413097209165 -0.90046306434571122 0.30030327869827245 -v -1.1053496736340589 1.0571454560676952 -0.076333943464791693 -v -1.1002549831411108 1.0554103499654635 -0.2126308316204582 -v 1.596278580635071 -1.8121272694117674 -2.4214074290165164 -v -1.0703132710810095 0.51740987494493007 1.0407443299724932 -v -1.3307665002965505 0.26744381042082493 0.40611898765445509 -v -0.63236936440328007 -0.35096781928425241 -0.51753159600609822 -v -1.2855672680414527 0.5220113763201143 0.94649552376186863 -v -0.42848550210439573 0.11335368271997186 -1.4156470654568096 -v -0.53475937690363551 0.19255482571888943 -1.3781125128290395 -v 2.1612135321380275 1.6174154748333216 0.065947543842374889 -v 44.258970694014835 197.62471992820394 143.86154884000987 -v 2.3367426441554948 15.843475401104643 10.022028676781625 -v 26.943331160302993 2.0854164951790026 -682.70547287839656 -v 2.3931811196313832 -1.7426262313604126 -9.8240843547552448 -v 3.3704687883269648 12.582141653442788 -21.87031827407823 -v 0.23614963306375805 5.0220530627659672 -7.6522100468314669 -v 2.1708097814284226 -2.5340511628534257 -4.5162759282885396 -v -1.9052184469761022 -1.6960152197573453 5.2361063709283293 -v -2.0328850510283232 -1.6146798099366761 5.6072737075680017 +v -1.3678738347036541 -0.41994323254683719 -3.117399700421569 +v -0.24797592588864087 -0.75570120620305581 -1.509250032570602 +v -0.053116733301421887 -0.10441415910111486 2.7129256954167191 +v 2.1079099518225615 -2.2334762399994972 -2.4116029535742221 +v 1.1734151027647008 -1.7114319179244457 -2.4099397998107039 +v -1.3498564134212094 0.16793790079713034 0.2041045920045732 +v 0.63639342762227358 -1.3884819051813553 -2.2815027897513236 +v -0.41742514015182763 0.025221540468008657 2.3031730077297881 +v 0.40529827076422031 -0.57207135983830648 1.536862801605126 +v 2.0041957227523097 -2.4959853396988931 -4.1914761396056628 +v 2.270275013422717 -3.3365101495564251 -8.035294353461401 +v -0.66428550530903741 0.58541260621597635 -1.1577141446958157 +v -0.76507689666994383 0.69008118422003561 -1.2443384944434075 +v 0.35508573621200218 -0.47347955097670358 -0.28186438555094007 +v 2.0114705221423823 1.0930940199547168 3.7070220408182584 +v -0.71761824270439234 1.3966826798885035 -0.61356563737950198 +v -1.1277100680858956 0.7009737251046444 -1.8414296249994404 +v -0.63421516772167308 0.40261505374680839 -1.2501744201607847 +v 1.0085420486211014 0.6186961633995034 1.6618660686342963 +v 2.0966685950311388 10.692952441287108 11.342195267622431 +v 1.4998350146471238 -1.6164334802860385 -2.0592656495434518 +v 2.1301700902749205 -2.2459463453038109 -3.0382977996904472 +v -0.74241406579182656 0.66476771812515545 -1.11695244648498 +v 0.22079229644407428 -0.30013459326434189 -2.4339023969002245 +v 0.46053481922323491 -0.60848869429309571 1.3748095756424863 +v -1.1160789722126259 1.0294908306932016 -0.02371969517343539 +v -1.1118125986051559 1.0271011801557961 -0.14385418352026083 +v 1.5586996295682158 -1.7996865989296484 -2.4042607425159304 +v -1.0079533197043529 0.51326501386658174 1.0722145760451562 +v -1.3328907447041616 0.26529663774250445 0.41061600418859223 +v -0.63509684638244257 -0.35258064073594197 -0.51223686663091417 +v -1.2795377676092548 0.51875164447945998 0.95265147590533938 +v -0.47422673785839042 0.19136884719897307 -1.3939505849523826 +v -0.56325458873804746 0.25776343618899122 -1.3638909364568037 +v 2.1648965905686923 1.6382756104349507 0.043976868657602308 +v 68.348193798461068 301.29591943945212 215.71745368305648 +v 2.3483771139950163 15.854097582815589 9.7701813700431277 +v 26.910234221066752 2.1210155481814161 -681.69798236176564 +v 2.4076733784923907 -1.6995971206365945 -10.12101308356095 +v 3.3806727990712848 12.680875754288152 -21.99108342613027 +v 0.27225801113665771 5.1359185668278604 -7.8443362845599829 +v 2.1759591344089699 -2.4990076128732595 -4.5639208058742238 +v -1.8564269849258175 -1.6383810843296598 5.1216906150615831 +v -2.012308413912804 -1.5346477009878003 5.5801626656404579 f 1 2 11 4 3 8 9 10 7 5 6 f 1 2 18 13 12 16 19 20 15 14 17 f 3 4 22 21 25 24 13 12 23 27 26 diff --git a/results/search/topology_8/resume.planes b/results/search/topology_8/resume.planes index 25545774..726f2190 100644 --- a/results/search/topology_8/resume.planes +++ b/results/search/topology_8/resume.planes @@ -1,37 +1,37 @@ 36 --0.25829443335533142 --0.46262982487678528 -0.083283118903636932 -0.1907166987657547 -0.089137434959411621 --0.11420246213674545 --0.027228724211454391 --0.027121316641569138 --0.0006725286366418004 --0.044891964644193649 --0.18997961282730103 -0.093252994120121002 -0.15676645934581757 -0.65564179420471191 --0.93959826231002808 --0.12415361404418945 --0.16400322318077087 --0.0054627773351967335 --0.72835236787796021 --0.32479837536811829 --0.33326467871665955 --0.18624357879161835 -0.9658665657043457 -0.47251644730567932 -0.96712237596511841 --0.53722399473190308 -0.45037519931793213 -2.0968503952026367 --0.079098239541053772 -0.076053820550441742 --1.2939251661300659 -0.33717453479766846 --0.052658442407846451 --0.75774478912353516 --0.20534329116344452 --0.21563595533370972 +-0.25855231285095215 +-0.46309182047843933 +0.083366259932518005 +0.19186407327651978 +0.089673697948455811 +-0.11488950252532959 +-0.057025767862796783 +-0.055672932416200638 +-0.00091775791952386498 +-0.045776907354593277 +-0.19372463226318359 +0.095091216266155243 +0.16512922942638397 +0.65873253345489502 +-0.96591866016387939 +-0.10294103622436523 +-0.1359819620847702 +-0.0045294188894331455 +-0.72907954454421997 +-0.32512268424034119 +-0.33359742164611816 +-0.18916687369346619 +0.96677875518798828 +0.47405210137367249 +0.94319146871566772 +-0.52393072843551636 +0.43923100829124451 +2.0989439487457275 +-0.079177200794219971 +0.076129764318466187 +-1.2952170372009277 +0.3375110924243927 +-0.052711036056280136 +-0.75873905420303345 +-0.20571130514144897 +-0.21142880618572235 diff --git a/results/search/topology_9/resume.obj b/results/search/topology_9/resume.obj index c89769bf..9f447eeb 100644 --- a/results/search/topology_9/resume.obj +++ b/results/search/topology_9/resume.obj @@ -1,47 +1,47 @@ -v 0.65367787933561949 -0.41808244533036182 3.5114783753140602 -v 0.98088227081426327 0.99976486510111939 6.1550693748767404 -v -0.58617546592269221 -0.27793450809476777 -1.2237310448789969 -v -1.0309490849799703 0.61642717355713583 -2.1136389864749443 -v -0.40362203608877456 0.63197070310620584 0.36506454613152739 -v -0.64916400216243442 1.1644173346521096 -0.089133644555251801 -v 0.16968280533646582 0.2445771187385942 2.2455248063620847 -v -0.53667988688968638 0.070381714417974334 -0.69560075988432168 -v -0.7937549427496785 1.2834424788273675 -0.54296734849621964 -v -0.3527109874230176 0.26257967092709028 0.21108592520543717 -v 0.77471231490562409 1.1412922897986726 5.4809461633796444 -v 4.3546040710019218 -2.2649915589239047 1.2704000148275925 -v -1.4440160873306327 -1.9235865441733657 0.19448721789689016 -v 56.802314113549841 -15.992684394663149 -8.1205972770588133 -v 0.40694638890562912 -0.38801916934960284 3.4936215090612484 -v -2.6925847589563987 -2.230111240602576 -0.72020877085344204 -v -3.7825145617715141 0.17443183528877501 3.2838394833172035 -v -9.8490130890075509 6.8443794020101905 13.503980382945077 -v -2.2018804743467886 1.7401419641403493 6.5583844616346969 -v -5.2794395296369654 -4.8703885375368232 -6.2192184230370131 -v 3.9344838328549883 -0.42134862605813123 -0.49909236806036472 -v -1.4068198847515685 -0.50446995131715444 -1.1203923763446095 -v 3.1075420482927165 0.066685981509225833 -1.0611104414790788 -v -0.64488032659324712 -0.77110471557867344 -0.77277265810903106 -v 0.54272347887273509 0.51467119571819386 -1.8131842605636392 -v -0.97714495912623378 -0.98658973056312627 -0.61583435808100306 -v -0.88681471982338067 0.73943358315489438 -2.2091803616018035 -v -0.4233553830422927 1.5067586644943769 -0.55672146069981809 -v -2.156683264880408 0.40277901306740876 1.411063484017171 -v 1.1361807268789774 0.57517838940332355 -0.27905582869401846 -v -2.5679357409884069 0.1122325972515084 1.9083905344722085 -v 3.1580188359830204 0.021591189626927989 -0.61512271914951699 -v 0.34050848700998632 0.12593889805149969 0.56302263255676255 -v -0.31168410063042173 1.7817955521037758 -0.53914340838347119 -v -0.92648843884114129 -0.081704730919315932 -0.28841121859160856 -v -1.3427834811392636 -1.1979801328909307 -0.26342772177431006 -v 176.55935626918136 -119.57174016152565 581.43300569622443 -v -0.21210235663169963 1.9179338853057053 -0.41490188755393609 -v -0.43342426787185701 0.42357019205096536 -0.66900549093955108 -v 0.83831614728458259 0.3086360097045906 -0.80844534071163188 -v 2.0411766589228875 0.66278740419758053 -0.89192134994574068 -v -0.24324274796032291 1.9294859208097008 -0.25245592993034105 -v 1.4796886795980289 0.92916334819628477 0.47477661271729721 -v 207.77674695088669 71.10350345748607 -541.12774236994642 +v 1.5984131222913565 -0.79650464782800223 5.661302410054609 +v 2.7180283333187258 -0.022412420224376315 9.4816858696516384 +v -0.9136030009557119 -0.20321905759060943 -1.9614353147847832 +v -1.2804542556982055 0.18542598101214888 -2.9516696160530222 +v -0.27473183982607741 0.77420699339217891 0.43669014732389477 +v -0.51640094260069702 1.3845400230735607 -0.071363924710717647 +v 0.40175142061010494 0.31940210815887221 2.3693435940353034 +v -0.53844850933272637 0.060402676269302708 -0.679594410635187 +v -0.66376032470205337 1.5227747192873284 -0.4764087309924453 +v -0.11490883999197966 0.35290120614499926 0.76548426980177342 +v 1.1822159734027962 1.0328971370794862 5.103277131179162 +v 1.3273302510034735 -1.6390545774698637 2.1466640129592074 +v -0.74851887799483618 -1.5799541371882311 0.97029678747302572 +v 23.021878264574802 -6.6235887499223347 -2.8210177759756467 +v 1.4465367621663296 -0.77761131521861671 5.6328263225847746 +v -2.5125956175172535 -1.7287110202224814 -0.81594221081563612 +v -3.9552022927526833 -0.39426891723189988 3.4790992100721261 +v -71.279827460585963 37.615817750823773 107.99981903695073 +v -3.650876985725239 -0.18113129749220891 4.5283172381039787 +v -3.4284175267332921 -2.6631131414293905 -5.1315904708905844 +v 3.2307162684950055 0.11427971505282432 -0.51373256075456475 +v -1.6106677670415237 -0.39388667278483308 -1.9209901465873975 +v 3.05011146585659 0.23058718763239666 -0.84603602821303736 +v -0.98053594845216041 -0.7950064488631946 -0.7712572988758134 +v 1.698152313842779 0.98789107423670042 -3.0991110033044968 +v -0.33653188419426083 -0.43991953416260526 -1.1787629866064036 +v 0.3740333311247232 1.4240896784892392 -4.6738130870984982 +v -0.37649910795782265 1.7098782315541199 -0.46641269196227619 +v -2.4674040876715857 0.3167917677461487 1.9148512822194208 +v 1.2851797850462934 0.63512000531097235 -0.14321465122876575 +v -3.3131776784654434 -0.28283196730355131 2.9147529064371431 +v 2.7689689818367187 0.37768525843725392 -0.56774915494412226 +v 0.74796064373530624 0.35576392043732469 0.38881946178295079 +v -0.31134235930972759 1.8986355931173358 -0.4444769923798349 +v -0.82221652682607238 0.020413644035069553 -0.33527763475284411 +v -1.0988424345497156 -0.83347458307901912 -0.39132932577495716 +v 98.639370908935163 -65.943399738497845 283.17877114660189 +v -0.20624548044520818 2.0486271309693347 -0.30002358393561046 +v -0.37053882697554547 0.65607797852287031 -0.60838089198860223 +v 1.1956082922868327 0.54141491134057884 -0.70641779550740236 +v 2.0632164496354521 0.78324528752606537 -0.7196820643171431 +v -0.24908552379522811 2.0637741507775575 -0.087335813611233215 +v 1.5177399009637593 0.97190579211681571 2.0869561646549091 +v 122.68279683939629 49.006575875410533 -288.56838736198233 f 1 2 11 7 5 6 8 9 4 3 10 f 1 2 18 17 19 20 16 14 12 13 15 f 3 4 27 25 26 24 23 21 12 13 22 diff --git a/results/search/topology_9/resume.planes b/results/search/topology_9/resume.planes index 37bc90fb..8e1021c9 100644 --- a/results/search/topology_9/resume.planes +++ b/results/search/topology_9/resume.planes @@ -1,37 +1,37 @@ 36 --0.30453088879585266 --0.074293293058872223 -0.077538616955280304 --0.27498000860214233 --1.6962056159973145 -0.9437674880027771 -0.09768165647983551 --0.69454914331436157 --0.74684619903564453 -0.16664983332157135 -0.3875420093536377 -0.36421525478363037 --0.60708475112915039 -0.23161175847053528 -0.23279914259910583 --0.07426103949546814 -0.077522002160549164 --0.7411847710609436 --0.62865680456161499 -0.22283971309661865 --0.51859116554260254 --0.080352067947387695 -0.25348615646362305 --0.082417137920856476 -0.027338594198226929 -0.2500491738319397 -0.043232962489128113 -0.7626267671585083 -1.3500174283981323 -0.050189286470413208 -0.092740714550018311 --0.12949268519878387 -0.018546946346759796 --1.0855883359909058 -1.0522909164428711 --0.28293561935424805 +-0.28018888831138611 +-0.036444634199142456 +0.089497625827789307 +-0.30704930424690247 +-1.7869175672531128 +0.45205307006835938 +0.17589157819747925 +-0.71652048826217651 +-0.34638082981109619 +0.22567446529865265 +0.49571168422698975 +0.48815801739692688 +-0.54389685392379761 +0.16121360659599304 +0.22831711173057556 +-0.037007946521043777 +0.094295896589756012 +-0.70149242877960205 +-0.62373822927474976 +0.23402617871761322 +-0.48687282204627991 +-0.074909254908561707 +0.26696702837944031 +-0.032504145056009293 +0.040966391563415527 +0.47621399164199829 +0.097465738654136658 +0.82117027044296265 +1.4522134065628052 +0.061979420483112335 +0.05833868682384491 +-0.096128031611442566 +0.0084331221878528595 +-1.1300673484802246 +1.08548903465271 +-0.30492612719535828 diff --git a/scripts/TrainTransformer.bat b/scripts/TrainTransformer.bat new file mode 100644 index 00000000..3c879be9 --- /dev/null +++ b/scripts/TrainTransformer.bat @@ -0,0 +1,71 @@ +@echo off +setlocal EnableExtensions EnableDelayedExpansion + +set "ROOT=%~dp0.." +for %%I in ("%ROOT%") do set "ROOT=%%~fI" +set "EXPORTER=%ROOT%\build\msbuild\bin\x64\Release\TransformerTrainingExport.exe" +set "TRAINER=%ROOT%\tools\train_transformer.py" +set "PYTHONUTF8=1" +set "PYTHON_EXE=" + +if not exist "%EXPORTER%" ( + echo TransformerTrainingExport.exe is missing. + echo Build projects\TransformerTrainingExport\TransformerTrainingExport.vcxproj as Release x64 first. + exit /b 2 +) + +if not exist "%TRAINER%" ( + echo Trainer script is missing: "%TRAINER%" + exit /b 2 +) + +if defined SZILASSI_PYTHON call :try_cuda_python "%SZILASSI_PYTHON%" +call :try_cuda_python "%ROOT%\.venv\Scripts\python.exe" +for /f "delims=" %%P in ('dir /b /ad /o-n "%LOCALAPPDATA%\Programs\Python\Python3*" 2^>nul') do call :try_cuda_python "%LOCALAPPDATA%\Programs\Python\%%P\python.exe" + +if defined PYTHON_EXE ( + pushd "%ROOT%" + "%PYTHON_EXE%" "%TRAINER%" --repository "%ROOT%" --exporter "%EXPORTER%" %* + set "RESULT=!ERRORLEVEL!" + popd + exit /b !RESULT! +) + +py -3 -c "import torch; raise SystemExit(0 if torch.cuda.is_available() else 1)" >nul 2>&1 +if not errorlevel 1 ( + pushd "%ROOT%" + py -3 "%TRAINER%" --repository "%ROOT%" --exporter "%EXPORTER%" %* + set "RESULT=!ERRORLEVEL!" + popd + exit /b !RESULT! +) + +python -c "import torch; raise SystemExit(0 if torch.cuda.is_available() else 1)" >nul 2>&1 +if not errorlevel 1 ( + pushd "%ROOT%" + python "%TRAINER%" --repository "%ROOT%" --exporter "%EXPORTER%" %* + set "RESULT=!ERRORLEVEL!" + popd + exit /b !RESULT! +) + +python3 -c "import torch; raise SystemExit(0 if torch.cuda.is_available() else 1)" >nul 2>&1 +if not errorlevel 1 ( + pushd "%ROOT%" + python3 "%TRAINER%" --repository "%ROOT%" --exporter "%EXPORTER%" %* + set "RESULT=!ERRORLEVEL!" + popd + exit /b !RESULT! +) + +echo No Python interpreter with CUDA-enabled PyTorch was found. +echo Install CUDA PyTorch or set SZILASSI_PYTHON to its python.exe path. +exit /b 2 + +:try_cuda_python +if defined PYTHON_EXE exit /b 0 +if "%~1"=="" exit /b 0 +if not exist "%~1" exit /b 0 +"%~1" -c "import torch; raise SystemExit(0 if torch.cuda.is_available() else 1)" >nul 2>&1 +if not errorlevel 1 set "PYTHON_EXE=%~1" +exit /b 0 diff --git a/src/TrainingArchive/TrainingArchive.h b/src/TrainingArchive/TrainingArchive.h index c20a49a4..a92e105e 100644 --- a/src/TrainingArchive/TrainingArchive.h +++ b/src/TrainingArchive/TrainingArchive.h @@ -283,6 +283,8 @@ enum SeedProposalFlags : std::uint32_t { SeedProposalHasNeuralInput = 1u << 0, SeedProposalPredictionSupplied = 1u << 1, SeedProposalNeuralGuided = 1u << 2, + SeedProposalTransformerRanked = 1u << 3, + SeedProposalTransformerControl = 1u << 4, }; // A proposal is archived before it is assigned to CUDA chains. The exact @@ -320,6 +322,8 @@ enum InjectedTrajectoryFlags : std::uint32_t { TrajectoryImproved = 1u << 2, TrajectoryEnteredArchive = 1u << 3, TrajectoryHasNeuralInput = 1u << 4, + TrajectoryTransformerRanked = 1u << 5, + TrajectoryTransformerControl = 1u << 6, }; struct InjectedTrajectory { diff --git a/src/TransformerRanker/TransformerRanker.cpp b/src/TransformerRanker/TransformerRanker.cpp new file mode 100644 index 00000000..a7403583 --- /dev/null +++ b/src/TransformerRanker/TransformerRanker.cpp @@ -0,0 +1,908 @@ +#include "TransformerRanker.h" + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace szilassi::transformer { +namespace { + +constexpr std::size_t kTokenCount = kFaceCount + 1; +constexpr std::size_t kHeadWidth = kModelWidth / kAttentionHeadCount; +constexpr std::size_t kHeaderBytes = 160; +constexpr float kLayerNormEpsilon = 1.0e-5f; +constexpr std::array kMagic{{ + 'S', 'Z', 'T', 'R', 'N', 'K', '0', '1'}}; + +static_assert(kModelWidth % kAttentionHeadCount == 0, "Invalid attention width"); +static_assert(sizeof(float) == 4, "SZTRNK01 requires 32-bit float"); + +constexpr std::uint64_t tensor_floats(std::uint64_t rows, std::uint64_t columns) { + return rows * columns; +} + +constexpr std::uint64_t linear_floats(std::uint64_t out, std::uint64_t in) { + return tensor_floats(out, in) + out; +} + +constexpr std::uint64_t kLayerFloatCount = + 2ULL * kModelWidth + + tensor_floats(3ULL * kModelWidth, kModelWidth) + 3ULL * kModelWidth + + linear_floats(kModelWidth, kModelWidth) + + 2ULL * kModelWidth + + linear_floats(kFeedForwardWidth, kModelWidth) + + linear_floats(kModelWidth, kFeedForwardWidth); + +constexpr std::uint64_t kMemberFloatCount = + linear_floats(kModelWidth, kFaceFeatureCount) + + linear_floats(kModelWidth, kGlobalFeatureCount) + + tensor_floats(kFaceCount, kModelWidth) + + tensor_floats(kTopologyCount, kModelWidth) + + kLayerCount * kLayerFloatCount + + 2ULL * kModelWidth + + linear_floats(2, kModelWidth) + + linear_floats(1, kModelWidth) + + linear_floats(kMoveCount, kModelWidth) + + linear_floats(kScaleCount, kModelWidth); + +constexpr std::uint64_t kPayloadFloatCount = kEnsembleSize * kMemberFloatCount; +constexpr std::uint64_t kPayloadBytes = kPayloadFloatCount * sizeof(float); +constexpr std::uint64_t kMaximumModelBytes = kHeaderBytes + kPayloadBytes; + +template +using Matrix = Eigen::Matrix; + +template +using Vector = Eigen::Matrix; + +using Tokens = Matrix(kTokenCount), static_cast(kModelWidth)>; +using FaceInputs = Matrix(kFaceCount), static_cast(kFaceFeatureCount)>; +using GlobalInput = Matrix<1, static_cast(kGlobalFeatureCount)>; +using QkvTokens = Matrix(kTokenCount), static_cast(3 * kModelWidth)>; +using FeedForwardTokens = Matrix(kTokenCount), static_cast(kFeedForwardWidth)>; + +struct LayerParameters { + Vector(kModelWidth)> norm1_weight; + Vector(kModelWidth)> norm1_bias; + Matrix(3 * kModelWidth), static_cast(kModelWidth)> in_proj_weight; + Vector(3 * kModelWidth)> in_proj_bias; + Matrix(kModelWidth), static_cast(kModelWidth)> out_proj_weight; + Vector(kModelWidth)> out_proj_bias; + Vector(kModelWidth)> norm2_weight; + Vector(kModelWidth)> norm2_bias; + Matrix(kFeedForwardWidth), static_cast(kModelWidth)> linear1_weight; + Vector(kFeedForwardWidth)> linear1_bias; + Matrix(kModelWidth), static_cast(kFeedForwardWidth)> linear2_weight; + Vector(kModelWidth)> linear2_bias; +}; + +struct MemberParameters { + Matrix(kModelWidth), static_cast(kFaceFeatureCount)> face_proj_weight; + Vector(kModelWidth)> face_proj_bias; + Matrix(kModelWidth), static_cast(kGlobalFeatureCount)> global_proj_weight; + Vector(kModelWidth)> global_proj_bias; + Matrix(kFaceCount), static_cast(kModelWidth)> face_pos; + Matrix(kTopologyCount), static_cast(kModelWidth)> topology_embedding; + std::array layers; + Vector(kModelWidth)> final_norm_weight; + Vector(kModelWidth)> final_norm_bias; + Matrix<2, static_cast(kModelWidth)> value_head_weight; + Vector<2> value_head_bias; + Matrix<1, static_cast(kModelWidth)> plane_head_weight; + Vector<1> plane_head_bias; + Matrix(kMoveCount), static_cast(kModelWidth)> move_head_weight; + Vector(kMoveCount)> move_head_bias; + Matrix(kScaleCount), static_cast(kModelWidth)> scale_head_weight; + Vector(kScaleCount)> scale_head_bias; +}; + +struct ModelState { + Metadata metadata; + std::array members; +}; + +struct MemberPrediction { + float improvement_probability = 0.5f; + float expected_defect_gain = 0.0f; + std::array plane_probabilities{}; + std::array move_probabilities{}; + std::array scale_probabilities{}; + bool finite = false; +}; + +void set_error(std::string* error, std::string message) { + if (error != nullptr) { + *error = std::move(message); + } +} + +std::uint32_t crc32(const std::uint8_t* data, std::size_t size) { + std::uint32_t crc = 0xffffffffu; + for (std::size_t i = 0; i < size; ++i) { + crc ^= data[i]; + for (int bit = 0; bit < 8; ++bit) { + const std::uint32_t mask = 0u - (crc & 1u); + crc = (crc >> 1) ^ (0xedb88320u & mask); + } + } + return ~crc; +} + +class Reader { +public: + Reader(const std::uint8_t* data, std::size_t size) : data_(data), size_(size) {} + + bool read_u32(std::uint32_t& value) { + if (remaining() < 4) return false; + value = static_cast(data_[offset_]) | + (static_cast(data_[offset_ + 1]) << 8) | + (static_cast(data_[offset_ + 2]) << 16) | + (static_cast(data_[offset_ + 3]) << 24); + offset_ += 4; + return true; + } + + bool read_u64(std::uint64_t& value) { + if (remaining() < 8) return false; + value = 0; + for (int shift = 0; shift < 64; shift += 8) { + value |= static_cast(data_[offset_++]) << shift; + } + return true; + } + + bool read_float(float& value) { + std::uint32_t bits = 0; + if (!read_u32(bits)) return false; + std::memcpy(&value, &bits, sizeof(value)); + return std::isfinite(value); + } + + bool read_bytes(std::uint8_t* destination, std::size_t size) { + if (remaining() < size) return false; + std::memcpy(destination, data_ + offset_, size); + offset_ += size; + return true; + } + + std::size_t remaining() const noexcept { return size_ - offset_; } + +private: + const std::uint8_t* data_ = nullptr; + std::size_t size_ = 0; + std::size_t offset_ = 0; +}; + +template +bool read_tensor(Reader& reader, EigenType& tensor) { + for (Eigen::Index index = 0; index < tensor.size(); ++index) { + if (!reader.read_float(tensor.data()[index])) return false; + } + return true; +} + +bool read_layer(Reader& reader, LayerParameters& layer) { + return read_tensor(reader, layer.norm1_weight) && + read_tensor(reader, layer.norm1_bias) && + read_tensor(reader, layer.in_proj_weight) && + read_tensor(reader, layer.in_proj_bias) && + read_tensor(reader, layer.out_proj_weight) && + read_tensor(reader, layer.out_proj_bias) && + read_tensor(reader, layer.norm2_weight) && + read_tensor(reader, layer.norm2_bias) && + read_tensor(reader, layer.linear1_weight) && + read_tensor(reader, layer.linear1_bias) && + read_tensor(reader, layer.linear2_weight) && + read_tensor(reader, layer.linear2_bias); +} + +bool read_member(Reader& reader, MemberParameters& member) { + if (!read_tensor(reader, member.face_proj_weight) || + !read_tensor(reader, member.face_proj_bias) || + !read_tensor(reader, member.global_proj_weight) || + !read_tensor(reader, member.global_proj_bias) || + !read_tensor(reader, member.face_pos) || + !read_tensor(reader, member.topology_embedding)) { + return false; + } + for (LayerParameters& layer : member.layers) { + if (!read_layer(reader, layer)) return false; + } + return read_tensor(reader, member.final_norm_weight) && + read_tensor(reader, member.final_norm_bias) && + read_tensor(reader, member.value_head_weight) && + read_tensor(reader, member.value_head_bias) && + read_tensor(reader, member.plane_head_weight) && + read_tensor(reader, member.plane_head_bias) && + read_tensor(reader, member.move_head_weight) && + read_tensor(reader, member.move_head_bias) && + read_tensor(reader, member.scale_head_weight) && + read_tensor(reader, member.scale_head_bias); +} + +bool read_file( + const std::filesystem::path& path, + std::vector& bytes, + std::string& error) { + std::error_code size_error; + const std::uintmax_t size = std::filesystem::file_size(path, size_error); + if (size_error) { + error = "Cannot determine transformer model size: " + size_error.message(); + return false; + } + if (size != kMaximumModelBytes || + size > static_cast(std::numeric_limits::max())) { + error = "Transformer model has an invalid fixed-architecture size"; + return false; + } + bytes.resize(static_cast(size)); + std::ifstream stream(path, std::ios::binary); + if (!stream || !stream.read( + reinterpret_cast(bytes.data()), + static_cast(bytes.size()))) { + error = "Cannot read transformer model"; + return false; + } + return true; +} + +bool validation_metrics_valid(const ValidationMetrics& metrics) { + return std::isfinite(metrics.average_precision) && + std::isfinite(metrics.brier_score) && + std::isfinite(metrics.expected_calibration_error) && + std::isfinite(metrics.top_k_gain) && + metrics.average_precision >= 0.0f && metrics.average_precision <= 1.0f && + metrics.brier_score >= 0.0f && metrics.brier_score <= 1.0f && + metrics.expected_calibration_error >= 0.0f && + metrics.expected_calibration_error <= 1.0f; +} + +bool parse_model( + const std::vector& bytes, + std::shared_ptr& parsed, + std::string& error) { + if (bytes.size() != kMaximumModelBytes || + !std::equal(kMagic.begin(), kMagic.end(), bytes.begin())) { + error = "Transformer model magic or size is invalid"; + return false; + } + + Reader header(bytes.data() + kMagic.size(), kHeaderBytes - kMagic.size()); + std::uint32_t format = 0; + std::uint32_t feature = 0; + std::uint32_t objective = 0; + std::uint32_t approved = 0; + std::array dimensions{}; + std::uint32_t reserved32 = 0; + std::uint64_t training_seed = 0; + std::array digest{}; + ValidationMetrics validation; + std::uint64_t payload_bytes = 0; + std::uint32_t payload_crc = 0; + std::uint32_t header_crc = 0; + std::uint64_t float_count = 0; + std::uint64_t reserved64a = 0; + std::uint64_t reserved64b = 0; + + if (!header.read_u32(format) || !header.read_u32(feature) || + !header.read_u32(objective) || !header.read_u32(approved)) { + error = "Transformer model header is truncated"; + return false; + } + for (std::uint32_t& dimension : dimensions) { + if (!header.read_u32(dimension)) { + error = "Transformer model dimension header is truncated"; + return false; + } + } + if (!header.read_u32(reserved32) || !header.read_u64(training_seed) || + !header.read_bytes(digest.data(), digest.size()) || + !header.read_float(validation.average_precision) || + !header.read_float(validation.brier_score) || + !header.read_float(validation.expected_calibration_error) || + !header.read_float(validation.top_k_gain) || + !header.read_u64(payload_bytes) || !header.read_u32(payload_crc) || + !header.read_u32(header_crc) || !header.read_u64(float_count) || + !header.read_u64(reserved64a) || !header.read_u64(reserved64b) || + header.remaining() != 0) { + error = "Transformer model header is malformed"; + return false; + } + + const std::array expected_dimensions{{ + static_cast(kFaceCount), + static_cast(kFaceFeatureCount), + static_cast(kGlobalFeatureCount), + static_cast(kModelWidth), + static_cast(kAttentionHeadCount), + static_cast(kLayerCount), + static_cast(kFeedForwardWidth), + static_cast(kEnsembleSize), + static_cast(kTopologyCount)}}; + if (format != kModelFormatVersion || feature != kFeatureFormatVersion || + objective != kRequiredObjectiveVersion || approved != 1u || + dimensions != expected_dimensions || reserved32 != 0u || + reserved64a != 0 || reserved64b != 0 || + payload_bytes != kPayloadBytes || float_count != kPayloadFloatCount || + !validation_metrics_valid(validation)) { + error = "Transformer model is unapproved or incompatible"; + return false; + } + if (std::none_of(digest.begin(), digest.end(), [](std::uint8_t value) { + return value != 0; + })) { + error = "Transformer model training digest is empty"; + return false; + } + + std::array normalized_header{}; + std::copy_n(bytes.begin(), kHeaderBytes, normalized_header.begin()); + std::fill( + normalized_header.begin() + 132, + normalized_header.begin() + 136, + static_cast(0)); + if (crc32(normalized_header.data(), normalized_header.size()) != header_crc) { + error = "Transformer model header CRC mismatch"; + return false; + } + const std::uint8_t* payload = bytes.data() + kHeaderBytes; + if (crc32(payload, static_cast(payload_bytes)) != payload_crc) { + error = "Transformer model payload CRC mismatch"; + return false; + } + + auto candidate = std::make_shared(); + candidate->metadata.format_version = format; + candidate->metadata.feature_version = feature; + candidate->metadata.objective_version = objective; + candidate->metadata.approved = true; + candidate->metadata.training_seed = training_seed; + candidate->metadata.training_digest = digest; + candidate->metadata.validation = validation; + candidate->metadata.payload_bytes = payload_bytes; + candidate->metadata.payload_crc32 = payload_crc; + + Reader payload_reader(payload, static_cast(payload_bytes)); + for (MemberParameters& member : candidate->members) { + if (!read_member(payload_reader, member)) { + error = "Transformer payload contains a truncated or non-finite tensor"; + return false; + } + } + if (payload_reader.remaining() != 0) { + error = "Transformer payload has trailing tensor data"; + return false; + } + parsed = std::move(candidate); + return true; +} + +float finite_or_zero(double value) { + return std::isfinite(value) ? static_cast(value) : 0.0f; +} + +float nonnegative_log_feature(double value) { + if (!std::isfinite(value) || value <= 0.0) return 0.0f; + return static_cast(std::log1p(value)); +} + +float clipped_log_feature(double value) { + return std::clamp(nonnegative_log_feature(value) / 12.0f, 0.0f, 4.0f); +} + +float signed_log_feature(double value) { + if (!std::isfinite(value) || value == 0.0) return 0.0f; + const double transformed = std::copysign(std::log1p(std::abs(value)), value) / 12.0; + return static_cast(std::clamp(transformed, -4.0, 4.0)); +} + +float bit_feature(std::uint16_t mask, std::size_t bit) { + return (mask & static_cast(1u << bit)) != 0 ? 1.0f : 0.0f; +} + +float popcount_fraction(std::uint16_t value) { + std::uint32_t count = 0; + while (value != 0) { + value = static_cast(value & static_cast(value - 1)); + ++count; + } + return static_cast(count) / static_cast(kFaceCount); +} + +Tokens layer_norm( + const Tokens& input, + const Vector(kModelWidth)>& weight, + const Vector(kModelWidth)>& bias) { + Tokens output; + for (Eigen::Index token = 0; token < input.rows(); ++token) { + float mean = 0.0f; + for (Eigen::Index component = 0; component < input.cols(); ++component) { + mean += input(token, component); + } + mean /= static_cast(kModelWidth); + float variance = 0.0f; + for (Eigen::Index component = 0; component < input.cols(); ++component) { + const float centered = input(token, component) - mean; + variance += centered * centered; + } + variance /= static_cast(kModelWidth); + const float inverse_stddev = 1.0f / std::sqrt(variance + kLayerNormEpsilon); + for (Eigen::Index component = 0; component < input.cols(); ++component) { + output(token, component) = + (input(token, component) - mean) * inverse_stddev * weight[component] + + bias[component]; + } + } + return output; +} + +float silu(float value) { + if (value >= 0.0f) { + return value / (1.0f + std::exp(-value)); + } + const float exponential = std::exp(value); + return value * exponential / (1.0f + exponential); +} + +bool softmax(float* values, std::size_t count) { + if (count == 0) return false; + float maximum = values[0]; + for (std::size_t index = 1; index < count; ++index) { + if (!std::isfinite(values[index])) return false; + maximum = std::max(maximum, values[index]); + } + if (!std::isfinite(maximum)) return false; + double total = 0.0; + for (std::size_t index = 0; index < count; ++index) { + values[index] = std::exp(values[index] - maximum); + total += values[index]; + } + if (!std::isfinite(total) || total <= 0.0) return false; + const float inverse = static_cast(1.0 / total); + for (std::size_t index = 0; index < count; ++index) { + values[index] *= inverse; + } + return true; +} + +Tokens attention(const Tokens& normalized, const LayerParameters& layer) { + QkvTokens qkv = normalized * layer.in_proj_weight.transpose(); + qkv.rowwise() += layer.in_proj_bias.transpose(); + Tokens context; + context.setZero(); + const float kScale = 1.0f / std::sqrt(static_cast(kHeadWidth)); + std::array scores{}; + for (std::size_t head = 0; head < kAttentionHeadCount; ++head) { + const std::size_t head_offset = head * kHeadWidth; + for (std::size_t query = 0; query < kTokenCount; ++query) { + for (std::size_t key = 0; key < kTokenCount; ++key) { + float score = 0.0f; + for (std::size_t component = 0; component < kHeadWidth; ++component) { + score += qkv( + static_cast(query), + static_cast(head_offset + component)) * + qkv( + static_cast(key), + static_cast(kModelWidth + head_offset + component)); + } + scores[key] = score * kScale; + } + if (!softmax(scores.data(), scores.size())) { + context.setConstant(std::numeric_limits::quiet_NaN()); + return context; + } + for (std::size_t component = 0; component < kHeadWidth; ++component) { + float value = 0.0f; + for (std::size_t key = 0; key < kTokenCount; ++key) { + value += scores[key] * qkv( + static_cast(key), + static_cast(2 * kModelWidth + head_offset + component)); + } + context( + static_cast(query), + static_cast(head_offset + component)) = value; + } + } + } + Tokens output = context * layer.out_proj_weight.transpose(); + output.rowwise() += layer.out_proj_bias.transpose(); + return output; +} + +Tokens apply_layer(const Tokens& input, const LayerParameters& layer) { + const Tokens normalized_attention = layer_norm( + input, layer.norm1_weight, layer.norm1_bias); + Tokens residual = input + attention(normalized_attention, layer); + const Tokens normalized_ff = layer_norm( + residual, layer.norm2_weight, layer.norm2_bias); + FeedForwardTokens hidden = normalized_ff * layer.linear1_weight.transpose(); + hidden.rowwise() += layer.linear1_bias.transpose(); + for (Eigen::Index index = 0; index < hidden.size(); ++index) { + hidden.data()[index] = silu(hidden.data()[index]); + } + Tokens ff = hidden * layer.linear2_weight.transpose(); + ff.rowwise() += layer.linear2_bias.transpose(); + residual += ff; + return residual; +} + +float sigmoid(float value) { + if (value >= 0.0f) { + return 1.0f / (1.0f + std::exp(-value)); + } + const float exponential = std::exp(value); + return exponential / (1.0f + exponential); +} + +MemberPrediction predict_member( + const MemberParameters& member, + const Features& features) { + MemberPrediction prediction; + if (features.topology >= kTopologyCount) return prediction; + + FaceInputs face_input; + for (std::size_t face = 0; face < kFaceCount; ++face) { + for (std::size_t feature = 0; feature < kFaceFeatureCount; ++feature) { + face_input( + static_cast(face), + static_cast(feature)) = features.face[face][feature]; + } + } + GlobalInput global_input; + for (std::size_t feature = 0; feature < kGlobalFeatureCount; ++feature) { + global_input(0, static_cast(feature)) = features.global[feature]; + } + if (!face_input.allFinite() || !global_input.allFinite()) return prediction; + + Tokens tokens; + tokens.setZero(); + const auto topology_embedding = member.topology_embedding.row( + static_cast(features.topology)); + tokens.row(0) = global_input * member.global_proj_weight.transpose(); + tokens.row(0) += member.global_proj_bias.transpose(); + tokens.row(0) += topology_embedding; + const auto projected_faces = face_input * member.face_proj_weight.transpose(); + for (std::size_t face = 0; face < kFaceCount; ++face) { + tokens.row(static_cast(face + 1)) = + projected_faces.row(static_cast(face)); + tokens.row(static_cast(face + 1)) += + member.face_proj_bias.transpose(); + tokens.row(static_cast(face + 1)) += + member.face_pos.row(static_cast(face)); + tokens.row(static_cast(face + 1)) += topology_embedding; + } + + for (const LayerParameters& layer : member.layers) { + tokens = apply_layer(tokens, layer); + if (!tokens.allFinite()) return prediction; + } + tokens = layer_norm(tokens, member.final_norm_weight, member.final_norm_bias); + if (!tokens.allFinite()) return prediction; + + const Eigen::Matrix values = + member.value_head_weight * tokens.row(0).transpose() + member.value_head_bias; + prediction.improvement_probability = sigmoid(values[0]); + prediction.expected_defect_gain = values[1]; + for (std::size_t face = 0; face < kFaceCount; ++face) { + prediction.plane_probabilities[face] = + member.plane_head_weight.row(0).dot( + tokens.row(static_cast(face + 1))) + + member.plane_head_bias[0]; + } + const Eigen::Matrix(kMoveCount), 1> move_logits = + member.move_head_weight * tokens.row(0).transpose() + member.move_head_bias; + const Eigen::Matrix(kScaleCount), 1> scale_logits = + member.scale_head_weight * tokens.row(0).transpose() + member.scale_head_bias; + for (std::size_t index = 0; index < kMoveCount; ++index) { + prediction.move_probabilities[index] = move_logits[static_cast(index)]; + } + for (std::size_t index = 0; index < kScaleCount; ++index) { + prediction.scale_probabilities[index] = scale_logits[static_cast(index)]; + } + if (!std::isfinite(prediction.improvement_probability) || + !std::isfinite(prediction.expected_defect_gain) || + !softmax(prediction.plane_probabilities.data(), prediction.plane_probabilities.size()) || + !softmax(prediction.move_probabilities.data(), prediction.move_probabilities.size()) || + !softmax(prediction.scale_probabilities.data(), prediction.scale_probabilities.size())) { + return MemberPrediction{}; + } + prediction.finite = true; + return prediction; +} + +Prediction fallback_prediction() { + Prediction prediction; + prediction.plane_probabilities.fill(1.0f / static_cast(kFaceCount)); + prediction.move_probabilities.fill(1.0f / static_cast(kMoveCount)); + prediction.scale_probabilities.fill(1.0f / static_cast(kScaleCount)); + return prediction; +} + +template +void mean_and_variance( + std::array& mean, + std::array& variance, + Getter getter) { + mean.fill(0.0f); + variance.fill(0.0f); + for (std::size_t member = 0; member < kEnsembleSize; ++member) { + const auto& values = getter(member); + for (std::size_t index = 0; index < Count; ++index) { + mean[index] += values[index] / static_cast(kEnsembleSize); + } + } + for (std::size_t member = 0; member < kEnsembleSize; ++member) { + const auto& values = getter(member); + for (std::size_t index = 0; index < Count; ++index) { + const float difference = values[index] - mean[index]; + variance[index] += difference * difference / static_cast(kEnsembleSize); + } + } +} + +Prediction predict_state(const ModelState& state, const Features& features) { + if (features.topology >= kTopologyCount) return fallback_prediction(); + std::array members; + for (std::size_t index = 0; index < kEnsembleSize; ++index) { + members[index] = predict_member(state.members[index], features); + if (!members[index].finite) return fallback_prediction(); + } + + Prediction prediction; + float probability_sum = 0.0f; + float gain_sum = 0.0f; + for (const MemberPrediction& member : members) { + probability_sum += member.improvement_probability; + gain_sum += member.expected_defect_gain; + } + prediction.improvement_probability = probability_sum / static_cast(kEnsembleSize); + prediction.expected_defect_gain = gain_sum / static_cast(kEnsembleSize); + prediction.improvement_probability_variance = 0.0f; + prediction.expected_defect_gain_variance = 0.0f; + for (const MemberPrediction& member : members) { + const float probability_difference = + member.improvement_probability - prediction.improvement_probability; + const float gain_difference = + member.expected_defect_gain - prediction.expected_defect_gain; + prediction.improvement_probability_variance += + probability_difference * probability_difference / + static_cast(kEnsembleSize); + prediction.expected_defect_gain_variance += + gain_difference * gain_difference / static_cast(kEnsembleSize); + } + mean_and_variance( + prediction.plane_probabilities, + prediction.plane_probability_variance, + [&](std::size_t index) -> const auto& { return members[index].plane_probabilities; }); + mean_and_variance( + prediction.move_probabilities, + prediction.move_probability_variance, + [&](std::size_t index) -> const auto& { return members[index].move_probabilities; }); + mean_and_variance( + prediction.scale_probabilities, + prediction.scale_probability_variance, + [&](std::size_t index) -> const auto& { return members[index].scale_probabilities; }); + const float probability = std::clamp( + prediction.improvement_probability, 1.0e-6f, 1.0f - 1.0e-6f); + prediction.improvement_logit = std::log(probability / (1.0f - probability)); + prediction.finite = std::isfinite(prediction.improvement_logit) && + std::isfinite(prediction.expected_defect_gain) && + std::isfinite(prediction.improvement_probability_variance) && + std::isfinite(prediction.expected_defect_gain_variance); + if (!prediction.finite) return fallback_prediction(); + return prediction; +} + +} // namespace + +bool make_features( + const FeatureInput& input, + Features& features, + std::string* error) { + if (input.topology >= kTopologyCount) { + set_error(error, "Transformer feature topology is outside 0..58"); + return false; + } + Features result; + result.topology = input.topology; + const training::Metrics& metrics = input.metrics; + const bool has_masks = (metrics.flags & training::MetricHasFaceMasks) != 0; + const bool precise = (metrics.flags & training::MetricPrecise) != 0; + const bool dd_verified = (metrics.flags & training::MetricDdVerified) != 0; + const bool finite_metrics = (metrics.flags & training::MetricFinite) != 0; + + for (std::size_t face = 0; face < kFaceCount; ++face) { + const float x = input.state.values[3 * face]; + const float y = input.state.values[3 * face + 1]; + const float z = input.state.values[3 * face + 2]; + if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(z)) { + set_error(error, "Transformer plane feature is non-finite"); + return false; + } + const double norm = std::sqrt( + static_cast(x) * x + + static_cast(y) * y + + static_cast(z) * z); + if (!std::isfinite(norm) || norm <= 1.0e-12) { + set_error(error, "Transformer plane feature has zero length"); + return false; + } + auto& output = result.face[face]; + output[0] = std::clamp(x, -8.0f, 8.0f) / 8.0f; + output[1] = std::clamp(y, -8.0f, 8.0f) / 8.0f; + output[2] = std::clamp(z, -8.0f, 8.0f) / 8.0f; + output[3] = static_cast(x / norm); + output[4] = static_cast(y / norm); + output[5] = static_cast(z / norm); + output[6] = static_cast(std::clamp(std::log1p(norm) / 4.0, 0.0, 4.0)); + output[7] = static_cast(std::clamp(norm / (1.0 + norm), 0.0, 1.0)); + output[8] = has_masks ? bit_feature(metrics.crossing_face_mask, face) : 0.0f; + output[9] = has_masks ? bit_feature(metrics.intersection_face_mask, face) : 0.0f; + output[10] = has_masks ? bit_feature(metrics.degeneracy_face_mask, face) : 0.0f; + output[11] = has_masks ? bit_feature(metrics.condition_face_mask, face) : 0.0f; + output[12] = precise ? 1.0f : 0.0f; + output[13] = dd_verified ? 1.0f : 0.0f; + output[14] = finite_metrics ? 1.0f : 0.0f; + output[15] = 1.0f; + } + + auto& global = result.global; + global[0] = std::clamp(static_cast(metrics.crossings) / 16.0f, 0.0f, 4.0f); + global[1] = std::clamp(static_cast(metrics.intersections) / 32.0f, 0.0f, 4.0f); + if ((metrics.flags & training::MetricHasSmoothLosses) != 0) { + global[2] = nonnegative_log_feature(metrics.crossing_loss); + global[3] = nonnegative_log_feature(metrics.intersection_loss); + } + if ((metrics.flags & training::MetricHasShapeDescriptors) != 0) { + const double determinant = std::max(1.0e-12, static_cast(finite_or_zero( + metrics.min_plane_determinant))); + global[4] = static_cast(std::clamp( + (std::log10(determinant) + 12.0) / 12.0, 0.0, 1.0)); + global[5] = std::clamp(finite_or_zero(metrics.relative_min_edge), 0.0f, 1.0f); + global[6] = std::clamp(finite_or_zero(metrics.min_turn_sine), 0.0f, 1.0f); + global[7] = clipped_log_feature(metrics.max_vertex_norm); + } + if ((metrics.flags & training::MetricHasGeometryPenalty) != 0) { + global[8] = clipped_log_feature(metrics.geometry_penalty); + global[9] = clipped_log_feature(metrics.degeneracy_penalty); + } + if ((metrics.flags & training::MetricHasWorstDegeneracy) != 0) { + global[10] = clipped_log_feature(metrics.worst_degeneracy); + } + if ((metrics.flags & training::MetricHasEnergy) != 0) { + global[11] = signed_log_feature(metrics.energy); + } + if ((metrics.flags & training::MetricHasCondition) != 0) { + const double condition = std::max(1.0, static_cast(finite_or_zero( + metrics.condition_number))); + global[12] = static_cast(std::clamp( + std::log10(condition) / 12.0, 0.0, 4.0)); + global[13] = clipped_log_feature(metrics.condition_penalty); + } + if (has_masks) { + global[14] = popcount_fraction(metrics.crossing_face_mask); + global[15] = popcount_fraction(metrics.intersection_face_mask); + global[16] = popcount_fraction(metrics.degeneracy_face_mask); + global[17] = popcount_fraction(metrics.condition_face_mask); + } + global[18] = static_cast(std::clamp( + std::log1p(static_cast(input.budget.rollout_iterations)) / + std::log(1000001.0), + 0.0, + 2.0)); + global[19] = static_cast(std::clamp( + std::log1p(static_cast(input.budget.assigned_chains)) / + std::log(65537.0), + 0.0, + 2.0)); + global[20] = static_cast(std::clamp( + std::log1p(static_cast(input.budget.replica_count)) / + std::log(65537.0), + 0.0, + 2.0)); + global[21] = static_cast(std::clamp( + std::log1p(static_cast(input.budget.pool_size)) / + std::log(257.0), + 0.0, + 2.0)); + global[22] = input.guided_context ? 1.0f : 0.0f; + global[23] = finite_metrics ? 1.0f : 0.0f; + + for (const auto& face : result.face) { + if (!std::all_of(face.begin(), face.end(), [](float value) { + return std::isfinite(value); + })) { + set_error(error, "Transformer face feature normalization failed"); + return false; + } + } + if (!std::all_of(global.begin(), global.end(), [](float value) { + return std::isfinite(value); + })) { + set_error(error, "Transformer global feature normalization failed"); + return false; + } + features = result; + if (error != nullptr) error->clear(); + return true; +} + +std::uint64_t model_payload_float_count() noexcept { + return kPayloadFloatCount; +} + +std::uint64_t maximum_model_bytes() noexcept { + return kMaximumModelBytes; +} + +struct TransformerRanker::Impl { + std::shared_ptr state; +}; + +TransformerRanker::TransformerRanker() : impl_(std::make_unique()) {} +TransformerRanker::~TransformerRanker() = default; +TransformerRanker::TransformerRanker(TransformerRanker&&) noexcept = default; +TransformerRanker& TransformerRanker::operator=(TransformerRanker&&) noexcept = default; + +bool TransformerRanker::load(const std::filesystem::path& path, std::string* error) { + if (impl_ == nullptr) impl_ = std::make_unique(); + std::vector bytes; + std::string local_error; + if (!read_file(path, bytes, local_error)) { + set_error(error, std::move(local_error)); + return false; + } + std::shared_ptr parsed; + if (!parse_model(bytes, parsed, local_error)) { + set_error(error, std::move(local_error)); + return false; + } + std::shared_ptr immutable = std::move(parsed); + std::atomic_store_explicit(&impl_->state, std::move(immutable), std::memory_order_release); + if (error != nullptr) error->clear(); + return true; +} + +bool TransformerRanker::ready() const noexcept { + return impl_ != nullptr && + std::atomic_load_explicit(&impl_->state, std::memory_order_acquire) != nullptr; +} + +Metadata TransformerRanker::metadata() const { + if (impl_ == nullptr) return {}; + const std::shared_ptr state = + std::atomic_load_explicit(&impl_->state, std::memory_order_acquire); + return state != nullptr ? state->metadata : Metadata{}; +} + +Prediction TransformerRanker::predict(const Features& features) const { + if (impl_ == nullptr) return fallback_prediction(); + const std::shared_ptr state = + std::atomic_load_explicit(&impl_->state, std::memory_order_acquire); + return state != nullptr ? predict_state(*state, features) : fallback_prediction(); +} + +std::vector TransformerRanker::predict_batch( + const std::vector& features) const { + std::vector predictions; + predictions.reserve(features.size()); + const std::shared_ptr state = impl_ != nullptr + ? std::atomic_load_explicit(&impl_->state, std::memory_order_acquire) + : nullptr; + for (const Features& value : features) { + predictions.push_back( + state != nullptr ? predict_state(*state, value) : fallback_prediction()); + } + return predictions; +} + +} // namespace szilassi::transformer diff --git a/src/TransformerRanker/TransformerRanker.h b/src/TransformerRanker/TransformerRanker.h new file mode 100644 index 00000000..2bdefb6e --- /dev/null +++ b/src/TransformerRanker/TransformerRanker.h @@ -0,0 +1,197 @@ +#pragma once + +#include "../TrainingArchive/TrainingArchive.h" + +#include +#include +#include +#include +#include +#include +#include + +namespace szilassi::transformer { + +constexpr std::size_t kFaceCount = 12; +constexpr std::size_t kFaceFeatureCount = 16; +constexpr std::size_t kGlobalFeatureCount = 24; +constexpr std::size_t kModelWidth = 64; +constexpr std::size_t kAttentionHeadCount = 4; +constexpr std::size_t kLayerCount = 3; +constexpr std::size_t kFeedForwardWidth = 256; +constexpr std::size_t kEnsembleSize = 3; +constexpr std::size_t kTopologyCount = 59; +constexpr std::size_t kMoveCount = 5; +constexpr std::size_t kScaleCount = 3; +constexpr std::size_t kTrainingDigestBytes = 32; +constexpr std::uint32_t kModelFormatVersion = 1; +constexpr std::uint32_t kFeatureFormatVersion = 1; +constexpr std::uint32_t kRequiredObjectiveVersion = 5; + +// Work assigned to the proposal whose outcome the model is expected to rank. +// All fields are available both in an InjectedTrajectory and at inference time. +struct SearchBudget { + std::uint64_t rollout_iterations = 0; + std::uint32_t assigned_chains = 0; + std::uint32_t replica_count = 0; + std::uint32_t pool_size = 0; +}; + +struct FeatureInput { + training::PlaneState state{}; + training::Metrics metrics{}; + SearchBudget budget{}; + std::uint32_t topology = 0; + bool guided_context = false; +}; + +struct Features { + std::uint32_t topology = 0; + std::array, kFaceCount> face{}; + std::array global{}; +}; + +// Feature schema 1. The definitions are deliberately specified here so the +// Python trainer and native inference cannot silently use different inputs. +// +// Face f, with p=state.values[3*f..3*f+2], n=length(p): +// 0..2 clamp(p, -8, 8) / 8 +// 3..5 p / n (zero when n <= 1e-12) +// 6 clamp(log1p(n) / 4, 0, 4) +// 7 clamp(n / (1+n), 0, 1) +// 8..11 crossing/intersection/degeneracy/condition face-mask bits +// 12..14 MetricPrecise/MetricDdVerified/MetricFinite bits +// 15 1 when p is finite and n > 1e-12, otherwise feature creation fails +// +// Global: +// 0 clamp(C/16, 0, 4) 1 clamp(I/32, 0, 4) +// 2 log1p(max(0,crossing_loss)) 3 log1p(max(0,intersection_loss)) +// 4 clamp((log10(max(1e-12,min_plane_determinant))+12)/12, 0, 1) +// 5 clamp(relative_min_edge,0,1) 6 clamp(min_turn_sine,0,1) +// 7 clamp(log1p(max(0,max_vertex_norm))/12,0,4) +// 8 clamp(log1p(max(0,geometry_penalty))/12,0,4) +// 9 clamp(log1p(max(0,degeneracy_penalty))/12,0,4) +// 10 clamp(log1p(max(0,worst_degeneracy))/12,0,4) +// 11 signed_log1p(energy)/12, clamped to [-4,4] +// 12 clamp(log10(max(1,condition_number))/12,0,4) +// 13 clamp(log1p(max(0,condition_penalty))/12,0,4) +// 14..17 popcount of crossing/intersection/degeneracy/condition masks / 12 +// 18 clamp(log1p(rollout_iterations)/log(1000001),0,2) +// 19 clamp(log1p(assigned_chains)/log(65537),0,2) +// 20 clamp(log1p(replica_count)/log(65537),0,2) +// 21 clamp(log1p(pool_size)/log(257),0,2) +// 22 guided_context bit 23 MetricFinite bit +// Missing optional metric fields (as indicated by Metrics::flags), and any +// non-finite optional value, are encoded as zero. Plane values must be finite. +bool make_features( + const FeatureInput& input, + Features& features, + std::string* error = nullptr); + +struct ValidationMetrics { + float average_precision = 0.0f; + float brier_score = 0.0f; + float expected_calibration_error = 0.0f; + float top_k_gain = 0.0f; +}; + +struct Metadata { + std::uint32_t format_version = 0; + std::uint32_t feature_version = 0; + std::uint32_t objective_version = 0; + bool approved = false; + std::uint64_t training_seed = 0; + std::array training_digest{}; + ValidationMetrics validation{}; + std::uint64_t payload_bytes = 0; + std::uint32_t payload_crc32 = 0; +}; + +struct Prediction { + float improvement_logit = 0.0f; + float improvement_probability = 0.5f; + float expected_defect_gain = 0.0f; + float improvement_probability_variance = 0.25f; + float expected_defect_gain_variance = 0.0f; + std::array plane_probabilities{}; + std::array plane_probability_variance{}; + std::array move_probabilities{}; + std::array move_probability_variance{}; + std::array scale_probabilities{}; + std::array scale_probability_variance{}; + bool finite = false; +}; + +// SZTRNK01 is an explicitly little-endian, fixed-architecture format. The +// 160-byte header is laid out as follows (offset, type, meaning): +// 0 char[8] magic "SZTRNK01" +// 8 u32 model format (=1) +// 12 u32 feature format (=1) +// 16 u32 objective version (=5) +// 20 u32 approved flag (must equal 1) +// 24..56 nine u32 dimensions in this order: faces, face features, global +// features, d_model, heads, layers, FF width, ensemble, topologies +// 60 u32 reserved (=0) +// 64 u64 training seed +// 72 byte[32] training-corpus digest (normally SHA-256) +// 104 f32[4] AP, Brier, ECE, top-k gain +// 120 u64 payload bytes +// 128 u32 payload CRC-32 (IEEE) +// 132 u32 header CRC-32 with bytes 132..135 treated as zero +// 136 u64 payload float count +// 144 u64[2] reserved (=0) +// The payload contains only finite IEEE-754 float32 values. Every tensor is +// row-major/C-order and a linear layer uses y = x @ weight.T + bias. +// +// For each of the three complete ensemble members, tensors are serialized in +// this exact order: +// face_proj.weight [64,16], face_proj.bias [64] +// global_proj.weight [64,24], global_proj.bias [64] +// face_pos [12,64], topology_embedding [59,64] +// for layer 0..2: +// norm1.weight [64], norm1.bias [64] +// self_attn.in_proj_weight [192,64], in_proj_bias [192] (Q,K,V blocks) +// self_attn.out_proj.weight [64,64], out_proj.bias [64] +// norm2.weight [64], norm2.bias [64] +// linear1.weight [256,64], linear1.bias [256] +// linear2.weight [64,256], linear2.bias [64] +// final_norm.weight [64], final_norm.bias [64] +// value_head.weight [2,64], value_head.bias [2] +// plane_head.weight [1,64], plane_head.bias [1] +// move_head.weight [5,64], move_head.bias [5] +// scale_head.weight [3,64], scale_head.bias [3] +// +// Runtime sequence order is CLS followed by faces 0..11. It is PyTorch +// MultiheadAttention compatible: pre-LN, Q/K/V split into 4 heads, scores +// divided by sqrt(16), softmax over keys, concatenation, out projection. The +// feed-forward activation is SiLU and both blocks use residual addition. +// Final LayerNorm is applied to all 13 tokens. value/move/scale heads consume +// CLS; plane_head is applied independently to the 12 final face tokens. +std::uint64_t model_payload_float_count() noexcept; +std::uint64_t maximum_model_bytes() noexcept; + +class TransformerRanker { +public: + TransformerRanker(); + ~TransformerRanker(); + + TransformerRanker(TransformerRanker&&) noexcept; + TransformerRanker& operator=(TransformerRanker&&) noexcept; + TransformerRanker(const TransformerRanker&) = delete; + TransformerRanker& operator=(const TransformerRanker&) = delete; + + // Transactional and fail-closed: the previous valid model is preserved if + // the new file is absent, corrupt, unapproved, non-finite or incompatible. + bool load(const std::filesystem::path& path, std::string* error = nullptr); + bool ready() const noexcept; + Metadata metadata() const; + + Prediction predict(const Features& features) const; + std::vector predict_batch(const std::vector& features) const; + +private: + struct Impl; + std::unique_ptr impl_; +}; + +} // namespace szilassi::transformer diff --git a/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.cpp b/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.cpp new file mode 100644 index 00000000..c26f8dd3 --- /dev/null +++ b/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.cpp @@ -0,0 +1,399 @@ +#include "../../src/TransformerRanker/TransformerRanker.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace { + +namespace transformer = szilassi::transformer; +namespace training = szilassi::training; + +constexpr std::size_t kHeaderBytes = 160; +constexpr std::size_t kProbeInputHeaderBytes = 28; +constexpr std::size_t kProbeOutputHeaderBytes = 20; +constexpr std::size_t kProbeOutputFloatCount = 45; +constexpr std::size_t kMaximumProbeCases = 64; +constexpr std::uint32_t kProbeFormatVersion = 1; +constexpr std::array kProbeInputMagic{{ + 'S', 'Z', 'T', 'P', 'R', 'B', '0', '1'}}; +constexpr std::array kProbeOutputMagic{{ + 'S', 'Z', 'T', 'P', 'O', 'U', '0', '1'}}; + +int fail(int code, const std::string& message); + +std::uint32_t crc32(const std::uint8_t* data, std::size_t size) { + std::uint32_t crc = 0xffffffffu; + for (std::size_t index = 0; index < size; ++index) { + crc ^= data[index]; + for (int bit = 0; bit < 8; ++bit) { + const std::uint32_t mask = 0u - (crc & 1u); + crc = (crc >> 1) ^ (0xedb88320u & mask); + } + } + return ~crc; +} + +void put_u32(std::vector& bytes, std::size_t offset, std::uint32_t value) { + for (int shift = 0; shift < 32; shift += 8) { + bytes[offset++] = static_cast(value >> shift); + } +} + +void put_u64(std::vector& bytes, std::size_t offset, std::uint64_t value) { + for (int shift = 0; shift < 64; shift += 8) { + bytes[offset++] = static_cast(value >> shift); + } +} + +void put_float(std::vector& bytes, std::size_t offset, float value) { + std::uint32_t bits = 0; + std::memcpy(&bits, &value, sizeof(value)); + put_u32(bytes, offset, bits); +} + +std::vector make_zero_model() { + std::vector bytes( + static_cast(transformer::maximum_model_bytes()), 0); + const std::array magic{{ + 'S', 'Z', 'T', 'R', 'N', 'K', '0', '1'}}; + std::copy(magic.begin(), magic.end(), bytes.begin()); + put_u32(bytes, 8, transformer::kModelFormatVersion); + put_u32(bytes, 12, transformer::kFeatureFormatVersion); + put_u32(bytes, 16, transformer::kRequiredObjectiveVersion); + put_u32(bytes, 20, 1); + const std::array dimensions{{ + static_cast(transformer::kFaceCount), + static_cast(transformer::kFaceFeatureCount), + static_cast(transformer::kGlobalFeatureCount), + static_cast(transformer::kModelWidth), + static_cast(transformer::kAttentionHeadCount), + static_cast(transformer::kLayerCount), + static_cast(transformer::kFeedForwardWidth), + static_cast(transformer::kEnsembleSize), + static_cast(transformer::kTopologyCount)}}; + for (std::size_t index = 0; index < dimensions.size(); ++index) { + put_u32(bytes, 24 + 4 * index, dimensions[index]); + } + put_u64(bytes, 64, 123456789ULL); + bytes[72] = 0x42; + put_float(bytes, 104, 0.5f); + put_float(bytes, 108, 0.2f); + put_float(bytes, 112, 0.1f); + put_float(bytes, 116, 0.3f); + const std::uint64_t payload_bytes = + transformer::model_payload_float_count() * sizeof(float); + put_u64(bytes, 120, payload_bytes); + put_u32(bytes, 128, crc32(bytes.data() + kHeaderBytes, bytes.size() - kHeaderBytes)); + put_u64(bytes, 136, transformer::model_payload_float_count()); + put_u32(bytes, 132, 0); + put_u32(bytes, 132, crc32(bytes.data(), kHeaderBytes)); + return bytes; +} + +bool write_file(const std::filesystem::path& path, const std::vector& bytes) { + std::ofstream output(path, std::ios::binary | std::ios::trunc); + return output && output.write( + reinterpret_cast(bytes.data()), + static_cast(bytes.size())); +} + +bool read_bounded_file( + const std::filesystem::path& path, + std::size_t maximum_bytes, + std::vector& bytes, + std::string& error) { + std::error_code size_error; + const std::uintmax_t size = std::filesystem::file_size(path, size_error); + if (size_error) { + error = "cannot determine probe input size: " + size_error.message(); + return false; + } + if (size > maximum_bytes || + size > static_cast(std::numeric_limits::max())) { + error = "probe input exceeds its fixed size bound"; + return false; + } + bytes.resize(static_cast(size)); + std::ifstream input(path, std::ios::binary); + if (!input || !input.read( + reinterpret_cast(bytes.data()), + static_cast(bytes.size()))) { + error = "cannot read probe input"; + return false; + } + return true; +} + +bool get_u32( + const std::vector& bytes, + std::size_t offset, + std::uint32_t& value) { + if (offset > bytes.size() || bytes.size() - offset < 4) return false; + value = static_cast(bytes[offset]) | + (static_cast(bytes[offset + 1]) << 8) | + (static_cast(bytes[offset + 2]) << 16) | + (static_cast(bytes[offset + 3]) << 24); + return true; +} + +bool get_float( + const std::vector& bytes, + std::size_t offset, + float& value) { + std::uint32_t bits = 0; + if (!get_u32(bytes, offset, bits)) return false; + std::memcpy(&value, &bits, sizeof(value)); + return std::isfinite(value); +} + +int run_parity_probe( + const std::filesystem::path& model_path, + const std::filesystem::path& input_path, + const std::filesystem::path& output_path) { + constexpr std::size_t feature_float_count = + transformer::kFaceCount * transformer::kFaceFeatureCount + + transformer::kGlobalFeatureCount; + constexpr std::size_t input_record_bytes = sizeof(std::uint32_t) + + feature_float_count * sizeof(float); + constexpr std::size_t maximum_input_bytes = + kProbeInputHeaderBytes + kMaximumProbeCases * input_record_bytes; + + std::vector input_bytes; + std::string error; + if (!read_bounded_file( + input_path, maximum_input_bytes, input_bytes, error)) { + return fail(20, error); + } + if (input_bytes.size() < kProbeInputHeaderBytes || + !std::equal( + kProbeInputMagic.begin(), kProbeInputMagic.end(), input_bytes.begin())) { + return fail(21, "probe input magic or header is invalid"); + } + std::uint32_t version = 0; + std::uint32_t case_count = 0; + std::uint32_t face_count = 0; + std::uint32_t face_feature_count = 0; + std::uint32_t global_feature_count = 0; + if (!get_u32(input_bytes, 8, version) || + !get_u32(input_bytes, 12, case_count) || + !get_u32(input_bytes, 16, face_count) || + !get_u32(input_bytes, 20, face_feature_count) || + !get_u32(input_bytes, 24, global_feature_count) || + version != kProbeFormatVersion || case_count == 0 || + case_count > kMaximumProbeCases || + face_count != transformer::kFaceCount || + face_feature_count != transformer::kFaceFeatureCount || + global_feature_count != transformer::kGlobalFeatureCount) { + return fail(22, "probe input dimensions or version are invalid"); + } + const std::size_t expected_input_bytes = + kProbeInputHeaderBytes + static_cast(case_count) * input_record_bytes; + if (input_bytes.size() != expected_input_bytes) { + return fail(23, "probe input has trailing or truncated data"); + } + + std::vector feature_cases(case_count); + std::size_t input_offset = kProbeInputHeaderBytes; + for (transformer::Features& features : feature_cases) { + if (!get_u32(input_bytes, input_offset, features.topology) || + features.topology >= transformer::kTopologyCount) { + return fail(24, "probe topology is outside 0..58"); + } + input_offset += sizeof(std::uint32_t); + for (auto& face : features.face) { + for (float& value : face) { + if (!get_float(input_bytes, input_offset, value)) { + return fail(25, "probe face feature is truncated or non-finite"); + } + input_offset += sizeof(float); + } + } + for (float& value : features.global) { + if (!get_float(input_bytes, input_offset, value)) { + return fail(26, "probe global feature is truncated or non-finite"); + } + input_offset += sizeof(float); + } + } + + transformer::TransformerRanker ranker; + if (!ranker.load(model_path, &error)) return fail(27, error); + const std::vector predictions = + ranker.predict_batch(feature_cases); + if (predictions.size() != feature_cases.size()) { + return fail(28, "native probe returned an invalid batch size"); + } + + constexpr std::size_t output_record_bytes = + sizeof(std::uint32_t) + kProbeOutputFloatCount * sizeof(float); + std::vector output_bytes( + kProbeOutputHeaderBytes + predictions.size() * output_record_bytes, 0); + std::copy(kProbeOutputMagic.begin(), kProbeOutputMagic.end(), output_bytes.begin()); + put_u32(output_bytes, 8, kProbeFormatVersion); + put_u32(output_bytes, 12, case_count); + put_u32( + output_bytes, 16, static_cast(kProbeOutputFloatCount)); + std::size_t output_offset = kProbeOutputHeaderBytes; + for (const transformer::Prediction& prediction : predictions) { + put_u32(output_bytes, output_offset, prediction.finite ? 1u : 0u); + output_offset += sizeof(std::uint32_t); + const auto emit = [&](float value) { + put_float(output_bytes, output_offset, value); + output_offset += sizeof(float); + }; + emit(prediction.improvement_logit); + emit(prediction.improvement_probability); + emit(prediction.expected_defect_gain); + emit(prediction.improvement_probability_variance); + emit(prediction.expected_defect_gain_variance); + for (float value : prediction.plane_probabilities) emit(value); + for (float value : prediction.plane_probability_variance) emit(value); + for (float value : prediction.move_probabilities) emit(value); + for (float value : prediction.move_probability_variance) emit(value); + for (float value : prediction.scale_probabilities) emit(value); + for (float value : prediction.scale_probability_variance) emit(value); + } + if (!write_file(output_path, output_bytes)) { + return fail(29, "cannot write native probe output"); + } + std::cout << "Transformer parity probe wrote " << predictions.size() + << " bounded cases\n"; + return 0; +} + +bool approximately(float left, float right, float tolerance = 1.0e-5f) { + return std::isfinite(left) && std::isfinite(right) && + std::abs(left - right) <= tolerance; +} + +int fail(int code, const std::string& message = {}) { + std::cerr << "TransformerRankerSelfTest failure " << code; + if (!message.empty()) std::cerr << ": " << message; + std::cerr << '\n'; + return code; +} + +} // namespace + +int main(int argc, char** argv) { + if (argc == 5 && std::string(argv[1]) == "--parity-probe") { + return run_parity_probe(argv[2], argv[3], argv[4]); + } + if (argc != 1) { + std::cerr << "Usage: TransformerRankerSelfTest " + "[--parity-probe MODEL INPUT OUTPUT]\n"; + return 64; + } + if (transformer::maximum_model_bytes() != + kHeaderBytes + transformer::model_payload_float_count() * sizeof(float)) { + return fail(1, "model byte accounting mismatch"); + } + + transformer::FeatureInput input; + input.topology = 42; + input.guided_context = true; + input.budget = {64, 8, 8, 128}; + for (std::size_t face = 0; face < transformer::kFaceCount; ++face) { + input.state.values[3 * face] = 1.0f + static_cast(face) * 0.01f; + input.state.values[3 * face + 1] = 0.1f; + input.state.values[3 * face + 2] = -0.05f; + } + input.metrics.crossings = 2; + input.metrics.intersections = 3; + input.metrics.crossing_loss = 0.25; + input.metrics.intersection_loss = 0.5; + input.metrics.geometry_penalty = 0.01; + input.metrics.degeneracy_penalty = 0.02; + input.metrics.worst_degeneracy = 0.03; + input.metrics.energy = 5.0; + input.metrics.min_plane_determinant = 1.0e-4; + input.metrics.relative_min_edge = 0.1; + input.metrics.min_turn_sine = 0.2; + input.metrics.max_vertex_norm = 3.0; + input.metrics.condition_number = 100.0; + input.metrics.condition_penalty = 0.04; + input.metrics.crossing_face_mask = 1u << 2; + input.metrics.intersection_face_mask = 1u << 3; + input.metrics.degeneracy_face_mask = 1u << 4; + input.metrics.condition_face_mask = 1u << 5; + input.metrics.flags = training::MetricPrecise | training::MetricDdVerified | + training::MetricFinite | training::MetricHasSmoothLosses | + training::MetricHasGeometryPenalty | training::MetricHasWorstDegeneracy | + training::MetricHasShapeDescriptors | training::MetricHasCondition | + training::MetricHasFaceMasks | training::MetricHasEnergy; + transformer::Features features; + std::string error; + if (!transformer::make_features(input, features, &error) || + features.topology != 42 || !approximately(features.face[2][8], 1.0f) || + !approximately(features.face[3][9], 1.0f) || + !approximately(features.global[0], 0.125f) || + !approximately(features.global[1], 3.0f / 32.0f) || + !approximately(features.global[22], 1.0f)) { + return fail(2, error); + } + transformer::FeatureInput invalid = input; + invalid.state.values[0] = std::numeric_limits::quiet_NaN(); + if (transformer::make_features(invalid, features, &error)) { + return fail(3, "non-finite plane was accepted"); + } + + const std::filesystem::path directory = + std::filesystem::path("runtime") / "transformer_ranker_selftest"; + std::error_code directory_error; + std::filesystem::create_directories(directory, directory_error); + if (directory_error) return fail(4, directory_error.message()); + const std::filesystem::path valid_path = directory / "zero_model.sztf"; + const std::filesystem::path corrupt_path = directory / "corrupt_model.sztf"; + std::vector model_bytes = make_zero_model(); + if (!write_file(valid_path, model_bytes)) return fail(5, "cannot write valid model"); + + transformer::TransformerRanker ranker; + if (!ranker.load(valid_path, &error) || !ranker.ready()) return fail(6, error); + const transformer::Metadata metadata = ranker.metadata(); + if (!metadata.approved || metadata.training_seed != 123456789ULL || + metadata.training_digest[0] != 0x42 || + !approximately(metadata.validation.average_precision, 0.5f)) { + return fail(7, "metadata mismatch"); + } + const transformer::Prediction prediction = ranker.predict(features); + if (!prediction.finite || !approximately(prediction.improvement_probability, 0.5f) || + !approximately(prediction.expected_defect_gain, 0.0f) || + !approximately(prediction.improvement_probability_variance, 0.0f)) { + return fail(8, "zero model value output mismatch"); + } + for (float probability : prediction.plane_probabilities) { + if (!approximately(probability, 1.0f / transformer::kFaceCount)) { + return fail(9, "plane softmax mismatch"); + } + } + const std::vector batch = + ranker.predict_batch({features, features}); + if (batch.size() != 2 || !batch[0].finite || !batch[1].finite) { + return fail(10, "batch prediction failed"); + } + + model_bytes.back() ^= 0x01; + if (!write_file(corrupt_path, model_bytes)) return fail(11, "cannot write corrupt model"); + if (ranker.load(corrupt_path, &error) || !ranker.ready() || + !ranker.predict(features).finite) { + return fail(12, "transactional corrupt-load fallback failed"); + } + if (ranker.load(directory / "missing.sztf", &error) || !ranker.ready()) { + return fail(13, "transactional missing-load fallback failed"); + } + + std::filesystem::remove(valid_path, directory_error); + std::filesystem::remove(corrupt_path, directory_error); + std::cout << "TransformerRankerSelfTest passed; model bytes=" + << transformer::maximum_model_bytes() << '\n'; + return 0; +} diff --git a/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.vcxproj b/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.vcxproj new file mode 100644 index 00000000..9550e357 --- /dev/null +++ b/tests/TransformerRankerSelfTest/TransformerRankerSelfTest.vcxproj @@ -0,0 +1,65 @@ + + + + + Release + x64 + + + Debug + x64 + + + + 18.0 + Win32Proj + {FB8E7C11-3B60-47C2-962A-641913C1D38A} + TransformerRankerSelfTest + 10.0.26100.0 + + + + Application + true + v145 + Unicode + + + Application + false + v145 + true + Unicode + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\')) + $(RepositoryRoot)build\msbuild\bin\$(Platform)\$(Configuration)\ + $(RepositoryRoot)build\msbuild\obj\$(ProjectName)\$(Platform)\$(Configuration)\ + $(RepositoryRoot) + + + + Level3 + false + true + stdcpp17 + /utf-8 %(AdditionalOptions) + $(RepositoryRoot)src\TrainingArchive;$(RepositoryRoot)src\TransformerRanker;$(RepositoryRoot)external\eigen-3.4.0;%(AdditionalIncludeDirectories) + NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + + + Console + true + + + + + + + + + + + + diff --git a/tools/check_transformer_parity.py b/tools/check_transformer_parity.py new file mode 100644 index 00000000..6d974662 --- /dev/null +++ b/tools/check_transformer_parity.py @@ -0,0 +1,462 @@ +#!/usr/bin/env python3 +"""Bounded numerical parity check for PyTorch and native transformer inference.""" + +from __future__ import annotations + +import argparse +import hashlib +import math +import struct +import subprocess +import sys +import tempfile +import zlib +from pathlib import Path +from typing import Sequence + +import numpy as np + +import train_transformer as training + + +PROBE_INPUT_MAGIC = b"SZTPRB01" +PROBE_OUTPUT_MAGIC = b"SZTPOU01" +PROBE_VERSION = 1 +PROBE_INPUT_HEADER = struct.Struct("<8sIIIII") +PROBE_OUTPUT_HEADER = struct.Struct("<8sIII") +MAXIMUM_CASES = 64 +OUTPUT_FLOAT_COUNT = 45 + +OUTPUT_NAMES = ( + "improvement_logit", + "improvement_probability", + "expected_defect_gain", + "improvement_probability_variance", + "expected_defect_gain_variance", + *(f"plane_probability[{index}]" for index in range(training.FACE_COUNT)), + *(f"plane_probability_variance[{index}]" for index in range(training.FACE_COUNT)), + *(f"move_probability[{index}]" for index in range(training.MOVE_COUNT)), + *(f"move_probability_variance[{index}]" for index in range(training.MOVE_COUNT)), + *(f"scale_probability[{index}]" for index in range(training.SCALE_COUNT)), + *(f"scale_probability_variance[{index}]" for index in range(training.SCALE_COUNT)), +) + + +def parse_args(argv: Sequence[str]) -> argparse.Namespace: + repository = Path(__file__).resolve().parents[1] + parser = argparse.ArgumentParser( + description=( + "Compare a serialized SZTRNK01 model through CPU FP32 PyTorch and " + "the native TransformerRanker implementation." + ) + ) + parser.add_argument("--repository", default=str(repository)) + parser.add_argument( + "--model", default="results/search/neural/transformer/current.sztf" + ) + parser.add_argument( + "--native-probe", + help="TransformerRankerSelfTest executable containing --parity-probe", + ) + parser.add_argument("--cases", type=int, default=8) + parser.add_argument("--absolute-tolerance", type=float, default=2.0e-4) + parser.add_argument("--relative-tolerance", type=float, default=2.0e-4) + parser.add_argument("--timeout-seconds", type=float, default=30.0) + parser.add_argument("--torch-threads", type=int, default=1) + parser.add_argument("--device", choices=("cpu", "cuda"), default="cpu") + return parser.parse_args(argv) + + +def resolve_path(repository: Path, value: str) -> Path: + path = Path(value).expanduser() + if not path.is_absolute(): + path = repository / path + return path.resolve() + + +def find_native_probe(repository: Path, explicit: str | None) -> Path: + if explicit: + path = resolve_path(repository, explicit) + if not path.is_file(): + raise FileNotFoundError(f"native probe does not exist: {path}") + return path + candidates = ( + repository + / "build/msbuild/bin/x64/Release/TransformerRankerSelfTest.exe", + repository / "build/vs2026/Release/transformer_ranker_selftest.exe", + repository / "build/TransformerRankerSelfTest.exe", + ) + for candidate in candidates: + if candidate.is_file(): + return candidate.resolve() + raise FileNotFoundError( + "native probe was not found; build transformer_ranker_selftest or pass " + "--native-probe" + ) + + +def validate_options(args: argparse.Namespace) -> None: + if not 1 <= args.cases <= MAXIMUM_CASES: + raise ValueError(f"--cases must be in 1..{MAXIMUM_CASES}") + for name in ("absolute_tolerance", "relative_tolerance"): + value = float(getattr(args, name)) + if not math.isfinite(value) or value < 0.0: + raise ValueError(f"--{name.replace('_', '-')} must be finite and non-negative") + if not math.isfinite(args.timeout_seconds) or not 1.0 <= args.timeout_seconds <= 300.0: + raise ValueError("--timeout-seconds must be in 1..300") + if not 1 <= args.torch_threads <= 64: + raise ValueError("--torch-threads must be in 1..64") + + +def load_model( + path: Path, device: training.torch.device +) -> tuple[list[training.RankerMember], str]: + model_bytes = path.read_bytes() + expected_float_count = training.expected_payload_float_count() + expected_payload_bytes = expected_float_count * 4 + expected_size = training.MODEL_HEADER_BYTES + expected_payload_bytes + if len(model_bytes) != expected_size: + raise ValueError( + f"model size mismatch: {len(model_bytes)} != {expected_size}" + ) + if model_bytes[:8] != training.MODEL_MAGIC: + raise ValueError("model magic is invalid") + + format_version, feature_version, objective_version, approved = struct.unpack_from( + "<4I", model_bytes, 8 + ) + dimensions = struct.unpack_from("<9I", model_bytes, 24) + expected_dimensions = ( + training.FACE_COUNT, + training.FACE_FEATURES, + training.GLOBAL_FEATURES, + training.MODEL_WIDTH, + training.ATTENTION_HEADS, + training.LAYER_COUNT, + training.FEED_FORWARD_WIDTH, + training.ENSEMBLE_SIZE, + training.TOPOLOGY_COUNT, + ) + if ( + format_version != training.MODEL_FORMAT_VERSION + or feature_version != training.FEATURE_FORMAT_VERSION + or objective_version != training.OBJECTIVE_VERSION + or approved != 1 + or dimensions != expected_dimensions + or struct.unpack_from(" tuple[np.ndarray, np.ndarray, np.ndarray]: + # Every value is an integer divided by 64, so both sides receive the same + # exactly representable float32 bits. The bounded formula covers signs, + # magnitudes, face positions and several topology embeddings. + sample = np.arange(case_count, dtype=np.int64)[:, None, None] + face = np.arange(training.FACE_COUNT, dtype=np.int64)[None, :, None] + component = np.arange(training.FACE_FEATURES, dtype=np.int64)[None, None, :] + face_features = ( + ((sample * 37 + face * 17 + component * 13) % 129) - 64 + ).astype(np.float32) / np.float32(64.0) + global_component = np.arange(training.GLOBAL_FEATURES, dtype=np.int64)[None, :] + global_features = ( + ( + (np.arange(case_count, dtype=np.int64)[:, None] * 29 + + global_component * 11) + % 129 + ) + - 64 + ).astype(np.float32) / np.float32(64.0) + topology = ( + (np.arange(case_count, dtype=np.uint32) * np.uint32(17) + np.uint32(42)) + % np.uint32(training.TOPOLOGY_COUNT) + ) + return ( + np.ascontiguousarray(face_features, dtype=" None: + case_count = int(face.shape[0]) + payload = bytearray( + PROBE_INPUT_HEADER.pack( + PROBE_INPUT_MAGIC, + PROBE_VERSION, + case_count, + training.FACE_COUNT, + training.FACE_FEATURES, + training.GLOBAL_FEATURES, + ) + ) + for index in range(case_count): + payload.extend(struct.pack(" tuple[np.ndarray, np.ndarray]: + data = path.read_bytes() + if len(data) < PROBE_OUTPUT_HEADER.size: + raise ValueError("native probe output is truncated") + magic, version, case_count, float_count = PROBE_OUTPUT_HEADER.unpack_from(data) + if ( + magic != PROBE_OUTPUT_MAGIC + or version != PROBE_VERSION + or case_count != expected_cases + or float_count != OUTPUT_FLOAT_COUNT + ): + raise ValueError("native probe output header is invalid") + record_size = 4 + OUTPUT_FLOAT_COUNT * 4 + if len(data) != PROBE_OUTPUT_HEADER.size + case_count * record_size: + raise ValueError("native probe output has trailing or truncated data") + finite = np.empty(case_count, dtype=np.bool_) + output = np.empty((case_count, OUTPUT_FLOAT_COUNT), dtype=np.float32) + offset = PROBE_OUTPUT_HEADER.size + for index in range(case_count): + flag = struct.unpack_from(" np.ndarray: + face_tensor = training.torch.from_numpy(face).to(device) + global_tensor = training.torch.from_numpy(global_features).to(device) + topology_tensor = training.torch.from_numpy(topology.astype(np.int64)).to(device) + probabilities = [] + gains = [] + plane_probabilities = [] + move_probabilities = [] + scale_probabilities = [] + for member in members: + value, plane, move, scale = member( + face_tensor, global_tensor, topology_tensor + ) + probabilities.append(training.torch.sigmoid(value[:, 0])) + gains.append(value[:, 1]) + plane_probabilities.append(training.torch.softmax(plane, dim=-1)) + move_probabilities.append(training.torch.softmax(move, dim=-1)) + scale_probabilities.append(training.torch.softmax(scale, dim=-1)) + + def aggregate(values: list[training.torch.Tensor]): + stacked = training.torch.stack(values) + mean = stacked.mean(dim=0) + variance = ((stacked - mean.unsqueeze(0)) ** 2).mean(dim=0) + return mean, variance + + probability, probability_variance = aggregate(probabilities) + gain, gain_variance = aggregate(gains) + plane, plane_variance = aggregate(plane_probabilities) + move, move_variance = aggregate(move_probabilities) + scale, scale_variance = aggregate(scale_probabilities) + improvement_logit = training.torch.logit( + probability.clamp(1.0e-6, 1.0 - 1.0e-6) + ) + result = training.torch.cat( + ( + improvement_logit[:, None], + probability[:, None], + gain[:, None], + probability_variance[:, None], + gain_variance[:, None], + plane, + plane_variance, + move, + move_variance, + scale, + scale_variance, + ), + dim=1, + ) + if result.shape[1] != OUTPUT_FLOAT_COUNT or not result.isfinite().all(): + raise RuntimeError("PyTorch reference emitted invalid output") + return result.cpu().numpy() + + +def report_comparison( + native: np.ndarray, + reference: np.ndarray, + absolute_tolerance: float, + relative_tolerance: float, +) -> bool: + difference = np.abs(native.astype(np.float64) - reference.astype(np.float64)) + tolerance = absolute_tolerance + relative_tolerance * np.abs( + reference.astype(np.float64) + ) + max_absolute_flat = int(np.argmax(difference)) + absolute_case, absolute_field = np.unravel_index( + max_absolute_flat, difference.shape + ) + relative = difference / np.maximum( + np.maximum(np.abs(native), np.abs(reference)).astype(np.float64), 1.0e-12 + ) + max_relative_flat = int(np.argmax(relative)) + relative_case, relative_field = np.unravel_index( + max_relative_flat, relative.shape + ) + ratio = difference / np.maximum(tolerance, np.finfo(np.float64).tiny) + max_ratio_flat = int(np.argmax(ratio)) + ratio_case, ratio_field = np.unravel_index(max_ratio_flat, ratio.shape) + + print( + "max_abs_diff=" + f"{difference[absolute_case, absolute_field]:.9e} " + f"case={absolute_case} field={OUTPUT_NAMES[absolute_field]} " + f"native={native[absolute_case, absolute_field]:.9e} " + f"pytorch={reference[absolute_case, absolute_field]:.9e}" + ) + print( + "max_rel_diff=" + f"{relative[relative_case, relative_field]:.9e} " + f"case={relative_case} field={OUTPUT_NAMES[relative_field]} " + f"native={native[relative_case, relative_field]:.9e} " + f"pytorch={reference[relative_case, relative_field]:.9e}" + ) + print( + "max_tolerance_ratio=" + f"{ratio[ratio_case, ratio_field]:.9e} " + f"case={ratio_case} field={OUTPUT_NAMES[ratio_field]}" + ) + return bool(np.all(difference <= tolerance)) + + +def main(argv: Sequence[str] | None = None) -> int: + args = parse_args(argv or sys.argv[1:]) + validate_options(args) + repository = Path(args.repository).expanduser().resolve() + model_path = resolve_path(repository, args.model) + native_probe = find_native_probe(repository, args.native_probe) + if not model_path.is_file(): + raise FileNotFoundError(f"model does not exist: {model_path}") + if args.device == "cuda" and not training.torch.cuda.is_available(): + raise RuntimeError("--device cuda requested but CUDA PyTorch is unavailable") + + training.torch.set_num_threads(args.torch_threads) + training.torch.set_float32_matmul_precision("highest") + if training.torch.cuda.is_available(): + training.torch.backends.cuda.matmul.allow_tf32 = False + training.torch.backends.cudnn.allow_tf32 = False + device = training.torch.device(args.device) + members, model_digest = load_model(model_path, device) + face, global_features, topology = make_cases(args.cases) + reference = pytorch_reference( + members, face, global_features, topology, device + ) + + with tempfile.TemporaryDirectory(prefix="szilassi_transformer_parity_") as temp: + input_path = Path(temp) / "input.bin" + output_path = Path(temp) / "native.bin" + write_probe_input(input_path, face, global_features, topology) + command = [ + str(native_probe), + "--parity-probe", + str(model_path), + str(input_path), + str(output_path), + ] + completed = subprocess.run( + command, + cwd=repository, + check=False, + capture_output=True, + text=True, + timeout=args.timeout_seconds, + ) + if completed.returncode != 0: + raise RuntimeError( + f"native probe failed with exit code {completed.returncode}: " + f"{completed.stderr.strip() or completed.stdout.strip()}" + ) + finite, native = read_probe_output(output_path, args.cases) + if not finite.all(): + bad_cases = np.flatnonzero(~finite).tolist() + raise RuntimeError(f"native inference fell back for cases: {bad_cases}") + + print(f"model_sha256={model_digest}") + print( + f"device={device.type} cases={args.cases} " + f"compared_floats={native.size} torch_threads={args.torch_threads}" + ) + passed = report_comparison( + native, + reference, + args.absolute_tolerance, + args.relative_tolerance, + ) + print( + f"tolerance=atol:{args.absolute_tolerance:.9e}," + f"rtol:{args.relative_tolerance:.9e} status={'PASS' if passed else 'FAIL'}" + ) + return 0 if passed else 1 + + +if __name__ == "__main__": + try: + raise SystemExit(main()) + except (OSError, ValueError, RuntimeError, subprocess.TimeoutExpired) as exc: + print(f"Transformer parity check failed: {exc}", file=sys.stderr) + raise SystemExit(2) from exc diff --git a/tools/train_transformer.py b/tools/train_transformer.py new file mode 100644 index 00000000..8b658c33 --- /dev/null +++ b/tools/train_transformer.py @@ -0,0 +1,1829 @@ +#!/usr/bin/env python3 +"""Train and publish the Szilassi proposal transformer. + +The native TransformerTrainingExport executable is the only reader of the +versioned .sztd archive. This script snapshots its fixed-width stream once, +then performs bounded-memory PyTorch training from that immutable snapshot. +Search may continue sealing new shards while the snapshot is trained; those +new shards are deliberately left for the next retraining run. +""" + +from __future__ import annotations + +import argparse +import contextlib +import ctypes +import dataclasses +import hashlib +import json +import math +import os +import random +import struct +import subprocess +import sys +import time +import uuid +import zlib +from collections import defaultdict +from pathlib import Path +from typing import BinaryIO, Iterable, Iterator, Sequence + + +# cuBLAS requires this setting for deterministic CUDA GEMMs. It has to be set +# before torch initializes CUDA. +os.environ.setdefault("CUBLAS_WORKSPACE_CONFIG", ":4096:8") + +try: + import numpy as np +except ImportError as exc: # pragma: no cover - dependency failure path + raise SystemExit("NumPy is required to train the transformer.") from exc + +try: + import torch + import torch.nn as nn + import torch.nn.functional as F +except ImportError as exc: # pragma: no cover - dependency failure path + raise SystemExit( + "PyTorch with CUDA support is required. Install a CUDA PyTorch build " + "for this Python interpreter." + ) from exc + + +# Whole-run split fixed for the first 6.5 GB corpus. Never split individual +# records: neighboring CUDA trajectories are strongly correlated. +REPORT_TRAIN_RUN = "889b3dfb-118c-48ca-ace4-853da7900f9c" +REPORT_VALIDATION_RUN = "b84f957c-0e29-412c-ad04-f3530092f02e" +REPORT_TEST_RUN = "39968628-bdef-4c6f-9617-c1fcd722ec3a" +REPORT_STRESS_RUN = "59995ced-8ccb-4ce4-9549-612f3b8fd0d1" +SPLIT_RUNS = { + "train": REPORT_TRAIN_RUN, + "validation": REPORT_VALIDATION_RUN, + "test": REPORT_TEST_RUN, + "stress": REPORT_STRESS_RUN, +} +RUN_BYTES_TO_SPLIT = { + uuid.UUID(run_id).bytes: split for split, run_id in SPLIT_RUNS.items() +} + + +# TransformerTrainingExport stream v1. The exporter writes packed +# little-endian records with no native padding. +EXPORT_MAGIC = b"SZTXP001" +EXPORT_VERSION = 1 +EXPORT_HEADER = struct.Struct("<8sII") +FACE_COUNT = 12 +FACE_FEATURES = 16 +GLOBAL_FEATURES = 24 +FEATURE_FLOATS = FACE_COUNT * FACE_FEATURES + GLOBAL_FEATURES + +RUN_ID_OFFSET = 0 +SEQUENCE_OFFSET = 16 +TOPOLOGY_OFFSET = 24 +PROPOSAL_FEATURE_OFFSET = 28 +ANCHOR_FEATURE_OFFSET = PROPOSAL_FEATURE_OFFSET + FEATURE_FLOATS * 4 +GAIN_OFFSET = ANCHOR_FEATURE_OFFSET + FEATURE_FLOATS * 4 +OUTCOME_OFFSET = GAIN_OFFSET + 3 * 4 +ACTION_OFFSET = OUTCOME_OFFSET + 4 +PROPENSITY_OFFSET = ACTION_OFFSET + 3 * 4 +REPLICA_COUNT_OFFSET = PROPENSITY_OFFSET + 3 * 4 +ROLLOUT_ITERATIONS_OFFSET = REPLICA_COUNT_OFFSET + 4 +TRAJECTORY_FLAGS_OFFSET = ROLLOUT_ITERATIONS_OFFSET + 8 +ANCHOR_METRIC_FLAGS_OFFSET = TRAJECTORY_FLAGS_OFFSET + 4 +INJECTED_METRIC_FLAGS_OFFSET = ANCHOR_METRIC_FLAGS_OFFSET + 4 +RESULT_METRIC_FLAGS_OFFSET = INJECTED_METRIC_FLAGS_OFFSET + 4 +EXPECTED_RECORD_SIZE = RESULT_METRIC_FLAGS_OFFSET + 4 + + +# SZTRNK01 model format v1, byte-exact with TransformerRanker.h. +MODEL_MAGIC = b"SZTRNK01" +MODEL_FORMAT_VERSION = 1 +FEATURE_FORMAT_VERSION = 1 +OBJECTIVE_VERSION = 5 +MODEL_HEADER_BYTES = 160 +MODEL_WIDTH = 64 +ATTENTION_HEADS = 4 +LAYER_COUNT = 3 +FEED_FORWARD_WIDTH = 256 +ENSEMBLE_SIZE = 3 +TOPOLOGY_COUNT = 59 +MOVE_COUNT = 5 +SCALE_COUNT = 3 + + +def eprint(*values: object) -> None: + print(*values, file=sys.stderr, flush=True) + + +def set_below_normal_priority() -> None: + """Keep CPU-side decoding/training orchestration below interactive work.""" + if os.name != "nt": + try: + os.nice(5) + except OSError: + pass + return + BELOW_NORMAL_PRIORITY_CLASS = 0x00004000 + kernel32 = ctypes.windll.kernel32 # type: ignore[attr-defined] + get_current_process = kernel32.GetCurrentProcess + get_current_process.argtypes = [] + get_current_process.restype = ctypes.c_void_p + set_priority_class = kernel32.SetPriorityClass + set_priority_class.argtypes = [ctypes.c_void_p, ctypes.c_uint32] + set_priority_class.restype = ctypes.c_int + handle = get_current_process() + if not set_priority_class(handle, BELOW_NORMAL_PRIORITY_CLASS): + eprint("Warning: could not lower trainer process priority.") + + +def atomic_write(path: Path, payload: bytes) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + temporary = path.with_name( + f"{path.name}.tmp.{os.getpid()}.{uuid.uuid4().hex}" + ) + try: + with temporary.open("wb") as output: + output.write(payload) + output.flush() + os.fsync(output.fileno()) + os.replace(temporary, path) + finally: + with contextlib.suppress(FileNotFoundError): + temporary.unlink() + + +def atomic_write_json(path: Path, value: object) -> None: + payload = ( + json.dumps(value, ensure_ascii=False, indent=2, sort_keys=True) + "\n" + ).encode("utf-8") + atomic_write(path, payload) + + +def read_exact(stream: BinaryIO, size: int) -> bytes: + parts: list[bytes] = [] + remaining = size + while remaining: + part = stream.read(remaining) + if not part: + raise EOFError(f"unexpected EOF: wanted {size} bytes") + parts.append(part) + remaining -= len(part) + return b"".join(parts) + + +def find_exporter(repository: Path, explicit: str | None) -> Path: + if explicit: + candidate = Path(explicit).expanduser().resolve() + if candidate.is_file(): + return candidate + raise FileNotFoundError(f"training exporter not found: {candidate}") + + names = [ + repository / "build/msbuild/bin/x64/Release/TransformerTrainingExport.exe", + repository / "build/vs2026/Release/TransformerTrainingExport.exe", + repository / "build/Release/TransformerTrainingExport.exe", + repository / "build/bin/Release/TransformerTrainingExport.exe", + ] + for candidate in names: + if candidate.is_file(): + return candidate.resolve() + matches = sorted( + repository.glob("build/**/TransformerTrainingExport.exe"), + key=lambda item: ("Release" not in item.parts, len(item.parts)), + ) + if matches: + return matches[0].resolve() + raise FileNotFoundError( + "TransformerTrainingExport.exe was not found. Build its Release x64 " + "project before running the trainer, or pass --exporter." + ) + + +@dataclasses.dataclass(frozen=True) +class SnapshotInfo: + path: Path + corpus_digest: bytes + record_count: int + split_counts: dict[str, int] + record_size: int + created_by_trainer: bool + includes_additional_runs: bool + # Contiguous record-index ranges. The native exporter orders whole runs, + # so training can globally shuffle bounded chunks without a RAM-sized index. + split_segments: dict[str, tuple[tuple[int, int], ...]] + + +def validate_stream_header(header: bytes) -> int: + if len(header) != EXPORT_HEADER.size: + raise ValueError("training stream header is truncated") + magic, version, record_size = EXPORT_HEADER.unpack(header) + if magic != EXPORT_MAGIC: + raise ValueError(f"unexpected training stream magic: {magic!r}") + if version != EXPORT_VERSION: + raise ValueError(f"unsupported training stream version: {version}") + if record_size != EXPECTED_RECORD_SIZE: + raise ValueError( + f"training record size mismatch: exporter={record_size}, " + f"trainer={EXPECTED_RECORD_SIZE}" + ) + return record_size + + +def classify_run(run_id: bytes, includes_additional_runs: bool) -> str | None: + split = RUN_BYTES_TO_SPLIT.get(run_id) + if split is not None: + return split + return "deployment_extra" if includes_additional_runs else None + + +def inspect_snapshot( + path: Path, + compute_digest: bool = True, + includes_additional_runs: bool = False, +) -> SnapshotInfo: + digest = hashlib.sha256() + counts: dict[str, int] = defaultdict(int) + segments: dict[str, list[tuple[int, int]]] = defaultdict(list) + total = 0 + active_split: str | None = None + active_start = 0 + with path.open("rb") as stream: + header = read_exact(stream, EXPORT_HEADER.size) + record_size = validate_stream_header(header) + while True: + record = stream.read(record_size) + if not record: + break + if len(record) != record_size: + raise ValueError("training snapshot ends with a partial record") + split = classify_run(record[:16], includes_additional_runs) + if split is None: + raise ValueError( + "exporter emitted a run outside the requested four-run corpus" + ) + if split != active_split: + if active_split is not None: + segments[active_split].append((active_start, total - active_start)) + active_split = split + active_start = total + counts[split] += 1 + total += 1 + if compute_digest: + digest.update(record) + if active_split is not None: + segments[active_split].append((active_start, total - active_start)) + return SnapshotInfo( + path=path, + corpus_digest=digest.digest(), + record_count=total, + split_counts=dict(counts), + record_size=record_size, + created_by_trainer=False, + includes_additional_runs=includes_additional_runs, + split_segments={key: tuple(value) for key, value in segments.items()}, + ) + + +def create_training_snapshot( + repository: Path, + archive_root: Path, + exporter: Path, + snapshot_directory: Path, + includes_additional_runs: bool, +) -> SnapshotInfo: + snapshot_directory.mkdir(parents=True, exist_ok=True) + base = snapshot_directory / f"snapshot_{os.getpid()}_{time.time_ns()}" + partial_path = base.with_suffix(".sztx.partial") + final_path = base.with_suffix(".sztx") + command = [str(exporter), "--root", str(archive_root)] + if not includes_additional_runs: + for run_id in SPLIT_RUNS.values(): + command.extend(["--include-run", run_id]) + eprint("Exporting an immutable four-run training snapshot...") + eprint(" " + subprocess.list2cmdline(command)) + + creationflags = 0 + if os.name == "nt": + creationflags = getattr(subprocess, "BELOW_NORMAL_PRIORITY_CLASS", 0) + process = subprocess.Popen( + command, + cwd=repository, + stdout=subprocess.PIPE, + stderr=None, + creationflags=creationflags, + ) + assert process.stdout is not None + digest = hashlib.sha256() + counts: dict[str, int] = defaultdict(int) + segments: dict[str, list[tuple[int, int]]] = defaultdict(list) + record_count = 0 + active_split: str | None = None + active_start = 0 + try: + header = read_exact(process.stdout, EXPORT_HEADER.size) + record_size = validate_stream_header(header) + with partial_path.open("wb") as output: + output.write(header) + buffered = bytearray() + while True: + chunk = process.stdout.read(8 * 1024 * 1024) + if not chunk: + break + output.write(chunk) + buffered.extend(chunk) + complete_bytes = len(buffered) - len(buffered) % record_size + offset = 0 + while offset < complete_bytes: + view = memoryview(buffered)[offset : offset + record_size] + split = classify_run( + bytes(view[:16]), includes_additional_runs + ) + if split is None: + raise ValueError( + "exporter emitted a run outside the requested corpus" + ) + if split != active_split: + if active_split is not None: + segments[active_split].append( + (active_start, record_count - active_start) + ) + active_split = split + active_start = record_count + digest.update(view) + counts[split] += 1 + record_count += 1 + offset += record_size + if complete_bytes: + buffered = bytearray(buffered[complete_bytes:]) + if buffered: + raise ValueError("exporter ended with a partial training record") + output.flush() + os.fsync(output.fileno()) + return_code = process.wait() + if return_code != 0: + raise RuntimeError( + f"TransformerTrainingExport failed with exit code {return_code}; " + "its partial output is invalid" + ) + missing = sorted(set(SPLIT_RUNS) - set(counts)) + if missing: + raise ValueError( + "training export contains no records for split(s): " + + ", ".join(missing) + ) + if active_split is not None: + segments[active_split].append( + (active_start, record_count - active_start) + ) + os.replace(partial_path, final_path) + return SnapshotInfo( + path=final_path, + corpus_digest=digest.digest(), + record_count=record_count, + split_counts=dict(counts), + record_size=record_size, + created_by_trainer=True, + includes_additional_runs=includes_additional_runs, + split_segments={key: tuple(value) for key, value in segments.items()}, + ) + except BaseException: + if process.poll() is None: + process.terminate() + with contextlib.suppress(subprocess.TimeoutExpired): + process.wait(timeout=5) + if process.poll() is None: + process.kill() + raise + finally: + process.stdout.close() + with contextlib.suppress(FileNotFoundError): + partial_path.unlink() + + +def iter_record_batches( + snapshot: SnapshotInfo, + splits: set[str], + batch_size: int, + shuffle_records: int, + seed: int, + max_records_per_split: int, +) -> Iterator[list[bytes]]: + if batch_size <= 0: + raise ValueError("batch_size must be positive") + rng = random.Random(seed) + # Export order is whole-run order. Shuffle a tiny list of disk chunk + # descriptors first, then shuffle records inside a bounded RAM buffer. This + # interleaves train/validation/test/stress during deployment retraining + # without retaining a 570k-record index or loading the 1 GB snapshot. + io_chunk_records = max(batch_size, min(4096, max(batch_size, shuffle_records))) + descriptors: list[tuple[int, int]] = [] + for split in splits: + remaining = ( + max_records_per_split + if max_records_per_split + else snapshot.split_counts.get(split, 0) + ) + for segment_start, segment_count in snapshot.split_segments.get(split, ()): + take = min(segment_count, remaining) + for local_start in range(0, take, io_chunk_records): + descriptors.append( + ( + segment_start + local_start, + min(io_chunk_records, take - local_start), + ) + ) + remaining -= take + if remaining <= 0: + break + if shuffle_records > 1: + rng.shuffle(descriptors) + else: + descriptors.sort(key=lambda value: value[0]) + + capacity = max(batch_size, shuffle_records) + buffer: list[bytes] = [] + with snapshot.path.open("rb") as stream: + record_size = validate_stream_header(read_exact(stream, EXPORT_HEADER.size)) + for record_index, record_count in descriptors: + stream.seek(EXPORT_HEADER.size + record_index * record_size) + block = read_exact(stream, record_count * record_size) + buffer.extend( + block[offset : offset + record_size] + for offset in range(0, len(block), record_size) + ) + if len(buffer) < capacity: + continue + if shuffle_records > 1: + rng.shuffle(buffer) + complete = len(buffer) - len(buffer) % batch_size + for start in range(0, complete, batch_size): + yield buffer[start : start + batch_size] + buffer = buffer[complete:] + if buffer: + if shuffle_records > 1: + rng.shuffle(buffer) + yield buffer + + +def strided_array( + blob: bytes, + batch_size: int, + record_size: int, + offset: int, + dtype: str, + width: int = 1, +) -> np.ndarray: + item_size = np.dtype(dtype).itemsize + if width == 1: + shape = (batch_size,) + strides = (record_size,) + else: + shape = (batch_size, width) + strides = (record_size, item_size) + return np.ndarray( + shape=shape, + dtype=np.dtype(dtype), + buffer=blob, + offset=offset, + strides=strides, + ).copy() + + +@dataclasses.dataclass +class TrainingBatch: + proposal_face: torch.Tensor + proposal_global: torch.Tensor + anchor_face: torch.Tensor + anchor_global: torch.Tensor + topology: torch.Tensor + improved: torch.Tensor + better: torch.Tensor + signed_gain: torch.Tensor + plane_action: torch.Tensor + move_action: torch.Tensor + scale_action: torch.Tensor + plane_propensity: torch.Tensor + move_propensity: torch.Tensor + scale_propensity: torch.Tensor + sample_weight: torch.Tensor + + @property + def size(self) -> int: + return int(self.topology.shape[0]) + + def to(self, device: torch.device) -> "TrainingBatch": + return TrainingBatch(**{ + field.name: getattr(self, field.name).to(device, non_blocking=False) + for field in dataclasses.fields(self) + }) + + +def decode_batch(records: Sequence[bytes]) -> TrainingBatch: + if not records: + raise ValueError("cannot decode an empty batch") + count = len(records) + blob = b"".join(records) + record_size = len(records[0]) + if record_size != EXPECTED_RECORD_SIZE or any( + len(record) != record_size for record in records + ): + raise ValueError("inconsistent fixed training record size") + + proposal = strided_array( + blob, count, record_size, PROPOSAL_FEATURE_OFFSET, "= TOPOLOGY_COUNT).any(): + raise ValueError("exporter emitted an invalid topology index") + + # A replica and a longer short rollout provide somewhat stronger evidence, + # but max-of-many descendants must not dominate single-chain observations. + replica_weight = 1.0 + 0.12 * np.log2(np.maximum(1.0, replicas)) + effort = 0.80 + 0.40 * np.clip( + np.log1p(iterations) / math.log(1_000_001.0), 0.0, 1.0 + ) + sample_weight = np.clip(replica_weight * effort, 0.60, 2.0).astype(np.float32) + + proposal_face = proposal[:, : FACE_COUNT * FACE_FEATURES].reshape( + count, FACE_COUNT, FACE_FEATURES + ) + proposal_global = proposal[:, FACE_COUNT * FACE_FEATURES :] + anchor_face = anchor[:, : FACE_COUNT * FACE_FEATURES].reshape( + count, FACE_COUNT, FACE_FEATURES + ) + anchor_global = anchor[:, FACE_COUNT * FACE_FEATURES :] + + return TrainingBatch( + proposal_face=torch.from_numpy(proposal_face), + proposal_global=torch.from_numpy(proposal_global), + anchor_face=torch.from_numpy(anchor_face), + anchor_global=torch.from_numpy(anchor_global), + topology=torch.from_numpy(topology), + improved=torch.from_numpy(outcomes[:, 0].astype(np.float32)), + better=torch.from_numpy(outcomes[:, 1].astype(np.bool_)), + # Export field 2 is signed total defect gain: anchor C+I minus result C+I. + signed_gain=torch.from_numpy(gains[:, 2].astype(np.float32)), + plane_action=torch.from_numpy(actions[:, 0].astype(np.int64)), + move_action=torch.from_numpy(actions[:, 1].astype(np.int64)), + scale_action=torch.from_numpy(actions[:, 2].astype(np.int64)), + plane_propensity=torch.from_numpy(propensities[:, 0]), + move_propensity=torch.from_numpy(propensities[:, 1]), + scale_propensity=torch.from_numpy(propensities[:, 2]), + sample_weight=torch.from_numpy(sample_weight), + ) + + +class PreNormEncoderBlock(nn.Module): + def __init__(self) -> None: + super().__init__() + self.norm1 = nn.LayerNorm(MODEL_WIDTH) + self.self_attn = nn.MultiheadAttention( + MODEL_WIDTH, + ATTENTION_HEADS, + dropout=0.0, + batch_first=True, + ) + self.norm2 = nn.LayerNorm(MODEL_WIDTH) + self.linear1 = nn.Linear(MODEL_WIDTH, FEED_FORWARD_WIDTH) + self.linear2 = nn.Linear(FEED_FORWARD_WIDTH, MODEL_WIDTH) + + def forward(self, value: torch.Tensor) -> torch.Tensor: + normalized = self.norm1(value) + attended, _ = self.self_attn( + normalized, + normalized, + normalized, + need_weights=False, + ) + value = value + attended + normalized = self.norm2(value) + return value + self.linear2(F.silu(self.linear1(normalized))) + + +class RankerMember(nn.Module): + def __init__(self) -> None: + super().__init__() + self.face_proj = nn.Linear(FACE_FEATURES, MODEL_WIDTH) + self.global_proj = nn.Linear(GLOBAL_FEATURES, MODEL_WIDTH) + self.face_pos = nn.Parameter(torch.empty(FACE_COUNT, MODEL_WIDTH)) + self.topology_embedding = nn.Embedding(TOPOLOGY_COUNT, MODEL_WIDTH) + self.layers = nn.ModuleList( + [PreNormEncoderBlock() for _ in range(LAYER_COUNT)] + ) + self.final_norm = nn.LayerNorm(MODEL_WIDTH) + self.value_head = nn.Linear(MODEL_WIDTH, 2) + self.plane_head = nn.Linear(MODEL_WIDTH, 1) + self.move_head = nn.Linear(MODEL_WIDTH, MOVE_COUNT) + self.scale_head = nn.Linear(MODEL_WIDTH, SCALE_COUNT) + self.reset_parameters() + + def reset_parameters(self) -> None: + nn.init.normal_(self.face_pos, mean=0.0, std=0.02) + nn.init.normal_(self.topology_embedding.weight, mean=0.0, std=0.02) + for module in self.modules(): + if isinstance(module, nn.Linear): + nn.init.xavier_uniform_(module.weight) + if module.bias is not None: + nn.init.zeros_(module.bias) + elif isinstance(module, nn.LayerNorm): + nn.init.ones_(module.weight) + nn.init.zeros_(module.bias) + # MultiheadAttention owns its packed projection outside nn.Linear. + for layer in self.layers: + nn.init.xavier_uniform_(layer.self_attn.in_proj_weight) + if layer.self_attn.in_proj_bias is not None: + nn.init.zeros_(layer.self_attn.in_proj_bias) + + def forward( + self, + face: torch.Tensor, + global_features: torch.Tensor, + topology: torch.Tensor, + ) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]: + topology_token = self.topology_embedding(topology) + cls = self.global_proj(global_features) + topology_token + faces = ( + self.face_proj(face) + + self.face_pos.unsqueeze(0) + + topology_token.unsqueeze(1) + ) + tokens = torch.cat((cls.unsqueeze(1), faces), dim=1) + for layer in self.layers: + tokens = layer(tokens) + tokens = self.final_norm(tokens) + cls = tokens[:, 0] + face_tokens = tokens[:, 1:] + return ( + self.value_head(cls), + self.plane_head(face_tokens).squeeze(-1), + self.move_head(cls), + self.scale_head(cls), + ) + + +def initialize_member(seed: int, device: torch.device) -> RankerMember: + torch.manual_seed(seed) + torch.cuda.manual_seed_all(seed) + return RankerMember().to(device) + + +def weighted_mean(values: torch.Tensor, weights: torch.Tensor) -> torch.Tensor: + return (values * weights).sum() / weights.sum().clamp_min(1.0e-6) + + +@dataclasses.dataclass +class LossParts: + total: torch.Tensor + bce: torch.Tensor + gain: torch.Tensor + policy: torch.Tensor + useful: int + + +def member_loss( + member: RankerMember, + batch: TrainingBatch, + bootstrap_weight: torch.Tensor, + gain_clip: float, + ips_clip: float, + amp_enabled: bool, +) -> LossParts: + count = batch.size + combined_face = torch.cat((batch.proposal_face, batch.anchor_face), dim=0) + combined_global = torch.cat( + (batch.proposal_global, batch.anchor_global), dim=0 + ) + combined_topology = torch.cat((batch.topology, batch.topology), dim=0) + with torch.autocast( + device_type="cuda", + dtype=torch.bfloat16, + enabled=amp_enabled, + ): + value, plane_logits, move_logits, scale_logits = member( + combined_face, combined_global, combined_topology + ) + proposal_value = value[:count] + anchor_plane = plane_logits[count:] + anchor_move = move_logits[count:] + anchor_scale = scale_logits[count:] + + weights = batch.sample_weight * bootstrap_weight + weights = weights / weights.mean().clamp_min(1e-6) + bce_values = F.binary_cross_entropy_with_logits( + proposal_value[:, 0].float(), batch.improved, reduction="none" + ) + bce = weighted_mean(bce_values, weights) + gain_target = ( + batch.signed_gain.clamp(-gain_clip, gain_clip) + if gain_clip > 0.0 + else batch.signed_gain + ) + gain_values = F.smooth_l1_loss( + proposal_value[:, 1].float(), gain_target, reduction="none" + ) + gain = weighted_mean(gain_values, weights) + + useful = (batch.improved > 0.5) | batch.better + valid = ( + (batch.plane_action >= 0) + & (batch.plane_action < FACE_COUNT) + & (batch.move_action >= 0) + & (batch.move_action < MOVE_COUNT) + & (batch.scale_action >= 0) + & (batch.scale_action < SCALE_COUNT) + & (batch.plane_propensity > 0.0) + & (batch.move_propensity > 0.0) + & (batch.scale_propensity > 0.0) + ) + policy_mask = useful & valid + useful_count = int(policy_mask.sum().item()) + if useful_count: + policy_weight = weights[policy_mask] + plane_ips = ( + 1.0 + / (FACE_COUNT * batch.plane_propensity[policy_mask].clamp_min(1e-6)) + ).clamp(0.25, ips_clip) + move_ips = ( + 1.0 + / (MOVE_COUNT * batch.move_propensity[policy_mask].clamp_min(1e-6)) + ).clamp(0.25, ips_clip) + scale_ips = ( + 1.0 + / (SCALE_COUNT * batch.scale_propensity[policy_mask].clamp_min(1e-6)) + ).clamp(0.25, ips_clip) + plane_ce = F.cross_entropy( + anchor_plane[policy_mask].float(), + batch.plane_action[policy_mask], + reduction="none", + ) + move_ce = F.cross_entropy( + anchor_move[policy_mask].float(), + batch.move_action[policy_mask], + reduction="none", + ) + scale_ce = F.cross_entropy( + anchor_scale[policy_mask].float(), + batch.scale_action[policy_mask], + reduction="none", + ) + policy = ( + weighted_mean(plane_ce, policy_weight * plane_ips) + + weighted_mean(move_ce, policy_weight * move_ips) + + weighted_mean(scale_ce, policy_weight * scale_ips) + ) / 3.0 + else: + policy = anchor_plane.sum().float() * 0.0 + total = bce + 0.25 * gain + policy + return LossParts(total, bce, gain, policy, useful_count) + + +@dataclasses.dataclass +class TrainEpochStats: + records: int = 0 + batches: int = 0 + useful_policy_records: int = 0 + loss: float = 0.0 + bce: float = 0.0 + gain: float = 0.0 + policy: float = 0.0 + + def as_dict(self) -> dict[str, float | int]: + denominator = max(1, self.batches * ENSEMBLE_SIZE) + return { + "records": self.records, + "batches": self.batches, + "useful_policy_records_member_sum": self.useful_policy_records, + "loss": self.loss / denominator, + "bce": self.bce / denominator, + "gain_smooth_l1": self.gain / denominator, + "policy_ce": self.policy / denominator, + } + + +def learning_rate_factor(step: int, total_steps: int) -> float: + warmup = max(1, int(total_steps * 0.05)) + if step < warmup: + return max(0.05, float(step + 1) / float(warmup)) + progress = (step - warmup) / max(1, total_steps - warmup) + return 0.05 + 0.95 * 0.5 * (1.0 + math.cos(math.pi * progress)) + + +def train_ensemble( + snapshot: SnapshotInfo, + members: list[RankerMember], + splits: set[str], + epochs: int, + batch_size: int, + shuffle_records: int, + max_records_per_split: int, + seed: int, + learning_rate: float, + weight_decay: float, + gain_clip: float, + ips_clip: float, + gradient_clip: float, + amp_enabled: bool, + device: torch.device, + validation_callback=None, +) -> tuple[list[dict[str, object]], int]: + optimizers = [ + torch.optim.AdamW( + member.parameters(), + lr=learning_rate, + weight_decay=weight_decay, + betas=(0.9, 0.999), + ) + for member in members + ] + selected_count = sum(snapshot.split_counts.get(split, 0) for split in splits) + if max_records_per_split: + selected_count = sum( + min(snapshot.split_counts.get(split, 0), max_records_per_split) + for split in splits + ) + steps_per_epoch = max(1, math.ceil(selected_count / batch_size)) + total_steps = max(1, steps_per_epoch * epochs) + schedulers = [ + torch.optim.lr_scheduler.LambdaLR( + optimizer, + lr_lambda=lambda step, total=total_steps: learning_rate_factor(step, total), + ) + for optimizer in optimizers + ] + + history: list[dict[str, object]] = [] + best_epoch = epochs + best_score = -math.inf + best_states: list[dict[str, torch.Tensor]] | None = None + bootstrap_rngs = [ + np.random.default_rng( + (seed + (member_index + 1) * 0x9E3779B1) & 0xFFFFFFFFFFFFFFFF + ) + for member_index in range(ENSEMBLE_SIZE) + ] + for epoch in range(1, epochs + 1): + for member in members: + member.train() + stats = TrainEpochStats() + batches = iter_record_batches( + snapshot, + splits, + batch_size, + shuffle_records, + seed + epoch * 0x9E3779B1, + max_records_per_split, + ) + for raw_records in batches: + batch = decode_batch(raw_records).to(device) + for optimizer in optimizers: + optimizer.zero_grad(set_to_none=True) + bootstrap_weights: list[torch.Tensor] = [] + for bootstrap_rng in bootstrap_rngs: + bootstrap = np.minimum( + bootstrap_rng.poisson(1.0, batch.size), 4 + ).astype(np.float32) + if not bootstrap.any(): + bootstrap[0] = 1.0 + bootstrap_weights.append( + torch.from_numpy(bootstrap).to(device, non_blocking=False) + ) + losses = [ + member_loss( + member, + batch, + bootstrap_weight, + gain_clip, + ips_clip, + amp_enabled, + ) + for member, bootstrap_weight in zip(members, bootstrap_weights) + ] + # Members have disjoint parameters. Summing preserves each member's + # natural loss scale (averaging would divide every gradient by 3). + sum(part.total for part in losses).backward() + for member, optimizer, scheduler in zip( + members, optimizers, schedulers + ): + torch.nn.utils.clip_grad_norm_(member.parameters(), gradient_clip) + optimizer.step() + scheduler.step() + stats.records += batch.size + stats.batches += 1 + for part in losses: + stats.loss += float(part.total.detach().cpu()) + stats.bce += float(part.bce.detach().cpu()) + stats.gain += float(part.gain.detach().cpu()) + stats.policy += float(part.policy.detach().cpu()) + stats.useful_policy_records += part.useful + + epoch_report: dict[str, object] = { + "epoch": epoch, + "learning_rate": optimizers[0].param_groups[0]["lr"], + "training": stats.as_dict(), + } + if validation_callback is not None: + validation = validation_callback(members, epoch) + epoch_report["validation"] = validation + score = ( + float(validation["average_precision"]) + - 0.10 * float(validation["brier_score"]) + + 0.01 * float(validation["top_k_gain"]) + ) + if math.isfinite(score) and score > best_score: + best_score = score + best_epoch = epoch + best_states = [ + { + key: value.detach().cpu().clone() + for key, value in member.state_dict().items() + } + for member in members + ] + history.append(epoch_report) + eprint( + f"Epoch {epoch}/{epochs}: loss={stats.as_dict()['loss']:.6f}, " + f"records={stats.records:,}" + ) + + if best_states is not None: + for member, state in zip(members, best_states): + member.load_state_dict(state) + return history, best_epoch + + +@dataclasses.dataclass +class MetricAccumulator: + probability_bins: int = 4096 + calibration_bins: int = 20 + + def __post_init__(self) -> None: + self.count = 0 + self.positive = 0.0 + self.brier_sum = 0.0 + self.bce_sum = 0.0 + self.gain_abs_sum = 0.0 + self.gain_sum = 0.0 + self.score_count = np.zeros(self.probability_bins, dtype=np.float64) + self.score_positive = np.zeros(self.probability_bins, dtype=np.float64) + self.score_gain = np.zeros(self.probability_bins, dtype=np.float64) + self.cal_count = np.zeros(self.calibration_bins, dtype=np.float64) + self.cal_probability = np.zeros(self.calibration_bins, dtype=np.float64) + self.cal_positive = np.zeros(self.calibration_bins, dtype=np.float64) + self.policy_useful = 0 + self.plane_correct = 0 + self.move_correct = 0 + self.scale_correct = 0 + self.plane_ce_sum = 0.0 + self.move_ce_sum = 0.0 + self.scale_ce_sum = 0.0 + + def add( + self, + probability: np.ndarray, + gain_prediction: np.ndarray, + improved: np.ndarray, + signed_gain: np.ndarray, + useful: np.ndarray, + plane_probability: np.ndarray, + move_probability: np.ndarray, + scale_probability: np.ndarray, + plane_action: np.ndarray, + move_action: np.ndarray, + scale_action: np.ndarray, + ) -> None: + probability = np.clip(probability.astype(np.float64), 1e-7, 1.0 - 1e-7) + improved = improved.astype(np.float64) + signed_gain = signed_gain.astype(np.float64) + gain_prediction = gain_prediction.astype(np.float64) + count = probability.size + self.count += count + self.positive += float(improved.sum()) + self.brier_sum += float(np.square(probability - improved).sum()) + self.bce_sum += float( + (-(improved * np.log(probability) + (1.0 - improved) * np.log1p(-probability))).sum() + ) + self.gain_abs_sum += float(np.abs(gain_prediction - signed_gain).sum()) + self.gain_sum += float(signed_gain.sum()) + + score_index = np.minimum( + (probability * self.probability_bins).astype(np.int64), + self.probability_bins - 1, + ) + self.score_count += np.bincount( + score_index, minlength=self.probability_bins + ) + self.score_positive += np.bincount( + score_index, weights=improved, minlength=self.probability_bins + ) + self.score_gain += np.bincount( + score_index, weights=signed_gain, minlength=self.probability_bins + ) + + cal_index = np.minimum( + (probability * self.calibration_bins).astype(np.int64), + self.calibration_bins - 1, + ) + self.cal_count += np.bincount(cal_index, minlength=self.calibration_bins) + self.cal_probability += np.bincount( + cal_index, weights=probability, minlength=self.calibration_bins + ) + self.cal_positive += np.bincount( + cal_index, weights=improved, minlength=self.calibration_bins + ) + + useful = useful.astype(bool) + self.policy_useful += int(useful.sum()) + if useful.any(): + rows = np.flatnonzero(useful) + useful_plane_actions = plane_action[useful].astype(np.int64) + useful_move_actions = move_action[useful].astype(np.int64) + useful_scale_actions = scale_action[useful].astype(np.int64) + self.plane_ce_sum += float( + -np.log( + np.clip( + plane_probability[rows, useful_plane_actions], 1e-7, 1.0 + ) + ).sum() + ) + self.move_ce_sum += float( + -np.log( + np.clip( + move_probability[rows, useful_move_actions], 1e-7, 1.0 + ) + ).sum() + ) + self.scale_ce_sum += float( + -np.log( + np.clip( + scale_probability[rows, useful_scale_actions], 1e-7, 1.0 + ) + ).sum() + ) + plane_prediction = plane_probability.argmax(axis=-1) + move_prediction = move_probability.argmax(axis=-1) + scale_prediction = scale_probability.argmax(axis=-1) + self.plane_correct += int( + (plane_prediction[useful] == plane_action[useful]).sum() + ) + self.move_correct += int( + (move_prediction[useful] == move_action[useful]).sum() + ) + self.scale_correct += int( + (scale_prediction[useful] == scale_action[useful]).sum() + ) + + def finalize(self) -> dict[str, float | int]: + if self.count == 0: + raise ValueError("cannot evaluate an empty split") + prevalence = self.positive / self.count + total_positive = self.positive + true_positive = 0.0 + false_positive = 0.0 + previous_recall = 0.0 + average_precision = 0.0 + if 0.0 < total_positive < self.count: + for index in range(self.probability_bins - 1, -1, -1): + true_positive += self.score_positive[index] + false_positive += ( + self.score_count[index] - self.score_positive[index] + ) + recall = true_positive / total_positive + precision = true_positive / max(1.0, true_positive + false_positive) + average_precision += precision * (recall - previous_recall) + previous_recall = recall + + ece = 0.0 + for index in range(self.calibration_bins): + count = self.cal_count[index] + if count: + mean_probability = self.cal_probability[index] / count + mean_positive = self.cal_positive[index] / count + ece += (count / self.count) * abs(mean_probability - mean_positive) + + top_target = max(1.0, math.ceil(self.count * 0.10)) + top_seen = 0.0 + top_gain = 0.0 + for index in range(self.probability_bins - 1, -1, -1): + count = self.score_count[index] + if count <= 0.0: + continue + take = min(count, top_target - top_seen) + top_gain += self.score_gain[index] * (take / count) + top_seen += take + if top_seen >= top_target: + break + overall_gain = self.gain_sum / self.count + top_mean_gain = top_gain / max(1.0, top_seen) + null_brier = prevalence * (1.0 - prevalence) + null_bce = 0.0 + if 0.0 < prevalence < 1.0: + null_bce = -( + prevalence * math.log(prevalence) + + (1.0 - prevalence) * math.log1p(-prevalence) + ) + policy_denominator = max(1, self.policy_useful) + plane_ce = self.plane_ce_sum / policy_denominator + move_ce = self.move_ce_sum / policy_denominator + scale_ce = self.scale_ce_sum / policy_denominator + return { + "records": self.count, + "positives": int(round(self.positive)), + "prevalence": prevalence, + "average_precision": average_precision, + "brier_score": self.brier_sum / self.count, + "null_brier_score": null_brier, + "binary_cross_entropy": self.bce_sum / self.count, + "null_binary_cross_entropy": null_bce, + "expected_calibration_error": ece, + "gain_mae": self.gain_abs_sum / self.count, + "mean_signed_gain": overall_gain, + "top_decile_mean_signed_gain": top_mean_gain, + "top_k_gain": top_mean_gain - overall_gain, + "useful_policy_records": self.policy_useful, + "plane_top1_accuracy": self.plane_correct / policy_denominator, + "move_top1_accuracy": self.move_correct / policy_denominator, + "scale_top1_accuracy": self.scale_correct / policy_denominator, + "plane_cross_entropy": plane_ce, + "move_cross_entropy": move_ce, + "scale_cross_entropy": scale_ce, + "policy_cross_entropy": (plane_ce + move_ce + scale_ce) / 3.0, + "plane_uniform_cross_entropy": math.log(FACE_COUNT), + "move_uniform_cross_entropy": math.log(MOVE_COUNT), + "scale_uniform_cross_entropy": math.log(SCALE_COUNT), + "policy_uniform_cross_entropy": ( + math.log(FACE_COUNT) + math.log(MOVE_COUNT) + math.log(SCALE_COUNT) + ) / 3.0, + } + + +@torch.no_grad() +def evaluate_ensemble( + snapshot: SnapshotInfo, + members: list[RankerMember], + split: str, + batch_size: int, + max_records_per_split: int, + gain_clip: float, + amp_enabled: bool, + device: torch.device, +) -> dict[str, float | int]: + for member in members: + member.eval() + metrics = MetricAccumulator() + batches = iter_record_batches( + snapshot, + {split}, + batch_size, + 0, + 0, + max_records_per_split, + ) + for raw_records in batches: + batch = decode_batch(raw_records).to(device) + count = batch.size + combined_face = torch.cat((batch.proposal_face, batch.anchor_face), dim=0) + combined_global = torch.cat( + (batch.proposal_global, batch.anchor_global), dim=0 + ) + combined_topology = torch.cat((batch.topology, batch.topology), dim=0) + probabilities = [] + gains = [] + plane_probabilities = [] + move_probabilities = [] + scale_probabilities = [] + with torch.autocast( + device_type="cuda", + dtype=torch.bfloat16, + enabled=amp_enabled, + ): + for member in members: + value, plane, move, scale = member( + combined_face, combined_global, combined_topology + ) + probabilities.append(torch.sigmoid(value[:count, 0].float())) + gains.append(value[:count, 1].float()) + plane_probabilities.append(torch.softmax(plane[count:].float(), dim=-1)) + move_probabilities.append(torch.softmax(move[count:].float(), dim=-1)) + scale_probabilities.append(torch.softmax(scale[count:].float(), dim=-1)) + probability = torch.stack(probabilities).mean(0) + gain = torch.stack(gains).mean(0) + plane_probability = torch.stack(plane_probabilities).mean(0) + move_probability = torch.stack(move_probabilities).mean(0) + scale_probability = torch.stack(scale_probabilities).mean(0) + valid_actions = ( + (batch.plane_action >= 0) + & (batch.plane_action < FACE_COUNT) + & (batch.move_action >= 0) + & (batch.move_action < MOVE_COUNT) + & (batch.scale_action >= 0) + & (batch.scale_action < SCALE_COUNT) + ) + useful = ((batch.improved > 0.5) | batch.better) & valid_actions + metrics.add( + probability.cpu().numpy(), + gain.cpu().numpy(), + batch.improved.cpu().numpy(), + ( + batch.signed_gain.clamp(-gain_clip, gain_clip) + if gain_clip > 0.0 + else batch.signed_gain + ).cpu().numpy(), + useful.cpu().numpy(), + plane_probability.cpu().numpy(), + move_probability.cpu().numpy(), + scale_probability.cpu().numpy(), + batch.plane_action.cpu().numpy(), + batch.move_action.cpu().numpy(), + batch.scale_action.cpu().numpy(), + ) + return metrics.finalize() + + +def report_gate( + validation: dict[str, float | int], + test: dict[str, float | int], + stress: dict[str, float | int], + minimum_records: int, +) -> tuple[bool, list[str]]: + reasons: list[str] = [] + for name, metrics in ( + ("validation", validation), + ("test", test), + ("stress", stress), + ): + numeric = [float(value) for value in metrics.values()] + if not all(math.isfinite(value) for value in numeric): + reasons.append(f"{name}: non-finite metric") + if int(metrics["records"]) < minimum_records: + reasons.append(f"{name}: fewer than {minimum_records} records") + prevalence = float(metrics["prevalence"]) + if not 0.0 < prevalence < 1.0: + reasons.append(f"{name}: split needs both positive and negative outcomes") + + for name, metrics in (("validation", validation), ("test", test)): + prevalence = float(metrics["prevalence"]) + if float(metrics["average_precision"]) <= prevalence: + reasons.append(f"{name}: AP does not beat prevalence") + if float(metrics["top_k_gain"]) <= 0.0: + reasons.append(f"{name}: top-decile rank has no signed-gain uplift") + if float(metrics["brier_score"]) > 1.05 * float(metrics["null_brier_score"]): + reasons.append(f"{name}: Brier score is worse than the null model by >5%") + if float(metrics["policy_cross_entropy"]) > 1.02 * float( + metrics["policy_uniform_cross_entropy"] + ): + reasons.append(f"{name}: policy CE is worse than uniform by >2%") + + if float(stress["average_precision"]) < 0.95 * float(stress["prevalence"]): + reasons.append("stress: AP falls materially below prevalence") + if float(stress["top_k_gain"]) < -0.05: + reasons.append("stress: top-decile signed-gain uplift is materially negative") + return not reasons, reasons + + +def tensor_bytes(tensor: torch.Tensor) -> bytes: + array = tensor.detach().cpu().float().contiguous().numpy().astype(" Iterable[torch.Tensor]: + yield member.face_proj.weight + yield member.face_proj.bias + yield member.global_proj.weight + yield member.global_proj.bias + yield member.face_pos + yield member.topology_embedding.weight + for layer in member.layers: + yield layer.norm1.weight + yield layer.norm1.bias + yield layer.self_attn.in_proj_weight + assert layer.self_attn.in_proj_bias is not None + yield layer.self_attn.in_proj_bias + yield layer.self_attn.out_proj.weight + assert layer.self_attn.out_proj.bias is not None + yield layer.self_attn.out_proj.bias + yield layer.norm2.weight + yield layer.norm2.bias + yield layer.linear1.weight + yield layer.linear1.bias + yield layer.linear2.weight + yield layer.linear2.bias + yield member.final_norm.weight + yield member.final_norm.bias + yield member.value_head.weight + yield member.value_head.bias + yield member.plane_head.weight + yield member.plane_head.bias + yield member.move_head.weight + yield member.move_head.bias + yield member.scale_head.weight + yield member.scale_head.bias + + +def expected_payload_float_count() -> int: + per_member = 0 + per_member += MODEL_WIDTH * FACE_FEATURES + MODEL_WIDTH + per_member += MODEL_WIDTH * GLOBAL_FEATURES + MODEL_WIDTH + per_member += FACE_COUNT * MODEL_WIDTH + per_member += TOPOLOGY_COUNT * MODEL_WIDTH + per_layer = 0 + per_layer += MODEL_WIDTH * 2 + per_layer += (3 * MODEL_WIDTH) * MODEL_WIDTH + 3 * MODEL_WIDTH + per_layer += MODEL_WIDTH * MODEL_WIDTH + MODEL_WIDTH + per_layer += MODEL_WIDTH * 2 + per_layer += FEED_FORWARD_WIDTH * MODEL_WIDTH + FEED_FORWARD_WIDTH + per_layer += MODEL_WIDTH * FEED_FORWARD_WIDTH + MODEL_WIDTH + per_member += LAYER_COUNT * per_layer + per_member += MODEL_WIDTH * 2 + per_member += 2 * MODEL_WIDTH + 2 + per_member += MODEL_WIDTH + 1 + per_member += MOVE_COUNT * MODEL_WIDTH + MOVE_COUNT + per_member += SCALE_COUNT * MODEL_WIDTH + SCALE_COUNT + return ENSEMBLE_SIZE * per_member + + +def serialize_model( + members: Sequence[RankerMember], + training_seed: int, + corpus_digest: bytes, + validation: dict[str, float | int], +) -> bytes: + if len(members) != ENSEMBLE_SIZE: + raise ValueError(f"expected {ENSEMBLE_SIZE} ensemble members") + if len(corpus_digest) != 32: + raise ValueError("training corpus digest must be SHA-256") + payload = b"".join( + tensor_bytes(tensor) for member in members for tensor in member_tensors(member) + ) + if len(payload) % 4: + raise AssertionError("float payload is not aligned") + float_count = len(payload) // 4 + expected_count = expected_payload_float_count() + if float_count != expected_count: + raise AssertionError( + f"payload tensor order/shape mismatch: {float_count} != {expected_count}" + ) + payload_crc = zlib.crc32(payload) & 0xFFFFFFFF + header = bytearray(MODEL_HEADER_BYTES) + header[0:8] = MODEL_MAGIC + struct.pack_into( + " tuple[str, Path]: + digest = hashlib.sha256(model_bytes).hexdigest() + generation_path = output_directory / f"model_{digest}.sztf" + if generation_path.exists(): + existing_digest = hashlib.sha256(generation_path.read_bytes()).hexdigest() + if existing_digest != digest: + raise RuntimeError("immutable model generation digest collision") + else: + atomic_write(generation_path, model_bytes) + # Search loads current.sztf. Replacing it never mutates immutable generations. + atomic_write(output_directory / "current.sztf", model_bytes) + report["model_digest_sha256"] = digest + report["model_generation"] = generation_path.name + report_payload = ( + json.dumps(report, ensure_ascii=False, indent=2, sort_keys=True) + "\n" + ).encode("utf-8") + generation_report = output_directory / f"report_{digest}.json" + if not generation_report.exists(): + atomic_write(generation_report, report_payload) + atomic_write(output_directory / "report.json", report_payload) + return digest, generation_path + + +def parse_args(argv: Sequence[str]) -> argparse.Namespace: + parser = argparse.ArgumentParser( + description="Train the CUDA PyTorch Szilassi proposal transformer." + ) + parser.add_argument( + "--repository", + default=str(Path(__file__).resolve().parents[1]), + help="repository root", + ) + parser.add_argument( + "--archive-root", + default="results/search", + help="search archive root, relative to repository by default", + ) + parser.add_argument("--exporter", help="TransformerTrainingExport.exe path") + parser.add_argument( + "--snapshot", + help="reuse an existing SZTXP001 snapshot instead of launching exporter", + ) + parser.add_argument( + "--snapshot-directory", + default="runtime/transformer_training", + help="temporary fixed-stream snapshot directory", + ) + parser.add_argument( + "--keep-snapshot", action="store_true", help="retain generated snapshot" + ) + parser.add_argument( + "--deployment-all-runs", + action="store_true", + help=( + "include every sealed run in final deployment retraining while " + "keeping the four fixed reporting splits; intended for the later " + "full-corpus/200 GB retrain" + ), + ) + parser.add_argument( + "--output-directory", + default="results/search/neural/transformer", + ) + parser.add_argument("--seed", type=int, default=0x5A17A551) + parser.add_argument("--report-epochs", type=int, default=5) + parser.add_argument( + "--deployment-epochs", + type=int, + default=0, + help="0 uses the best reporting epoch", + ) + parser.add_argument("--batch-size", type=int, default=1024) + parser.add_argument("--shuffle-records", type=int, default=32768) + parser.add_argument("--learning-rate", type=float, default=3.0e-4) + parser.add_argument("--weight-decay", type=float, default=1.0e-4) + parser.add_argument("--gradient-clip", type=float, default=1.0) + parser.add_argument( + "--gain-clip", + type=float, + default=0.0, + help="absolute signed-gain target clip; 0 keeps the complete target", + ) + parser.add_argument("--ips-clip", type=float, default=4.0) + parser.add_argument( + "--max-records-per-split", + type=int, + default=0, + help="diagnostic bound; 0 trains on every exported record", + ) + parser.add_argument("--minimum-gate-records", type=int, default=1000) + parser.add_argument( + "--no-bf16", action="store_true", help="disable BF16 autocast" + ) + parser.add_argument( + "--force-deploy", + action="store_true", + help="publish despite a failed statistical gate (diagnostics only)", + ) + parser.add_argument( + "--nondeterministic", + action="store_true", + help="allow nondeterministic CUDA kernels", + ) + return parser.parse_args(argv) + + +def resolve_under_repository(repository: Path, value: str) -> Path: + path = Path(value).expanduser() + if not path.is_absolute(): + path = repository / path + return path.resolve() + + +def validate_options(args: argparse.Namespace) -> None: + positive_integer_names = ( + "report_epochs", + "batch_size", + "shuffle_records", + "minimum_gate_records", + ) + for name in positive_integer_names: + if getattr(args, name) <= 0: + raise ValueError(f"--{name.replace('_', '-')} must be positive") + if args.deployment_epochs < 0 or args.max_records_per_split < 0: + raise ValueError("epoch/record bounds cannot be negative") + for name in ( + "learning_rate", + "weight_decay", + "gradient_clip", + "ips_clip", + ): + value = float(getattr(args, name)) + if not math.isfinite(value) or value <= 0.0: + raise ValueError(f"--{name.replace('_', '-')} must be positive and finite") + if not math.isfinite(args.gain_clip) or args.gain_clip < 0.0: + raise ValueError("--gain-clip must be finite and non-negative") + + +def main(argv: Sequence[str] | None = None) -> int: + args = parse_args(argv or sys.argv[1:]) + validate_options(args) + set_below_normal_priority() + if not torch.cuda.is_available(): + raise RuntimeError( + "CUDA PyTorch is mandatory for transformer training; no CUDA device is available" + ) + device = torch.device("cuda:0") + properties = torch.cuda.get_device_properties(device) + amp_enabled = not args.no_bf16 and properties.major >= 8 + repository = Path(args.repository).expanduser().resolve() + archive_root = resolve_under_repository(repository, args.archive_root) + snapshot_directory = resolve_under_repository( + repository, args.snapshot_directory + ) + output_directory = resolve_under_repository( + repository, args.output_directory + ) + output_directory.mkdir(parents=True, exist_ok=True) + + random.seed(args.seed) + np.random.seed(args.seed & 0xFFFFFFFF) + torch.manual_seed(args.seed) + torch.cuda.manual_seed_all(args.seed) + if not args.nondeterministic: + torch.use_deterministic_algorithms(True) + torch.backends.cudnn.benchmark = False + torch.backends.cuda.matmul.allow_tf32 = False + if hasattr(torch.backends.cuda, "enable_flash_sdp"): + torch.backends.cuda.enable_flash_sdp(False) + torch.backends.cuda.enable_mem_efficient_sdp(False) + torch.backends.cuda.enable_math_sdp(True) + + eprint(f"CUDA device: {properties.name}") + eprint(f"PyTorch: {torch.__version__}; BF16 autocast: {amp_enabled}") + snapshot: SnapshotInfo | None = None + try: + if args.snapshot: + snapshot_path = resolve_under_repository(repository, args.snapshot) + snapshot = inspect_snapshot( + snapshot_path, + includes_additional_runs=args.deployment_all_runs, + ) + else: + exporter = find_exporter(repository, args.exporter) + snapshot = create_training_snapshot( + repository, + archive_root, + exporter, + snapshot_directory, + args.deployment_all_runs, + ) + eprint( + f"Snapshot: {snapshot.record_count:,} records, " + f"SHA-256 {snapshot.corpus_digest.hex()}" + ) + for split in SPLIT_RUNS: + eprint( + f" {split:10s} {snapshot.split_counts.get(split, 0):,} records " + f"({SPLIT_RUNS[split]})" + ) + if snapshot.split_counts.get("deployment_extra", 0): + eprint( + " deployment_extra " + f"{snapshot.split_counts['deployment_extra']:,} records" + ) + + reporting_members = [ + initialize_member(args.seed + member * 0x9E3779B1, device) + for member in range(ENSEMBLE_SIZE) + ] + + def validate_during_training( + members: list[RankerMember], epoch: int + ) -> dict[str, float | int]: + del epoch + return evaluate_ensemble( + snapshot, + members, + "validation", + args.batch_size, + args.max_records_per_split, + args.gain_clip, + amp_enabled, + device, + ) + + report_history, best_epoch = train_ensemble( + snapshot=snapshot, + members=reporting_members, + splits={"train"}, + epochs=args.report_epochs, + batch_size=args.batch_size, + shuffle_records=args.shuffle_records, + max_records_per_split=args.max_records_per_split, + seed=args.seed, + learning_rate=args.learning_rate, + weight_decay=args.weight_decay, + gain_clip=args.gain_clip, + ips_clip=args.ips_clip, + gradient_clip=args.gradient_clip, + amp_enabled=amp_enabled, + device=device, + validation_callback=validate_during_training, + ) + reporting_metrics = { + split: evaluate_ensemble( + snapshot, + reporting_members, + split, + args.batch_size, + args.max_records_per_split, + args.gain_clip, + amp_enabled, + device, + ) + for split in ("validation", "test", "stress") + } + approved, gate_reasons = report_gate( + reporting_metrics["validation"], + reporting_metrics["test"], + reporting_metrics["stress"], + args.minimum_gate_records, + ) + if args.force_deploy and not approved: + eprint("WARNING: statistical deployment gate was overridden.") + approved = True + + base_report: dict[str, object] = { + "format": "szilassi-transformer-training-report-v1", + "approved": approved, + "gate_overridden": bool(args.force_deploy and gate_reasons), + "gate_reasons": gate_reasons, + "corpus_digest_sha256": snapshot.corpus_digest.hex(), + "corpus_records": snapshot.record_count, + "split_runs": SPLIT_RUNS, + "split_records": snapshot.split_counts, + "deployment_all_runs": snapshot.includes_additional_runs, + "report_best_epoch": best_epoch, + "report_training_history": report_history, + "reporting_metrics": reporting_metrics, + "architecture": { + "ensemble": ENSEMBLE_SIZE, + "tokens": "CLS+12 faces", + "face_features": FACE_FEATURES, + "global_features": GLOBAL_FEATURES, + "d_model": MODEL_WIDTH, + "layers": LAYER_COUNT, + "heads": ATTENTION_HEADS, + "feed_forward": FEED_FORWARD_WIDTH, + "activation": "SiLU", + "normalization": "pre-LayerNorm plus final LayerNorm", + "dropout": 0.0, + "ensemble_bootstrap": "independent capped Poisson(1)", + }, + "loss": { + "value": "BCE(improved) + 0.25*SmoothL1(signed defect gain)", + "policy": "mean clipped normalized-IPS CE on useful outcomes", + "gain_clip": args.gain_clip if args.gain_clip > 0.0 else None, + "ips_clip": args.ips_clip, + }, + "training": { + "seed": args.seed, + "batch_size": args.batch_size, + "shuffle_records": args.shuffle_records, + "learning_rate": args.learning_rate, + "weight_decay": args.weight_decay, + "gradient_clip": args.gradient_clip, + "report_epochs": args.report_epochs, + "bf16_autocast": amp_enabled, + "cuda_device": properties.name, + "pytorch_version": torch.__version__, + "deterministic": not args.nondeterministic, + }, + "created_unix_time_ns": time.time_ns(), + } + if not approved: + rejected_path = output_directory / ( + f"rejected_report_{snapshot.corpus_digest.hex()}_{time.time_ns()}.json" + ) + atomic_write_json(rejected_path, base_report) + eprint("Deployment gate failed; current.sztf was not replaced:") + for reason in gate_reasons: + eprint(f" - {reason}") + return 4 + + del reporting_members + torch.cuda.empty_cache() + deployment_epochs = args.deployment_epochs or best_epoch + deployment_members = [ + initialize_member(args.seed + member * 0x9E3779B1, device) + for member in range(ENSEMBLE_SIZE) + ] + deployment_splits = set(SPLIT_RUNS) + if snapshot.includes_additional_runs: + deployment_splits.add("deployment_extra") + deployment_history, _ = train_ensemble( + snapshot=snapshot, + members=deployment_members, + splits=deployment_splits, + epochs=deployment_epochs, + batch_size=args.batch_size, + shuffle_records=args.shuffle_records, + max_records_per_split=args.max_records_per_split, + seed=args.seed ^ 0xD1B54A32, + learning_rate=args.learning_rate, + weight_decay=args.weight_decay, + gain_clip=args.gain_clip, + ips_clip=args.ips_clip, + gradient_clip=args.gradient_clip, + amp_enabled=amp_enabled, + device=device, + validation_callback=None, + ) + validation_metrics = reporting_metrics["validation"] + model_bytes = serialize_model( + deployment_members, + args.seed, + snapshot.corpus_digest, + validation_metrics, + ) + base_report["deployment_epochs"] = deployment_epochs + base_report["deployment_training_history"] = deployment_history + digest, generation = publish_model( + output_directory, + model_bytes, + base_report, + ) + eprint(f"Published immutable generation: {generation}") + eprint(f"Current model digest: {digest}") + return 0 + finally: + if ( + snapshot is not None + and snapshot.created_by_trainer + and not args.keep_snapshot + ): + with contextlib.suppress(FileNotFoundError): + snapshot.path.unlink() + + +if __name__ == "__main__": + try: + raise SystemExit(main()) + except KeyboardInterrupt: + eprint("Training interrupted; current.sztf was not changed.") + raise SystemExit(130) + except Exception as exc: + eprint(f"Transformer training failed: {exc}") + raise SystemExit(2)